Skip to content
Snippets Groups Projects
Commit 57b8a5d7 authored by Madeline Wade's avatar Madeline Wade
Browse files

Final fix to --wings option for gstlal-calibration-0.3.3 release

parent 8e81e4bd
No related branches found
No related tags found
No related merge requests found
......@@ -756,9 +756,9 @@ if options.wings is not None:
def clip_wings(pad, obj, (wings, start, end)):
if isinstance(obj, gst.Buffer):
startts = lal.LIGOTimeGPS(0, obj.timestamp)
if startts >= (start + wings) and startts <= (end - wings):
if startts >= (start + wings) and startts < (end - wings):
return True
elif startts < (start + wings) or startts > (end - wings):
elif startts < (start + wings) or startts >= (end - wings):
return False
elif isinstance(obj, gst.Event):
return True
......
......@@ -3,7 +3,7 @@
#
AC_INIT([gstlal-calibration],[0.3.2],[gstlal-discuss@ligo.org],[gstlal-calibration])
AC_INIT([gstlal-calibration],[0.3.3],[gstlal-discuss@ligo.org],[gstlal-calibration])
AC_COPYRIGHT([Copyright (C) 2008--2015 Madeline Wade])
# a file whose existance can be used to use to check that we are in the
# top-level directory of the source tree
......
gstlal-calibration (0.3.3-1) unstable; urgency=low
* Another bug fix release for the --wings option (again)
-- Madeline Wade <madeline.wade@ligo.org> Mon, 20 July 2015 16:03:00 -0500
gstlal-calibration (0.3.2-1) unstable; urgency=low
* Another bug fix release for the --wings option
......
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