ATLAS Offline Software
Loading...
Searching...
No Matches
TriggerEDMDeserialiserAlg Class Reference

from the HLTResultMT Each serialised collection is a chunk of words with the content as described below. More...

#include <TriggerEDMDeserialiserAlg.h>

Inheritance diagram for TriggerEDMDeserialiserAlg:
Collaboration diagram for TriggerEDMDeserialiserAlg:

Classes

class  WritableAuxStore

Public Types

using Payload = std::vector<uint32_t>
using PayloadIterator = Payload::const_iterator

Public Member Functions

 TriggerEDMDeserialiserAlg (const std::string &name, ISvcLocator *pSvcLocator)
virtual ~TriggerEDMDeserialiserAlg () override=default
virtual StatusCode initialize () override
virtual StatusCode execute (const EventContext &context) const override
virtual StatusCode finalize () override
virtual StatusCode sysInitialize () override
 Override sysInitialize.
virtual bool isClonable () const override
 Specify if the algorithm is clonable.
virtual unsigned int cardinality () const override
 Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.
virtual StatusCode sysExecute (const EventContext &ctx) override
 Execute an algorithm.
virtual const DataObjIDColl & extraOutputDeps () const override
 Return the list of extra output dependencies.
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.
const ServiceHandle< StoreGateSvc > & detStore () const
 The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
virtual StatusCode sysStart () override
 Handle START transition.
virtual std::vector< Gaudi::DataHandle * > inputHandles () const override
 Return this algorithm's input handles.
virtual std::vector< Gaudi::DataHandle * > outputHandles () const override
 Return this algorithm's output handles.
Gaudi::Details::PropertyBase & declareProperty (Gaudi::Property< T, V, H > &t)
void updateVHKA (Gaudi::Details::PropertyBase &)
MsgStream & msg () const
bool msgLvl (const MSG::Level lvl) const

Static Public Attributes

static constexpr size_t CLIDOffset = 1
static constexpr size_t NameLengthOffset = 2
static constexpr size_t NameOffset = 3
static std::unique_ptr< TList > s_streamerInfoList ATLAS_THREAD_SAFE
static std::mutex s_mutex

Protected Member Functions

void renounceArray (SG::VarHandleKeyArray &handlesArray)
 remove all handles from I/O resolution
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)
void extraDeps_update_handler (Gaudi::Details::PropertyBase &ExtraDeps)
 Add StoreName to extra input/output deps as needed.

Private Types

typedef ServiceHandle< StoreGateSvcStoreGateSvc_t

Private Member Functions

void add_bs_streamerinfos ()
StatusCode deserialise (const Payload *dataptr) const
 Performs actual deserialisation loop.
StatusCode deserialiseDynAux (const std::string &transientTypeName, const std::string &persistentTypeName, const std::string &decorationName, void *obj, WritableAuxStore *currentAuxStore, SG::AuxVectorBase *interface) const
 Handle decoration.
StatusCode checkSanity (const std::string &transientTypeName, bool isxAODInterfaceContainer, bool isxAODAuxContainer, bool isDecoration, bool isTPContainer) const
 Checker for data integrity, one and only one of the passed booleans can be true, else FAILURE is returned and relevant diagnostics printed.
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

SG::ReadHandleKey< HLT::HLTResultMTm_resultKey
Gaudi::Property< std::string > m_prefix
Gaudi::Property< int > m_moduleID
Gaudi::Property< int > m_initialSerialisationBufferSize
Gaudi::Property< bool > m_skipDuplicates
Gaudi::Property< bool > m_permitMissingModule
ServiceHandle< IClassIDSvc > m_clidSvc
ServiceHandle< IAthenaSerializeSvcm_serializerSvc
ToolHandle< TrigSerTPToolm_tpTool
DataObjIDColl m_extendedExtraObjects
 Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
StoreGateSvc_t m_evtStore
 Pointer to StoreGate (event store by default).
StoreGateSvc_t m_detStore
 Pointer to StoreGate (detector store by default).
std::vector< SG::VarHandleKeyArray * > m_vhka
bool m_varHandleArraysDeclared

Friends

StatusCode tester (TriggerEDMDeserialiserAlg *)

Detailed Description

from the HLTResultMT Each serialised collection is a chunk of words with the content as described below.

The [] == one word, the [...] more words. Format is as follows: [fragment size in words][CLID][size of serialised collection name][...serialised collection name ...][data payload in bytes][....data payload...] It follows from the TrigEDMSerialiserTool implementation.

Definition at line 28 of file TriggerEDMDeserialiserAlg.h.

Member Typedef Documentation

◆ Payload

using TriggerEDMDeserialiserAlg::Payload = std::vector<uint32_t>

Definition at line 32 of file TriggerEDMDeserialiserAlg.h.

◆ PayloadIterator

using TriggerEDMDeserialiserAlg::PayloadIterator = Payload::const_iterator

Definition at line 33 of file TriggerEDMDeserialiserAlg.h.

