From 863ff6f6be84b33e48344bce041dc5c1aaeac5eb Mon Sep 17 00:00:00 2001 From: Tamas Gal <tgal@km3net.de> Date: Sun, 19 May 2019 10:43:01 +0200 Subject: [PATCH] Rename module --- scripts/online_reco.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/online_reco.py b/scripts/online_reco.py index 7e5d8ca..68d95ce 100644 --- a/scripts/online_reco.py +++ b/scripts/online_reco.py @@ -32,7 +32,7 @@ import km3pipe.style km3pipe.style.use('km3pipe') -class IO_OLINEDistributions(kp.Module): +class RecoPlotter(kp.Module): def configure(self): self.fontsize = 16 @@ -144,7 +144,7 @@ def main(): timeout=60 * 60 * 24 * 7, max_queue=2000) pipe.attach(kp.io.daq.DAQProcessor) - pipe.attach(IO_OLINEDistributions, plots_path=plots_path) + pipe.attach(RecoPlotter, plots_path=plots_path) pipe.drain() -- GitLab