Overview
Theory
Implementation
Dev Tools
Navigation
from .. import partonic_channel as epc from ..partonic_channel import RSL from . import nlo, nnlo from . import partonic_channel as pc # For gL, the LO contribution vanishes [docs] class NonSinglet(pc.LightBase): [docs] @staticmethod def NLO(): """ |ref| implements NLO-part of :eqref:`A.1`, :cite:`Zijlstra-light-nnlo-pol`. """ return RSL(nlo.fl.ns_reg) [docs] def NNLO(self): """ |ref| implements :eqref:`19`, :cite:`Borsa-light-nnlo-pol`. """ return RSL( nnlo.xclns2p.clnn2a, loc=nnlo.xclns2p.clnn2c, args=dict(reg=[self.nf]) ) [docs] class Gluon(epc.EmptyPartonicChannel): pass [docs] class Singlet(epc.EmptyPartonicChannel): pass [docs] class Valence(epc.EmptyPartonicChannel): pass