Skip to content
Snippets Groups Projects

RichSmartIDClustering - Degrade missing PD error message to debug

All threads resolved!
1 file
+ 4
5
Compare changes
  • Side-by-side
  • Inline
@@ -76,10 +76,7 @@ namespace Rich::Future {
// conditions input
KeyValue{"RichPDInfo", Detector::PDInfo::DefaultConditionKey}},
// output pixel cluster objects
{KeyValue{"RichPixelClustersLocation", Rich::PDPixelClusterLocation::Default}} ) {
// debug
// setProperty( "OutputLevel", MSG::VERBOSE );
}
{KeyValue{"RichPixelClustersLocation", Rich::PDPixelClusterLocation::Default}} ) {}
/// Initialize
StatusCode initialize() override {
@@ -94,6 +91,8 @@ namespace Rich::Future {
m_runClusterSplit[rich] =
( m_minClusSize[rich] > 1 || m_maxClusSize[rich] < LHCb::RichSmartID::MaPMT::TotalPixels );
}
// force enable debug/verbose messages
// return setProperty( "OutputLevel", MSG::VERBOSE );
} );
}
@@ -163,7 +162,7 @@ namespace Rich::Future {
mutable WarningCounter m_maxClusWarn{this, "Too many clusters. Processing aborted.", 3};
/// Null PD pointer
mutable ErrorCounter m_nullPD{this, "No DePD object found for channel ID"};
mutable DebugCounter m_nullPD{this, "No DePD object found for decoded channel ID"};
};
} // namespace Rich::Future
Loading