From 397b1cd668a418ff11b260b9ed20ba983183f062 Mon Sep 17 00:00:00 2001 From: Gareth S Cabourn Davies Date: Thu, 8 Aug 2024 13:30:24 +0100 Subject: [PATCH] Add IFO to fits plot title --- bin/live/pycbc_live_supervise_collated_trigger_fits | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/live/pycbc_live_supervise_collated_trigger_fits b/bin/live/pycbc_live_supervise_collated_trigger_fits index 3206f549c44..9dc1e77264e 100755 --- a/bin/live/pycbc_live_supervise_collated_trigger_fits +++ b/bin/live/pycbc_live_supervise_collated_trigger_fits @@ -270,7 +270,10 @@ def plot_fits( ] fits_plot_arguments += sv.dict_to_args(plot_fit_options) - title = "Fit parameters for pycbc-live, triggers from " + day_title_str + title = "Fit parameters for pycbc-live, triggers from {}, {}".format( + ifo, + day_title_str + ) if smoothed == True: title += ', smoothed' fits_plot_arguments += ['--title', title]