diff options
author | tlatorre <tlatorre@uchicago.edu> | 2020-11-30 09:38:43 -0600 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2020-11-30 09:38:43 -0600 |
commit | 8a8e51c15ec61e50e1e32a0ca5b71fdf758937a5 (patch) | |
tree | 749020f5459a4bb81e2af4b9017b7014e5121b28 /utils/submit-grid-jobs | |
parent | 344f43e5639239fb5490def3e0dac4132f4309ca (diff) | |
download | sddm-8a8e51c15ec61e50e1e32a0ca5b71fdf758937a5.tar.gz sddm-8a8e51c15ec61e50e1e32a0ca5b71fdf758937a5.tar.bz2 sddm-8a8e51c15ec61e50e1e32a0ca5b71fdf758937a5.zip |
call get_events() with mc=True in submit-grid-jobs
Diffstat (limited to 'utils/submit-grid-jobs')
-rwxr-xr-x | utils/submit-grid-jobs | 5 |
1 files changed, 4 insertions, 1 deletions
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 |