From e7595f56c2871e9927c8748b7d87563cba0a0742 Mon Sep 17 00:00:00 2001 From: Tamas Gal <tgal@km3net.de> Date: Mon, 11 Feb 2019 13:41:10 +0100 Subject: [PATCH] Rename DOMHits to TriggerMap --- scripts/live_triggermap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/live_triggermap.py b/scripts/live_triggermap.py index ffd51f0..74dc418 100755 --- a/scripts/live_triggermap.py +++ b/scripts/live_triggermap.py @@ -54,7 +54,7 @@ from km3pipe.logger import logging lock = threading.Lock() -class DOMHits(Module): +class TriggerMap(Module): def configure(self): self.plots_path = self.require('plots_path') det_id = self.require('det_id') @@ -204,7 +204,7 @@ def main(): timeout=60 * 60 * 24 * 7, max_queue=2000) pipe.attach(kp.io.daq.DAQProcessor) - pipe.attach(DOMHits, det_id=det_id, plots_path=plots_path) + pipe.attach(TriggerMap, det_id=det_id, plots_path=plots_path) pipe.drain() -- GitLab