◆ StoreGateSvc_t

typedef ServiceHandle<StoreGateSvc> AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::StoreGateSvc_t
privateinherited

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ TriggerEDMDeserialiserAlg()

TriggerEDMDeserialiserAlg::TriggerEDMDeserialiserAlg ( const std::string & name,
ISvcLocator * pSvcLocator )

Definition at line 212 of file TriggerEDMDeserialiserAlg.cxx.

212 :
213 AthReentrantAlgorithm(name, pSvcLocator) {}

◆ ~TriggerEDMDeserialiserAlg()

virtual TriggerEDMDeserialiserAlg::~TriggerEDMDeserialiserAlg ( )
overridevirtualdefault

Member Function Documentation

◆ add_bs_streamerinfos()

void TriggerEDMDeserialiserAlg::add_bs_streamerinfos ( )
private

Definition at line 488 of file TriggerEDMDeserialiserAlg.cxx.

488 {
489 std::lock_guard<std::mutex> lock(s_mutex);
490
491 if (s_streamerInfoList) {
492 return;
493 }
494
495 std::string extStreamerInfos = "bs-streamerinfos.root";
496 std::string extFilePath = PathResolver::find_file(extStreamerInfos, "DATAPATH");
497 ATH_MSG_DEBUG( "Using " << extFilePath );
498 TFile extFile(extFilePath.c_str());
499
500 s_streamerInfoList = std::unique_ptr<TList>(extFile.GetStreamerInfoList());
501 for(const auto&& infObj: *s_streamerInfoList) {
502 TString t_name=infObj->GetName();
503 if (t_name.BeginsWith("listOfRules")){
504 ATH_MSG_WARNING( "Could not re-load class " << t_name );
505 continue;
506 }
507
508 TStreamerInfo* inf = dynamic_cast<TStreamerInfo*>(infObj);
509 inf->BuildCheck();
510 TClass *cl = inf->GetClass();
511 if (cl != nullptr) {
512 ATH_MSG_DEBUG( "external TStreamerInfo for " << cl->GetName() <<
513 " checksum: " << std::hex << inf->GetCheckSum() << std::dec );
514 }
515 }
516}
#define ATH_MSG_WARNING(x)
#define ATH_MSG_DEBUG(x)
virtual void lock()=0
Interface to allow an object to lock itself when made const in SG.
static std::string find_file(const std::string &logical_file_name, const std::string &search_path)
TStreamerInfo * inf
cl
print [x.__class__ for x in toList(dqregion.getSubRegions()) ]

◆ cardinality()

unsigned int AthCommonReentrantAlgorithm< Gaudi::Algorithm >::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.

Definition at line 75 of file AthCommonReentrantAlgorithm.cxx.

64{
65 return 0;
66}

◆ checkSanity()

StatusCode TriggerEDMDeserialiserAlg::checkSanity ( const std::string & transientTypeName,
bool isxAODInterfaceContainer,
bool isxAODAuxContainer,
bool isDecoration,
bool isTPContainer ) const
private

Checker for data integrity, one and only one of the passed booleans can be true, else FAILURE is returned and relevant diagnostics printed.

Definition at line 462 of file TriggerEDMDeserialiserAlg.cxx.

462 {
463 ATH_MSG_DEBUG( "Recognised type " << transientTypeName <<" as: "
464 << (isxAODInterfaceContainer ? "xAOD Interface Container":"" )
465 << (isxAODAuxContainer ? "xAOD Aux Container ":"" )
466 << ( isDecoration ? "xAOD Decoration" : "")
467 << ( isTPContainer ? "T/P Container " : "") );
468
469 const std::vector<bool> typeOfContainer( { isxAODInterfaceContainer, isxAODAuxContainer, isDecoration, isTPContainer } );
470 const size_t count = std::count( typeOfContainer.begin(), typeOfContainer.end(), true );
471 if ( count == 0 ) {
472 ATH_MSG_ERROR( "Could not recognise the kind of container " << transientTypeName );
473 return StatusCode::FAILURE;
474 }
475 if (count > 1 ) {
476 ATH_MSG_ERROR( "Ambiguous container kind deduced from the transient type name " << transientTypeName );
477 ATH_MSG_ERROR( "Recognised type as: "
478 << (isxAODInterfaceContainer ? "xAOD Interface Context":"" )
479 << (isxAODAuxContainer ? " xAOD Aux Container ":"" )
480 << ( isDecoration ? "xAOD Decoration" : "")
481 << ( isTPContainer ? "T/P Container " : "") );
482 return StatusCode::FAILURE;
483 }
484 return StatusCode::SUCCESS;
485}
#define ATH_MSG_ERROR(x)
int count(std::string s, const std::string &regx)
count how many occurances of a regx are in a string
Definition hcg.cxx:148
virtual bool isDecoration(auxid_t auxid) const override
Test if a particular variable is tagged as a decoration.

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::declareGaudiProperty ( Gaudi::Property< T, V, H > & hndl,
const SG::VarHandleKeyType &  )
inlineprivateinherited

