From 10272edc644458c725aa0ee3fc5b1dd819f61085 Mon Sep 17 00:00:00 2001 From: Kipp Cannon <kipp.cannon@ligo.org> Date: Tue, 7 Nov 2017 22:40:21 -0600 Subject: [PATCH] snglinspiraltable.GSTLALSnglInspiral: simplify .end - use gpsproperty() from lsctables instead of implementing it from scratch --- gstlal-inspiral/python/snglinspiraltable.py | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/gstlal-inspiral/python/snglinspiraltable.py b/gstlal-inspiral/python/snglinspiraltable.py index 9d6c8923ee..e1072e6cb4 100644 --- a/gstlal-inspiral/python/snglinspiraltable.py +++ b/gstlal-inspiral/python/snglinspiraltable.py @@ -13,6 +13,7 @@ class GSTLALSnglInspiral(_snglinspiraltable.GSTLALSnglInspiral): process_id_type = ilwd.get_ilwdchar_class("process", "process_id") event_id_type = ilwd.get_ilwdchar_class("sngl_inspiral", "event_id") + end = lsctables.gpsproperty("end_time", "end_time_ns") spin1 = lsctables.SnglInspiral.spin1 spin2 = lsctables.SnglInspiral.spin2 @@ -22,18 +23,6 @@ class GSTLALSnglInspiral(_snglinspiraltable.GSTLALSnglInspiral): (other.ifo, other.end, other.mass1, other.mass2, other.spin1, other.spin2, other.search) ) - @property - def end(self): - return lal.LIGOTimeGPS(self.end_time, self.end_time_ns) - - @end.setter - def end(self, val): - if val is None: - self.end_time = self.end_time_ns = 0 - else: - self.end_time = val.gpsSeconds - self.end_time_ns = val.gpsNanoSeconds - @property def process_id(self): return self.process_id_type(self._process_id) -- GitLab