From e77f0ac1d0002efaf49edf3aec6afcda045eb8e0 Mon Sep 17 00:00:00 2001 From: "chad.hanna" <crh184@psu.edu> Date: Wed, 19 Sep 2018 03:43:35 -0700 Subject: [PATCH] streamthinca, far: REVERT ME: A temporary home for the network snr cut which undoes the LR version and puts it back into the ntuple compare func. Once we have ironed out the kinks in the LR version, this should be undone --- gstlal-inspiral/python/streamthinca.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gstlal-inspiral/python/streamthinca.py b/gstlal-inspiral/python/streamthinca.py index 4f40db3288..7648574a8f 100644 --- a/gstlal-inspiral/python/streamthinca.py +++ b/gstlal-inspiral/python/streamthinca.py @@ -252,6 +252,11 @@ class StreamThinca(object): # safely discard them. def ntuple_comparefunc(events, offset_vector, seg = segments.segment(self.last_boundary - self.coincidence_back_off, boundary - self.coincidence_back_off)): # False/0 = keep, True/non-0 = discard + # FIXME FIXME FIXME. Hardcodes a network SNR threshold + # of 7. This will be removed and a more permanent + # solution will be sought in the likelihood code + if sum(e.snr**2 for e in events) < 49.: + return True return min(event.end for event in events) not in seg # find coincs. -- GitLab