Skip to content

Commit

Permalink
hard code QED matching to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
giacomomagni committed Nov 8, 2023
1 parent 547911a commit 8f87134
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/eko/runner/parts.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,9 @@ def evolve_configs(eko: EKO) -> dict:
n_integration_cores=ocard.configs.n_integration_cores,
ModSV=ocard.configs.scvar_method,
n3lo_ad_variation=tcard.n3lo_ad_variation,
matching_order=tcard.matching_order if tcard.matching_order is not None
# Here order is shifted by one, no QED matching is available so far.
matching_order=tcard.matching_order
if tcard.matching_order is not None
else (tcard.order[0] - 1, 0),
)

Expand Down

0 comments on commit 8f87134

Please sign in to comment.