From 8ee275f05538ced7746563c98f2dd0612009a312 Mon Sep 17 00:00:00 2001
From: "chad.hanna" <crh184@psu.edu>
Date: Mon, 10 Dec 2018 06:15:49 -0800
Subject: [PATCH] far.py: tweak extinction model to allow slightly broader
 range of lrs

---
 gstlal-inspiral/python/far.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gstlal-inspiral/python/far.py b/gstlal-inspiral/python/far.py
index 7fcb5d36b6..b2f883d948 100644
--- a/gstlal-inspiral/python/far.py
+++ b/gstlal-inspiral/python/far.py
@@ -682,7 +682,7 @@ WHERE
 		# that have too small a count to have been well measured,
 		# and/or can't be modelled correctly by this fit anyway.
 		mode, = zl.argmax()
-		mask = (x < mode) | (zl.at_centres() < zl[mode,] - 9.)
+		mask = (x < mode) | (zl.at_centres() < zl[mode,] - 15.)
 		zl = numpy.ma.masked_array(zl.array, mask)
 		bg = numpy.ma.masked_array(bg, mask)
 
-- 
GitLab