Skip to content

Commit

Permalink
remove fonll from apfel runner
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyStegeman committed Oct 9, 2023
1 parent 5b61932 commit fdc153a
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions benchmarks/runners/apfel_.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,6 @@ def theory_updates_ffns(pto):
"nfref": [3],
}
# theory_updates = cartesian_product(sv)
# add FONLL
# sv["FNS"] = ["FONLL-A"]
# sv["NfFF"] = [5]
# theory_updates.append(cartesian_product(sv))
return cartesian_product(sv)
Expand Down Expand Up @@ -347,15 +345,6 @@ def benchmark_nlo(self):
self.run([{"PTO": 1, "IC": 1}], self.obs_updates(), ["CT14llo_NF4"])


class BenchmarkICFONLL(ApfelICBenchmark):
def benchmark_nlo(self):
self.run(
[{"PTO": 1, "IC": 1, "FNS": "FONLL-A", "NfFF": 4}],
self.obs_updates(),
["CT14llo_NF4"],
)


if __name__ == "__main__":
# plain = BenchmarkPlain()
# plain.benchmark_pto(0)
Expand All @@ -382,8 +371,6 @@ def benchmark_nlo(self):
# ffns = BenchmarkICFFNS()
# ffns.benchmark_lo()
# ffns.benchmark_nlo()
# fonll = BenchmarkICFONLL()
# fonll.benchmark_nlo()

# xs = BenchmarkXS()
# xs.benchmark_pto(0)
Expand Down Expand Up @@ -448,14 +435,3 @@ def benchmark_nlo(self):
# ):
# return False
# return None

# def fonll_assert(theory, _obs, sf, yad):
# if (
# sf == "FLbottom"
# and theory["mb"] ** 2 / 4 < yad["Q2"] < theory["mb"] ** 2
# ):
# # APFEL has a discreization in Q2/m2
# return dict(abs=5e-6)
# if sf == "FLcharm" and yad["Q2"] < 7 and theory["DAMP"] == 1:
# return dict(abs=2e-5)
# return None

0 comments on commit fdc153a

Please sign in to comment.