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

Merge branch 'rm-fix-SelectiveCombineRawBank' into 'master'

Fix check for line decision in SelectiveCombineRawBankViewsToRawEvent

See merge request lhcb/LHCb!4250
parents 456b5c64 b8a60836
No related branches found
No related tags found
1 merge request!4250Fix check for line decision in SelectiveCombineRawBankViewsToRawEvent
Pipeline #6077082 passed
......@@ -95,14 +95,14 @@ public:
}
}
const auto& dec = m_decrep.get();
const auto& decReports = m_decrep.get();
// figure out the subset of containers to actually persist
DataObjIDColl containers;
for ( auto const& [k, rb] : m_map ) {
if ( this->msgLevel( MSG::DEBUG ) ) this->debug() << "line " << k << endmsg;
if ( !dec->hasDecisionName( k ) ) continue;
if ( !dec->decReport( k ) ) continue;
const LHCb::HltDecReport* decReport = decReports->decReport( k );
if ( !decReport || !decReport->decision() ) continue;
if ( this->msgLevel( MSG::DEBUG ) ) this->debug() << "got positive decision for line " << k << endmsg;
;
containers.insert( rb.begin(), rb.end() );
......
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