From 406d22a6b2242aee6f896e4fd8ffe97d0122d9c2 Mon Sep 17 00:00:00 2001 From: Chad Hanna <chad.hanna@ligo.org> Date: Tue, 17 Jul 2018 13:10:48 -0700 Subject: [PATCH] multirate_datasource: now that padding is zero by default, choose only segments less than 1 second for the pre whitening gating, this will be only the gate files --- gstlal/python/multirate_datasource.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gstlal/python/multirate_datasource.py b/gstlal/python/multirate_datasource.py index 603c3869b5..b501438678 100644 --- a/gstlal/python/multirate_datasource.py +++ b/gstlal/python/multirate_datasource.py @@ -194,11 +194,10 @@ def mkwhitened_multirate_src(pipeline, src, rates, instrument, psd = None, psd_f # FIXME NOTE The pre whitening vetoes are only applied via the # deglitcher if they are impulse like. What that means is that they - # have to be shorter than 2s (it is assumed that gate vetoes already - # have 1 second of padding which means the gate itself is 1 second or - # less). This should be revisted for O3. + # have to be shorter than 1s. + # This should be revisted for O3. if veto_segments is not None: - short_veto_segments = segments.segmentlist([seg for seg in veto_segments if abs(seg) <= 1.0]).protract(0.25).coalesce() + short_veto_segments = segments.segmentlist([seg for seg in veto_segments if abs(seg) < 1.0]).protract(0.25).coalesce() head = pipeparts.mkdeglitcher(pipeline, head, short_veto_segments) # -- GitLab