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

Algorithm executing traccc clusterization and measurement sorting on the GPU. More...

#include <DeviceClusterizationAlg.h>

Inheritance diagram for ActsTrk::DeviceClusterizationAlg:
Collaboration diagram for ActsTrk::DeviceClusterizationAlg:

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

Gaudi::Property< bool > m_retrieveClusterCells
const traccc::detector_design_description::const_view * m_deviceDesign {nullptr}
const traccc::detector_conditions_description::const_view * m_deviceCond {nullptr}
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
Input device resident traccc detector design and condition descriptions

{@

Gaudi::Property< std::string > m_deviceDesignObjectName
Gaudi::Property< std::string > m_deviceCondObjectName
The tool that provides backend-specific traccc clusterization algorithms
ToolHandle< IDeviceClusterizationAlgProviderToolm_clusteringAlgProviderTool
The device memory resource tool to use for memory allocations
ToolHandle< AthDevice::IMemoryResourceToolm_deviceMR
The name of device resident input traccc cell collection
SG::ReadHandleKey< traccc::edm::silicon_cell_collection::const_view > m_inputCellsKey
The name of device resident output traccc measurement collection

{@

SG::WriteHandleKey< traccc::edm::measurement_collection::buffer > m_outputMeasKey
SG::WriteHandleKey< traccc::edm::silicon_cluster_collection::buffer > m_outputClusterKey

Detailed Description

Algorithm executing traccc clusterization and measurement sorting on the GPU.

The backend-specific clusterization and sorting algorithms are provided by dedicated tools, together with the device memory resource and the vecmem copy object (only needed for debugging).

The algorithm retrieves the device resident traccc cell collection from the event store and the detector description from the detector store, passes them to the device clusterization algorithm, and records the resulting device resident traccc measurement collection back into the event store.

Parameters
m_retrieveClusterCellsperform disjoint clusterization

If required (e.g. for truth matching), it instead runs the so-called disjoint clusterization, which returns the measurements together with a cluster collection holding the association between cell indices and the produced measurements.

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

Definition at line 48 of file DeviceClusterizationAlg.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::DeviceClusterizationAlg::execute ( const EventContext & ctx) const
overridevirtual

Function executing the algorithm.

Definition at line 36 of file DeviceClusterizationAlg.cxx.

37{
38 ATH_MSG_DEBUG("Executing device clusterization.");
39
40 // ---- 1. Read input traccc cells from StoreGate --------------------------------
41 auto inputTracccCells = SG::makeHandle(m_inputCellsKey, ctx);
42 ATH_CHECK(inputTracccCells.isValid());
43 ATH_MSG_DEBUG("Read traccc cells from '"
44 << m_inputCellsKey.key() << "'");
45
46 // ---- 2. Get traccc clusterization alg ---------------------------------------------
47 auto clustering_pair = m_clusteringAlgProviderTool->getClusterizationAlgorithm(ctx);
48 std::shared_ptr<const traccc::device::clusterization_algorithm> clustering_alg = clustering_pair.second;
49
50 // ---- 2.5 Retrieve the sorting algorithm ---------------------------------------------
51 auto sorting_pair = m_clusteringAlgProviderTool->getSortingAlgorithm(ctx);
52 std::shared_ptr<const IDeviceClusterizationAlgProviderTool::sorting_algorithm_type> sorting_alg = sorting_pair.second;
53
54 // ---- 3. Run traccc clusterization ---------------------------------------------
55 traccc::edm::silicon_cluster_collection::buffer cluster_gpu_buffer;
56 traccc::edm::measurement_collection::buffer measurements_gpu_buffer;
57
59 ATH_MSG_DEBUG("Running clusterization with returning cell info");
60 std::tie(measurements_gpu_buffer, cluster_gpu_buffer) =
61 (*clustering_alg)(
62 *inputTracccCells, *m_deviceDesign, *m_deviceCond,
63 traccc::device::clustering_keep_disjoint_set{});
64 } else {
65 ATH_MSG_DEBUG("Running clusterization without returning cell info");
66 measurements_gpu_buffer = (*clustering_alg)(*inputTracccCells, *m_deviceDesign, *m_deviceCond);
67 }
68
69 // ---- 3.5 Run measurement sorting ---------------------------------------------
70 auto sortedTracccMeasurements =
71 (*sorting_alg)(measurements_gpu_buffer);
72
73 ATH_MSG_DEBUG("Reconstructed " << (clustering_pair.first)->get_size(measurements_gpu_buffer) << " measurements.");
74
75 // ---- 4. Write output traccc measurements to StoreGate -------------------------
76 auto outputTracccMeas = SG::makeHandle(m_outputMeasKey, ctx);
77 ATH_CHECK(outputTracccMeas.record(
78 std::make_unique<traccc::edm::measurement_collection::buffer>(
79 std::move(sortedTracccMeasurements))));
80 ATH_MSG_DEBUG("Wrote measurement buffer to '" << m_outputMeasKey.key() << "'");
81
82 auto outputTracccClusters = SG::makeHandle(m_outputClusterKey, ctx);
83 ATH_CHECK(outputTracccClusters.record(
84 std::make_unique<traccc::edm::silicon_cluster_collection::buffer>(
85 std::move(cluster_gpu_buffer))));
86 ATH_MSG_DEBUG("Wrote cluster buffer to '" << m_outputClusterKey.key() << "'");
87
88 return StatusCode::SUCCESS;
89}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_DEBUG(x)
SG::WriteHandleKey< traccc::edm::measurement_collection::buffer > m_outputMeasKey
SG::WriteHandleKey< traccc::edm::silicon_cluster_collection::buffer > m_outputClusterKey
const traccc::detector_design_description::const_view * m_deviceDesign
ToolHandle< IDeviceClusterizationAlgProviderTool > m_clusteringAlgProviderTool
const traccc::detector_conditions_description::const_view * m_deviceCond
Gaudi::Property< bool > m_retrieveClusterCells
SG::ReadHandleKey< traccc::edm::silicon_cell_collection::const_view > m_inputCellsKey
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 & 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:

◆ initialize()

StatusCode ActsTrk::DeviceClusterizationAlg::initialize ( )
overridevirtual

Function initializing the algorithm.

Definition at line 19 of file DeviceClusterizationAlg.cxx.

20{
21 ATH_MSG_DEBUG("Initializing " << name());
22
24 ATH_CHECK(m_deviceMR.retrieve());
25 ATH_CHECK(m_inputCellsKey.initialize());
26 ATH_CHECK(m_outputMeasKey.initialize());
27 ATH_CHECK(m_outputClusterKey.initialize());
28
31
32 ATH_MSG_DEBUG("Successfully initialized");
33 return StatusCode::SUCCESS;
34}
Gaudi::Property< std::string > m_deviceCondObjectName
Gaudi::Property< std::string > m_deviceDesignObjectName
ToolHandle< AthDevice::IMemoryResourceTool > m_deviceMR
const ServiceHandle< StoreGateSvc > & detStore() const

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

ToolHandle<IDeviceClusterizationAlgProviderTool> ActsTrk::DeviceClusterizationAlg::m_clusteringAlgProviderTool
private
Initial value:
{
this, "ClusteringAlgProviderTool", "",
"Tool providing the appropriate backend device clusterization algorithm"}

Definition at line 73 of file DeviceClusterizationAlg.h.

73 {
74 this, "ClusteringAlgProviderTool", "",
75 "Tool providing the appropriate backend device clusterization algorithm"};

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

const traccc::detector_conditions_description::const_view* ActsTrk::DeviceClusterizationAlg::m_deviceCond {nullptr}
private

Definition at line 98 of file DeviceClusterizationAlg.h.

98{nullptr};

◆ m_deviceCondObjectName

Gaudi::Property<std::string> ActsTrk::DeviceClusterizationAlg::m_deviceCondObjectName
private
Initial value:
{
this, "DeviceConditionsObjectName", "TracccDeviceConditionsConfig",
"Traccc device conditions object"}

Definition at line 67 of file DeviceClusterizationAlg.h.

67 {
68 this, "DeviceConditionsObjectName", "TracccDeviceConditionsConfig",
69 "Traccc device conditions object"};

◆ m_deviceDesign

const traccc::detector_design_description::const_view* ActsTrk::DeviceClusterizationAlg::m_deviceDesign {nullptr}
private

Definition at line 97 of file DeviceClusterizationAlg.h.

97{nullptr};

◆ m_deviceDesignObjectName

Gaudi::Property<std::string> ActsTrk::DeviceClusterizationAlg::m_deviceDesignObjectName
private
Initial value:
{
this, "DeviceDigitizationObjectName", "TracccDeviceDigitizationConfig",
"Traccc device digitization object"}

Definition at line 64 of file DeviceClusterizationAlg.h.

64 {
65 this, "DeviceDigitizationObjectName", "TracccDeviceDigitizationConfig",
66 "Traccc device digitization object"};

◆ m_deviceMR

ToolHandle<AthDevice::IMemoryResourceTool> ActsTrk::DeviceClusterizationAlg::m_deviceMR
private
Initial value:
{
this, "DeviceMR", "",
"Device memory resource tool"}

Definition at line 77 of file DeviceClusterizationAlg.h.

77 {
78 this, "DeviceMR", "",
79 "Device memory resource tool"};

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

SG::ReadHandleKey<traccc::edm::silicon_cell_collection::const_view> ActsTrk::DeviceClusterizationAlg::m_inputCellsKey
private
Initial value:
{
this, "InputTracccCells", "",
"Input traccc cell collection buffer"}

Definition at line 82 of file DeviceClusterizationAlg.h.

82 {
83 this, "InputTracccCells", "",
84 "Input traccc cell collection buffer"};

◆ m_outputClusterKey

SG::WriteHandleKey<traccc::edm::silicon_cluster_collection::buffer> ActsTrk::DeviceClusterizationAlg::m_outputClusterKey
private
Initial value:
{
this, "OutputTracccClusters", "",
"Output uncalibrated traccc cluster collection buffer"}

Definition at line 91 of file DeviceClusterizationAlg.h.

91 {
92 this, "OutputTracccClusters", "",
93 "Output uncalibrated traccc cluster collection buffer"};

◆ m_outputMeasKey

SG::WriteHandleKey<traccc::edm::measurement_collection::buffer> ActsTrk::DeviceClusterizationAlg::m_outputMeasKey
private
Initial value:
{
this, "OutputTracccMeasurements", "",
"Output uncalibrated traccc measurement collection buffer"}

Definition at line 88 of file DeviceClusterizationAlg.h.

88 {
89 this, "OutputTracccMeasurements", "",
90 "Output uncalibrated traccc measurement collection buffer"};

◆ m_retrieveClusterCells

Gaudi::Property<bool> ActsTrk::DeviceClusterizationAlg::m_retrieveClusterCells
private
Initial value:
{
this, "RetrieveClusterCells", true,
"Whether to retrieve cell indices associated to the clusters."}

Definition at line 59 of file DeviceClusterizationAlg.h.

59 {
60 this, "RetrieveClusterCells", true,
61 "Whether to retrieve cell indices associated to the clusters."};

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