pmt_rates.py 6.93 KiB
#!/usr/bin/env python
# coding=utf-8
# Filename: pmt_rates.py
# Author: Tamas Gal <tgal@km3net.de>
# vim: ts=4 sw=4 et
"""
Monitors PMT rates.
Usage:
pmt_rates.py [options]
pmt_rates.py (-h | --help)
Options:
-l LIGIER_IP The IP of the ligier [default: 127.0.0.1].
-p LIGIER_PORT The port of the ligier [default: 5553].
-u DU The DU to monitor [default: 1].
-d DET_ID Detector ID [default: 29].
-i INTERVAL Time interval for one pixel [default: 10].
-o PLOT_DIR The directory to save the plot [default: plots].
-h --help Show this screen.
"""
from datetime import datetime
import io
import os
from collections import defaultdict
import threading
import time
import numpy as np
import matplotlib
import matplotlib.colors as mcolors
matplotlib.use('Agg')
import km3pipe as kp
from km3pipe.io.daq import TMCHData
import matplotlib.pyplot as plt
import km3pipe.style as kpst
kpst.use("km3pipe")
__author__ = "Tamas Gal"
__email__ = "tgal@km3net.de"
VERSION = "1.0"
log = kp.logger.logging.getLogger("PMTrates")
class PMTRates(kp.Module):
def configure(self):
self.detector = self.require("detector")
self.du = self.require("du")
self.interval = self.get("interval", default=10)
self.plot_path = self.get("plot_path", default="plots")
self.filename = self.get("filename",
default=f"pmt_rates_du{self.du}.png")
self.lowest_rate = self.get("lowest_rate", default=5000)
self.highest_rate = self.get("highest_rate", default=15000)
self.hrv_ratio_threshold = self.get("hrv_ratio_threshold",
default=0.95)
self.max_x = 800
self.index = 0
self.rates = defaultdict(list)
self.rates_matrix = np.full((18 * 31, self.max_x), np.nan)
self.hrv = defaultdict(list)
self.hrv_matrix = np.full((18 * 31, self.max_x), np.nan)
self.lock = threading.Lock()
self.thread = threading.Thread(target=self.run, args=())
self.thread.daemon = True
self.thread.start()
def run(self):
interval = self.interval
while True:
time.sleep(interval)
now = datetime.now()
self.add_column()
self.update_plot()
with self.lock:
self.rates = defaultdict(list)
self.hrv = defaultdict(list)
delta_t = (datetime.now() - now).total_seconds()
remaining_t = self.interval - delta_t
log.info("Delta t: {} -> waiting for {}s".format(
delta_t, self.interval - delta_t))
if (remaining_t < 0):
log.error("Can't keep up with plot production. "
"Increase the interval!")
interval = 1
else:
interval = remaining_t
def add_column(self):
m_rates = np.roll(self.rates_matrix, -1, 1)
m_hrv = np.roll(self.hrv_matrix, -1, 1)
y_range = 18 * 31
mean_rates = np.full(y_range, np.nan)
hrv = np.full(y_range, np.nan)
for i in range(y_range):
if i in self.rates:
mean_rates[i] = np.mean(self.rates[i])
if i in self.hrv:
if np.mean(self.hrv[i]) > self.hrv_ratio_threshold:
hrv[i] = 1.0
m_rates[:, self.max_x - 1] = mean_rates
self.rates_matrix = m_rates
m_hrv[:, self.max_x - 1] = hrv
self.hrv_matrix = m_hrv
def update_plot(self):
filename = os.path.join(self.plot_path, self.filename)
self.log.debug("Updating plot at {}".format(filename))
now = time.time()
max_x = self.max_x
interval = self.interval
def xlabel_func(timestamp):
return datetime.utcfromtimestamp(timestamp).strftime("%H:%M")
norm = mcolors.Normalize(vmin=self.lowest_rate,
vmax=self.highest_rate,
clip=True)
fig, ax = plt.subplots(figsize=(10, 8))
ax.imshow(self.rates_matrix,
origin='lower',
interpolation='none',
norm=norm)
ax.imshow(self.hrv_matrix,
origin='lower',
interpolation='none',
cmap="bwr_r")
ax.set_title(
"Mean PMT Rates for DetID-{} DU-{} "
"- colours from {:.1f}kHz to {:.1f}kHz (HRV ratio threshold {})\n"
"PMTs ordered from top to bottom - {}".format(
self.detector.det_id, self.du, self.lowest_rate / 1000,
self.highest_rate / 1000, self.hrv_ratio_threshold,
datetime.utcnow()))
ax.set_xlabel("UTC time [{}s/px]".format(interval))
plt.yticks([i * 31 for i in range(18)],
["Floor {}".format(f) for f in range(1, 19)])
xtics_int = range(0, max_x, int(max_x / 10))
plt.xticks(
[i for i in xtics_int],
[xlabel_func(now - (max_x - i) * interval) for i in xtics_int])
fig.tight_layout()
plt.savefig(filename)
plt.close('all')
def process(self, blob):
try:
tmch_data = TMCHData(io.BytesIO(blob['CHData']))
except ValueError:
self.log.error("Could not parse binary data. Ignoring...")
return blob
dom_id = tmch_data.dom_id
if dom_id not in self.detector.doms:
# it might be the "base CLB"
self.log.debug(f"DOM ID {dom_id} not in detector definition!")
return blob
du, floor, _ = self.detector.doms[dom_id]
if du != self.du:
return blob
y_base = (floor - 1) * 31
if np.random.rand() > 0.99:
print(f"Rates for DOM ID {dom_id} DU {du}: {tmch_data.pmt_rates}")
hrv_flags = reversed("{0:b}".format(tmch_data.hrvbmp).zfill(32))
for channel_id, (rate, hrv_flag) in enumerate(
zip(tmch_data.pmt_rates, hrv_flags)):
idx = y_base + kp.hardware.ORDERED_PMT_IDS[channel_id]
with self.lock:
self.rates[idx].append(rate)
self.hrv[idx].append(int(hrv_flag))
return blob
def main():
from docopt import docopt
args = docopt(__doc__, version=VERSION)
det_id = int(args['-d'])
plot_path = args['-o']
ligier_ip = args['-l']
ligier_port = int(args['-p'])
du = int(args['-u'])
interval = int(args['-i'])
detector = kp.hardware.Detector(det_id=det_id)
pipe = kp.Pipeline(timeit=True)
pipe.attach(kp.io.ch.CHPump,
host=ligier_ip,
port=ligier_port,
tags='IO_MONIT',
timeout=60 * 60 * 24 * 7,
max_queue=2000)
pipe.attach(PMTRates,
detector=detector,
du=du,
interval=interval,
plot_path=plot_path)
pipe.drain()
if __name__ == '__main__':
main()