From 8a8e51c15ec61e50e1e32a0ca5b71fdf758937a5 Mon Sep 17 00:00:00 2001 From: tlatorre Date: Mon, 30 Nov 2020 09:38:43 -0600 Subject: call get_events() with mc=True in submit-grid-jobs --- utils/submit-grid-jobs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'utils/submit-grid-jobs') diff --git a/utils/submit-grid-jobs b/utils/submit-grid-jobs index 8c1705c..e1c9b96 100755 --- a/utils/submit-grid-jobs +++ b/utils/submit-grid-jobs @@ -556,7 +556,10 @@ if __name__ == '__main__': else: check_call([zdab_cat,filename,"-o",output.name],stderr=f) - ev, fits = get_events([output.name], merge_fits=False) + + # Note: We call get_events() with mc=True even for regular data since + # we don't want to apply the retrigger cut. + ev, fits = get_events([output.name], merge_fits=False, mc=True) if len(ev) == 0: continue -- cgit