Skip to content
Snippets Groups Projects
Commit a90dae7d authored by Duncan Meacher's avatar Duncan Meacher
Browse files

far.py: fix bug with checking trigger snr against min snr

parent 5674a740
No related branches found
No related tags found
No related merge requests found
Pipeline #45248 passed
......@@ -251,7 +251,7 @@ class RankingStat(snglcoinc.LnLikelihoodRatioMixin):
# sampler never generates trials with SNRs below the
# threshold.
events = tuple(event for event in events if event.snr > self.snr_min)
events = tuple(event for event in events if event.snr >= self.snr_min)
assert len(events) >= self.min_instruments, "coincidence engine failed to respect minimum instrument count requirement for candidates: found candidate with %d < %d instruments" % (len(events), self.min_instruments)
#
......
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