Skip to content

Commit

Permalink
lp hists
Browse files Browse the repository at this point in the history
  • Loading branch information
rkansal47 committed Jan 29, 2025
1 parent 768aeda commit 6472c1c
Show file tree
Hide file tree
Showing 21 changed files with 3 additions and 1 deletion.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 3 additions & 1 deletion src/HHbbVV/scale_factors/accumulate_lp_hists.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
)
run_utils.add_bool_arg(parser, "resonant", default=False, help="resonant or nonresonant signals")
run_utils.add_bool_arg(parser, "ttsfs", default=False, help="TT samples or signal")
run_utils.add_bool_arg(parser, "print-missing", default=True, help="print missing samples")
args = parser.parse_args()

if args.resonant and args.ttsfs:
Expand Down Expand Up @@ -60,7 +61,8 @@
"lp_hist"
]
except FileNotFoundError as e:
print(e)
if args.print_missing:
print(e)
continue

# remove negatives
Expand Down

0 comments on commit 6472c1c

Please sign in to comment.