Skip to content
Snippets Groups Projects
Commit fbae6291 authored by Jean-Baptiste Bayle's avatar Jean-Baptiste Bayle
Browse files

Fix report job

parent bcdad96c
No related branches found
No related tags found
1 merge request!151Resolve "Report job raises an error"
Pipeline #224494 passed
......@@ -742,12 +742,12 @@ def plot_measurements(instru, pdf):
pdf.savefig()
plt.close()
# Time-domain TCB timer deviations
# Time-domain MOC time correlations
plt.figure(figsize=(16, 8))
for sc in instru.SCS:
plot_tseries(instru.t, instru.tcb_timer_deviations[sc], skip=0, label=sc)
plt.ylabel('Timer deviation [s]')
plt.title('Timer deviations from TCB')
plot_tseries(instru.t, instru.moc_time_correlations[sc], skip=0, label=sc)
plt.ylabel('Deviation [s]')
plt.title('MOC time correlations')
plt.legend()
pdf.savefig()
plt.close()
......
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