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

Fix colour range for pmt rates

parent 790fd1ee
No related branches found
No related tags found
No related merge requests found
......@@ -108,6 +108,7 @@ class PMTRates(kp.Module):
m = self.rates_matrix
m[m > self.highest_rate] = self.highest_rate
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.set_title("Mean PMT Rates (Monitoring Channel) for DetID-{} DU-{} "
......
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