Skip to content
Snippets Groups Projects
Commit 14fbc972 authored by Rosen Matev's avatar Rosen Matev :sunny:
Browse files

Merge branch 'ganowak-UT-Warnings2Accumulators' into 'master'

Convert UT warnings and errors to accumulators.

See merge request !4274
parents d3dde1f7 d30383ea
No related branches found
No related tags found
1 merge request!4274Convert UT warnings and errors to accumulators.
Pipeline #6228965 passed
......@@ -152,6 +152,9 @@ private:
void validate( const Cache& roInfo ) const;
const Cache& getCache( const ReadoutInfo* roInfo ) const { return roInfo ? *roInfo : m_cache.get(); }
// warnings
mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_NoBoardFound{this, "Failed to find Board", 100};
};
using namespace LHCb;
......@@ -401,7 +404,7 @@ std::vector<LHCb::Detector::UT::ChannelID> UTReadoutTool::sectorIDs( const UTTel
if ( theBoard ) {
sectors.insert( sectors.begin(), theBoard->sectorIDs().begin(), theBoard->sectorIDs().end() );
} else {
Error( "Failed to find Board", StatusCode::SUCCESS, 100 ).ignore( /* AUTOMATICALLY ADDED FOR gaudi/Gaudi!763 */ );
++m_NoBoardFound;
}
return sectors;
}
......
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