specialization for handling Gaudi::Property<SG::VarHandleKey>

Definition at line 156 of file AthCommonDataStore.h.

158 {
160 hndl.value(),
161 hndl.documentation());
162
163 }
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)

◆ declareProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::declareProperty ( Gaudi::Property< T, V, H > & t)
inlineinherited

Definition at line 145 of file AthCommonDataStore.h.

145 {
146 typedef typename SG::HandleClassifier<T>::type htype;
148 }
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>

◆ deserialise()

StatusCode TriggerEDMDeserialiserAlg::deserialise ( const Payload * dataptr) const
private

Performs actual deserialisation loop.

Definition at line 254 of file TriggerEDMDeserialiserAlg.cxx.

254 {
255
256 size_t buffSize = m_initialSerialisationBufferSize;
257 std::unique_ptr<char[]> buff = std::make_unique<char[]>(buffSize);
258
259 // returns a char* buffer that is at minimum as large as specified in the argument
260 auto resize = [&buffSize, &buff]( const size_t neededSize ) -> void {
261 if ( neededSize > buffSize ) {
262 buffSize = neededSize;
263 buff = std::make_unique<char[]>(buffSize);
264 }
265 };
266
267 // the pointers defined below need to be used in decoding consecutive fragments of xAOD containers:
268 // 1) xAOD interface, 2) Aux store, 3) decorations
269 // invalid conditions are: invalid interface pointer when decoding Aux store
270 // invalid aux store and interface when decoding the decoration
271 // these pointer should be invalidated when: decoding TP containers, aux store when decoding the xAOD interface
272 WritableAuxStore* currentAuxStore = nullptr; // set when decoding Aux
273 SG::AuxVectorBase* xAODInterfaceContainer = nullptr; // set when decoding xAOD interface
274
275 size_t fragmentCount = 0;
276 PayloadIterator start = dataptr->begin();
277 std::string previousKey;
278 while ( start != dataptr->end() ) {
280 const CLID clid{ PayloadHelpers::collectionCLID( start ) };
281 std::string transientTypeName, transientTypeInfoName;
282 ATH_CHECK( m_clidSvc->getTypeNameOfID( clid, transientTypeName ) );
283 ATH_CHECK( m_clidSvc->getTypeInfoNameOfID( clid, transientTypeInfoName ) ); // version
284
285 const std::vector<std::string> descr( PayloadHelpers::collectionDescription( start ) );
286 ATH_CHECK( descr.size() == 2 );
287 std::string persistentTypeName{ descr[0] };
288 const std::string key{ descr[1] };
289 const size_t bsize{ PayloadHelpers::dataSize( start ) };
290
291 if( m_skipDuplicates && evtStore()->contains(clid,m_prefix+key) ) {
292 ATH_MSG_DEBUG("Skipping duplicate record " << m_prefix+key);
293 // Advance
295 continue;
296 }
297
298 ATH_MSG_DEBUG( "fragment #" << fragmentCount <<
299 " type: "<< transientTypeName << " (" << transientTypeInfoName << ")" <<
300 " persistent type: " << persistentTypeName << " key: " << key << " size: " << bsize );
301 resize( bsize );
302 PayloadHelpers::toBuffer( start, buff.get() );
303
304 // point the start to the next chunk, irrespectively of what happens in deserialisation below
306
307 RootType classDesc = RootType::ByNameNoQuiet( persistentTypeName );
308 ATH_CHECK( classDesc.IsComplete() );
309
310 // Many variables in this class were changed from double to float.
311 // However, we wrote data in the past which contained values
312 // that were valid doubles but which were out of range for floats.
313 // So we can get FPEs when we read them.
314 // Disable FPEs when we're reading an instance of this class.
315 CxxUtils::FPControl fpcontrol;
316 if (persistentTypeName == "xAOD::BTaggingTrigAuxContainer_v1") {
317 fpcontrol.holdExceptions();
318 }
319
320 size_t usedBytes{ bsize };
321 void* obj{ nullptr };
322 {
323 // Temporary error handler to debug ATR-25049
324 RootUtils::WithRootErrorHandler hand( handleError(buff.get(), usedBytes, dataptr, &*start) );
325 obj = m_serializerSvc->deserialize( buff.get(), usedBytes, classDesc );
326 }
327
328 ATH_MSG_DEBUG( "Deserialised object of ptr: " << obj << " which used: " << usedBytes <<
329 " bytes from available: " << bsize );
330 if ( obj == nullptr ) {
331 ATH_MSG_ERROR( "Deserialisation of object of CLID " << clid << " and transientTypeName " <<
332 transientTypeName << " # " << key << " failed" );
333 return StatusCode::FAILURE;
334 }
335 const bool isxAODInterfaceContainer = (transientTypeName.rfind("xAOD", 0) != std::string::npos and
336 transientTypeName.find("Aux") == std::string::npos and
337 transientTypeName.find("ElementLink") == std::string::npos);
338 const bool isxAODAuxContainer = (transientTypeName.rfind("xAOD", 0) != std::string::npos and
339 transientTypeName.find("Aux") != std::string::npos);
340 const bool isxAODDecoration = transientTypeName.find("vector") != std::string::npos;
341 const bool isTPContainer = persistentTypeName.find("_p") != std::string::npos;
342 const bool isVersionChange = versionChange(persistentTypeName, transientTypeInfoName);
343
344 ATH_CHECK( checkSanity( transientTypeName, isxAODInterfaceContainer,
345 isxAODAuxContainer, isxAODDecoration, isTPContainer ) );
346
347 if ( isTPContainer or isVersionChange ) {
348 if ( isVersionChange ) ATH_MSG_DEBUG( "Version change detected from " << persistentTypeName << " to "
349 << transientTypeInfoName << ". Will invoke PT converter." );
350
351 std::string decodedTransientName;
352 void * converted = m_tpTool->convertPT( persistentTypeName, obj, decodedTransientName );
353 ATH_CHECK( converted != nullptr );
354 classDesc.Destruct( obj );
355
356 // from now on in case of T/P class we deal with a new class, the transient one
357 classDesc = RootType::ByNameNoQuiet( transientTypeName );
358 ATH_CHECK( classDesc.IsComplete() );
359 obj = converted;
360 }
361
362 if ( isxAODInterfaceContainer or isxAODAuxContainer or isTPContainer ) {
363 BareDataBucket* dataBucket = new BareDataBucket( obj, clid, classDesc );
364 const std::string outputName = m_prefix + key;
365 auto proxyPtr = evtStore()->recordObject( SG::DataObjectSharedPtr<BareDataBucket>( dataBucket ),
366 outputName, false, false );
367 if ( proxyPtr == nullptr ) {
368 ATH_MSG_WARNING( "Recording of object of CLID " << clid << " and name " << outputName << " failed" );
369 }
370
371 if ( isxAODInterfaceContainer ) {
372 // If the container of the previous iteration was supposed to have an Aux store (trackIndices)
373 // but we didn't find one, then create at least a DataLink with the correct key name.
374 // The EDMCreatorAlg will take care of creating an empty Aux store with the correct type.
375 if (xAODInterfaceContainer!=nullptr &&
376 xAODInterfaceContainer->trackIndices() && currentAuxStore==nullptr) {
377 ATH_MSG_DEBUG("Container with key " << previousKey << " is missing its Aux store");
378 xAODInterfaceContainer->setStore( DataLink<SG::IConstAuxStore>(previousKey+"Aux.") );
379 }
380 currentAuxStore = nullptr; // the store will be following, setting it to nullptr assure we catch issue with of missing Aux
381 const SG::BaseInfoBase* bib = getBaseInfo(clid);
382 if(!bib){
383 ATH_MSG_WARNING("No BaseInfoBase for CLID "<< clid << " and name " << outputName);
384 }
385 xAODInterfaceContainer =
386 bib ? reinterpret_cast<SG::AuxVectorBase*>(
387 bib->cast(dataBucket->object(),
389 : nullptr;
390 } else if (isxAODAuxContainer) {
391 // key contains exactly one '.' at the end
392 ATH_CHECK( key.find('.') == key.size()-1 );
393 ATH_CHECK( currentAuxStore == nullptr and xAODInterfaceContainer != nullptr );
394 const SG::BaseInfoBase* bib = getBaseInfo(clid);
395 SG::IAuxStore* auxHolder =
396 reinterpret_cast<SG::IAuxStore*>(
397 bib->cast(dataBucket->object(), ClassID_traits<SG::IAuxStore>::ID()));
398 ATH_CHECK(auxHolder != nullptr);
399 xAODInterfaceContainer->setStore(auxHolder);
400 currentAuxStore = new WritableAuxStore();
401 dynamic_cast<SG::IAuxStoreHolder*>(auxHolder)->setStore( currentAuxStore );
402 } else {
403 currentAuxStore = nullptr;
404 xAODInterfaceContainer = nullptr; // invalidate xAOD related pointers
405 }
406
407 } else if ( isxAODDecoration ) {
408 if(m_skipDuplicates and (currentAuxStore == nullptr || xAODInterfaceContainer == nullptr)) {
409 ATH_MSG_DEBUG("Decoration " << key << " encountered with no active container. Assume this was already handled.");
410 } else {
411 ATH_CHECK( currentAuxStore != nullptr and xAODInterfaceContainer != nullptr );
412 ATH_CHECK( deserialiseDynAux( transientTypeName, persistentTypeName, key, obj,
413 currentAuxStore, xAODInterfaceContainer ) );
414 }
415 }
416 previousKey = key;
417 }
418 return StatusCode::SUCCESS;
419}
#define ATH_CHECK
Evaluate an expression and check for errors.
uint32_t CLID
The Class ID type.
TTypeAdapter RootType
Definition RootType.h:211
int fragmentCount(uint32_t data, int id)
virtual void * object() override
void setStore(SG::IAuxStore *store)
Set the store associated with this object.
bool trackIndices() const
Return true if index tracking is enabled for this container.
void * cast(void *p, CLID clid) const
Cast to a base pointer.
Definition BaseInfo.cxx:166
static TScopeAdapter ByNameNoQuiet(const std::string &name, Bool_t load=kTRUE)
Definition RootType.cxx:586
void Destruct(void *place) const
Definition RootType.cxx:677
Bool_t IsComplete() const
Definition RootType.cxx:895
Gaudi::Property< int > m_initialSerialisationBufferSize
Payload::const_iterator PayloadIterator
ServiceHandle< IAthenaSerializeSvc > m_serializerSvc
ToolHandle< TrigSerTPTool > m_tpTool
Gaudi::Property< std::string > m_prefix
StatusCode deserialiseDynAux(const std::string &transientTypeName, const std::string &persistentTypeName, const std::string &decorationName, void *obj, WritableAuxStore *currentAuxStore, SG::AuxVectorBase *interface) const
Handle decoration.
Gaudi::Property< bool > m_skipDuplicates
StatusCode checkSanity(const std::string &transientTypeName, bool isxAODInterfaceContainer, bool isxAODAuxContainer, bool isDecoration, bool isTPContainer) const
Checker for data integrity, one and only one of the passed booleans can be true, else FAILURE is retu...
ServiceHandle< IClassIDSvc > m_clidSvc
bool contains(const std::string &s, const std::string &regx)
does a string contain the substring
Definition hcg.cxx:116
constexpr TDA::PayloadIterator toNextFragment(TDA::PayloadIterator start)
Returns starting point of the next fragment, can be == end().
constexpr size_t dataSize(TDA::PayloadIterator start)
Size in bytes of the buffer that is needed to decode next fragment data content.
std::vector< std::string > collectionDescription(TDA::PayloadIterator start)
String description of the collection stored in the next fragment, returns persistent type name and th...
constexpr CLID collectionCLID(TDA::PayloadIterator start)
CLID of the collection stored in the next fragment.
void toBuffer(TDA::PayloadIterator start, char *buffer)
Copies fragment to the buffer, no size checking, use dataSize to do so.
CxxUtils::RefCountedPtr< T > DataObjectSharedPtr
virtual bool resize(size_t sz) override
Change the size of all aux data vectors.
void setStore(const SG::IConstAuxStore *store)
Set the store associated with this object.
str outputName
Definition lumiFormat.py:65
list descr
print "%s.properties()" % self.__name__

◆ deserialiseDynAux()

StatusCode TriggerEDMDeserialiserAlg::deserialiseDynAux ( const std::string & transientTypeName,
const std::string & persistentTypeName,
const std::string & decorationName,
void * obj,
WritableAuxStore * currentAuxStore,
SG::AuxVectorBase * interface ) const
private

Handle decoration.

Definition at line 423 of file TriggerEDMDeserialiserAlg.cxx.

424 {
425 const bool isPacked = persistentTypeName.find("SG::PackedContainer") != std::string::npos;
426
427 SG::AuxTypeRegistry& registry = SG::AuxTypeRegistry::instance();
428 SG::auxid_t id = registry.findAuxID ( decorationName );
429 if (id != SG::null_auxid ) {
430 std::string regTypeName = stripStdVec( registry.getVecTypeName(id) );
431 if ( regTypeName != stripStdVec(transientTypeName) and transientTypeName.find("ElementLink") == std::string::npos )
432 {
433 // Before giving up, also translate any typedefs in the transient name.
434 RootUtils::Type tname (transientTypeName);
435 if ( regTypeName != stripStdVec(tname.getTypeName()) ) {
436 ATH_MSG_INFO( "Schema evolution required for decoration \"" << decorationName << "\" from " << transientTypeName << " to " << registry.getVecTypeName( id ) << " not handled yet");
437 return StatusCode::SUCCESS;
438 }
439 }
440 } else {
441 std::string elementTypeName;
442 const std::type_info* elt_tinfo = getElementType( transientTypeName, elementTypeName );
443 ATH_CHECK( elt_tinfo != nullptr );
444 ATH_MSG_DEBUG( "Dynamic decoration: \"" << decorationName << "\" of type " << transientTypeName << " will create a dynamic ID, stored type" << elementTypeName );
445 id = SG::getDynamicAuxID ( *elt_tinfo, decorationName, elementTypeName, transientTypeName, false, SG::null_auxid );
446 }
447 ATH_MSG_DEBUG( "Unstreaming decoration \"" << decorationName << "\" of type " << transientTypeName << " aux ID " << id << " class " << persistentTypeName << " packed " << isPacked );
448 std::unique_ptr<SG::IAuxTypeVector> vec( registry.makeVectorFromData (id, obj, nullptr, isPacked, true) );
449 ATH_CHECK( vec.get() != nullptr );
450 ATH_MSG_DEBUG("Size for \"" << decorationName << "\" " << vec->size() << " interface " << interfaceContainer->size_v() );
451 ATH_CHECK( vec->size() == interfaceContainer->size_v() );
452 if ( vec->size() != 0 ) {
453 ATH_CHECK( currentAuxStore != nullptr );
454 currentAuxStore->addVector(std::move(vec), false);
455 // trigger loading of the dynamic variables
456 SG::AuxElement::TypelessConstAccessor accessor( decorationName );
457 accessor.getDataArray( *interfaceContainer );
458 }
459 return StatusCode::SUCCESS;
460}
#define ATH_MSG_INFO(x)
std::vector< size_t > vec
SG::auxid_t findAuxID(const std::string &name, const std::string &clsname="") const
Look up a name -> auxid_t mapping.
std::unique_ptr< IAuxTypeVector > makeVectorFromData(SG::auxid_t auxid, void *data, IAuxTypeVector *linkedVector, bool isPacked, bool ownFlag) const
Construct an IAuxTypeVector object from a vector.
std::string getVecTypeName(SG::auxid_t auxid) const
Return the type of the STL vector used to hold an aux data item.
static AuxTypeRegistry & instance()
Return the singleton registry instance.
static const auxid_t null_auxid
To signal no aux data item.
Definition AuxTypes.h:30
SG::auxid_t getDynamicAuxID(const std::type_info &ti, const std::string &name, const std::string &elementTypeName, const std::string &branch_type_name, bool standalone, SG::auxid_t linked_auxid)
Find the auxid for a dynamic branch.
size_t auxid_t
Identifier for a particular aux data item.
Definition AuxTypes.h:27
const AccessorWrapper< T > * accessor(xAOD::JetAttribute::AttributeID id)
Returns an attribute accessor corresponding to an AttributeID.

◆ detStore()

const ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::detStore ( ) const
inlineinherited

The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 95 of file AthCommonDataStore.h.

◆ evtStore()

ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::evtStore ( )
inlineinherited

The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 85 of file AthCommonDataStore.h.

◆ execute()

StatusCode TriggerEDMDeserialiserAlg::execute ( const EventContext & context) const
overridevirtual

Definition at line 231 of file TriggerEDMDeserialiserAlg.cxx.

231 {
232
233 auto resultHandle = SG::makeHandle( m_resultKey, context );
234 if ( not resultHandle.isValid() ) {
235 ATH_MSG_ERROR("Failed to obtain HLTResultMT with key " << m_resultKey.key());
236 return StatusCode::FAILURE;
237 }
238 ATH_MSG_DEBUG("Obtained HLTResultMT with key " << m_resultKey.key());
239
240 const Payload* dataptr = nullptr;
241 if ( resultHandle->getSerialisedData( m_moduleID, dataptr ).isFailure() ) {
242 if ( m_permitMissingModule ) {
243 ATH_MSG_DEBUG("No payload available with moduleId " << m_moduleID << " in this event, ignored");
244 return StatusCode::SUCCESS;
245 } else {
246 ATH_MSG_ERROR("No payload available with moduleId " << m_moduleID << " in this event");
247 return StatusCode::FAILURE;
248 }
249 }
250 ATH_CHECK( deserialise( dataptr ) );
251 return StatusCode::SUCCESS;
252}
Gaudi::Property< bool > m_permitMissingModule
SG::ReadHandleKey< HLT::HLTResultMT > m_resultKey
StatusCode deserialise(const Payload *dataptr) const
Performs actual deserialisation loop.
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::extraDeps_update_handler ( Gaudi::Details::PropertyBase & ExtraDeps)
protectedinherited

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 & AthCommonReentrantAlgorithm< Gaudi::Algorithm >::extraOutputDeps ( ) const
overridevirtualinherited

Return the list of extra output dependencies.

This list is extended to include symlinks implied by inheritance relations.

Definition at line 94 of file AthCommonReentrantAlgorithm.cxx.

90{
91 // If we didn't find any symlinks to add, just return the collection
92 // from the base class. Otherwise, return the extended collection.
93 if (!m_extendedExtraObjects.empty()) {
95 }
97}
An algorithm that can be simultaneously executed in multiple threads.

◆ filterPassed()

virtual bool AthCommonReentrantAlgorithm< Gaudi::Algorithm >::filterPassed ( const EventContext & ctx) const
inlinevirtualinherited

Definition at line 96 of file AthCommonReentrantAlgorithm.h.

96 {
97 return execState( ctx ).filterPassed();
98 }
virtual bool filterPassed(const EventContext &ctx) const

◆ finalize()

StatusCode TriggerEDMDeserialiserAlg::finalize ( )
overridevirtual

Definition at line 225 of file TriggerEDMDeserialiserAlg.cxx.

225 {
226 s_streamerInfoList.reset();
227 return StatusCode::SUCCESS;
228}

◆ initialize()

StatusCode TriggerEDMDeserialiserAlg::initialize ( )
overridevirtual

Definition at line 215 of file TriggerEDMDeserialiserAlg.cxx.

215 {
216 ATH_CHECK( m_resultKey.initialize() );
217 ATH_CHECK( m_clidSvc.retrieve() );
218 ATH_CHECK( m_serializerSvc.retrieve() );
219 ATH_CHECK( m_tpTool.retrieve() );
221 return StatusCode::SUCCESS;
222}

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::inputHandles ( ) const
overridevirtualinherited

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()

◆ msg()

MsgStream & AthCommonMsg< Gaudi::Algorithm >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

24 {
25 return this->msgStream();
26 }

◆ msgLvl()

bool AthCommonMsg< Gaudi::Algorithm >::msgLvl ( const MSG::Level lvl) const
inlineinherited

Definition at line 30 of file AthCommonMsg.h.

30 {
31 return this->msgLevel(lvl);
32 }

◆ outputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::outputHandles ( ) const
overridevirtualinherited

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()

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 > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::renounce ( T & h)
inlineprotectedinherited

Definition at line 380 of file AthCommonDataStore.h.

381 {
382 h.renounce();
384 }
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)

◆ renounceArray()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ setFilterPassed()

virtual void AthCommonReentrantAlgorithm< Gaudi::Algorithm >::setFilterPassed ( bool state,
const EventContext & ctx ) const
inlinevirtualinherited

Definition at line 100 of file AthCommonReentrantAlgorithm.h.

100 {
102 }
virtual void setFilterPassed(bool state, const EventContext &ctx) const

◆ sysExecute()

StatusCode AthCommonReentrantAlgorithm< Gaudi::Algorithm >::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 85 of file AthCommonReentrantAlgorithm.cxx.

77{
78 return BaseAlg::sysExecute (ctx);
79}

◆ sysInitialize()

StatusCode AthCommonReentrantAlgorithm< Gaudi::Algorithm >::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 HypoBase, and InputMakerBase.

Definition at line 61 of file AthCommonReentrantAlgorithm.cxx.

107 {
109
110 if (sc.isFailure()) {
111 return sc;
112 }
113
114 ServiceHandle<ICondSvc> cs("CondSvc",name());
115 for (auto h : outputHandles()) {
116 if (h->isCondition() && h->mode() == Gaudi::DataHandle::Writer) {
117 // do this inside the loop so we don't create the CondSvc until needed
118 if ( cs.retrieve().isFailure() ) {
119 ATH_MSG_WARNING("no CondSvc found: won't autoreg WriteCondHandles");
120 return StatusCode::SUCCESS;
121 }
122 if (cs->regHandle(this,*h).isFailure()) {
124 ATH_MSG_ERROR("unable to register WriteCondHandle " << h->fullKey()
125 << " with CondSvc");
126 }
127 }
128 }
129 return sc;
130}
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::sysStart ( )
overridevirtualinherited

Handle START transition.

We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.

◆ updateVHKA()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::updateVHKA ( Gaudi::Details::PropertyBase & )
inlineinherited

Definition at line 308 of file AthCommonDataStore.h.

308 {
309 // debug() << "updateVHKA for property " << p.name() << " " << p.toString()
310 // << " size: " << m_vhka.size() << endmsg;
311 for (auto &a : m_vhka) {
313 for (auto k : keys) {
314 k->setOwner(this);
315 }
316 }
317 }

◆ tester

StatusCode tester ( TriggerEDMDeserialiserAlg * )
friend

Member Data Documentation

◆ ATLAS_THREAD_SAFE

std::unique_ptr<TList> s_streamerInfoList TriggerEDMDeserialiserAlg::ATLAS_THREAD_SAFE
static

Definition at line 37 of file TriggerEDMDeserialiserAlg.h.

◆ CLIDOffset

size_t TriggerEDMDeserialiserAlg::CLIDOffset = 1
staticconstexpr

Definition at line 34 of file TriggerEDMDeserialiserAlg.h.

◆ m_clidSvc

ServiceHandle<IClassIDSvc> TriggerEDMDeserialiserAlg::m_clidSvc
private
Initial value:
{ this, "ClassIDSvc", "ClassIDSvc",
"Service to translate CLID to class name" }

Definition at line 65 of file TriggerEDMDeserialiserAlg.h.

65 { this, "ClassIDSvc", "ClassIDSvc",
66 "Service to translate CLID to class name" };

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_detStore
privateinherited

Pointer to StoreGate (detector store by default).

Definition at line 393 of file AthCommonDataStore.h.

◆ m_evtStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default).

