From ece98bfcf856818971522f9b8826af35a1a831fa Mon Sep 17 00:00:00 2001 From: Tamas Gal <tgal@km3net.de> Date: Fri, 22 Mar 2019 16:29:36 +0100 Subject: [PATCH] Fix type --- scripts/ztplot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ztplot.py b/scripts/ztplot.py index 24aca0f..719065b 100755 --- a/scripts/ztplot.py +++ b/scripts/ztplot.py @@ -195,7 +195,7 @@ class ZTPlot(kp.Module): trig for trig, trig_check in (("MX", is_mxshower), ("3DM", is_3dmuon), ("3DS", is_3dshower)) - if trig_check(event_info.trigger_mask[0]) + if trig_check(int(event_info.trigger_mask[0])) ]) plt.suptitle( -- GitLab