diff --git a/gstlal-inspiral/bin/gstlal_inspiral b/gstlal-inspiral/bin/gstlal_inspiral index 07e7c20bff6d0ed87c479c43a8bc68dfa7c74143..6b4eac64bd8c67bb8e774aee541dc1f55ab141bc 100755 --- a/gstlal-inspiral/bin/gstlal_inspiral +++ b/gstlal-inspiral/bin/gstlal_inspiral @@ -808,10 +808,10 @@ for output_file_number, (svd_bank_url_dict, output_url, ranking_stat_output_url, ), pipeline = pipeline, rankingstat = rankingstat, - zerolag_rankingstatpdf_url = zerolag_rankingstat_pdf, ranking_stat_input_url = options.ranking_stat_input, ranking_stat_output_url = ranking_stat_output_url, rankingstatpdf_url = options.ranking_stat_pdf, + zerolag_rankingstatpdf_url = zerolag_rankingstat_pdf, likelihood_snapshot_interval = options.likelihood_snapshot_interval, thinca_interval = options.thinca_interval, min_log_L = options.min_log_L, diff --git a/gstlal-inspiral/python/inspiral.py b/gstlal-inspiral/python/inspiral.py index 6e322de6e272a21d6a8479cc3bbfb4f6c27008d8..58ac454b52165f36406d58c03d81bc3033715b46 100644 --- a/gstlal-inspiral/python/inspiral.py +++ b/gstlal-inspiral/python/inspiral.py @@ -898,9 +898,16 @@ class Data(object): return "%s-%s-%d-%d.%s" % ("".join(sorted(self.rankingstat.instruments)), description, start, end - start, extension) def __get_rankingstat_xmldoc(self): - # generate a coinc parameter distribution document. NOTE: - # likelihood ratio PDFs *are* included if they were present in - # the --likelihood-file that was loaded. + # generate a ranking statistic output document. NOTE: if + # we are in possession of ranking statistic PDFs then those + # are included in the output. this allows a single + # document to be uploaded to gracedb. in an online + # analysis, those PDFs come from the marginlization process + # and represent the full distribution of ranking statistics + # across the search, and include with them the analysis' + # total observed zero-lag ranking statistic histogram --- + # everything required to re-evaluate the FAP and FAR for an + # uploaded candidate. xmldoc = ligolw.Document() xmldoc.appendChild(ligolw.LIGO_LW()) process = ligolw_process.register_to_xmldoc(xmldoc, u"gstlal_inspiral", paramdict = {}, ifos = self.rankingstat.instruments) @@ -1328,9 +1335,6 @@ class Data(object): def snapshot_output_url(self, description, extension, verbose = False): with self.lock: coincs_document = self.coincs_document.get_another() - # We require the likelihood file to have the same name - # as the input to this program to accumulate statistics - # as we go fname = self.T050017_filename(description, extension) fname = os.path.join(subdir_from_T050017_filename(fname), fname) self.__write_output_url(url = fname, verbose = verbose)