Skip to content
Snippets Groups Projects
Commit dd1cd938 authored by Tomasz Bold's avatar Tomasz Bold
Browse files

changes following Tim review

parent b1111549
No related branches found
No related tags found
No related merge requests found
Pipeline #980706 passed with stage
in 0 seconds
......@@ -44,7 +44,9 @@ StatusCode RoIsUnpackingToolBase::decodeMapping( std::function< bool(const TrigC
m_thresholdToChainMapping[HLT::Identifier(th->name())].push_back( HLT::Identifier(chainName) );
ATH_MSG_DEBUG( "Associating " << chainName << " with threshold " << th->name() );
if ( thresholdCount > 1 ) {
const std::string legName = std::to_string(prefix)+"_"+chainName;
std::string legName = "000_" + chainName;
const std::string ps = std::to_string(prefix);
legName.replace(3-ps.size(), ps.size(), ps );
m_thresholdToChainMapping[HLT::Identifier(th->name())].push_back( HLT::Identifier(legName) );
ATH_MSG_INFO( "Associating " << legName << " with threshold " << th->name() );
}
......
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