diff --git a/gstlal-inspiral/python/inspiral.py b/gstlal-inspiral/python/inspiral.py index 8f0bc210b54ad0d046553c3eb8519c39c8e086a7..f304606ba6c8c73dc5894a058ad5577713296fca 100644 --- a/gstlal-inspiral/python/inspiral.py +++ b/gstlal-inspiral/python/inspiral.py @@ -52,6 +52,12 @@ import bisect from collections import deque +try: + from fpconst import NaN +except ImportError: + # fpconst is not part of the standard library and might not be + # available + NaN = float("nan") import itertools import math import numpy @@ -671,6 +677,17 @@ class Data(object): # triggers, make sure that worked assert all(event.end in buf_seg for event in events) + # set all effective distances to NaN. + # gstlal_inspiral's effective distances are + # incorrect, and the PE codes require us to either + # provide correct effective distances or + # communicate to them that they are incorrect. + # they have explained that setting them to NaN is + # sufficient for the latter. + # FIXME: fix the effective distances + for event in events: + event.eff_dist = NaN + # Find max SNR sngles if events: max_snr_event = max(events, key = lambda t: t.snr)