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

Fix getSourceID for HltLumiSummary (follow !4119 !4141)

without this HLT 1 HltLumiSummary banks were not selected
parent aafebad5
No related branches found
No related tags found
1 merge request!4153Fix getSourceID for HltLumiSummary (follow !4119 !4141)
......@@ -11,6 +11,7 @@
#pragma once
#include "Event/PackedData.h"
#include "Event/RawBank.h"
#include <GaudiKernel/GaudiException.h>
#include <GaudiKernel/StatusCode.h>
#include <GaudiKernel/StringKey.h>
#include <iomanip>
......@@ -108,6 +109,10 @@ namespace LHCb::Hlt::DAQ {
: b.version() == 2 ? SourceID{( static_cast<unsigned int>( b.sourceID() ) >> 13 )}
: SourceID{extract<v3::SourceIDMasks::Process>( b.sourceID() )};
}
template <>
inline SourceID getSourceID<RawBank::HltLumiSummary>( const RawBank& b ) {
return b.version() == 1 ? SourceID::Dummy : SourceID{extract<v3::SourceIDMasks::Process>( b.sourceID() )};
}
inline SourceID getSourceID( RawBank const& b ) {
switch ( b.type() ) {
......@@ -115,10 +120,12 @@ namespace LHCb::Hlt::DAQ {
return getSourceID<RawBank::HltSelReports>( b );
case RawBank::HltDecReports:
return getSourceID<RawBank::HltDecReports>( b );
case RawBank::HltLumiSummary:
return getSourceID<RawBank::HltLumiSummary>( b );
case RawBank::DstData:
return getSourceID<RawBank::DstData>( b );
default:
return SourceID::Dummy;
throw GaudiException( "Raw bank type " + b.typeName() + " not known", __PRETTY_FUNCTION__, StatusCode::FAILURE );
}
}
......
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