Skip to content

Commit 2ffe33c

Browse files
mfasDasawenzel
authored andcommitted
[EMCAL-548] Reduce verbosity in digits to cell converter
1 parent 8393c60 commit 2ffe33c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Detectors/EMCAL/workflow/src/CellConverterSpec.cxx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@ void CellConverterSpec::run(framework::ProcessingContext& ctx)
8484
fitResults.setTime(0.);
8585
}
8686
} catch (CaloRawFitter::RawFitterError_t& fiterror) {
87-
LOG(error) << "Failure in raw fitting: " << CaloRawFitter::createErrorMessage(fiterror);
87+
if (fiterror != CaloRawFitter::RawFitterError_t::BUNCH_NOT_OK) {
88+
LOG(error) << "Failure in raw fitting: " << CaloRawFitter::createErrorMessage(fiterror);
89+
}
8890
}
8991

9092
mOutputCells.emplace_back(tower, fitResults.getAmp() * CONVADCGEV, fitResults.getTime(), channelData.mChanType);

0 commit comments

Comments
 (0)