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

Draw lines for each floor

parent 20d92310
No related branches found
No related tags found
No related merge requests found
......@@ -137,7 +137,13 @@ class ZTPlot(Module):
axes = [axes] if n_plots == 1 else axes.flatten()
dom_zs = self.calib.detector.pmts.pos_z[
(self.calib.detector.pmts.du == min(dus))
& (self.calib.detector.pmts.channel_id == 0)]
for ax, du in zip(axes, dus):
for z in dom_zs:
ax.axhline(z, lw=1, color='b', alpha=0.2)
du_hits = hits[hits.du == du]
trig_hits = du_hits[du_hits.triggered == True]
......
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