Skip to content

Commit

Permalink
Add: contribution of dFs to expansion
Browse files Browse the repository at this point in the history
Expansion checks work.
  • Loading branch information
lcarpino committed Nov 27, 2019
1 parent 8512c1c commit 0da1c23
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
5 changes: 4 additions & 1 deletion ARES/Driver/Expansion.wl
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,16 @@ BeginPackage["ARES`Driver`Expansion`"]
muR, xmuR, logX0, logXV,
OrderExpansion, Ltilde,
ExpansionOpts, alphaSOpts,
res0, res1, res2, res
res0, res1, res2, res,
xq, xqb
},

(* set up the event *)
event = BuildEvent[eventConfig];
legs = event["legs"];
dipoles = event["dipoles"];
xq = eventConfig[[1]];
xqb = eventConfig[[2]];

(* set up the observable parametrisation for this event geometry *)
obsSC = obs["SCParametrisation"][event];
Expand Down
8 changes: 6 additions & 2 deletions ARES/Expansion/AdditiveInterface.wl
Original file line number Diff line number Diff line change
Expand Up @@ -160,12 +160,16 @@ BeginPackage["ARES`Expansion`AdditiveInterface`"]
Fs21ab[RpNLL11_?NumericQ, dipole_?AssociationQ, obsSC_?AssociationQ] :=
Module[
{
a, res
a, xa, xb, I, res
},

a = obsSC["ktpow"];
xa = dipole["legs"][[1]]["x"];
xb = dipole["legs"][[2]]["x"];

res = dipole["col"] (8 Pi beta0)/a^2 I[dipole, obsSC]
I = - Log[xa + xb - 1] Pi^2/6 RpNLL11;

res = dipole["col"] 2/a I
]

Fcorrel21l[RpNLL11_?NumericQ, leg_?AssociationQ, obsSC_?AssociationQ, I_] :=
Expand Down

0 comments on commit 0da1c23

Please sign in to comment.