From 65c2ccb425067dddad5b4e2fede4aa386506cb79 Mon Sep 17 00:00:00 2001 From: Chad Hanna <chad.hanna@ligo.org> Date: Tue, 28 May 2019 12:37:43 -0400 Subject: [PATCH] lloidparts.py: change triggering window back to 1s for performance reasons (same as O2) --- gstlal-inspiral/python/lloidparts.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gstlal-inspiral/python/lloidparts.py b/gstlal-inspiral/python/lloidparts.py index de887c9e37..d8a41a41bf 100644 --- a/gstlal-inspiral/python/lloidparts.py +++ b/gstlal-inspiral/python/lloidparts.py @@ -695,7 +695,8 @@ def mkLLOIDmulti(pipeline, detectors, banks, psd, psd_fft_length = 32, ht_gate_t # NOTE the snr min set in the diststats file is 3.5, # but 4 is about the lowest we can do stably for # coincidence online... - nsamps_window = max(max(bank.get_rates()) / 4, 256) # FIXME stupid hack + #nsamps_window = max(max(bank.get_rates()) / 4, 256) # FIXME stupid hack + nsamps_window = 1 * max(bank.get_rates()) if bank.bank_id not in itacac_dict: itacac_dict[bank.bank_id] = pipeparts.mkgeneric(pipeline, None, "lal_itacac") -- GitLab