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

Do not normalise

parent d28bcf86
No related branches found
No related tags found
No related merge requests found
......@@ -110,7 +110,7 @@ class PMTRates(kp.Module):
m[m < self.lowest_rate] = self.lowest_rate
m = m / self.highest_rate
fig, ax = plt.subplots(figsize=(10, 8))
ax.imshow(m, origin='lower', interpolation='none')
ax.imshow(m, origin='lower', interpolation='none', norm=False)
ax.set_title("Mean PMT Rates (Monitoring Channel) for DetID-{} DU-{} "
"- colours from {:.1f}kHz to {:.1f}kHz\n"
"PMTs ordered from top to bottom - {}".format(
......
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