|
ATLAS Offline Software
|
Algorithm calling tools to convert L1 ByteStream into xAOD collections.
More...
#include <L1TriggerByteStreamDecoderAlg.h>
|
| L1TriggerByteStreamDecoderAlg (const std::string &name, ISvcLocator *svcLoc) |
| Standard constructor. More...
|
|
virtual StatusCode | initialize () override |
|
virtual StatusCode | start () override |
|
virtual StatusCode | finalize () override |
|
virtual StatusCode | execute (const EventContext &eventContext) const override |
|
virtual StatusCode | sysInitialize () override |
| Override sysInitialize. More...
|
|
virtual bool | isClonable () const override |
| Specify if the algorithm is clonable. More...
|
|
virtual unsigned int | cardinality () const override |
| Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant. More...
|
|
virtual StatusCode | sysExecute (const EventContext &ctx) override |
| Execute an algorithm. More...
|
|
virtual const DataObjIDColl & | extraOutputDeps () const override |
| Return the list of extra output dependencies. More...
|
|
virtual bool | filterPassed (const EventContext &ctx) const |
|
virtual void | setFilterPassed (bool state, const EventContext &ctx) const |
|
ServiceHandle< StoreGateSvc > & | evtStore () |
| The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
const ServiceHandle< StoreGateSvc > & | evtStore () const |
| The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
const ServiceHandle< StoreGateSvc > & | detStore () const |
| The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
virtual StatusCode | sysStart () override |
| Handle START transition. More...
|
|
virtual std::vector< Gaudi::DataHandle * > | inputHandles () const override |
| Return this algorithm's input handles. More...
|
|
virtual std::vector< Gaudi::DataHandle * > | outputHandles () const override |
| Return this algorithm's output handles. More...
|
|
Gaudi::Details::PropertyBase & | declareProperty (Gaudi::Property< T > &t) |
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleKey &hndl, const std::string &doc, const SG::VarHandleKeyType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleBase &hndl, const std::string &doc, const SG::VarHandleType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleKeyArray &hndArr, const std::string &doc, const SG::VarHandleKeyArrayType &) |
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, T &property, const std::string &doc, const SG::NotHandleType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, T &property, const std::string &doc="none") |
| Declare a new Gaudi property. More...
|
|
void | updateVHKA (Gaudi::Details::PropertyBase &) |
|
MsgStream & | msg () const |
|
MsgStream & | msg (const MSG::Level lvl) const |
|
bool | msgLvl (const MSG::Level lvl) const |
|
|
StatusCode | filterRobs (const IROBDataProviderSvc::VROBFRAG &in, IROBDataProviderSvc::VROBFRAG &out, const std::vector< uint32_t > &ids, std::string_view toolName, const EventContext &eventContext) const |
| Copy over ROBFragment pointers from in to out for ROBs with IDs from the ids list. More...
|
|
StatusCode | checkRobs (const IROBDataProviderSvc::VROBFRAG &robs, std::string_view toolName, const EventContext &eventContext) const |
| Check ROB status word and report if different from zero. More...
|
|
Gaudi::Details::PropertyBase & | declareGaudiProperty (Gaudi::Property< T > &hndl, const SG::VarHandleKeyType &) |
| specialization for handling Gaudi::Property<SG::VarHandleKey> More...
|
|
Gaudi::Details::PropertyBase & | declareGaudiProperty (Gaudi::Property< T > &hndl, const SG::VarHandleKeyArrayType &) |
| specialization for handling Gaudi::Property<SG::VarHandleKeyArray> More...
|
|
Gaudi::Details::PropertyBase & | declareGaudiProperty (Gaudi::Property< T > &hndl, const SG::VarHandleType &) |
| specialization for handling Gaudi::Property<SG::VarHandleBase> More...
|
|
Gaudi::Details::PropertyBase & | declareGaudiProperty (Gaudi::Property< T > &t, const SG::NotHandleType &) |
| specialization for handling everything that's not a Gaudi::Property<SG::VarHandleKey> or a <SG::VarHandleKeyArray> More...
|
|
Algorithm calling tools to convert L1 ByteStream into xAOD collections.
Definition at line 20 of file L1TriggerByteStreamDecoderAlg.h.
◆ StoreGateSvc_t
◆ ROBCheckBehaviour
◆ L1TriggerByteStreamDecoderAlg()
L1TriggerByteStreamDecoderAlg::L1TriggerByteStreamDecoderAlg |
( |
const std::string & |
name, |
|
|
ISvcLocator * |
svcLoc |
|
) |
| |
◆ cardinality()
unsigned int AthReentrantAlgorithm::cardinality |
( |
| ) |
const |
|
overridevirtualinherited |
Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.
Override this to return 0 for reentrant algorithms.
Override this to return 0 for reentrant algorithms.
Definition at line 55 of file AthReentrantAlgorithm.cxx.
◆ checkRobs()
Check ROB status word and report if different from zero.
Definition at line 239 of file L1TriggerByteStreamDecoderAlg.cxx.
246 std::string corruptedFractionName{
"CorruptedROBFraction_"};
247 std::string errorFractionName{
"ErroneousROBFraction_"};
248 corruptedFractionName.append(toolName);
249 errorFractionName.append(toolName);
250 FractionPerLBNMonitor monCorruptedFraction{std::move(corruptedFractionName), eventContext.eventID().lumi_block(),
static_cast<float>(
robs.size()),
m_monTool};
251 FractionPerLBNMonitor monErrorFraction{std::move(errorFractionName), eventContext.eventID().lumi_block(),
static_cast<float>(
robs.size()),
m_monTool};
261 sc = StatusCode::FAILURE;
268 ++monCorruptedFraction;
269 const uint32_t id{rob->rob_source_id()};
270 std::string hexRobId = u32toHexString(
id);
276 std::ostringstream
ss;
277 ss <<
"ROBFragment with ID " << hexRobId <<
" (" << eformat::helper::SourceIdentifier(
id).human()
278 <<
") requested by " << toolName <<
" has corrupted data with ";
279 printRobProblems(
ss, rob);
285 const uint32_t id{rob->rob_source_id()};
286 std::string hexRobId = u32toHexString(
id);
292 std::ostringstream
ss;
293 ss <<
"ROBFragment with ID " << hexRobId <<
" (" << eformat::helper::SourceIdentifier(
id).human()
294 <<
") requested by " << toolName <<
" has non-zero status 0x" << std::hex << rob->status()[0] << std::dec;
◆ declareGaudiProperty() [1/4]
specialization for handling Gaudi::Property<SG::VarHandleKeyArray>
Definition at line 170 of file AthCommonDataStore.h.
175 hndl.documentation());
◆ declareGaudiProperty() [2/4]
specialization for handling Gaudi::Property<SG::VarHandleKey>
Definition at line 156 of file AthCommonDataStore.h.
161 hndl.documentation());
◆ declareGaudiProperty() [3/4]
specialization for handling Gaudi::Property<SG::VarHandleBase>
Definition at line 184 of file AthCommonDataStore.h.
189 hndl.documentation());
◆ declareGaudiProperty() [4/4]
◆ declareProperty() [1/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
hndl | Object holding the property value. |
doc | Documentation string for the property. |
This is the version for types that derive from SG::VarHandleBase
. The property value object is put on the input and output lists as appropriate; then we forward to the base class.
Definition at line 245 of file AthCommonDataStore.h.
250 this->declare(hndl.
vhKey());
251 hndl.
vhKey().setOwner(
this);
◆ declareProperty() [2/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
hndl | Object holding the property value. |
doc | Documentation string for the property. |
This is the version for types that derive from SG::VarHandleKey
. The property value object is put on the input and output lists as appropriate; then we forward to the base class.
Definition at line 221 of file AthCommonDataStore.h.
◆ declareProperty() [3/6]
◆ declareProperty() [4/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
property | Object holding the property value. |
doc | Documentation string for the property. |
This is the generic version, for types that do not derive from SG::VarHandleKey
. It just forwards to the base class version of declareProperty
.
Definition at line 333 of file AthCommonDataStore.h.
◆ declareProperty() [5/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
property | Object holding the property value. |
doc | Documentation string for the property. |
This dispatches to either the generic declareProperty
or the one for VarHandle/Key/KeyArray.
Definition at line 352 of file AthCommonDataStore.h.
◆ declareProperty() [6/6]
◆ detStore()
◆ evtStore() [1/2]
◆ evtStore() [2/2]
◆ execute()
StatusCode L1TriggerByteStreamDecoderAlg::execute |
( |
const EventContext & |
eventContext | ) |
const |
|
overridevirtual |
Definition at line 160 of file L1TriggerByteStreamDecoderAlg.cxx.
170 std::string toolName{decoderTool->name().substr(decoderTool->name().rfind(
'.')+1)};
178 ATH_CHECK(decoderTool->convertFromBS(vrobfForTool, eventContext));
180 ATH_MSG_ERROR(
"Exception in " << toolName <<
"::convertFromBS: " << ex.what());
181 return StatusCode::FAILURE;
188 return StatusCode::SUCCESS;
◆ extraDeps_update_handler()
Add StoreName to extra input/output deps as needed.
use the logic of the VarHandleKey to parse the DataObjID keys supplied via the ExtraInputs and ExtraOuputs Properties to add the StoreName if it's not explicitly given
◆ extraOutputDeps()
const DataObjIDColl & AthReentrantAlgorithm::extraOutputDeps |
( |
| ) |
const |
|
overridevirtualinherited |
Return the list of extra output dependencies.
This list is extended to include symlinks implied by inheritance relations.
Definition at line 79 of file AthReentrantAlgorithm.cxx.
86 return Algorithm::extraOutputDeps();
◆ filterPassed()
virtual bool AthReentrantAlgorithm::filterPassed |
( |
const EventContext & |
ctx | ) |
const |
|
inlinevirtualinherited |
◆ filterRobs()
Copy over ROBFragment pointers from in
to out
for ROBs with IDs from the ids
list.
- Parameters
-
[in] | in | The input vector of ROBFragments |
[out] | out | The output vector of filtered ROBFragments |
[in] | ids | A list of ROB IDs to filter from in to out |
[in] | toolName | Name of the tool requesting the ROB IDs - used for log messages |
- Returns
- FAILURE if any requested ROB IDs are missing from the
in
vector, otherwise SUCCESS
Definition at line 192 of file L1TriggerByteStreamDecoderAlg.cxx.
199 return (std::find(ids.cbegin(),ids.cend(),rob->source_id()) != ids.cend());
202 std::string missingFractionName{
"MissingROBFraction_"};
203 missingFractionName.append(toolName);
204 FractionPerLBNMonitor monMissingFraction{std::move(missingFractionName), eventContext.eventID().lumi_block(),
static_cast<float>(
ids.size()),
m_monTool};
207 if (
ids.size() !=
out.size()) {
211 if (std::find_if(
out.cbegin(),
out.cend(),eqRobId) ==
out.cend()) {
212 ++monMissingFraction;
213 std::string hexRobId = u32toHexString(
id);
215 ATH_MSG_DEBUG(
"Missing ROBFragment with ID " << hexRobId <<
" ("
216 << eformat::helper::SourceIdentifier(
id).human() <<
") requested by " << toolName
217 <<
" but it is allowed to be missing due to the detector mask or the "
222 ATH_MSG_ERROR(
"Missing ROBFragment with ID " << hexRobId <<
" ("
223 << eformat::helper::SourceIdentifier(
id).human() <<
") requested by " << toolName);
231 return StatusCode::FAILURE;
234 ATH_MSG_DEBUG(
"Found " <<
out.size() <<
" out of " <<
ids.size() <<
" ROBFragments requested by " << toolName);
235 return StatusCode::SUCCESS;
◆ finalize()
StatusCode L1TriggerByteStreamDecoderAlg::finalize |
( |
| ) |
|
|
overridevirtual |
◆ initialize()
StatusCode L1TriggerByteStreamDecoderAlg::initialize |
( |
| ) |
|
|
overridevirtual |
Definition at line 76 of file L1TriggerByteStreamDecoderAlg.cxx.
87 const std::vector<uint32_t>&
ids = decoderTool->robIds();
104 <<
"\" but needs to be one of [\"None\", \"Warning\", \"Error\", \"Fatal\"]");
105 return StatusCode::FAILURE;
107 return StatusCode::SUCCESS;
113 return StatusCode::SUCCESS;
◆ inputHandles()
Return this algorithm's input handles.
We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.
◆ isClonable()
bool AthReentrantAlgorithm::isClonable |
( |
| ) |
const |
|
overridevirtualinherited |
Specify if the algorithm is clonable.
Reentrant algorithms are clonable.
Reimplemented in Simulation::BeamEffectsAlg, InDet::SiTrackerSpacePointFinder, InDet::SCT_Clusterization, InDet::SiSPSeededTrackFinder, SCTRawDataProvider, InDet::GNNSeedingTrackMaker, SCT_PrepDataToxAOD, RoIBResultToxAOD, SCT_CablingCondAlgFromCoraCool, SCT_ReadCalibDataTestAlg, SCT_CablingCondAlgFromText, InDet::SiSPGNNTrackMaker, SCT_ReadCalibChipDataTestAlg, SCT_TestCablingAlg, SCT_ConfigurationConditionsTestAlg, ITkPixelCablingAlg, ITkStripCablingAlg, SCTEventFlagWriter, SCT_ConditionsSummaryTestAlg, SCT_ModuleVetoTestAlg, SCT_MonitorConditionsTestAlg, SCT_LinkMaskingTestAlg, SCT_MajorityConditionsTestAlg, SCT_RODVetoTestAlg, SCT_SensorsTestAlg, SCT_TdaqEnabledTestAlg, SCT_SiliconConditionsTestAlg, SCTSiLorentzAngleTestAlg, SCT_ByteStreamErrorsTestAlg, SCT_ConditionsParameterTestAlg, SCT_FlaggedConditionTestAlg, SCT_StripVetoTestAlg, SCT_RawDataToxAOD, and SCTSiPropertiesTestAlg.
Definition at line 44 of file AthReentrantAlgorithm.cxx.
◆ msg() [1/2]
◆ msg() [2/2]
◆ msgLvl()
◆ outputHandles()
Return this algorithm's output handles.
We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.
◆ renounce()
◆ renounceArray()
◆ setFilterPassed()
virtual void AthReentrantAlgorithm::setFilterPassed |
( |
bool |
state, |
|
|
const EventContext & |
ctx |
|
) |
| const |
|
inlinevirtualinherited |
◆ start()
StatusCode L1TriggerByteStreamDecoderAlg::start |
( |
| ) |
|
|
overridevirtual |
Definition at line 119 of file L1TriggerByteStreamDecoderAlg.cxx.
122 return StatusCode::SUCCESS;
130 const eformat::helper::DetectorMask detectorMask{
metadata->getDetectorMask(),
metadata->getDetectorMask2()};
134 const eformat::helper::SourceIdentifier sid{robId};
135 if (!detectorMask.is_set(sid.subdetector_id())) {
137 ATH_MSG_WARNING(
"ROB ID 0x" << MSG::hex << robId << MSG::dec <<
" was requested for decoding, "
138 <<
"but the SubDetector " << sid.human_detector() <<
" is disabled in "
139 <<
"the detector mask. Will not require this ROB ID to be present in every event.");
144 return StatusCode::SUCCESS;
◆ sysExecute()
StatusCode AthReentrantAlgorithm::sysExecute |
( |
const EventContext & |
ctx | ) |
|
|
overridevirtualinherited |
Execute an algorithm.
We override this in order to work around an issue with the Algorithm base class storing the event context in a member variable that can cause crashes in MT jobs.
Definition at line 67 of file AthReentrantAlgorithm.cxx.
69 return Gaudi::Algorithm::sysExecute (ctx);
◆ sysInitialize()
StatusCode AthReentrantAlgorithm::sysInitialize |
( |
| ) |
|
|
overridevirtualinherited |
Override sysInitialize.
Override sysInitialize from the base class.
Loop through all output handles, and if they're WriteCondHandles, automatically register them and this Algorithm with the CondSvc
Scan through all outputHandles, and if they're WriteCondHandles, register them with the CondSvc
Reimplemented from AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >.
Reimplemented in InputMakerBase, and HypoBase.
Definition at line 96 of file AthReentrantAlgorithm.cxx.
107 if ( cs.retrieve().isFailure() ) {
109 return StatusCode::SUCCESS;
111 if (cs->regHandle(
this,*
h).isFailure()) {
112 sc = StatusCode::FAILURE;
113 ATH_MSG_ERROR(
"unable to register WriteCondHandle " <<
h->fullKey()
◆ sysStart()
Handle START transition.
We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.
◆ updateVHKA()
◆ m_bsMetaDataContRHKey
Initial value:{
this, "ByteStreamMetadataRHKey", "InputMetaDataStore+ByteStreamMetadata",
"Key of the ByteStreamMetadataContainer to retrieve the detector mask"
}
StoreGate key for the ByteStreamMetadata container to retrieve detector mask.
Definition at line 45 of file L1TriggerByteStreamDecoderAlg.h.
◆ m_decoderTools
Initial value:{
this, "DecoderTools", {}, "Array of tools performing the decoding work"}
Tool performing the decoding work.
Definition at line 34 of file L1TriggerByteStreamDecoderAlg.h.
◆ m_detStore
◆ m_evtStore
◆ m_extendedExtraObjects
DataObjIDColl AthReentrantAlgorithm::m_extendedExtraObjects |
|
privateinherited |
Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
Empty if no symlinks were found.
Definition at line 153 of file AthReentrantAlgorithm.h.
◆ m_maybeMissingRobs
std::set<uint32_t> L1TriggerByteStreamDecoderAlg::m_maybeMissingRobs |
|
private |
◆ m_maybeMissingRobsProp
Gaudi::Property<std::vector<uint32_t> > L1TriggerByteStreamDecoderAlg::m_maybeMissingRobsProp |
|
private |
Initial value:{
this, "MaybeMissingROBs", {},
"List of ROB IDs allowed to be missing. If a decoder tool requests one of these "
"and it is not available in the event, no errors will be reported",
"appendList<T>"
}
Allow some ROBs to be missing.
Definition at line 50 of file L1TriggerByteStreamDecoderAlg.h.
◆ m_monTool
◆ m_robDataProviderSvc
Initial value:{
this, "ROBDataProviderSvc", "ROBDataProviderSvc", "ROB data provider"}
ROBDataProvider service handle.
Definition at line 37 of file L1TriggerByteStreamDecoderAlg.h.
◆ m_robFormatCheck
◆ m_robFormatCheckLevel
Gaudi::Property<std::string> L1TriggerByteStreamDecoderAlg::m_robFormatCheckLevel |
|
private |
Initial value:{
this, "ROBFormatCheckLevel", "Fatal",
"ROB format (data consistency) check behaviour. Can be 'None' - format is not checked, 'Warning' - only print warnings "
"for corrupted data, 'Error' - only print errors for corrupted data, 'Fatal' - return FAILURE "
"from the algorithm if corrupted data are found. MaybeMissingROBs are always exempt from this check."
}
Set behaviour for corrupted ROB data.
Definition at line 64 of file L1TriggerByteStreamDecoderAlg.h.
◆ m_robIds
std::vector<uint32_t> L1TriggerByteStreamDecoderAlg::m_robIds |
|
private |
◆ m_robStatusCheck
◆ m_robStatusCheckLevel
Gaudi::Property<std::string> L1TriggerByteStreamDecoderAlg::m_robStatusCheckLevel |
|
private |
Initial value:{
this, "ROBStatusCheckLevel", "Warning",
"ROB status word check behaviour. Can be 'None' - status is not checked, 'Warning' - only print warnings "
"for non-zero status, 'Error' - only print errors for non-zero status, 'Fatal' - return FAILURE "
"from the algorithm if non-zero status is found. MaybeMissingROBs are always exempt from this check."
}
Set behaviour for non-zero ROB status words.
Definition at line 57 of file L1TriggerByteStreamDecoderAlg.h.
◆ m_varHandleArraysDeclared
◆ m_vhka
The documentation for this class was generated from the following files:
Group
Properties of a chain group.
std::string find(const std::string &s)
return a remapped string
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T > &t)
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce(T &h)
ROBCheckBehaviour m_robStatusCheck
Group of local monitoring quantities and retain correlation when filling histograms
StoreGateSvc_t m_evtStore
Pointer to StoreGate (event store by default)
std::vector< SG::VarHandleKeyArray * > m_vhka
const std::string & key() const
Return the StoreGate ID for the referenced object.
SG::ReadHandleKey< ByteStreamMetadataContainer > m_bsMetaDataContRHKey
StoreGate key for the ByteStreamMetadata container to retrieve detector mask.
virtual void setOwner(IDataHandleHolder *o)=0
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
ToolHandle< GenericMonitoringTool > m_monTool
Monitoring tool to create online histograms.
AthReentrantAlgorithm()
Default constructor:
ToolHandleArray< IL1TriggerByteStreamTool > m_decoderTools
Tool performing the decoding work.
Gaudi::Property< std::string > m_robStatusCheckLevel
Set behaviour for non-zero ROB status words.
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override
Return this algorithm's output handles.
::StatusCode StatusCode
StatusCode definition for legacy code.
Out copy_if(In first, const In &last, Out res, const Pred &p)
std::set< uint32_t > m_maybeMissingRobs
Set of ROB IDs allowed to be missing because they are disabled.
std::vector< const ROBF * > VROBFRAG
StoreGateSvc_t m_detStore
Pointer to StoreGate (detector store by default)
StatusCode initialize(bool used=true)
If this object is used as a property, then this should be called during the initialize phase.
ServiceHandle< IROBDataProviderSvc > m_robDataProviderSvc
ROBDataProvider service handle.
Gaudi::Property< std::string > m_robFormatCheckLevel
Set behaviour for corrupted ROB data.
DataObjIDColl m_extendedExtraObjects
Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
virtual void renounce()=0
std::conditional< std::is_base_of< SG::VarHandleKeyArray, T >::value, VarHandleKeyArrayType, type2 >::type type
ROBCheckBehaviour
The behaviour for non-zero ROB status words.
StatusCode filterRobs(const IROBDataProviderSvc::VROBFRAG &in, IROBDataProviderSvc::VROBFRAG &out, const std::vector< uint32_t > &ids, std::string_view toolName, const EventContext &eventContext) const
Copy over ROBFragment pointers from in to out for ROBs with IDs from the ids list.
virtual StatusCode sysInitialize() override
Override sysInitialize.
ROBCheckBehaviour m_robFormatCheck
void sort(typename std::reverse_iterator< DataModel_detail::iterator< DVL > > beg, typename std::reverse_iterator< DataModel_detail::iterator< DVL > > end, const Compare &comp)
Specialization of sort for DataVector/List.
#define ATH_MSG_WARNING(x)
SG::VarHandleKey & vhKey()
Return a non-const reference to the HandleKey.
std::vector< uint32_t > m_robIds
Vector of ROB IDs to request, filled from all decoder tools in initialize.
Gaudi::Property< std::vector< uint32_t > > m_maybeMissingRobsProp
Allow some ROBs to be missing.
Error
The different types of error that can be flagged in the L1TopoRDO.
Declare a monitored scalar variable.
StatusCode checkRobs(const IROBDataProviderSvc::VROBFRAG &robs, std::string_view toolName, const EventContext &eventContext) const
Check ROB status word and report if different from zero.
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>