From 6bed8cbb23cb41cfd158eee5b8b8bed202f5bb60 Mon Sep 17 00:00:00 2001 From: "patrick.godwin" <patrick.godwin@ligo.org> Date: Wed, 29 Sep 2021 14:47:19 -0400 Subject: [PATCH] lloidhandler.py: fix indentation issue from rebase --- gstlal-inspiral/python/lloidhandler.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/gstlal-inspiral/python/lloidhandler.py b/gstlal-inspiral/python/lloidhandler.py index cc1b2dc8ba..6811f70683 100644 --- a/gstlal-inspiral/python/lloidhandler.py +++ b/gstlal-inspiral/python/lloidhandler.py @@ -1156,13 +1156,13 @@ class LLOIDTracker: # so that the "how many instruments were on test" # is aware of this buffer. snr_min = self.rankingstat.snr_min - for instrument in instruments: - # FIXME At the moment, empty triggers are added to - # inform the "how many instruments were on test", the - # correct thing to do is probably to add metadata to - # the buffer containing information about which - # instruments were on - self.rankingstat.denominator.triggerrates[instrument].add_ratebin(list(map(float, buf_seg[instrument])), len([event for event in events if event.snr >= snr_min and event.ifo == instrument and event.search == "signal_model"])) + for instrument in instruments: + # FIXME At the moment, empty triggers are added to + # inform the "how many instruments were on test", the + # correct thing to do is probably to add metadata to + # the buffer containing information about which + # instruments were on + self.rankingstat.denominator.triggerrates[instrument].add_ratebin(list(map(float, buf_seg[instrument])), len([event for event in events if event.snr >= snr_min and event.ifo == instrument and event.search == "signal_model"])) # FIXME At the moment, empty triggers are added to # inform the "how many instruments were on test", the -- GitLab