Source code for yadism.coefficient_functions.asy.g1_nc

from ..light import f2_nc as light
from ..partonic_channel import RSL, EmptyPartonicChannel
from . import g1_nc_raw as raw
from . import partonic_channel as pc


[docs] class AsyLLNonSinglet(pc.PartonicChannelAsy):
[docs] def NNLO(self): return RSL(raw.c2ns_LL_reg, raw.c2ns_LL_sing, raw.c2ns_LL_loc, args=[self.L])
[docs] class AsyNLLNonSinglet(pc.PartonicChannelAsy):
[docs] def NNLO(self): return RSL(raw.c2ns_NLL_reg, raw.c2ns_NLL_sing, raw.c2ns_NLL_loc, args=[self.L])
[docs] class AsyNNLLNonSinglet(pc.PartonicChannelAsy):
[docs] def NNLO(self): return RSL( raw.c2ns_NNLL_reg, raw.c2ns_NNLL_sing, raw.c2ns_NNLL_loc, args=[self.L] )
[docs] class AsyLLSinglet(pc.PartonicChannelAsy):
[docs] def NNLO(self): return RSL(raw.c2ps_LL_reg, args=[self.L])
[docs] class AsyNLLSinglet(pc.PartonicChannelAsy):
[docs] def NNLO(self): return RSL(raw.c2ps_NLL_reg, args=[self.L])
[docs] class AsyNNLLSinglet(pc.PartonicChannelAsy):
[docs] def NNLO(self): return RSL(raw.c2ps_NNLL_reg, args=[self.L])
[docs] class AsyLLGluon(pc.PartonicChannelAsy):
[docs] def NLO(self): return RSL(raw.c1g_LL_reg, args=[self.L])
[docs] def NNLO(self): return RSL(raw.c2g_LL_reg, args=[self.L])
[docs] class AsyNLLGluon(pc.PartonicChannelAsy):
[docs] def NLO(self): return RSL(raw.c1g_NLL_reg, args=[self.L])
[docs] def NNLO(self): return RSL(raw.c2g_NLL_reg, args=[self.L])
[docs] class AsyNNLLGluon(pc.PartonicChannelAsy):
[docs] def NNLO(self): return RSL(raw.c2g_NNLL_reg, args=[self.L])
[docs] class AsyLLIntrinsic(EmptyPartonicChannel): pass
[docs] class AsyNLLIntrinsicMatching(EmptyPartonicChannel): pass
[docs] class AsyNLLIntrinsicLight(EmptyPartonicChannel): pass