Definition at line 390 of file AthCommonDataStore.h.

◆ m_extendedExtraObjects

DataObjIDColl AthCommonReentrantAlgorithm< Gaudi::Algorithm >::m_extendedExtraObjects
privateinherited

Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.

Empty if no symlinks were found.

Definition at line 114 of file AthCommonReentrantAlgorithm.h.

◆ m_initialSerialisationBufferSize

Gaudi::Property<int> TriggerEDMDeserialiserAlg::m_initialSerialisationBufferSize
private
Initial value:
{ this, "InitialSerialisationBufferSize", 1024*1024,
"Initial serialisation buffer size in bytes, can be set large to avoid reallocations in every event" }

Definition at line 58 of file TriggerEDMDeserialiserAlg.h.

58 { this, "InitialSerialisationBufferSize", 1024*1024,
59 "Initial serialisation buffer size in bytes, can be set large to avoid reallocations in every event" };

◆ m_moduleID

Gaudi::Property<int> TriggerEDMDeserialiserAlg::m_moduleID
private
Initial value:
{ this, "ModuleID", 0,
"Module ID of HLT result ROB, default 0 is the main HLT result, others are for TLA, calibration etc." }

Definition at line 56 of file TriggerEDMDeserialiserAlg.h.

56 { this, "ModuleID", 0,
57 "Module ID of HLT result ROB, default 0 is the main HLT result, others are for TLA, calibration etc." };

