Skip to content
Snippets Groups Projects
Commit 23cf0cf5 authored by Alexander Pace's avatar Alexander Pace Committed by Patrick Godwin
Browse files

modified gstlal_inspiral_lvalert_uberplotter: background plotting is in good...

modified gstlal_inspiral_lvalert_uberplotter: background plotting is in good shape, issue remains of compatibility with gracedb client
parent c80fc351
No related branches found
No related tags found
No related merge requests found
Pipeline #70713 passed with warnings
#!/usr/bin/env python
#
# Copyright (C) 2012 Kipp Cannon, Chad Hanna, Drew Keppel
# Copyright (C) 2019 Alexander Pace, Kipp Cannon, Chad Hanna, Drew Keppel
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
......@@ -34,15 +34,26 @@ import logging
from optparse import OptionParser
import os
import sys
import time
# Error catching:
import traceback
os.environ["MPLCONFIGDIR"] = "/tmp"
# Add new LVALert API:
from ligo.lvalert import LVAlertClient
from ligo.lvalert import DEFAULT_SERVER as DEFAULT_LVALERT_URL
from glue.ligolw import lsctables
from glue.ligolw import utils as ligolw_utils
from ligo.gracedb import rest as gracedb
#from ligo.gracedb import rest as gracedb
from ligo.gracedb.rest import GraceDb
from ligo.gracedb.rest import DEFAULT_SERVICE_URL as DEFAULT_GRACEDB_URL
from lalinspiral.thinca import InspiralCoincDef
from lal import series
from gstlal import far
from gstlal import lvalert_helper
......@@ -76,10 +87,14 @@ def parse_command_line():
usage = "%prog [options] [graceID ...]",
description = "%prog generates a suite of plots displaying the data used to assess the significance of a candidate event in gracedb. This program can be run manually with one more more gracedb IDs provided on the command line. If no gracedb IDs are given on the command line, the tool assumes it is being run as an lvalert_listen client, and retrieves the candidate ID to process from a json blob ingested from stdin."
)
parser.add_option("--gracedb-service-url", metavar = "URL", default="%s" % gracedb.DEFAULT_SERVICE_URL, help = "GraceDb service url to upload to (default: %s)" % gracedb.DEFAULT_SERVICE_URL)
parser.add_option("--gracedb-service-url", metavar = "URL", default="%s" % DEFAULT_GRACEDB_URL, help = "GraceDb service url to upload to (default: %s)" % DEFAULT_GRACEDB_URL)
parser.add_option("--lvalert-server-url", metavar = "LVURL", default=DEFAULT_LVALERT_URL, help = "LVAlert Sever to listen to (default: %s)" % DEFAULT_LVALERT_URL)
parser.add_option("--max-snr", metavar = "SNR", type = "float", default = 200., help = "Set the upper bound of the SNR ranges in plots (default = 200).")
parser.add_option("--format", default = "png", help = "Set file format by selecting the extention (default = \"png\").")
parser.add_option("--output-path", metavar = "PATH", help = "Write local copies of the plots to this directory (default = don't).")
parser.add_option("--no-upload", action = "store_true", help = "Disable upload of plots to gracedb, e.g., for testing new plots.")
parser.add_option("--skip-404", action = "store_true", help = "Skip events that give 404 (file not found) errors (default is to abort).")
parser.add_option("--testenv", action = "store_true", help = "Listen to test nodes")
parser.add_option("--verbose", action = "store_true", help = "Be verbose.")
options, gid_list = parser.parse_args()
......@@ -123,12 +138,20 @@ def get_files(gracedb_client, graceid, ranking_data_filename = "ranking_data.xml
# RankingStat objects are never written to disk .finish()ed
rankingstat.finish()
# RankingStatPDF objects are never written to disk extincted
# RankingStatPDF objects are never written to disk extincted
fapfar = far.FAPFAR(rankingstatpdf.new_with_extinction())
return coinc_xmldoc, rankingstat, rankingstatpdf, fapfar
def get_psds(gracedb_client, graceid, filename = "psd.xml.gz", ignore_404 = False):
response = lvalert_helper.get_filename(gracedb_client, graceid, filename = filename, ignore_404 = ignore_404)
if response is None:
logging.info("No response retrieving psd.xml.gz")
return series.read_psd_xmldoc(ligolw_utils.load_fileobj(response, contenthandler = series.PSDContentHandler)[0])
def plot_snrchisq(instrument, rankingstat, plot_type, max_snr, snrchisq = None):
snr, chisq = snrchisq if snrchisq is not None else (None, None)
return plotfar.plot_snr_chi_pdf(rankingstat, instrument, plot_type, max_snr, event_snr = snr, event_chisq = chisq)
......@@ -143,103 +166,221 @@ def plot_snrchisq(instrument, rankingstat, plot_type, max_snr, snrchisq = None):
#
#
# command line
#
options, gid_list = parse_command_line()
if not gid_list:
lvalert_data = json.loads(sys.stdin.read())
logging.info("%(alert_type)s-type alert for event %(uid)s" % lvalert_data)
logging.info("lvalert data: %s" % repr(lvalert_data))
if "filename" in lvalert_data["data"]:
filename = os.path.split(urlparse.urlparse(lvalert_data["data"]["filename"]).path)[-1]
if filename not in (u"ranking_data.xml.gz",):
logging.info("filename is not 'ranking_data.xml.gz'. skipping")
sys.exit()
gid_list = [str(lvalert_data["uid"])]
else:
logging.info("json key filename not in lvalert data, skipping")
#
# connect to gracedb, loop over IDs
#
def main(client=None):
#
# Read in options from the command line:
#
options, gid_list = parse_command_line()
logging.info ("read command line options")
gracedb_client = gracedb.GraceDb(options.gracedb_service_url)
#
# Initiate the LVALert Client, and subscribe to relevant nodes
# I'm hardcoding this to cbc_gstlal_allsky for now.
#
client = LVAlertClient(server=options.lvalert_server_url)
for gid in gid_list:
#
# download candidate's data
# Connect to gracedb:
#
gracedb_client = GraceDb(options.gracedb_service_url)
coinc_xmldoc, rankingstat, rankingstatpdf, fapfar = get_files(gracedb_client, gid)
coinc_event_table = lsctables.CoincTable.get_table(coinc_xmldoc)
coinc_inspiral_table = lsctables.CoincInspiralTable.get_table(coinc_xmldoc)
if options.testenv:
lvnodes = ['test_gstlal_allsky']
else:
lvnodes = ['cbc_gstlal_allsky']
#
# start LVAlert listener loop:
#
try:
coinc_event, = coinc_event_table
coinc_inspiral, = coinc_inspiral_table
except ValueError:
raise ValueError("document does not contain exactly one candidate")
if [(row.search, row.search_coinc_type) for row in lsctables.CoincDefTable.get_table(coinc_xmldoc) if row.coinc_def_id == coinc_event.coinc_def_id] != [(InspiralCoincDef.search, InspiralCoincDef.search_coinc_type)]:
raise ValueError("candidate is not an inspiral<-->inspiral coincidence")
offsetvector = lsctables.TimeSlideTable.get_table(coinc_xmldoc).as_dict()[coinc_event.time_slide_id]
sngl_inspirals = dict((row.ifo, row) for row in lsctables.SnglInspiralTable.get_table(coinc_xmldoc))
logging.info("connecting to %s" % options.lvalert_server_url)
if client.connect():
logging.info("connected to %s" % options.lvalert_server_url)
else:
logging.info("could not connect to %s, exiting" % options.lvalert_server_url)
exit()
plotter = uber_plotter(gracedb_client, options)
client.process(block=False)
# Subscribe to lvnodes:
for n in lvnodes:
try:
client.subscribe(n)
logging.info("subscribed to node %s" % n)
except:
logging.info("Could not subscribe to node %s" % n)
logging.info("Listening for lvalerts.")
client.listen(plotter.process_alert)
while True: time.sleep(5)
except (KeyboardInterrupt, SystemExit):
logging.info("exit signal received, disconnecting from lvalert")
client.abort()
#
# the uber plotter class that responds to alerts:
#
#
# generate plots
#
class uber_plotter(object):
# initiate:
def __init__(self, gracedb_client, options):
self.opts = options
self.gracedb = gracedb_client
logging.info("uber_plotter class initiated")
# respond to an alert:
def process_alert(self, node=None, payload=None):
lvalert_data = json.loads(payload)
logging.info("Recieved LVAlert from node %s" % node)
logging.info("Alert Contents: %s" % lvalert_data)
gid = None
# check for the right filenames:
if "filename" in lvalert_data["data"]:
filename = os.path.split(urlparse.urlparse(lvalert_data["data"]["filename"]).path)[-1]
gid = str(lvalert_data["uid"])
if filename in (u"ranking_data.xml.gz",):
logging.info("ranking_data.xml.gz available for %s" % gid)
logging.info("generating ranking plots for %s" % gid)
try:
self.generate_ranking_plots(gid)
except Exception, err:
logging.info(traceback.print_exc())
elif filename in (u"psd.xml.gz",):
logging.info("psd.xml.gz available for %s" % gid)
logging.info("generating psd plots for %s" % gid)
try:
self.generate_psd_plots(gid)
except Exception, err:
logging.info(traceback.print_exc())
else:
logging.info("filename is not 'ranking_data.xml.gz' or 'psd.xml.gz'. skipping")
else:
logging.info("json key filename not in lvalert data, skipping")
# #
#---- Generate plots from ranking stat file ----#
# #
def generate_ranking_plots(self, gid=None):
#
# download candidate's data
#
coinc_xmldoc, rankingstat, rankingstatpdf, fapfar = get_files(gracedb_client=self.gracedb, graceid=gid)
coinc_event_table = lsctables.CoincTable.get_table(coinc_xmldoc)
coinc_inspiral_table = lsctables.CoincInspiralTable.get_table(coinc_xmldoc)
try:
coinc_event, = coinc_event_table
coinc_inspiral, = coinc_inspiral_table
except ValueError:
raise ValueError("document does not contain exactly one candidate")
if [(row.search, row.search_coinc_type) for row in lsctables.CoincDefTable.get_table(coinc_xmldoc) if row.coinc_def_id == coinc_event.coinc_def_id] != [(InspiralCoincDef.search, InspiralCoincDef.search_coinc_type)]:
raise ValueError("candidate is not an inspiral<-->inspiral coincidence")
offsetvector = lsctables.TimeSlideTable.get_table(coinc_xmldoc).as_dict()[coinc_event.time_slide_id]
sngl_inspirals = dict((row.ifo, row) for row in lsctables.SnglInspiralTable.get_table(coinc_xmldoc))
for plot_type in ["background_pdf", "injection_pdf", "zero_lag_pdf", "LR"]:
for instrument in rankingstat.instruments:
if instrument in sngl_inspirals:
# place marker on plot
fig = plot_snrchisq(instrument, rankingstat, plot_type, self.opts.max_snr, (sngl_inspirals[instrument].snr, sngl_inspirals[instrument].chisq))
else:
# no sngl for this instrument
fig = plot_snrchisq(instrument, rankingstat, plot_type, self.opts.max_snr)
filename = "%s_%s_%s_snrchi.png" % (gid, instrument, plot_type)
if not self.opts.no_upload:
lvalert_helper.upload_fig(fig, self.gracedb, gid, filename = filename, log_message = "%s SNR, chisq PDF" % instrument, tagname = "background")
if self.opts.output_path is not None:
filename = os.path.join(self.opts.output_path, filename)
logging.info("writing %s ..." % filename)
fig.savefig(filename)
fig = plotfar.plot_likelihood_ratio_ccdf(fapfar, (0., max(40., coinc_event.likelihood - coinc_event.likelihood % 5. + 5.)), ln_likelihood_ratio_markers = (coinc_event.likelihood,))
filename = "%s_likehoodratio_ccdf.png" % gid
if not self.opts.no_upload:
lvalert_helper.upload_fig(fig, self.gracedb, gid, filename = filename, log_message = "Likelihood Ratio CCDF", tagname = "background")
if self.opts.output_path is not None:
filename = os.path.join(self.opts.output_path, filename)
logging.info("writing %s ..." % filename)
fig.savefig(filename)
fig = plotfar.plot_horizon_distance_vs_time(rankingstat, (coinc_inspiral.end - 14400., coinc_inspiral.end), tref = coinc_inspiral.end)
filename = "%s_horizon_distances.png" % gid
if not self.opts.no_upload:
lvalert_helper.upload_fig(fig, self.gracedb, gid, filename = filename, log_message = "Horizon Distances", tagname = "psd")
if self.opts.output_path is not None:
filename = os.path.join(self.opts.output_path, filename)
logging.info("writing %s ..." % filename)
fig.savefig(filename)
fig = plotfar.plot_rates(rankingstat)
filename = "%s_rates.png" % gid
if not self.opts.no_upload:
lvalert_helper.upload_fig(fig, self.gracedb, gid, filename = filename, log_message = "Instrument combo rates", tagname = "background")
if self.opts.output_path is not None:
filename = os.path.join(self.opts.output_path, filename)
logging.info("writing %s ..." % filename)
fig.savefig(filename)
# #
#-------- Generate plots from psd file --------#
# #
def generate_psd_plots(self, gid=None):
psds = get_psds(gracedb_client=self.gracedb,
graceid=gid, ignore_404 = self.opts.skip_404)
if psds is None:
logging.info("Could not get_psds, exiting loop")
return
coinc_xmldoc = lvalert_helper.get_coinc_xmldoc(self.gracedb, gid)
#
# PSD plot
#
fig = plotpsd.plot_psds(psds, coinc_xmldoc, plot_width = 800)
fig.tight_layout()
filename = "%s_psd.%s" % (gid, self.opts.format)
if options.no_upload:
logging.info("writing %s ..." % filename)
fig.savefig(filename)
else:
lvalert_helper.upload_fig(fig, self.gracedb, gid, filename = filename, log_message = "strain spectral density plot", tagname = "psd")
#
# Cumulative SNRs plot
#
fig = plotpsd.plot_cumulative_snrs(psds, coinc_xmldoc, plot_width = 800)
fig.tight_layout()
filename = "%s_cumulative_snrs.%s" % (gid, self.opts.format)
if self.opts.no_upload:
logging.info("writing %s ..." % filename)
fig.savefig(filename)
else:
lvalert_helper.upload_fig(fig, self.gracedb, gid, filename = filename, log_message = "cumulative SNRs plot", tagname = "psd")
logging.info("finished processing psd plot for %s" % gid)
if __name__ == '__main__':
main(client=None)
for plot_type in ["background_pdf", "injection_pdf", "zero_lag_pdf", "LR"]:
for instrument in rankingstat.instruments:
if instrument in sngl_inspirals:
# place marker on plot
fig = plot_snrchisq(instrument, rankingstat, plot_type, options.max_snr, (sngl_inspirals[instrument].snr, sngl_inspirals[instrument].chisq))
else:
# no sngl for this instrument
fig = plot_snrchisq(instrument, rankingstat, plot_type, options.max_snr)
filename = "%s_%s_%s_snrchi.png" % (gid, instrument, plot_type)
if not options.no_upload:
lvalert_helper.upload_fig(fig, gracedb_client, gid, filename = filename, log_message = "%s SNR, chisq PDF" % instrument, tagname = "background")
if options.output_path is not None:
filename = os.path.join(options.output_path, filename)
logging.info("writing %s ..." % filename)
fig.savefig(filename)
fig = plotfar.plot_likelihood_ratio_ccdf(fapfar, (0., max(40., coinc_event.likelihood - coinc_event.likelihood % 5. + 5.)), ln_likelihood_ratio_markers = (coinc_event.likelihood,))
filename = "%s_likehoodratio_ccdf.png" % gid
if not options.no_upload:
lvalert_helper.upload_fig(fig, gracedb_client, gid, filename = filename, log_message = "Likelihood Ratio CCDF", tagname = "background")
if options.output_path is not None:
filename = os.path.join(options.output_path, filename)
logging.info("writing %s ..." % filename)
fig.savefig(filename)
fig = plotfar.plot_horizon_distance_vs_time(rankingstat, (coinc_inspiral.end - 14400., coinc_inspiral.end), tref = coinc_inspiral.end)
filename = "%s_horizon_distances.png" % gid
if not options.no_upload:
lvalert_helper.upload_fig(fig, gracedb_client, gid, filename = filename, log_message = "Horizon Distances", tagname = "psd")
if options.output_path is not None:
filename = os.path.join(options.output_path, filename)
logging.info("writing %s ..." % filename)
fig.savefig(filename)
fig = plotfar.plot_rates(rankingstat)
filename = "%s_rates.png" % gid
if not options.no_upload:
lvalert_helper.upload_fig(fig, gracedb_client, gid, filename = filename, log_message = "Instrument combo rates", tagname = "background")
if options.output_path is not None:
filename = os.path.join(options.output_path, filename)
logging.info("writing %s ..." % filename)
fig.savefig(filename)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment