Skip to content
Snippets Groups Projects
Commit 0613169b authored by Kipp Cannon's avatar Kipp Cannon
Browse files

streamthinca: fix thinko in latency_tolerance feature

parent 15d54f98
No related branches found
No related tags found
No related merge requests found
Pipeline #347914 passed with warnings
......@@ -278,7 +278,7 @@ class StreamThinca(object):
achieves more efficient CPU use at the expense of longer
latencies.
"""
return self.time_slide_graph.push(instrument, events, t_complete) and (t_complete - self.time_slide_graph.age() >= self.latency_tolerance)
return self.time_slide_graph.push(instrument, events, t_complete) and (t_complete - self.time_slide_graph.age >= self.latency_tolerance)
def pull(self, rankingstat, fapfar = None, zerolag_rankingstatpdf = None, coinc_sieve = None, flush = False, cluster = False, cap_singles = False, FAR_trialsfactor = 1.0, template_id_time_map = None):
......
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