diff --git a/benchmarks/ekobox/benchmark_evol_pdf.py b/benchmarks/ekobox/benchmark_evol_pdf.py index 9eb2981f8..3a9dc0f4a 100644 --- a/benchmarks/ekobox/benchmark_evol_pdf.py +++ b/benchmarks/ekobox/benchmark_evol_pdf.py @@ -20,9 +20,9 @@ def benchmark_evolve_single_member( mugrid = [(3.0, 4), (10.0, 5), (100.0, 5)] theory = theory_card theory.order = (1, 0) - theory.couplings.alphas.value = 0.118000 - theory.couplings.alphas.scale = 91.1876 - theory.couplings.alphaem.value = 0.007496 + theory.couplings.alphas = 0.118000 + theory.couplings.scale = 91.1876 + theory.couplings.alphaem = 0.007496 theory.couplings.max_num_flavs = 3 theory.heavy.num_flavs_max_pdf = 3 theory.heavy.masses.c.value = 1.3 @@ -49,7 +49,7 @@ def benchmark_evolve_single_member( ev_pdf = lhapdf.mkPDF("EvPDF", 0) assert info["XMin"] == op.xgrid.raw[0] assert info["SetDesc"] == "MyEvolvedPDF" - assert info["MZ"] == theory.couplings.alphas.scale + assert info["MZ"] == theory.couplings.scale assert info["Debug"] == "Debug" xgrid = op.xgrid.raw for idx, mu2 in enumerate(op.mu2grid): diff --git a/src/ekobox/info_file.py b/src/ekobox/info_file.py index 7ab591086..8f48cd56e 100644 --- a/src/ekobox/info_file.py +++ b/src/ekobox/info_file.py @@ -48,7 +48,7 @@ def build( template_info["OrderQCD"] = theory_card.order[0] - 1 template_info["QMin"] = round(math.sqrt(operators_card.mu2grid[0]), 4) template_info["QMax"] = round(math.sqrt(operators_card.mu2grid[-1]), 4) - template_info["MZ"] = theory_card.couplings.alphas + template_info["MZ"] = theory_card.couplings.scale template_info["MUp"] = 0.0 template_info["MDown"] = 0.0 template_info["MStrange"] = 0.0