ATLAS Offline Software
Loading...
Searching...
No Matches
L0Muon::MDTSimulation Class Reference

#include <MDTSimulation.h>

Inheritance diagram for L0Muon::MDTSimulation:
Collaboration diagram for L0Muon::MDTSimulation:

Public Member Functions

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

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

bool fitRPC (const L0Muon::RPCCandData &cand, float &m, float &b, std::vector< float > &z_positions, std::vector< float > &r_positions) const
StatusCode collectMDTHits (const EventContext &ctx, const ActsTrk::GeometryContext &gctx, float eta, float phi, std::vector< const xAOD::MdtDriftCircle * > &hits, float m, float b) const
float computeResidual (const Amg::Vector3D &gpos, float m, float b) const
StatusCode Calibration (const xAOD::MdtDriftCircle *mdt, const EventContext &ctx) const
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

ToolHandle< IMdtCalibrationToolm_calibrationTool {this, "CalibrationTool", "MdtCalibrationTool"}
ToolHandle< IRegSelToolm_regionSelector {this, "RegSel_MDT", "RegSelTool/RegSelTool_MDT"}
ServiceHandle< Muon::IMuonIdHelperSvcm_idHelperSvc {this, "MuonIdHelperSvc", "Muon::MuonIdHelperSvc/MuonIdHelperSvc"}
SG::ReadHandleKey< ActsTrk::GeometryContextm_geoCtxKey {this, "AlignmentKey", "ActsAlignment", "cond handle key"}
SG::ReadHandleKey< xAOD::MdtDriftCircleContainerm_mdtDriftCircleKey
SG::ReadHandleKey< L0Muon::RPCCandDataContainerm_barrelCandidateKey
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

Definition at line 26 of file MDTSimulation.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

◆ ~MDTSimulation()

virtual L0Muon::MDTSimulation::~MDTSimulation ( )
virtualdefault

Member Function Documentation

◆ Calibration()

StatusCode L0Muon::MDTSimulation::Calibration ( const xAOD::MdtDriftCircle * mdt,
const EventContext & ctx ) const
private

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

◆ collectMDTHits()

StatusCode L0Muon::MDTSimulation::collectMDTHits ( const EventContext & ctx,
const ActsTrk::GeometryContext & gctx,
float eta,
float phi,
std::vector< const xAOD::MdtDriftCircle * > & hits,
float m,
float b ) const
private

Definition at line 107 of file MDTSimulation.cxx.

107 {
108
109 hits.clear();
110
111 const float dEta = 0.01f, dPhi = 0.01f;
112
113
114 RoiDescriptor roi(eta, eta-dEta, eta+dEta,
115 phi, phi-dPhi, phi+dPhi);
116 TrigRoiDescriptor trigROI(roi);
117
118
119 auto regSel = m_regionSelector->lookup(ctx);
120 if (!regSel) return StatusCode::FAILURE;
121
122 std::vector<IdentifierHash> hashList;
123 regSel->HashIDList(trigROI, hashList);
124
125
126 const xAOD::MdtDriftCircleContainer* driftCircles{};
127 ATH_CHECK(SG::get(driftCircles, m_mdtDriftCircleKey, ctx));
128
129 float windowSize = 5;
130
131 ATH_MSG_DEBUG("found n chamber hashes " << hashList.size());
132 xAOD::ChamberViewer viewer{*driftCircles, m_idHelperSvc.get(), xAOD::ChamberView::Mode::Chamber};
133 IdContext modContext = m_idHelperSvc->mdtIdHelper().module_context();
134 for (const IdentifierHash& h : hashList) {
135 Identifier mId;
136 m_idHelperSvc->mdtIdHelper().get_id(h, mId, &modContext);
137 ATH_MSG_DEBUG("looking at chamber " << m_idHelperSvc->toString(mId));
138
139 if(!viewer.loadView(mId)){
140 continue;
141 }
142 for(const xAOD::MdtDriftCircle* dc : viewer){
143 const MuonGMR4::MdtReadoutElement* detEl = viewer.at(0)->readoutElement();
144 const float pitch = detEl->tubePitch();
145 const Amg::Transform3D& locToGlob= detEl->localToGlobalTransform(gctx,dc->measurementHash());
146 const Amg::Vector3D gpos = locToGlob* dc->localMeasurementPos() ;
147
148 float resZ = computeResidual(gpos, m, b);
149
150 if (std::abs(resZ) > windowSize * pitch) continue;
151
152 hits.push_back(dc);
153
154 }
155 }
156 return StatusCode::SUCCESS;
157 }
Scalar eta() const
pseudorapidity method
Scalar phi() const
phi method
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_DEBUG(x)
Athena::TPCnvVers::Current TrigRoiDescriptor
float computeResidual(const Amg::Vector3D &gpos, float m, float b) const
ToolHandle< IRegSelTool > m_regionSelector
SG::ReadHandleKey< xAOD::MdtDriftCircleContainer > m_mdtDriftCircleKey
ServiceHandle< Muon::IMuonIdHelperSvc > m_idHelperSvc
double tubePitch() const
Returns the pitch between 2 tubes in a layer.
const Amg::Transform3D & localToGlobalTransform(const ActsTrk::GeometryContext &ctx) const
Returns the transformation from the local coordinate system of the readout element into the global AT...
bool loadView(const Identifier &chamberId)
Loads the view matching the parsed identifier.
Eigen::Affine3d Transform3D
Eigen::Matrix< double, 3, 1 > Vector3D
const T * get(const ReadCondHandleKey< T > &key, const EventContext &ctx)
Convenience function to retrieve an object given a ReadCondHandleKey.
bool dPhi(const xAOD::TauJet &tau, const xAOD::CaloVertexedTopoCluster &cluster, float &out)
bool dEta(const xAOD::TauJet &tau, const xAOD::CaloVertexedTopoCluster &cluster, float &out)
@ Chamber
View ends if the moduleHash changes.
MdtDriftCircle_v1 MdtDriftCircle
MdtDriftCircleContainer_v1 MdtDriftCircleContainer

