Skip to content
Snippets Groups Projects
Commit bb44d58d authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Fix scaling

parent cfc5d777
No related branches found
No related tags found
No related merge requests found
......@@ -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))
......
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