Skip to content
Snippets Groups Projects
Commit 0af10eeb authored by Cody Messick's avatar Cody Messick Committed by chad.hanna
Browse files

lloidhandler: Fixed bug that caused eye candy to not update during times...

lloidhandler: Fixed bug that caused eye candy to not update during times without science-quality data
parent 3492a019
No related branches found
No related tags found
No related merge requests found
Pipeline #50796 passed with warnings
......@@ -1086,14 +1086,13 @@ class Handler(simplehandler.Handler):
events = real_events
# run stream thinca.
for absent_instrument in self.absent_instruments:
self.stream_thinca.push(absent_instrument, (), buf_timestamp)
for instrument in self.rankingstat.instruments:
if instrument in instruments or instrument in self.absent_instruments:
instruments |= self.absent_instruments
instruments |= self.rankingstat.instruments
for instrument in instruments:
if not self.stream_thinca.push(instrument, [event for event in events if event.ifo == instrument], buf_timestamp):
continue
self.stream_thinca.push(instrument, (), buf_timestamp)
if any(self.stream_thinca.push(instrument, [event for event in events if event.ifo == instrument], buf_timestamp) for instrument in instruments):
flushed_sngls = self.stream_thinca.pull(self.rankingstat, fapfar = self.fapfar, zerolag_rankingstatpdf = self.zerolag_rankingstatpdf, coinc_sieve = self.rankingstat.fast_path_cut_from_triggers, cluster = self.cluster)
self.coincs_document.commit()
......
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