Source code for yadism.coefficient_functions.light.fl_cc

from ..partonic_channel import RSL
from . import fl_nc, n3lo, nnlo


[docs] class NonSingletEven(fl_nc.NonSinglet): pass
[docs] class Gluon(fl_nc.Gluon): pass
[docs] class Singlet(fl_nc.Singlet): pass
[docs] class NonSingletOdd(fl_nc.NonSinglet):
[docs] def NNLO(self): """ |ref| implements :eqref:`2.9`, :cite:`vogt-f2lcc`. """ return RSL( nnlo.xclns2p.clnc2a, loc=nnlo.xclns2p.clnc2c, args=dict(reg=[self.nf]) )
[docs] def N3LO(self): """ |ref| implements the difference between :eqref:`2.10`, and :eqref:`3.7`, :cite:`Davies:2016ruz` """ return RSL( n3lo.xclns3p.clnm3a_fl2, loc=n3lo.xclns3p.clnm3c_fl2, args=dict(reg=[self.nf]), )