From 4559a067c76ec490104d3d7223cee891637b1113 Mon Sep 17 00:00:00 2001 From: juacrumar Date: Fri, 12 Apr 2024 16:28:20 +0200 Subject: [PATCH] add to the theory card 2 keys needed by eko: qedref, alphasnf --- src/pineko/theory.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pineko/theory.py b/src/pineko/theory.py index 5a5af4c4..d26cfaa0 100644 --- a/src/pineko/theory.py +++ b/src/pineko/theory.py @@ -331,6 +331,9 @@ def eko(self, name, _grid, tcard): # perturbative order of the prescription. if "PTOEKO" in tcard: tcard["PTO"] = tcard["PTOEKO"] + # Keys still needed by eko below + tcard["Qedref"] = tcard["Qref"] + tcard["MaxNfAs"] = tcard["MaxNfPdf"] # The operator card has been already generated in the correct format # The theory card needs to be converted to a format that eko can use legacy_class = eko.io.runcards.Legacy(tcard, ocard)