ATLAS Offline Software
Loading...
Searching...
No Matches
ActsTrk::TracccSeedConverterAlg Class Reference

Algorithm converting traccc seeds (device buffer) to ACTS seeds (host container). More...

#include <TracccSeedConverterAlg.h>

Inheritance diagram for ActsTrk::TracccSeedConverterAlg:
Collaboration diagram for ActsTrk::TracccSeedConverterAlg:

Public Member Functions

virtual StatusCode initialize () override
 Function initializing the algorithm.
virtual StatusCode execute (const EventContext &ctx) const override
 Function executing the algorithm.
virtual StatusCode finalize () override
 Function finalizing the algorthm.
virtual StatusCode sysInitialize () override
 Override sysInitialize.
virtual bool isClonable () const override
 Specify if the algorithm is clonable.
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
 Get filter decision:
virtual void setFilterPassed (bool state, const EventContext &ctx) const
 Set filter decision:
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

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
The input device resident cluster, measurement and cell collection names

{@

SG::ReadHandleKey< xAOD::SpacePointContainerm_inputSPKey
SG::ReadHandleKey< traccc::edm::spacepoint_collection::buffer > m_inputSPDeviceKey
SG::ReadHandleKey< std::vector< unsigned int > > m_inputMeasToPixelSPKey
SG::ReadHandleKey< traccc::edm::seed_collection::buffer > m_inputSeedsKey
The output host resident seed container name

{@

SG::WriteHandleKey< ActsTrk::SeedContainerm_outputSeedsKey
The host memory resource tool to use for memory allocations
ToolHandle< AthDevice::IMemoryResourceToolm_hostMR
The copy tool used for copying data from device
ToolHandle< AthDevice::ICopyToolm_copy
std::atomic< int > m_nSP = 0
 The object counters for debug prints in finalize method {.
std::atomic< int > m_nSeeds = 0

Detailed Description

Algorithm converting traccc seeds (device buffer) to ACTS seeds (host container).

This algorithm retrieves the input device resident traccc seed collection from the event store, copies the data to host buffer and converts the traccc seeds to ActsTrk::Seed. It works under the assumption that the relevant traccc spacepoints have already been converted to xAOD spacepoints and are available on host in the event store and that the indices between the HOST and DEVICE resident containers have been recorded in a index map.

Author
Neža Ribarič neza..nosp@m.riba.nosp@m.ric@c.nosp@m.ern..nosp@m.ch

Definition at line 38 of file TracccSeedConverterAlg.h.

Member Typedef Documentation

◆ StoreGateSvc_t

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

Definition at line 388 of file AthCommonDataStore.h.

Member Function Documentation

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

Function executing the algorithm.

Definition at line 32 of file TracccSeedConverterAlg.cxx.

33{
34 // ---- Retrieve HOST RESIDENT spacepoints (always needed) ----
35 // These are made during the TracccMeasurementConverterAlg therefore the pixel meas index in PixelCluster container
36 // is the same as the pixel spacepoint index in the SpacePoint container
37 auto spacepoints = SG::makeHandle(m_inputSPKey, ctx);
38 ATH_MSG_DEBUG("Read SPs from " << m_inputSPKey.key());
39 ATH_CHECK(spacepoints.isValid());
40
41 // ---- Retrieve mapping from traccc measurement index to pixel spacepoint index (always needed) ----
42 auto measMap = SG::makeHandle(m_inputMeasToPixelSPKey, ctx);
43 ATH_CHECK(measMap.isValid());
44
45 // ---- Retrieve DEVICE resident traccc spacepoints ----
46 // these are made on the GPU, therefore the spacepoint points to measurement index
47 // in the traccc measurement collection on the device,
48 // (reminder: pixel and strip measurements are in the same collection on the device)
49 // which is the NOT the same index in the PixelCluster container
50
51 auto traccc_spacepoints = SG::makeHandle(m_inputSPDeviceKey, ctx);
52 ATH_CHECK(traccc_spacepoints.isValid());
53
54 auto copy = m_copy->copy(ctx);
55
56 traccc::edm::spacepoint_collection::buffer traccc_spacepoints_buffer{
57 copy->get_size(*traccc_spacepoints), m_hostMR->mr()};
58 copy->setup(traccc_spacepoints_buffer)->ignore();
59 (*copy)(*traccc_spacepoints, traccc_spacepoints_buffer)->wait();
60
61 traccc::edm::spacepoint_collection::const_device traccc_sp(
62 traccc_spacepoints_buffer);
63
64 // ---- Retrieve DEVICE resident traccc seeds ----
65 auto seeds = SG::makeHandle(m_inputSeedsKey, ctx);
66 ATH_MSG_DEBUG("Read seeds from " << m_inputSeedsKey.key());
67 ATH_CHECK(seeds.isValid());
68
69 traccc::edm::seed_collection::buffer traccc_seeds_buffer{
70 copy->get_size(*seeds), m_hostMR->mr()};
71 copy->setup(traccc_seeds_buffer)->ignore();
72 (*copy)(*seeds, traccc_seeds_buffer)->wait();
73
74 traccc::edm::seed_collection::const_device traccc_seeds(
75 traccc_seeds_buffer);
76
77 ATH_MSG_DEBUG("Read " << traccc_seeds.size() << " seeds and " << spacepoints->size() << " spacepoints from device and host, respectively.");
78 m_nSP += spacepoints->size();
79 m_nSeeds += traccc_seeds.size();
80
81 // -- Write HOST resident ACTS seed container ----
82 SG::WriteHandle<ActsTrk::SeedContainer> seedHandle =
84
85 ATH_CHECK(seedHandle.record(std::make_unique<ActsTrk::SeedContainer>()));
86 ActsTrk::SeedContainer* seedPtrs = seedHandle.ptr();
87
88 for (size_t st = 0; st < traccc_seeds.size(); ++st) {
89
90 const auto& seed = traccc_seeds.at(st);
91 std::vector<unsigned int> sp_traccc_index{
92 seed.bottom_index(), seed.middle_index(), seed.top_index()};
93
94 std::vector<unsigned int> sp_host_index{
95 std::numeric_limits<unsigned int>::max(),
96 std::numeric_limits<unsigned int>::max(),
97 std::numeric_limits<unsigned int>::max()};
98
99 ATH_MSG_VERBOSE("Traccc seed " << st << " with spacepoints: ");
100 for (int sp = 0; sp < 3; sp++) {
101 const auto& sp_traccc = traccc_sp.at(sp_traccc_index[sp]);
102 const unsigned int measIdx = sp_traccc.measurement_index_1();
103 const unsigned int hostIdx = (*measMap)[measIdx];
104 ATH_CHECK(hostIdx != std::numeric_limits<unsigned int>::max());
105
106 sp_host_index[sp] = hostIdx;
107
108 const auto& sp_host = spacepoints->at(hostIdx);
109 ATH_MSG_VERBOSE(sp_traccc.x() << "," << sp_traccc.y()
110 << "," << sp_traccc.z());
111 ATH_MSG_VERBOSE(sp_host->globalPosition().x() << "," << sp_host->globalPosition().y()
112 << "," << sp_host->globalPosition().z());
113 }
114
115 seedPtrs->push_back(
116 std::array{spacepoints->at(sp_host_index[0]),
117 spacepoints->at(sp_host_index[1]),
118 spacepoints->at(sp_host_index[2])},
119 0.f, 0.f);
120 }
121
122 ATH_MSG_DEBUG(" Seed Container " << m_outputSeedsKey.key()
123 << " created with " << seedPtrs->size() << " seeds");
124
125 return StatusCode::SUCCESS;
126}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_DEBUG(x,...)
#define ATH_MSG_VERBOSE(x,...)
static Double_t sp
ToolHandle< AthDevice::IMemoryResourceTool > m_hostMR
ToolHandle< AthDevice::ICopyTool > m_copy
std::atomic< int > m_nSP
The object counters for debug prints in finalize method {.
SG::ReadHandleKey< xAOD::SpacePointContainer > m_inputSPKey
SG::ReadHandleKey< traccc::edm::spacepoint_collection::buffer > m_inputSPDeviceKey
SG::ReadHandleKey< traccc::edm::seed_collection::buffer > m_inputSeedsKey
SG::WriteHandleKey< ActsTrk::SeedContainer > m_outputSeedsKey
SG::ReadHandleKey< std::vector< unsigned int > > m_inputMeasToPixelSPKey
StatusCode record(std::unique_ptr< T > data)
Record a const object to the store.
pointer_type ptr()
Dereference the pointer.
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
bool copy
Definition calibdata.py:26
Seed push_back(SpacePointRange spacePoints, float quality, float vertexZ)
std::size_t size() const noexcept

◆ 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 & AthCommonAlgorithm< 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 89 of file AthCommonAlgorithm.cxx.

54{
55 // If we didn't find any symlinks to add, just return the collection
56 // from the base class. Otherwise, return the extended collection.
57 if (!m_extendedExtraObjects.empty()) {
59 }
61}
Common base class for algorithms.

◆ filterPassed()

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

Get filter decision:

Definition at line 93 of file AthCommonAlgorithm.h.

93 {
94 return execState( ctx ).filterPassed();
95 }
virtual bool filterPassed(const EventContext &ctx) const
Get filter decision:

◆ finalize()

StatusCode ActsTrk::TracccSeedConverterAlg::finalize ( )
overridevirtual

Function finalizing the algorthm.

Definition at line 128 of file TracccSeedConverterAlg.cxx.

129{
130 ATH_MSG_DEBUG("Finalizing.");
131
132 ATH_MSG_DEBUG("Received " << m_nSP << " spacepoints and " << m_nSeeds << " seeds.");
133
134 ATH_MSG_DEBUG("Successfully finalized");
135 return StatusCode::SUCCESS;
136}

◆ initialize()

StatusCode ActsTrk::TracccSeedConverterAlg::initialize ( )
overridevirtual

Function initializing the algorithm.

Definition at line 13 of file TracccSeedConverterAlg.cxx.

14{
15 ATH_MSG_DEBUG("Initializing.");
16
17 ATH_CHECK(m_hostMR.retrieve());
18 ATH_CHECK(m_copy.retrieve());
19
20 ATH_CHECK(m_inputSPKey.initialize());
21 ATH_CHECK(m_inputSeedsKey.initialize());
22 ATH_CHECK(m_inputSPDeviceKey.initialize());
24
25 ATH_CHECK(m_outputSeedsKey.initialize());
26
27 ATH_MSG_DEBUG("Successfully initialized");
28 return StatusCode::SUCCESS;
29}

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

virtual bool AthCommonAlgorithm< Gaudi::Algorithm >::isClonable ( ) const
inlineoverridevirtualinherited

Specify if the algorithm is clonable.

Only relevant for non-reentrant algorithms. Actual number of clones needs to be set via the "Cardinality" property.

Reimplemented in AFP_DigiTop, AlgB, AlgT, BCM_Digitization, CscDigitBuilder, CscDigitToCscRDO, G4AtlasAlg, G4RunAlg, HGTD_Digitization, HiveAlgBase, InDet::GNNSeedingTrackMaker, InDet::SCT_Clusterization, InDet::SiSPGNNTrackMaker, InDet::SiSPSeededTrackFinder, InDet::SiTrackerSpacePointFinder, ISF::SimKernelMT, ITk::StripDigitization, ITkPixelCablingAlg, ITkStripCablingAlg, LArHitEMapMaker, LArTTL1Maker, LUCID_DigiTop, LVL1::L1TopoSimulation, MergeCalibHits, MergeGenericMuonSimHitColl, MergeHijingPars, MergeMcEventCollection, MergeTrackRecordCollection, MergeTruthJets, MergeTruthParticles, MuonDigitizer, PileUpMTAlg, PixelDigitization, RoIBResultToxAOD, SCT_ByteStreamErrorsTestAlg, SCT_CablingCondAlgFromCoraCool, SCT_CablingCondAlgFromText, SCT_ConditionsParameterTestAlg, SCT_ConditionsSummaryTestAlg, SCT_ConfigurationConditionsTestAlg, SCT_Digitization, SCT_FlaggedConditionTestAlg, SCT_LinkMaskingTestAlg, SCT_MajorityConditionsTestAlg, SCT_ModuleVetoTestAlg, SCT_MonitorConditionsTestAlg, SCT_PrepDataToxAOD, SCT_RawDataToxAOD, SCT_ReadCalibChipDataTestAlg, SCT_ReadCalibDataTestAlg, SCT_RODVetoTestAlg, SCT_SensorsTestAlg, SCT_SiliconConditionsTestAlg, SCT_StripVetoTestAlg, SCT_TdaqEnabledTestAlg, SCT_TestCablingAlg, SCTEventFlagWriter, SCTRawDataProvider, SCTSiLorentzAngleTestAlg, SCTSiPropertiesTestAlg, SGInputLoader, Simulation::BeamEffectsAlg, TileHitVecToCnt, TileMuonFitter, TilePulseForTileMuonReceiver, TileRawChannelMaker, TRTDigitization, and ZDC_DigiTop.

Definition at line 68 of file AthCommonAlgorithm.h.

68 {
69 return true;
70 }

◆ 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 AthCommonAlgorithm< Gaudi::Algorithm >::setFilterPassed ( bool state,
const EventContext & ctx ) const
inlinevirtualinherited

Set filter decision:

Reimplemented in AthFilterAlgorithm.

Definition at line 99 of file AthCommonAlgorithm.h.

99 {
101 }
virtual void setFilterPassed(bool state, const EventContext &ctx) const
Set filter decision:

◆ sysExecute()

StatusCode AthCommonAlgorithm< 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.

Reimplemented in AthAnalysisAlgorithm.

Definition at line 80 of file AthCommonAlgorithm.cxx.

41{
42 return BaseAlg::sysExecute (ctx);
43}

◆ sysInitialize()

StatusCode AthCommonAlgorithm< 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 AthAnalysisAlgorithm, AthFilterAlgorithm, AthHistogramAlgorithm, HypoBase, InputMakerBase, and PyAthena::Alg.

Definition at line 60 of file AthCommonAlgorithm.cxx.

71 {
73
74 if (sc.isFailure()) {
75 return sc;
76 }
77
78 ServiceHandle<ICondSvc> cs("CondSvc",name());
79 for (auto h : outputHandles()) {
80 if (h->isCondition() && h->mode() == Gaudi::DataHandle::Writer) {
81 // do this inside the loop so we don't create the CondSvc until needed
82 if ( cs.retrieve().isFailure() ) {
83 ATH_MSG_WARNING("no CondSvc found: won't autoreg WriteCondHandles");
85 }
86 if (cs->regHandle(this,*h).isFailure()) {
88 ATH_MSG_ERROR("unable to register WriteCondHandle " << h->fullKey()
89 << " with CondSvc");
90 }
91 }
92 }
93 return sc;
94}
#define ATH_MSG_ERROR(x,...)
#define ATH_MSG_WARNING(x,...)
virtual StatusCode sysInitialize() override
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_copy

ToolHandle<AthDevice::ICopyTool> ActsTrk::TracccSeedConverterAlg::m_copy
private
Initial value:
{
this, "CopyProviderTool", "", "Vecmem copy provider tool"}

Definition at line 79 of file TracccSeedConverterAlg.h.

79 {
80 this, "CopyProviderTool", "", "Vecmem copy provider tool"};

◆ 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 AthCommonAlgorithm< Gaudi::Algorithm >::m_extendedExtraObjects
privateinherited

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

Empty if no symlinks were found.

Definition at line 108 of file AthCommonAlgorithm.h.

◆ m_hostMR

ToolHandle<AthDevice::IMemoryResourceTool> ActsTrk::TracccSeedConverterAlg::m_hostMR
private
Initial value:
{
this, "HostMR", "", "Host memory resource tool"}

Definition at line 76 of file TracccSeedConverterAlg.h.

76 {
77 this, "HostMR", "", "Host memory resource tool"};

◆ m_inputMeasToPixelSPKey

SG::ReadHandleKey<std::vector<unsigned int> > ActsTrk::TracccSeedConverterAlg::m_inputMeasToPixelSPKey
private
Initial value:
{
this, "InputMeasToPixelSP", "TracccMeasToPixelSP",
"Input mapping from traccc measurement index to pixel spacepoint index"}

Definition at line 60 of file TracccSeedConverterAlg.h.

60 {
61 this, "InputMeasToPixelSP", "TracccMeasToPixelSP",
62 "Input mapping from traccc measurement index to pixel spacepoint index"};

◆ m_inputSeedsKey

SG::ReadHandleKey<traccc::edm::seed_collection::buffer> ActsTrk::TracccSeedConverterAlg::m_inputSeedsKey
private
Initial value:
{
this, "InputSeeds", "TracccSeeds",
"Input traccc seed collection buffer"}

Definition at line 63 of file TracccSeedConverterAlg.h.

63 {
64 this, "InputSeeds", "TracccSeeds",
65 "Input traccc seed collection buffer"};

◆ m_inputSPDeviceKey

SG::ReadHandleKey<traccc::edm::spacepoint_collection::buffer> ActsTrk::TracccSeedConverterAlg::m_inputSPDeviceKey
private
Initial value:
{
this, "InputSpacepointsDevice", "TracccSpacepointsDevice",
"Input traccc SP collection device buffer"}

Definition at line 57 of file TracccSeedConverterAlg.h.

57 {
58 this, "InputSpacepointsDevice", "TracccSpacepointsDevice",
59 "Input traccc SP collection device buffer"};

◆ m_inputSPKey

SG::ReadHandleKey<xAOD::SpacePointContainer> ActsTrk::TracccSeedConverterAlg::m_inputSPKey
private
Initial value:
{
this, "InputSpacepoints", "TracccSpacepoints",
"Input traccc SP collection buffer"}

Definition at line 54 of file TracccSeedConverterAlg.h.

54 {
55 this, "InputSpacepoints", "TracccSpacepoints",
56 "Input traccc SP collection buffer"};

◆ m_nSeeds

std::atomic<int> ActsTrk::TracccSeedConverterAlg::m_nSeeds = 0
mutableprivate

Definition at line 85 of file TracccSeedConverterAlg.h.

◆ m_nSP

std::atomic<int> ActsTrk::TracccSeedConverterAlg::m_nSP = 0
mutableprivate

The object counters for debug prints in finalize method {.

Definition at line 84 of file TracccSeedConverterAlg.h.

◆ m_outputSeedsKey

SG::WriteHandleKey<ActsTrk::SeedContainer> ActsTrk::TracccSeedConverterAlg::m_outputSeedsKey
private
Initial value:
{
this, "OutputSeeds", "ITkTracccSeeds",
"Output ACTS seeds container"}

Definition at line 70 of file TracccSeedConverterAlg.h.

70 {
71 this, "OutputSeeds", "ITkTracccSeeds",
72 "Output ACTS seeds container"};

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