From 7808cb11e1008b90767d6853c93030472d187f42 Mon Sep 17 00:00:00 2001 From: Alexander Pace Date: Wed, 5 Jun 2019 08:58:32 -0700 Subject: [PATCH] gstlal_inspiral_lvalert_uberplotter: last minute ninja edit to allow gracedb search specification. previously, hardcoded to 'allsky'. now: default is allsky, or specify with --search=.. --- gstlal-inspiral/bin/gstlal_inspiral_lvalert_uberplotter | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gstlal-inspiral/bin/gstlal_inspiral_lvalert_uberplotter b/gstlal-inspiral/bin/gstlal_inspiral_lvalert_uberplotter index 2972da2e4..e8633c0e0 100755 --- a/gstlal-inspiral/bin/gstlal_inspiral_lvalert_uberplotter +++ b/gstlal-inspiral/bin/gstlal_inspiral_lvalert_uberplotter @@ -89,6 +89,7 @@ def parse_command_line(): ) 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("--search", metavar = "gdbsearch", default="allsky", help = "Search specification of GraceDB uploads (default: %s)" % "allsky") 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).") @@ -188,9 +189,9 @@ def main(client=None): gracedb_client = GraceDb(options.gracedb_service_url) if options.testenv: - lvnodes = ['test_gstlal_allsky'] + lvnodes = ['test_gstlal_' + options.search] else: - lvnodes = ['cbc_gstlal_allsky'] + lvnodes = ['cbc_gstlal_' + options.search] # # start LVAlert listener loop: -- GitLab