File tree 1 file changed +3
-8
lines changed
1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ def evolven3fit_new():
101
101
def main ():
102
102
parser = ArgumentParser (
103
103
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]
105
105
{produce_eko,produce_eko_photon,evolve} [fit folder]
106
106
107
107
Note that with the now removed apfel-based version of `evolven3fit` the syntax was
@@ -125,11 +125,7 @@ def main():
125
125
default = None ,
126
126
help = "ev_op_iterations for the EXA theory. Overrides the settings given in the theory card." ,
127
127
)
128
- parser .add_argument (
129
- "--use-fhmruvv" ,
130
- action = "store_true" ,
131
- help = "Use the FHMRUVV N3LO splitting splitting functions" ,
132
- )
128
+
133
129
subparsers = parser .add_subparsers (title = "actions" , dest = "actions" )
134
130
construct_eko_parser (subparsers )
135
131
construct_eko_photon_parser (subparsers )
@@ -143,9 +139,8 @@ def main():
143
139
if args .ev_op_iterations is not None :
144
140
op_card_info ["configs" ]["ev_op_iterations" ] = args .ev_op_iterations
145
141
142
+ # Here we do not allow any modification of the theory card, for the moment.
146
143
theory_card_info = {}
147
- if args .use_fhmruvv :
148
- theory_card_info ["use_fhmruvv" ] = args .use_fhmruvv
149
144
150
145
if args .no_net :
151
146
loader = Loader ()
You can’t perform that action at this time.
0 commit comments