From d4ad1d7b6eff0c4fe0cecc3fd504e71592491849 Mon Sep 17 00:00:00 2001 From: Tamas Gal <tgal@km3net.de> Date: Fri, 4 Oct 2019 17:17:31 +0200 Subject: [PATCH] Remove error message when dom is not found in det --- scripts/pmt_rates.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/pmt_rates.py b/scripts/pmt_rates.py index 7afc8b5..cbf8cd9 100755 --- a/scripts/pmt_rates.py +++ b/scripts/pmt_rates.py @@ -137,7 +137,8 @@ class PMTRates(kp.Module): dom_id = tmch_data.dom_id if dom_id not in self.detector.doms: - self.log.error(f"DOM ID {dom_id} not in detector definition!") + # 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] -- GitLab