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

FIXME: Allow for the HltRoutingBits size to be 4 words

parent b954df9a
No related branches found
No related tags found
1 merge request!3518Extend HltLumiSummary decoding to Run 3 format
......@@ -60,7 +60,9 @@ bool HltRoutingBitsFilter::operator()( const LHCb::RawEvent& rawEvent ) const {
++m_unexpectedRawbanks;
return m_passOnError;
}
if ( banks[0]->size() != 3 * sizeof( unsigned int ) ) {
if ( banks[0]->size() != 3 * sizeof( unsigned int ) &&
banks[0]->size() != 4 * sizeof( unsigned int ) // FIXME: should we ever write the 4th word into HltRoutingBits?
) {
++m_unexpectedRawbanksSize;
return m_passOnError;
}
......
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