Skip to content

Commit

Permalink
restore commands
Browse files Browse the repository at this point in the history
  • Loading branch information
giacomomagni committed Feb 15, 2024
1 parent e7dbfb1 commit 29312c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/pineko/cli/fonll.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def fonll_tcards(theoryid, cfg):
raise TheoryCardError("The theorycard does not correspond to an FONLL scheme.")
fonll.dump_tcards(tcard, tcard_parent_path, theoryid)


@command.command("fonll_ekos")
@click.argument("theoryID", type=click.INT)
@click.argument("datasets", type=click.STRING, nargs=-1)
@click.option("--overwrite", is_flag=True, help="Allow files to be overwritten")
Expand Down Expand Up @@ -144,6 +144,7 @@ def fonll_ekos(theoryid, datasets, overwrite, cfg):
)


@command.command("fonll_fks")
@click.argument("theoryID", type=click.INT)
@click.argument("datasets", type=click.STRING, nargs=-1)
@click.option("--pdf", "-p", default=None, help="PDF set used for comparison")
Expand Down
2 changes: 1 addition & 1 deletion src/pineko/fonll.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import pineappl
import yaml

from . import configs, theory_card, parser
from . import configs, parser, theory_card

logger = logging.getLogger(__name__)

Expand Down

0 comments on commit 29312c9

Please sign in to comment.