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

#include <DeviceGBTSSeedingAlg.h>

Inheritance diagram for ActsTrk::DeviceGBTSSeedingAlg:
Collaboration diagram for ActsTrk::DeviceGBTSSeedingAlg:

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

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

Private Attributes

Gaudi::Property< std::string > m_connectionFileName
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 tool that provides backend-specific traccc seeding algorithms
ToolHandle< IDeviceSeedingAlgProviderToolm_seedingAlgProviderTool
The device memory resource tool to use for memory allocations
ToolHandle< AthDevice::IMemoryResourceToolm_deviceMR
The name of device resident input traccc spacepoint collection
SG::ReadHandleKey< traccc::edm::spacepoint_collection::const_view > m_inputPixelSPKey
The name of device resident input traccc measurement collection
SG::ReadHandleKey< traccc::edm::measurement_collection::const_view > m_inputMeasKey
The name of device resident output traccc seed collection

{@

SG::WriteHandleKey< traccc::edm::seed_collection::buffer > m_outputPixelSeedsKey
The detector description service providing the Athena<->Detray ID map
ServiceHandle< ActsTrk::IDeviceDetectorDescriptionProviderSvcm_detDescSvc
const InDetDD::PixelDetectorManagerm_pixelManager {nullptr}
const PixelIDm_pixelID {nullptr}
ToolHandle< ITrigL2LayerNumberToolm_layerNumberTool
traccc::gbts_seedfinder_config m_gbts_config

Detailed Description

Definition at line 47 of file DeviceGBTSSeedingAlg.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

◆ configureGBTS()

StatusCode ActsTrk::DeviceGBTSSeedingAlg::configureGBTS ( )
privatevirtual

Definition at line 77 of file DeviceGBTSSeedingAlg.cxx.

78{
79
80 const std::unordered_map<uint64_t, Identifier> detrayToAthena = m_detDescSvc->detrayToAthenaMap();
81 // traccc-gbts defaults are ITk tuned
82 // get layer linking scheme from the athena tools
83 std::string conn_fileName =
85 if (conn_fileName.empty()) {
86 ATH_MSG_FATAL("Cannot find layer connections file for GBTS "
87 << conn_fileName);
88 return StatusCode::FAILURE;
89 }
90 std::ifstream ifs(conn_fileName.c_str());
91 std::unique_ptr<GNN_FASTRACK_CONNECTOR> gbts_connector =
92 std::make_unique<GNN_FASTRACK_CONNECTOR>(ifs, false);
93 ATH_MSG_INFO("Layer connections are initialized from file for GBTS "
94 << conn_fileName);
95
96 const std::vector<TrigInDetSiLayer>* pVL =
97 m_layerNumberTool->layerGeometry();
98 std::vector<TrigInDetSiLayer> layerGeometry;
99 std::copy(pVL->begin(), pVL->end(), std::back_inserter(layerGeometry));
100
101 std::unique_ptr<TrigFTF_GNN_Geometry> GBTS_geo =
102 std::make_unique<TrigFTF_GNN_Geometry>(layerGeometry, gbts_connector);
103
104 traccc::device::gbts_layerInfo layerInfo;
105 // convert save and convert layer info to SoA
106 layerInfo.reserve(GBTS_geo->num_layers());
107
108 for (unsigned int index = 0; index < GBTS_geo->num_layers(); ++index) {
109 const TrigFTF_GNN_Layer* layer =
110 GBTS_geo->getTrigFTF_GNN_LayerByIndex(index);
111 // pixel barrel=0 pixel endcap=1 pixel inc. barrel=2 strip=3
112 int vol_id =
113 (layer->m_layer.m_subdet - (layer->m_layer.m_subdet % 1000)) / 1000;
114 int is_inc_barrel = (vol_id == 97) | (vol_id == 95) | (vol_id == 93) |
115 (vol_id == 77) | (vol_id == 75) | (vol_id == 73);
116 char type = (layer->m_layer.m_type != 0) + is_inc_barrel;
117 if (layer->m_layer.m_subdet <= 20000) {
118 type = 3;
119 }
120 // eta prediction cut occurs for type=0 and cluster width cut for type=1
121 layerInfo.addLayer(type, layer->m_bins[0], layer->num_bins(),
122 layer->m_minEta, layer->m_etaBin);
123 }
124
125 const std::vector<short>* pixel_h2l = m_layerNumberTool->pixelLayers();
126
127
128 std::vector<std::pair<std::uint64_t, short>> identifierBinning;
129 identifierBinning.reserve(detrayToAthena.size());
130
131 // construct identifier -> layer table
132 IdContext pixel_context = m_pixelID->wafer_context();
133 for (std::pair<std::uint64_t, Identifier> dToI : detrayToAthena) {
134 if (m_pixelManager->identifierBelongs(dToI.second)) {
135 IdentifierHash idHash = 0;
136 m_pixelID->get_hash(dToI.second, idHash, &pixel_context);
137 identifierBinning.push_back(std::make_pair(
138 dToI.first, pixel_h2l->at(static_cast<int>(idHash))));
139 }
140 }
141 ATH_MSG_INFO(identifierBinning.size() << " identifiers with a layer");
142
143 std::vector<std::pair<unsigned int, std::vector<unsigned int>>> binGroups;
144 {
145 const auto rawBinGroups = GBTS_geo->bin_groups();
146 binGroups.reserve(rawBinGroups.size());
147 for (const auto& p : rawBinGroups) {
148 binGroups.emplace_back(static_cast<unsigned int>(p.first),
149 std::vector<unsigned int>(p.second.begin(), p.second.end()));
150 }
151 }
152
153 for (auto& pair : binGroups) {
154 bool barrel = (pair.first <= 83); // unsigned, so `0 <= pair.first` is always true — dropped
155 if (barrel) {
156 pair.second.push_back(pair.first);
157 }
158 }
159
160 // traccc::gbts_seedfinder_config gbts_config;
161 if (!m_gbts_config.setLinkingScheme(binGroups, layerInfo, identifierBinning,
162 900.0f, makeActsAthenaLogger(this, "GBTSConfig")))
163 return StatusCode::FAILURE;
164
165 return StatusCode::SUCCESS;
166}
#define ATH_MSG_FATAL(x)
#define ATH_MSG_INFO(x)
std::unique_ptr< const Acts::Logger > makeActsAthenaLogger(IMessageSvc *svc, const std::string &name, int level, std::optional< std::string > parent_name)
Definition Logger.cxx:64
ServiceHandle< ActsTrk::IDeviceDetectorDescriptionProviderSvc > m_detDescSvc
ToolHandle< ITrigL2LayerNumberTool > m_layerNumberTool
const InDetDD::PixelDetectorManager * m_pixelManager
traccc::gbts_seedfinder_config m_gbts_config
Gaudi::Property< std::string > m_connectionFileName
static std::string find_file(const std::string &logical_file_name, const std::string &search_path)
str index
Definition DeMoScan.py:362
@ layer
Definition HitInfo.h:79

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

Function executing the algorithm.

Definition at line 43 of file DeviceGBTSSeedingAlg.cxx.

44{
45 ATH_MSG_DEBUG("Executing device GBTS seeding.");
46
47 // ---- 1. Read input traccc measurements from StoreGate --------------------------------
48 auto inputTracccPixelSpacepoints = SG::makeHandle(m_inputPixelSPKey, ctx);
49 ATH_CHECK(inputTracccPixelSpacepoints.isValid());
50 ATH_MSG_DEBUG("Read traccc spacepoints from '"
51 << inputTracccPixelSpacepoints.key() << "'");
52
53 auto inputTracccMeasurements = SG::makeHandle(m_inputMeasKey, ctx);
54 ATH_CHECK(inputTracccMeasurements.isValid());
55 ATH_MSG_DEBUG("Read traccc measurements from '"
56 << inputTracccMeasurements.key() << "'");
57
58 // ---- 2. Get traccc seeding alg ---------------------------------------------
59 auto seeding_pair = m_seedingAlgProviderTool->getGBTSAlgorithm(ctx, m_gbts_config);
60 std::shared_ptr<const traccc::device::gbts_seeding_algorithm> seeding_alg = seeding_pair.second;
61
62 // ---- 3. Run traccc pixel seed formation ---------------------------------------------
63 traccc::edm::seed_collection::buffer pixel_seeds_gpu_buffer = (*seeding_alg)(*inputTracccPixelSpacepoints, *inputTracccMeasurements);
64
65 ATH_MSG_DEBUG("Reconstructed " << (seeding_pair.first)->get_size(pixel_seeds_gpu_buffer) << " pixel seeds.");
66
67 // ---- 4. Write output traccc seeds to StoreGate -------------------------
68 auto outputTracccPixelSeeds = SG::makeHandle(m_outputPixelSeedsKey, ctx);
69 ATH_CHECK(outputTracccPixelSeeds.record(
70 std::make_unique<traccc::edm::seed_collection::buffer>(
71 std::move(pixel_seeds_gpu_buffer))));
72 ATH_MSG_DEBUG("Wrote spacepoint buffer to '" << m_outputPixelSeedsKey.key() << "'");
73
74 return StatusCode::SUCCESS;
75}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_DEBUG(x)
SG::ReadHandleKey< traccc::edm::measurement_collection::const_view > m_inputMeasKey
SG::WriteHandleKey< traccc::edm::seed_collection::buffer > m_outputPixelSeedsKey
ToolHandle< IDeviceSeedingAlgProviderTool > m_seedingAlgProviderTool
SG::ReadHandleKey< traccc::edm::spacepoint_collection::const_view > m_inputPixelSPKey
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::DeviceGBTSSeedingAlg::initialize ( )
overridevirtual

Function initializing the algorithm.

Definition at line 24 of file DeviceGBTSSeedingAlg.cxx.

25{
26 ATH_MSG_DEBUG("Initializing " << name());
27
29 ATH_CHECK(m_deviceMR.retrieve());
30 ATH_CHECK(m_inputPixelSPKey.initialize());
31 ATH_CHECK(m_inputMeasKey.initialize());
32 ATH_CHECK(m_outputPixelSeedsKey.initialize());
33
34 ATH_CHECK(detStore()->retrieve(m_pixelManager, "ITkPixel"));
35 ATH_CHECK(detStore()->retrieve(m_pixelID, "PixelID") );
36 ATH_CHECK(m_layerNumberTool.retrieve());
38
39 ATH_MSG_DEBUG("Successfully initialized");
40 return StatusCode::SUCCESS;
41}
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_connectionFileName

Gaudi::Property<std::string> ActsTrk::DeviceGBTSSeedingAlg::m_connectionFileName
private
Initial value:
{this, "ConnectionFileName",
"binTables_ITK_RUN4.txt"}

Definition at line 60 of file DeviceGBTSSeedingAlg.h.

60 {this, "ConnectionFileName",
61 "binTables_ITK_RUN4.txt"};

◆ m_detDescSvc

ServiceHandle<ActsTrk::IDeviceDetectorDescriptionProviderSvc> ActsTrk::DeviceGBTSSeedingAlg::m_detDescSvc
private
Initial value:
{
this, "DetectorDescriptionSvc", "ActsTrk::JSONDeviceDetectorDescriptionProviderSvc"}

Definition at line 90 of file DeviceGBTSSeedingAlg.h.

90 {
91 this, "DetectorDescriptionSvc", "ActsTrk::JSONDeviceDetectorDescriptionProviderSvc"};

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

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

Definition at line 69 of file DeviceGBTSSeedingAlg.h.

69 {
70 this, "DeviceMR", "",
71 "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_gbts_config

traccc::gbts_seedfinder_config ActsTrk::DeviceGBTSSeedingAlg::m_gbts_config
private

Definition at line 100 of file DeviceGBTSSeedingAlg.h.

◆ m_inputMeasKey

SG::ReadHandleKey<traccc::edm::measurement_collection::const_view> ActsTrk::DeviceGBTSSeedingAlg::m_inputMeasKey
private
Initial value:
{
this, "InputTracccMeasurements", "",
"Input traccc measurement collection buffer"}

Definition at line 78 of file DeviceGBTSSeedingAlg.h.

78 {
79 this, "InputTracccMeasurements", "",
80 "Input traccc measurement collection buffer"};

◆ m_inputPixelSPKey

SG::ReadHandleKey<traccc::edm::spacepoint_collection::const_view> ActsTrk::DeviceGBTSSeedingAlg::m_inputPixelSPKey
private
Initial value:
{
this, "InputTracccPixelSpacepoints", "",
"Input traccc spacepoint collection buffer"}

Definition at line 74 of file DeviceGBTSSeedingAlg.h.

74 {
75 this, "InputTracccPixelSpacepoints", "",
76 "Input traccc spacepoint collection buffer"};

◆ m_layerNumberTool

ToolHandle<ITrigL2LayerNumberTool> ActsTrk::DeviceGBTSSeedingAlg::m_layerNumberTool
private
Initial value:
{
this, "layerNumberTool", "TrigL2LayerNumberToolITk"}

Definition at line 96 of file DeviceGBTSSeedingAlg.h.

96 {
97 this, "layerNumberTool", "TrigL2LayerNumberToolITk"};

◆ m_outputPixelSeedsKey

SG::WriteHandleKey<traccc::edm::seed_collection::buffer> ActsTrk::DeviceGBTSSeedingAlg::m_outputPixelSeedsKey
private
Initial value:
{
this, "OutputTracccPixelSeeds", "",
"Output traccc pixel seed collection buffer"}

Definition at line 84 of file DeviceGBTSSeedingAlg.h.

84 {
85 this, "OutputTracccPixelSeeds", "",
86 "Output traccc pixel seed collection buffer"};

◆ m_pixelID

const PixelID* ActsTrk::DeviceGBTSSeedingAlg::m_pixelID {nullptr}
private

Definition at line 94 of file DeviceGBTSSeedingAlg.h.

94{nullptr};

◆ m_pixelManager

const InDetDD::PixelDetectorManager* ActsTrk::DeviceGBTSSeedingAlg::m_pixelManager {nullptr}
private

Definition at line 93 of file DeviceGBTSSeedingAlg.h.

93{nullptr};

◆ m_seedingAlgProviderTool

ToolHandle<IDeviceSeedingAlgProviderTool> ActsTrk::DeviceGBTSSeedingAlg::m_seedingAlgProviderTool
private
Initial value:
{
this, "SeedingAlgProviderTool", "",
"Tool providing the appropriate backend device seeding algorithm"}

Definition at line 65 of file DeviceGBTSSeedingAlg.h.

65 {
66 this, "SeedingAlgProviderTool", "",
67 "Tool providing the appropriate backend device seeding algorithm"};

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