Source code for yadism.coefficient_functions.heavy.f3_cc

import numpy as np

from .. import splitting_functions as split
from ..partonic_channel import RSL
from . import partonic_channel as pc


[docs] class NonSinglet(pc.ChargedCurrentNonSinglet): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.sf_prefactor = self.labda
[docs] def NLO(self): """ |ref| implements :eqref:`A.1-4` with Table 1, :cite:`gluck-ccheavy`. """ a = 0 b1 = lambda z: (-1 - z**2) * self.sf_prefactor b2 = lambda z: (1 - z) * self.sf_prefactor return self.h_q(a, b1, b2)
[docs] class Gluon(pc.ChargedCurrentGluon):
[docs] def NLO(self): """ |ref| implements :eqref:`A.5-7` with Table 2, :cite:`gluck-ccheavy`. """ as_norm = 2.0 def reg(z, _args): c1 = 2.0 * (1.0 - self.labda) c2 = 0 c3 = -2.0 * (1.0 - z) c4 = 2 return ( ( ( split.lo.pqg_single(z, np.array([], dtype=float)) / 2.0 * (-self.l_labda(z) - np.log(self.labda)) ) + self.h_g(z, [c1, c2, c3, c4]) ) * self.labda * as_norm ) return RSL(reg)