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

Fix typo

parent 4d6b8889
No related branches found
No related tags found
No related merge requests found
......@@ -119,6 +119,8 @@ class ZTPlot(kp.Module):
self.index += 1
event_info = blob['EventInfo']
run_id = event_info.run_id[0]
if run_id != self.run_id:
self.run_id = run_id
......@@ -126,7 +128,6 @@ class ZTPlot(kp.Module):
hits = blob['Hits']
hits = self.calib.apply(hits)
event_info = blob['EventInfo']
n_triggered_dus = len(np.unique(hits[hits.triggered == True].du))
n_triggered_doms = len(np.unique(hits[hits.triggered == True].dom_id))
......
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