From bb44d58dbabb209073d98ba6dc8b11b07ca3bdf0 Mon Sep 17 00:00:00 2001 From: Tamas Gal <tgal@km3net.de> Date: Thu, 21 Feb 2019 00:32:43 +0100 Subject: [PATCH] Fix scaling --- scripts/rttc.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/rttc.py b/scripts/rttc.py index 4a58801..76e304d 100644 --- a/scripts/rttc.py +++ b/scripts/rttc.py @@ -122,14 +122,15 @@ def main(): wr_delta0 + wr_delta1 + wr_delta2 + wr_delta3) rttc.append(rttc_value) + + ax.plot(times, rttc, marker="X", markersize=6, linestyle='None') + rttc_median = baselines[du][0] rttc_std = baselines[du][1] ax.axhline(y=rttc_median + rttc_std, color='r', lw=1, ls='--') ax.axhline(y=rttc_median - rttc_std, color='r', lw=1, ls='--') ax.axhline(y=rttc_median, color='r', lw=2, ls='-') - ax.plot(times, rttc, marker="X", markersize=6, linestyle='None') - clb = clbmap.base(du) ax.set_title("RTTC for base CLB %s of DU-%d in Det ID %d" % (clb.upi, du, det_id)) -- GitLab