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

Fix type

parent 295e9045
No related branches found
No related tags found
No related merge requests found
...@@ -195,7 +195,7 @@ class ZTPlot(kp.Module): ...@@ -195,7 +195,7 @@ class ZTPlot(kp.Module):
trig trig
for trig, trig_check in (("MX", is_mxshower), ("3DM", is_3dmuon), for trig, trig_check in (("MX", is_mxshower), ("3DM", is_3dmuon),
("3DS", is_3dshower)) ("3DS", is_3dshower))
if trig_check(event_info.trigger_mask[0]) if trig_check(int(event_info.trigger_mask[0]))
]) ])
plt.suptitle( plt.suptitle(
......
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