◆ m_permitMissingModule

Gaudi::Property<bool> TriggerEDMDeserialiserAlg::m_permitMissingModule
private
Initial value:
{ this, "PermitMissingModule", false,
"Silently ignore absent HLT results (when handling multiple HLT results)" }

Definition at line 62 of file TriggerEDMDeserialiserAlg.h.

62 { this, "PermitMissingModule", false,
63 "Silently ignore absent HLT results (when handling multiple HLT results)" };

◆ m_prefix

Gaudi::Property<std::string> TriggerEDMDeserialiserAlg::m_prefix
private
Initial value:
{ this, "Prefix", "",
"Set for testing to avoid clash with the input collections" }

Definition at line 54 of file TriggerEDMDeserialiserAlg.h.

54 { this, "Prefix", "",
55 "Set for testing to avoid clash with the input collections" };

◆ m_resultKey

SG::ReadHandleKey<HLT::HLTResultMT> TriggerEDMDeserialiserAlg::m_resultKey
private
Initial value:
{ this, "ResultKey", "HLTResultMT",
"Key of the HLT result object" }

Definition at line 52 of file TriggerEDMDeserialiserAlg.h.

52 { this, "ResultKey", "HLTResultMT",
53 "Key of the HLT result object" };

◆ m_serializerSvc

