From 278924b4ba07a3f378ef1c539e110ec0847e072b Mon Sep 17 00:00:00 2001 From: Kipp Cannon <kipp.cannon@ligo.org> Date: Thu, 30 Nov 2017 17:17:08 +0900 Subject: [PATCH] FAPFAR: fix off-by-one-bin bug - in mapping ln L to false-alarm rates - because we are interested in counts *above* thresholds, not below, the count in a bin should be associated with the lower boundary of the bin, not the upper boundary --- gstlal-inspiral/python/far.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/gstlal-inspiral/python/far.py b/gstlal-inspiral/python/far.py index 63cdb9708d..462ca83cb1 100644 --- a/gstlal-inspiral/python/far.py +++ b/gstlal-inspiral/python/far.py @@ -635,7 +635,7 @@ class FAPFAR(object): # get noise model ranking stat values and event counts from # bins threshold_index = rankingstatpdf.noise_lr_lnpdf.bins[0][rate_normalization_lr_threshold] - ranks = rankingstatpdf.noise_lr_lnpdf.bins[0].upper()[threshold_index:] + ranks = rankingstatpdf.noise_lr_lnpdf.bins[0].lower()[threshold_index:] counts = rankingstatpdf.noise_lr_lnpdf.array[threshold_index:] assert not numpy.isnan(counts).any(), "background log likelihood ratio rates contain NaNs" assert (counts >= 0.).all(), "background log likelihood ratio rates contain negative values" @@ -653,11 +653,6 @@ class FAPFAR(object): # equal the actual observed number of candidates. ccdf = gstlalstats.poisson_p_not_0(ccdf) - # interpolator won't accept infinite co-ordinates so need - # to remove the last bin - ranks = ranks[:-1] - ccdf = ccdf[:-1] - # safety checks assert not numpy.isnan(ranks).any(), "log likelihood ratio co-ordinates contain NaNs" assert not numpy.isinf(ranks).any(), "log likelihood ratio co-ordinates are not all finite" -- GitLab