Skip to content

Commit

Permalink
now compute cuts_basic only by default (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
FaroutYLq committed Oct 4, 2023
1 parent 305162c commit e0a227c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion reprox/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def parse_args(description='nton reprocessing on midway',
)
parser.add_argument(
'--targets', '--target',
default=['event_ms_naive', 'cuts_basic', 'event_top_bottom_params', 'event_area_per_channel'],
default=['cuts_basic'],
nargs='*',
help='Target final data type to produce. Can be a list for multicore mode.'
)
Expand Down
2 changes: 1 addition & 1 deletion reprox/submit_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def submit_jobs(submit_kwargs: ty.Optional[dict] = None,
str,
ty.List[str],
ty.Tuple[str],
] = ('event_ms_naive', 'cuts_basic', 'event_top_bottom_params', 'event_area_per_channel'),
] = ('cuts_basic'),
break_if_n_jobs_left_running: ty.Union[None, int] = None,
clear_logs: bool = False,
sleep_s_when_queue_full: int = 60,
Expand Down

0 comments on commit e0a227c

Please sign in to comment.