ServiceHandle<IAthenaSerializeSvc> TriggerEDMDeserialiserAlg::m_serializerSvc
private
Initial value:
{ this, "Serializer", "AthenaRootSerializeSvc",
"Service that translates persistent to transient representation" }

Definition at line 68 of file TriggerEDMDeserialiserAlg.h.

68 { this, "Serializer", "AthenaRootSerializeSvc",
69 "Service that translates persistent to transient representation" };

◆ m_skipDuplicates

Gaudi::Property<bool> TriggerEDMDeserialiserAlg::m_skipDuplicates
private
Initial value:
{ this, "SkipDuplicateRecords", false,
"Silently ignore collections that ware already in StoreGate (when handling multiple HLT results)" }

Definition at line 60 of file TriggerEDMDeserialiserAlg.h.

60 { this, "SkipDuplicateRecords", false,
61 "Silently ignore collections that ware already in StoreGate (when handling multiple HLT results)" };

◆ m_tpTool

ToolHandle<TrigSerTPTool> TriggerEDMDeserialiserAlg::m_tpTool
private
Initial value:
{ this, "TPTool", "TrigSerTPTool/TrigSerTPTool",
"Tool to do Transient/Persistent conversion (Old EDM)"}

Definition at line 71 of file TriggerEDMDeserialiserAlg.h.

71 { this, "TPTool", "TrigSerTPTool/TrigSerTPTool",
72 "Tool to do Transient/Persistent conversion (Old EDM)"};

◆ m_varHandleArraysDeclared

bool AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_varHandleArraysDeclared
privateinherited

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

std::vector<SG::VarHandleKeyArray*> AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_vhka
privateinherited

Definition at line 398 of file AthCommonDataStore.h.

◆ NameLengthOffset

size_t TriggerEDMDeserialiserAlg::NameLengthOffset = 2
staticconstexpr

Definition at line 35 of file TriggerEDMDeserialiserAlg.h.

◆ NameOffset

size_t TriggerEDMDeserialiserAlg::NameOffset = 3
staticconstexpr

Definition at line 36 of file TriggerEDMDeserialiserAlg.h.

◆ s_mutex

std::mutex TriggerEDMDeserialiserAlg::s_mutex
static

Definition at line 38 of file TriggerEDMDeserialiserAlg.h.


The documentation for this class was generated from the following files: