Skip to content

Commit

Permalink
Merge pull request #248 from NNPDF/fix_remove_missing_heavy
Browse files Browse the repository at this point in the history
remove missing contribution to heavy_components
  • Loading branch information
felixhekhorn authored Nov 30, 2023
2 parents 59dfe13 + 46eae6a commit e912ec7
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions src/yadism/coefficient_functions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,24 +151,6 @@ def heavy_components(self):
else:
heavy_comps[sfh].extend(heavy.kernels.generate(self.esf, nf, ihq=sfh))

# Add missing contributions
for ihq in range(sfh + 1, 7):
if not masses[ihq]:
continue
if "FFN0" in self.scheme:
heavy_comps[sfh].extend(
asy.kernels.generate_missing_asy(
self.esf,
nf,
ihq,
self.esf.info.theory["pto_evol"],
icoupl=sfh,
)
)
else:
heavy_comps[sfh].extend(
heavy.kernels.generate_missing(self.esf, nf, ihq, icoupl=sfh)
)
comps.append(heavy_comps[sfh])
return comps

Expand Down

0 comments on commit e912ec7

Please sign in to comment.