From d7f0162be3a6af7f054683c8104248e680e0aabd Mon Sep 17 00:00:00 2001 From: "P.-A. Loizeau" <p.-a.loizeau@gsi.de> Date: Mon, 4 Apr 2022 11:55:13 +0200 Subject: [PATCH] [mMUCH] In unp algo, do not print address warning for pulser digis --- reco/detectors/much/unpack/CbmMuchUnpackAlgo.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/reco/detectors/much/unpack/CbmMuchUnpackAlgo.cxx b/reco/detectors/much/unpack/CbmMuchUnpackAlgo.cxx index e0b34cfa1b..912d6e4fd7 100644 --- a/reco/detectors/much/unpack/CbmMuchUnpackAlgo.cxx +++ b/reco/detectors/much/unpack/CbmMuchUnpackAlgo.cxx @@ -543,7 +543,9 @@ void CbmMuchUnpackAlgo::processHitInfo(const stsxyter::Message& mess) fOutputVec.emplace_back(CbmMuchDigi(address, usRawAdc, ulTimeInNs)); } else { - LOG(warning) << "Digi not created due to generated address is " << address; + if (-7 != uFebIdx) { // + LOG(warning) << "Digi not created due to generated address is " << address; + } fuSkippMessNoValidAddress++; } /// Catch the pulser digis and either save them to their own output or drop them -- GitLab