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

Update webpage

parent 522fa979
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,7 @@ PLOTS = [['dom_activity', 'dom_rates'], ['pmt_rates', 'pmt_hrv'],
AHRS_PLOTS = [['yaw_calib'], ['pitch_calib'], ['roll_calib']]
TRIGGER_PLOTS = [['trigger_rates'], ['trigger_rates_lin']]
K40_PLOTS = [['intradom'], ['angular_k40rate_distribution']]
RTTC_PLOTS = [['rttc']]
@app.after_request
......@@ -36,6 +37,17 @@ def ahrs():
return render_template('plots.html', plots=AHRS_PLOTS)
@app.route('/rttc.html')
def rttc():
return render_template(
'plots.html',
plots=RTTC_PLOTS,
info=
"Cable Round Trip Time calculated from realtime data provided by the "
"Detector Manager.</ br>"
"RTTC = Cable_RTT - (TX_Slave + RX_Slave + TX_Master + RX_Master)")
@app.route('/k40.html')
def k40():
return render_template(
......
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