From 20abf712cd78cf9e4f9adb70aad07e93dcbbb216 Mon Sep 17 00:00:00 2001 From: Tamas Gal <tgal@km3net.de> Date: Tue, 19 Feb 2019 18:50:24 +0100 Subject: [PATCH] Add info for K40 --- app/routes.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/app/routes.py b/app/routes.py index 035edd2..a827f66 100644 --- a/app/routes.py +++ b/app/routes.py @@ -38,7 +38,14 @@ def ahrs(): @app.route('/k40.html') def k40(): - return render_template('plots.html', plots=K40_PLOTS) + return render_template( + 'plots.html', + plots=K40_PLOTS, + info="The first plot shows the intra-DOM calibration. " + "y-axis: delta_t [ns], x-axis: cosine of angles. " + "The second plot the angular distribution of K40 rates. " + "y-axis: rate [Hz], x-axis: cosine of angles. " + "blue=before, red=after") @app.route('/trigger.html') -- GitLab