Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions src/yadism/coefficient_functions/light/f4_cc.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from .. import partonic_channel as epc

# In the massless limit, F4 vanishes both at LO and NLO.
# Only when heavy quark masses are accounted for that its
# contribution is non-zero.


class Gluon(epc.EmptyPartonicChannel):
pass


class Singlet(epc.EmptyPartonicChannel):
pass


class Valence(epc.EmptyPartonicChannel):
pass
11 changes: 11 additions & 0 deletions src/yadism/coefficient_functions/light/f5_cc.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from ..partonic_channel import RSL
from . import partonic_channel as pc

# At LO, only the Non-Singlet part is non-zero and is proportional to
# `delta`. Starting at NLO, the Gluon part starts to contribute.


class NongSinglet(pc.LightBase):
@staticmethod
def LO():
return RSL.from_delta(1.0)
6 changes: 6 additions & 0 deletions src/yadism/esf/exs.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
"Conversion factor from GeV^-2 to 10^-38 cm^2"


# TODO: For both `xs_coeffs_unpolarized` and `EvaluatedCrossSection.get_result()`,
# instead of returning an array of 3 elements, now it should return 5, with the
# las two corresponding to `F4` and `F5`. This is what will allow us to compute
# the (differential) cross-sections.


def xs_coeffs_polarized(kind):
"""Compute coefficients in the definition of a given polarized cross section.

Expand Down
2 changes: 1 addition & 1 deletion src/yadism/observable_name.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""

fake_kind = "??"
sfs = ["F2", "FL", "F3", "g1", "gL", "g4"]
sfs = ["F2", "FL", "F3", "g1", "gL", "g4", "F4", "F5"]
# xs = ["XSreduced", "XSyreduced"]
xs = [
"XSHERANC",
Expand Down