Skip to content
Snippets Groups Projects
Commit 65c2ccb4 authored by Chad Hanna's avatar Chad Hanna
Browse files

lloidparts.py: change triggering window back to 1s for performance reasons (same as O2)

parent ab80a1e7
No related branches found
No related tags found
No related merge requests found
......@@ -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")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment