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

Athena Algorithm to decode the ITkStrip Byte Stream. More...

#include <ITkStripRawDataProvider.h>

Inheritance diagram for ITkStripRawDataProvider:
Collaboration diagram for ITkStripRawDataProvider:

Public Member Functions

virtual ~ITkStripRawDataProvider ()=default
 Destructor.
virtual StatusCode initialize () override
 Initialize.
virtual StatusCode execute (const EventContext &ctx) const override
 Execute.
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

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

Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

ServiceHandle< IROBDataProviderSvcm_robDataProvider
 ROB Data Provider for accessing ROB data.
ToolHandle< IRegSelToolm_regionSelector
 Region Selector tool for Athena.
ToolHandle< IITkStripRawDataProviderToolm_rawDataTool
 Tool to fill Collections of SCT RDO Containers.
ToolHandle< IITkStripCablingToolm_cabling
 Providing mappings of online and offline identifiers and also serial numbers.
const SCT_IDm_sctID {nullptr}
 Identifier helper class for the SCT subdetector that creates compact Identifier objects and IdentifierHash or hash IDs.
BooleanProperty m_roiSeeded {this, "isRoI_Seeded", false, "Use RoI"}
 Boolean to determine if SCT Raw Data Provider should be run in RoI seeded mode.
Gaudi::Property< bool > m_useDataPoolWithCache
 Boolean to Use DataPool with IDC online Cache.
SG::ReadHandleKey< TrigRoiDescriptorCollectionm_roiCollectionKey
 Read handle for Trigger ROI descriptor collection.
SG::WriteHandleKey< SCT_RDO_Containerm_rdoContainerKey
 Write handle for SCT RDO container.
SG::WriteHandleKey< InDetTimeCollectionm_lvl1CollectionKey
 Write handle for LVL 1 Inner Detector time collection.
SG::WriteHandleKey< InDetTimeCollectionm_bcIDCollectionKey
 Write handle for BC ID Inner Detector time collection.
SG::WriteHandleKey< IDCInDetBSErrContainerm_bsIDCErrContainerKey
 Write handle for Inner Detector ByteStream error container.
SG::UpdateHandleKey< SCT_RDO_Cachem_rdoContainerCacheKey {this, "RDOCacheKey", ""}
 Update handle for SCT RDO and Erorrs Cache.
SG::UpdateHandleKey< IDCInDetBSErrContainer_Cachem_bsErrContainerCacheKey {this, "BSErrCacheKey", ""}
Gaudi::Property< bool > m_storeInDetTimeColls {this, "StoreInDetTimeCollections", true, "Store LVL1ID and BCID"}
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

Detailed Description

Athena Algorithm to decode the ITkStrip Byte Stream.

Definition at line 35 of file ITkStripRawDataProvider.h.

Member Typedef Documentation

◆ StoreGateSvc_t

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

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ ~ITkStripRawDataProvider()

virtual ITkStripRawDataProvider::~ITkStripRawDataProvider ( )
virtualdefault

Destructor.

Member Function Documentation

◆ 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}

◆ 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>

◆ 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 ITkStripRawDataProvider::execute ( const EventContext & ctx) const
overridevirtual

Execute.

Definition at line 55 of file ITkStripRawDataProvider.cxx.

56{
57 SG::WriteHandle<SCT_RDO_Container> rdoContainer(m_rdoContainerKey, ctx);
58 bool externalCacheRDO = !m_rdoContainerCacheKey.key().empty();
59 if (not externalCacheRDO) {
60 ATH_CHECK(rdoContainer.record (std::make_unique<SCT_RDO_Container>(m_sctID->wafer_hash_max(), EventContainers::Mode::OfflineFast)));
61 ATH_MSG_DEBUG("Created container for " << m_sctID->wafer_hash_max());
62 }
63 else {
64 SG::UpdateHandle<SCT_RDO_Cache> rdoCache(m_rdoContainerCacheKey, ctx);
65 ATH_CHECK(rdoCache.isValid());
66 ATH_CHECK(rdoContainer.record (std::make_unique<SCT_RDO_Container>(rdoCache.ptr())));
67 ATH_MSG_DEBUG("Created container using cache for " << m_rdoContainerCacheKey.key());
68 }
69
70 SG::WriteHandle<IDCInDetBSErrContainer> bsIDCErrContainer(m_bsIDCErrContainerKey, ctx);
71 if ( m_bsErrContainerCacheKey.key().empty() ) {
72 ATH_CHECK(bsIDCErrContainer.record( std::make_unique<IDCInDetBSErrContainer>(m_sctID->wafer_hash_max(), std::numeric_limits<IDCInDetBSErrContainer::ErrorCode>::min() )));
73 ATH_MSG_DEBUG("Created IDCInDetBSErrContainer w/o using external cache");
74 } else { // use cache
75 SG::UpdateHandle<IDCInDetBSErrContainer_Cache> cacheHandle( m_bsErrContainerCacheKey, ctx );
76 ATH_CHECK( cacheHandle.isValid() );
77 ATH_CHECK(bsIDCErrContainer.record( std::make_unique<IDCInDetBSErrContainer>(cacheHandle.ptr())) );
78 ATH_MSG_DEBUG("Created SCT IDCInDetBSErrContainer using external cache");
79 }
80
81 // Ask ROBDataProviderSvc for the vector of ROBFragment for all SCT ROBIDs
82 std::vector<const ROBFragment*> vecROBFrags;
83 std::vector<IdentifierHash> hashIDs;
84 if (not m_roiSeeded.value()) {
85 std::vector<uint32_t> rodList;
86 m_cabling->getAllRods(rodList, ctx);
87 ATH_MSG_DEBUG("Size of rodList: " << rodList.size());
88 m_robDataProvider->getROBData(ctx, rodList, vecROBFrags);
89 }
90 else {
91 // Only load ROBs from RoI
92 std::vector<uint32_t> listOfROBs;
93 SG::ReadHandle<TrigRoiDescriptorCollection> roiCollection{m_roiCollectionKey, ctx};
94 ATH_CHECK(roiCollection.isValid());
95 TrigRoiDescriptor superRoI; // Add all RoIs to a super-RoI
96 superRoI.reserve(roiCollection->size());
97 superRoI.setComposite(true);
98 superRoI.manageConstituents(false);
99 for (const TrigRoiDescriptor* roi : *roiCollection) {
100 superRoI.push_back(roi);
101 }
102
103 m_regionSelector->lookup(ctx)->ROBIDList(superRoI, listOfROBs );
104 m_regionSelector->lookup(ctx)->HashIDList(superRoI, hashIDs );
105
106 m_robDataProvider->getROBData(ctx, listOfROBs, vecROBFrags);
107 }
108
109
110 ATH_MSG_DEBUG("Number of ROB fragments " << vecROBFrags.size());
111
113 SG::WriteHandle<InDetTimeCollection> lvl1Collection;
114 SG::WriteHandle<InDetTimeCollection> bcIDCollection;
115 lvl1Collection = SG::makeHandle(m_lvl1CollectionKey,ctx);
116 bcIDCollection = SG::makeHandle(m_bcIDCollectionKey,ctx);
117
118 ATH_CHECK(lvl1Collection.record(std::make_unique<InDetTimeCollection>()));
119 ATH_CHECK(bcIDCollection.record(std::make_unique<InDetTimeCollection>()));
120
121 lvl1Collection->reserve(vecROBFrags.size());
122 bcIDCollection->reserve(vecROBFrags.size());
123
124 for (const ROBFragment* robFrag : vecROBFrags) {
125 // Store LVL1ID and BCID information in InDetTimeCollection
126 // to be stored in StoreGate at the end of the loop.
127 // We want to store a pair<ROBID, LVL1ID> for each ROD, once per event.
128 uint32_t robID{(robFrag)->rod_source_id()};
129
130 unsigned int lvl1ID{(robFrag)->rod_lvl1_id()};
131 lvl1Collection->emplace_back(robID, lvl1ID);
132
133 unsigned int bcID{(robFrag)->rod_bc_id()};
134 bcIDCollection->emplace_back(robID, bcID);
135
136 ATH_MSG_DEBUG("Stored LVL1ID " << lvl1ID << " and BCID " << bcID << " in InDetTimeCollections");
137 }
138 }
139
140 if ( not hashIDs.empty() ) {
141 int missingCount{};
142 for ( IdentifierHash hash: hashIDs ) {
143 if ( not rdoContainer->tryAddFromCache( hash ) ) missingCount++;
144 bsIDCErrContainer->tryAddFromCache( hash );
145 }
146 ATH_MSG_DEBUG("Out of: " << hashIDs.size() << "Hash IDs missing: " << missingCount );
147 if ( missingCount == 0 ) {
148 return StatusCode::SUCCESS;
149 }
150 }
151
152 std::unique_ptr<DataPool<SCT3_RawData>> dataItemsPool = nullptr;
153 if(!externalCacheRDO){
154 dataItemsPool = std::make_unique<DataPool<SCT3_RawData>>(ctx);
155 dataItemsPool->reserve(10000); // Some large default size
156 } else if (m_useDataPoolWithCache) {
157 dataItemsPool = std::make_unique<DataPool<SCT3_RawData>>(ctx);
158 // for now a default size 1024.
159 }
160
161 // Ask SCTRawDataProviderTool to decode it and to fill the IDC
162 StatusCode statConv = m_rawDataTool->convert(vecROBFrags,
163 *(rdoContainer.ptr()),
164 *bsIDCErrContainer,
165 dataItemsPool.get(),
166 ctx);
167
168 if (statConv.isFailure() && statConv != StatusCode::RECOVERABLE) {
169 ATH_MSG_WARNING("BS conversion into RDOs failed");
170 return statConv;
171 } else {
172 return StatusCode::SUCCESS;
173 }
174
175}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_WARNING(x)
#define ATH_MSG_DEBUG(x)
Athena::TPCnvVers::Current TrigRoiDescriptor
SG::WriteHandleKey< InDetTimeCollection > m_lvl1CollectionKey
Write handle for LVL 1 Inner Detector time collection.
SG::WriteHandleKey< IDCInDetBSErrContainer > m_bsIDCErrContainerKey
Write handle for Inner Detector ByteStream error container.
SG::WriteHandleKey< InDetTimeCollection > m_bcIDCollectionKey
Write handle for BC ID Inner Detector time collection.
SG::UpdateHandleKey< SCT_RDO_Cache > m_rdoContainerCacheKey
Update handle for SCT RDO and Erorrs Cache.
ToolHandle< IITkStripCablingTool > m_cabling
Providing mappings of online and offline identifiers and also serial numbers.
ToolHandle< IRegSelTool > m_regionSelector
Region Selector tool for Athena.
Gaudi::Property< bool > m_useDataPoolWithCache
Boolean to Use DataPool with IDC online Cache.
SG::WriteHandleKey< SCT_RDO_Container > m_rdoContainerKey
Write handle for SCT RDO container.
SG::ReadHandleKey< TrigRoiDescriptorCollection > m_roiCollectionKey
Read handle for Trigger ROI descriptor collection.
BooleanProperty m_roiSeeded
Boolean to determine if SCT Raw Data Provider should be run in RoI seeded mode.
ToolHandle< IITkStripRawDataProviderTool > m_rawDataTool
Tool to fill Collections of SCT RDO Containers.
const SCT_ID * m_sctID
Identifier helper class for the SCT subdetector that creates compact Identifier objects and Identifie...
SG::UpdateHandleKey< IDCInDetBSErrContainer_Cache > m_bsErrContainerCacheKey
Gaudi::Property< bool > m_storeInDetTimeColls
ServiceHandle< IROBDataProviderSvc > m_robDataProvider
ROB Data Provider for accessing ROB data.
void push_back(const IRoiDescriptor *roi)
add a RoiDescriptor
bool manageConstituents() const
always manage constituents ???
void reserve(size_t s)
reserve elements in vector
void setComposite(bool b=true)
virtual bool isValid() override final
Can the handle be successfully dereferenced?
StatusCode record(std::unique_ptr< T > data)
Record a const object to the store.
::StatusCode StatusCode
StatusCode definition for legacy code.
eformat::ROBFragment< PointerType > ROBFragment
Definition RawEvent.h:27
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
setEventNumber uint32_t

◆ 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

◆ initialize()

StatusCode ITkStripRawDataProvider::initialize ( )
overridevirtual

Initialize.

Definition at line 19 of file ITkStripRawDataProvider.cxx.

20{
21 // Get ROBDataProviderSvc
22 ATH_CHECK(m_robDataProvider.retrieve());
23
24 // Get the SCT ID helper
25 ATH_CHECK(detStore()->retrieve(m_sctID, "SCT_ID"));
26 if (m_roiSeeded.value()) {
27 // Don't need SCT cabling if running in RoI-seeded mode
28 ATH_CHECK(m_roiCollectionKey.initialize());
29 ATH_CHECK(m_regionSelector.retrieve());
30 m_cabling.disable();
31 }
32 else {
33 //Disable Roi requirement
34 ATH_CHECK(m_roiCollectionKey.initialize(false));
35 // Retrieve Cabling tool
36 ATH_CHECK(m_cabling.retrieve());
37 m_regionSelector.disable();
38 }
39
40 //Initialize
41 ATH_CHECK(m_rdoContainerKey.initialize());
47
48 ATH_CHECK( m_rawDataTool.retrieve() );
49
50 return StatusCode::SUCCESS;
51}
const ServiceHandle< StoreGateSvc > & detStore() const
retrieve(aClass, aKey=None)
Definition PyKernel.py:110

◆ 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}
#define ATH_MSG_ERROR(x)
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 }

Member Data Documentation

◆ m_bcIDCollectionKey

SG::WriteHandleKey<InDetTimeCollection> ITkStripRawDataProvider::m_bcIDCollectionKey
private
Initial value:
{this,
"BCIDKey",
"SCT_BCID",
"SCT BCID key"}

Write handle for BC ID Inner Detector time collection.

Definition at line 104 of file ITkStripRawDataProvider.h.

104 {this,
105 "BCIDKey",
106 "SCT_BCID",
107 "SCT BCID key"};

◆ m_bsErrContainerCacheKey

SG::UpdateHandleKey<IDCInDetBSErrContainer_Cache> ITkStripRawDataProvider::m_bsErrContainerCacheKey {this, "BSErrCacheKey", ""}
private

Definition at line 118 of file ITkStripRawDataProvider.h.

118{this, "BSErrCacheKey", ""};

◆ m_bsIDCErrContainerKey

SG::WriteHandleKey<IDCInDetBSErrContainer> ITkStripRawDataProvider::m_bsIDCErrContainerKey
private
Initial value:
{this,
"IDCByteStreamErrContainer",
"SCT_ByteStreamErrs",
"SCT BS error key for IDC variant"}

Write handle for Inner Detector ByteStream error container.

Definition at line 110 of file ITkStripRawDataProvider.h.

110 {this,
111 "IDCByteStreamErrContainer",
112 "SCT_ByteStreamErrs",
113 "SCT BS error key for IDC variant"};

◆ m_cabling

ToolHandle<IITkStripCablingTool> ITkStripRawDataProvider::m_cabling
private
Initial value:
{this,
"ITkStripCablingTool",
"ITkStripCablingTool",
"Tool to retrieve ITk Cabling"}

Providing mappings of online and offline identifiers and also serial numbers.

Definition at line 69 of file ITkStripRawDataProvider.h.

69 {this,
70 "ITkStripCablingTool",
71 "ITkStripCablingTool",
72 "Tool to retrieve ITk Cabling"};

◆ 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_lvl1CollectionKey

SG::WriteHandleKey<InDetTimeCollection> ITkStripRawDataProvider::m_lvl1CollectionKey
private
Initial value:
{this,
"LVL1IDKey",
"SCT_LVL1ID",
"SCT LVL1ID key"}

Write handle for LVL 1 Inner Detector time collection.

Definition at line 98 of file ITkStripRawDataProvider.h.

98 {this,
99 "LVL1IDKey",
100 "SCT_LVL1ID",
101 "SCT LVL1ID key"};

◆ m_rawDataTool

ToolHandle<IITkStripRawDataProviderTool> ITkStripRawDataProvider::m_rawDataTool
private
Initial value:
{this,
"ProviderTool",
"ITkStripRawDataProviderTool",
"ITkStrips Raw Data Provider Tool"}

Tool to fill Collections of SCT RDO Containers.

Definition at line 63 of file ITkStripRawDataProvider.h.

63 {this,
64 "ProviderTool",
65 "ITkStripRawDataProviderTool",
66 "ITkStrips Raw Data Provider Tool"};

◆ m_rdoContainerCacheKey

SG::UpdateHandleKey<SCT_RDO_Cache> ITkStripRawDataProvider::m_rdoContainerCacheKey {this, "RDOCacheKey", ""}
private

Update handle for SCT RDO and Erorrs Cache.

Definition at line 117 of file ITkStripRawDataProvider.h.

117{this, "RDOCacheKey", ""};

◆ m_rdoContainerKey

SG::WriteHandleKey<SCT_RDO_Container> ITkStripRawDataProvider::m_rdoContainerKey
private
Initial value:
{this,
"RDOKey",
"SCT_RDOs",
"SCT RDO key"}

Write handle for SCT RDO container.

Definition at line 92 of file ITkStripRawDataProvider.h.

92 {this,
93 "RDOKey",
94 "SCT_RDOs",
95 "SCT RDO key"};

◆ m_regionSelector

ToolHandle<IRegSelTool> ITkStripRawDataProvider::m_regionSelector
private
Initial value:
{this,
"RegSelTool",
"RegSelTool/RegSel_SCT"}

Region Selector tool for Athena.

Definition at line 58 of file ITkStripRawDataProvider.h.

58 {this,
59 "RegSelTool",
60 "RegSelTool/RegSel_SCT"};

◆ m_robDataProvider

ServiceHandle<IROBDataProviderSvc> ITkStripRawDataProvider::m_robDataProvider
private
Initial value:
{this,
"ROBDataProviderSvc",
"ROBDataProviderSvc"}

ROB Data Provider for accessing ROB data.

Definition at line 53 of file ITkStripRawDataProvider.h.

53 {this,
54 "ROBDataProviderSvc",
55 "ROBDataProviderSvc"};

◆ m_roiCollectionKey

SG::ReadHandleKey<TrigRoiDescriptorCollection> ITkStripRawDataProvider::m_roiCollectionKey
private
Initial value:
{this,
"RoIs",
"",
"RoIs to read in"}

Read handle for Trigger ROI descriptor collection.

Definition at line 86 of file ITkStripRawDataProvider.h.

86 {this,
87 "RoIs",
88 "",
89 "RoIs to read in"};

◆ m_roiSeeded

BooleanProperty ITkStripRawDataProvider::m_roiSeeded {this, "isRoI_Seeded", false, "Use RoI"}
private

Boolean to determine if SCT Raw Data Provider should be run in RoI seeded mode.

Definition at line 79 of file ITkStripRawDataProvider.h.

79{this, "isRoI_Seeded", false, "Use RoI"};

◆ m_sctID

const SCT_ID* ITkStripRawDataProvider::m_sctID {nullptr}
private

Identifier helper class for the SCT subdetector that creates compact Identifier objects and IdentifierHash or hash IDs.

Also allows decoding of these IDs.

Definition at line 76 of file ITkStripRawDataProvider.h.

76{nullptr};

◆ m_storeInDetTimeColls

Gaudi::Property<bool> ITkStripRawDataProvider::m_storeInDetTimeColls {this, "StoreInDetTimeCollections", true, "Store LVL1ID and BCID"}
private

Definition at line 120 of file ITkStripRawDataProvider.h.

120{this, "StoreInDetTimeCollections", true, "Store LVL1ID and BCID"};

◆ m_useDataPoolWithCache

Gaudi::Property<bool> ITkStripRawDataProvider::m_useDataPoolWithCache
private
Initial value:
{
this, "useDataPoolWithCache", false, "use DataPool With Cache"}

Boolean to Use DataPool with IDC online Cache.

Definition at line 82 of file ITkStripRawDataProvider.h.

82 {
83 this, "useDataPoolWithCache", false, "use DataPool With Cache"};

◆ 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.


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