Skip to content

Commit

Permalink
remove use-fhmruvv from evolven3fit cli
Browse files Browse the repository at this point in the history
  • Loading branch information
giacomomagni committed Nov 5, 2024
1 parent d387576 commit 761a684
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions n3fit/src/n3fit/scripts/evolven3fit.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def evolven3fit_new():
def main():
parser = ArgumentParser(
description="evolven3fit - a script with tools to evolve PDF fits",
usage="""evolven3fit [-h] [-q Q_FIN] [-p Q_POINTS] [-n N_CORES] [-e EV_OP_ITERATIONS] [--use-fhmruvv]
usage="""evolven3fit [-h] [-q Q_FIN] [-p Q_POINTS] [-n N_CORES] [-e EV_OP_ITERATIONS]
{produce_eko,produce_eko_photon,evolve} [fit folder]
Note that with the now removed apfel-based version of `evolven3fit` the syntax was
Expand All @@ -123,11 +123,7 @@ def main():
default=None,
help="ev_op_iterations for the EXA theory. Overrides the settings given in the theory card.",
)
parser.add_argument(
"--use-fhmruvv",
action="store_true",
help="Use the FHMRUVV N3LO splitting splitting functions",
)

subparsers = parser.add_subparsers(title="actions", dest="actions")
construct_eko_parser(subparsers)
construct_eko_photon_parser(subparsers)
Expand All @@ -141,9 +137,8 @@ def main():
if args.ev_op_iterations is not None:
op_card_info["configs"]["ev_op_iterations"] = args.ev_op_iterations

# Here we do not allow any modification of the theory card, for the moment.
theory_card_info = {}
if args.use_fhmruvv:
theory_card_info["use_fhmruvv"] = args.use_fhmruvv

if args.no_net:
loader = Loader()
Expand Down

0 comments on commit 761a684

Please sign in to comment.