From c9f469e616e5ab84db86e973934c5dec3a8cb1e3 Mon Sep 17 00:00:00 2001 From: Tamas Gal <tgal@km3net.de> Date: Fri, 19 Jul 2019 10:49:10 +0200 Subject: [PATCH] Remove minus sign from time residual. Closes #26 --- scripts/time_residuals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/time_residuals.py b/scripts/time_residuals.py index a1667c7..aa0c472 100644 --- a/scripts/time_residuals.py +++ b/scripts/time_residuals.py @@ -53,7 +53,7 @@ def main(): t_res = _df[_df.floor == floor].t_res t_res = t_res[np.abs(t_res) < 500] print(f" DU {du} floor {floor}: {len(t_res)} entries") - ax.hist(-t_res, + ax.hist(t_res, bins=100, histtype='step', lw=2, -- GitLab