Skip to content
Snippets Groups Projects
Commit 11c538f3 authored by Louis Henry's avatar Louis Henry Committed by Christopher Rob Jones
Browse files

Diminish verbosity of FT decoding

parent 5b4cfd88
No related branches found
No related tags found
3 merge requests!4553Fix UT Decoder,!4546Synchronize master branch with 2024-patches,!4536Diminish verbosity of FT decoding
Pipeline #7291369 passed
......@@ -70,22 +70,22 @@ private:
ServiceHandle<IDataProviderSvc> m_dataSvc{this, "DataService", "DetectorDataSvc", "The detector data service"};
mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_misordered{this, "Misordered large cluster"};
mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_misorderedLinks{this, "Misordered links"};
mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_misordered{this, "Misordered large cluster", 1};
mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_misorderedLinks{this, "Misordered links", 1};
mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_corrupt1{
this, "Possibly corrupt data (type 1). Ignoring the cluster."};
this, "Possibly corrupt data (type 1). Ignoring the cluster.", 1};
mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_corrupt2{
this, "Possibly corrupt data (type 2). Ignoring the cluster."};
mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_oddBank{this, "Odd bank."};
mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_emptyBank{this, "Totally empty bank."};
this, "Possibly corrupt data (type 2). Ignoring the cluster.", 1};
mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_oddBank{this, "Odd bank.", 1};
mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_emptyBank{this, "Totally empty bank.", 1};
mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_absurdBank{
this, "Bank containing more clusters than physically possible."};
this, "Bank containing more clusters than physically possible.", 1};
mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_wrongLocalLink{
this, "Local link larger than physical limit. Bank may be corrupted."};
this, "Local link larger than physical limit. Bank may be corrupted.", 1};
mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_wrongLink{
this, "Received data from a link that should be disabled. Fix the DB."};
this, "Received data from a link that should be disabled. Fix the DB.", 1};
mutable Gaudi::Accumulators::MsgCounter<MSG::WARNING> m_nonExistingModule{
this, "Skipping cluster(s) for non-existing module."};
this, "Skipping cluster(s) for non-existing module.", 1};
mutable Gaudi::Accumulators::Histogram<1, Gaudi::Accumulators::atomicity::full, float> m_oddBank_hist{
this,
"odd_bank",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment