Skip to content

Commit 5648cfa

Browse files
giacomomagniscarlehoff
authored andcommitted
remove use-fhmruvv from evolven3fit cli
1 parent ace8683 commit 5648cfa

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

n3fit/src/n3fit/scripts/evolven3fit.py

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def evolven3fit_new():
101101
def main():
102102
parser = ArgumentParser(
103103
description="evolven3fit - a script with tools to evolve PDF fits",
104-
usage="""evolven3fit [-h] [-q Q_FIN] [-p Q_POINTS] [-n N_CORES] [-e EV_OP_ITERATIONS] [--use-fhmruvv]
104+
usage="""evolven3fit [-h] [-q Q_FIN] [-p Q_POINTS] [-n N_CORES] [-e EV_OP_ITERATIONS]
105105
{produce_eko,produce_eko_photon,evolve} [fit folder]
106106
107107
Note that with the now removed apfel-based version of `evolven3fit` the syntax was
@@ -125,11 +125,7 @@ def main():
125125
default=None,
126126
help="ev_op_iterations for the EXA theory. Overrides the settings given in the theory card.",
127127
)
128-
parser.add_argument(
129-
"--use-fhmruvv",
130-
action="store_true",
131-
help="Use the FHMRUVV N3LO splitting splitting functions",
132-
)
128+
133129
subparsers = parser.add_subparsers(title="actions", dest="actions")
134130
construct_eko_parser(subparsers)
135131
construct_eko_photon_parser(subparsers)
@@ -143,9 +139,8 @@ def main():
143139
if args.ev_op_iterations is not None:
144140
op_card_info["configs"]["ev_op_iterations"] = args.ev_op_iterations
145141

142+
# Here we do not allow any modification of the theory card, for the moment.
146143
theory_card_info = {}
147-
if args.use_fhmruvv:
148-
theory_card_info["use_fhmruvv"] = args.use_fhmruvv
149144

150145
if args.no_net:
151146
loader = Loader()

0 commit comments

Comments
 (0)