Skip to content

Commit

Permalink
update usage message evolven3fit to mention changed syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyStegeman committed Mar 5, 2024
1 parent 6b16666 commit 800174d
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion n3fit/src/n3fit/scripts/evolven3fit.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,16 @@ def evolven3fit_new():


def main():
parser = ArgumentParser(description="evolven3fit - a script with tools to evolve PDF fits")
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]
{produce_eko,produce_eko_photon,evolve} [fit folder]
Note that with the now removed apfel-based version of `evolven3fit` the syntax was
`evolven3fit [fit folder] [number of replicas]`. This syntax is no longer supported in the
eko-based version of evolven3fit.
""",
)
parser.add_argument(
"-q", "--q-fin", type=float, default=None, help="Final q-value of the evolution"
)
Expand All @@ -121,6 +130,7 @@ def main():
construct_evolven3fit_parser(subparsers)

args = parser.parse_args()

op_card_info = {
"configs": {"n_integration_cores": args.n_cores, "ev_op_iterations": args.ev_op_iterations}
}
Expand Down

0 comments on commit 800174d

Please sign in to comment.