◆ computeResidual()

float L0Muon::MDTSimulation::computeResidual ( const Amg::Vector3D & gpos,
float m,
float b ) const
private

Definition at line 161 of file MDTSimulation.cxx.

161 {
162 float z_pred = (m!=0.f ? (gpos.perp() - b)/m : 0.f);
163 return gpos.z() - z_pred;
164 }

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

Definition at line 27 of file MDTSimulation.cxx.

27 {
28
29 const RPCCandDataContainer* barrelCandidates{nullptr};
30 ATH_CHECK(SG::get(barrelCandidates, m_barrelCandidateKey, ctx));
31
32 const xAOD::MdtDriftCircleContainer* driftCircles{nullptr};
33 ATH_CHECK(SG::get(driftCircles, m_mdtDriftCircleKey, ctx));
34
35 const ActsTrk::GeometryContext* geoCtx{nullptr};
36 ATH_CHECK(SG::get(geoCtx, m_geoCtxKey, ctx));
37
38
39 const ActsTrk::GeometryContext& gctx = *geoCtx;
40 std::vector<float> z_positions, r_positions;
41
42 for(const auto& cand : *barrelCandidates) {
43
44 float m=0, b=0;
45 z_positions.clear();
46 r_positions.clear();
47 if (!fitRPC(*cand, m, b, z_positions, r_positions)) {
48 ATH_MSG_DEBUG("RPC fit failed for this candidate");
49 continue; // do NOT abort event
50 }
51
52
53 std::vector<const xAOD::MdtDriftCircle*> mdtHits;
54
55 ATH_CHECK(collectMDTHits(ctx, gctx, cand->eta(), cand->phi(), mdtHits, m, b));
56
57 }
58
59 return StatusCode::SUCCESS;
60 }
StatusCode collectMDTHits(const EventContext &ctx, const ActsTrk::GeometryContext &gctx, float eta, float phi, std::vector< const xAOD::MdtDriftCircle * > &hits, float m, float b) const
SG::ReadHandleKey< ActsTrk::GeometryContext > m_geoCtxKey
bool fitRPC(const L0Muon::RPCCandData &cand, float &m, float &b, std::vector< float > &z_positions, std::vector< float > &r_positions) const
SG::ReadHandleKey< L0Muon::RPCCandDataContainer > m_barrelCandidateKey
DataVector< RPCCandData > RPCCandDataContainer

◆ 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

◆ fitRPC()

bool L0Muon::MDTSimulation::fitRPC ( const L0Muon::RPCCandData & cand,
float & m,
float & b,
std::vector< float > & z_positions,
std::vector< float > & r_positions ) const
private

Definition at line 63 of file MDTSimulation.cxx.

63 {
64
65 float theta = 2.f * std::atan(std::exp(-cand.eta()));
66 float tanTheta = std::tan(theta);
67
68 z_positions.clear();
69 r_positions.clear();
70
71
72 for (int i = 0; i < 4; ++i) {
73 const uint16_t z_bits = cand.zPos(i);
74 if (!z_bits) continue;
75 const float z_norm = static_cast<float>(z_bits) / RPCCandData::s_zPosBitRange;
76 const float z_mm = z_norm * RPCCandData::s_zPosRange;
77
78 z_positions.push_back(z_mm);
79 r_positions.push_back(z_mm * tanTheta);
80 }
81
82 size_t N = z_positions.size();
83 if (N < 1) return false; // nothing to fit
84
85 float sumZ=0, sumR=0, sumZZ=0, sumZR=0;
86 for (size_t i=0;i<N;++i) {
87 sumZ += z_positions[i];
88 sumR += r_positions[i];
89 sumZZ += z_positions[i]*z_positions[i];
90 sumZR += z_positions[i]*r_positions[i];
91 }
92
93 if (N>=2) {
94 float den = N*sumZZ - sumZ*sumZ;
95 if (den != 0) {
96 m = (N*sumZR - sumZ*sumR) / den;
97 b = (sumR - m*sumZ) / N;
98 }
99 } else {//if the RPC candidate has only one z position we provide the fit using IP
100 m = tanTheta;
101 b = 0.f;
102 }
103
104 return true;
105 }
Scalar theta() const
theta method
float eta() const
get the kinematic parameters
Definition ICandData.cxx:27
static constexpr float s_zPosRange
range of the RPC hits z positions
Definition RPCCandData.h:37
static constexpr uint16_t s_zPosBitRange
12 bits for z position
Definition RPCCandData.h:41
float zPos(int index) const
setWord1 uint16_t

◆ initialize()

StatusCode L0Muon::MDTSimulation::initialize ( )
overridevirtual

Definition at line 14 of file MDTSimulation.cxx.

14 {
15 ATH_MSG_DEBUG("Initializing " << name() << "...");
16 ATH_CHECK(m_mdtDriftCircleKey.initialize());
17 ATH_CHECK(m_barrelCandidateKey.initialize());
18 ATH_CHECK(m_regionSelector.retrieve());
19 ATH_CHECK(m_idHelperSvc.retrieve());
20 ATH_CHECK(m_calibrationTool.retrieve());
21 ATH_CHECK(m_geoCtxKey.initialize());
22
23
24 return StatusCode::SUCCESS;
25 }
ToolHandle< IMdtCalibrationTool > m_calibrationTool

◆ 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)
#define ATH_MSG_WARNING(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_barrelCandidateKey

SG::ReadHandleKey<L0Muon::RPCCandDataContainer> L0Muon::MDTSimulation::m_barrelCandidateKey
private
Initial value:
{
this, "L0MuonRPCCandKey", "L0MuonRPCCand"}

Definition at line 64 of file MDTSimulation.h.

64 {
65 this, "L0MuonRPCCandKey", "L0MuonRPCCand"};

◆ m_calibrationTool

ToolHandle<IMdtCalibrationTool> L0Muon::MDTSimulation::m_calibrationTool {this, "CalibrationTool", "MdtCalibrationTool"}
private

Definition at line 54 of file MDTSimulation.h.

54{this, "CalibrationTool", "MdtCalibrationTool"};

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

SG::ReadHandleKey<ActsTrk::GeometryContext> L0Muon::MDTSimulation::m_geoCtxKey {this, "AlignmentKey", "ActsAlignment", "cond handle key"}
private

Definition at line 57 of file MDTSimulation.h.

57{this, "AlignmentKey", "ActsAlignment", "cond handle key"};

◆ m_idHelperSvc

ServiceHandle<Muon::IMuonIdHelperSvc> L0Muon::MDTSimulation::m_idHelperSvc {this, "MuonIdHelperSvc", "Muon::MuonIdHelperSvc/MuonIdHelperSvc"}
private

Definition at line 56 of file MDTSimulation.h.

56{this, "MuonIdHelperSvc", "Muon::MuonIdHelperSvc/MuonIdHelperSvc"};

◆ m_mdtDriftCircleKey

SG::ReadHandleKey<xAOD::MdtDriftCircleContainer> L0Muon::MDTSimulation::m_mdtDriftCircleKey
private
Initial value:
{
this, "MdtDriftCircles", "xMdtDriftCircles"
}

Definition at line 60 of file MDTSimulation.h.

60 {
61 this, "MdtDriftCircles", "xMdtDriftCircles"
62 };

◆ m_regionSelector

ToolHandle<IRegSelTool> L0Muon::MDTSimulation::m_regionSelector {this, "RegSel_MDT", "RegSelTool/RegSelTool_MDT"}
private

Definition at line 55 of file MDTSimulation.h.

55{this, "RegSel_MDT", "RegSelTool/RegSelTool_MDT"};

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