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

#include <RPCSimulation.h>

Inheritance diagram for L0Muon::RPCSimulation:
Collaboration diagram for L0Muon::RPCSimulation:

Public Member Functions

virtual ~RPCSimulation ()=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

StatusCode buildFromTruth (L0Muon::RPCCandDataContainer &outputCands, const EventContext &ctx) const
 build the candidates from the MC truth
std::vector< const xAOD::MuonSimHit * > collectHits (const xAOD::TruthParticle &truthPart, 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

Gaudi::Property< bool > m_useTruth {this, "UseTruth", true, "Use truth information to build candidates"}
 configuration options
Gaudi::Property< bool > m_usePatterns {this, "UsePatterns", false, "Use patterns to build candidates"}
SG::ReadHandleKey< xAOD::NRPCRDOContainerm_keyRpcRdo {this, "NrpcRdoKey", "NRPCRDO", "Location of input RpcRDO"}
 RPC Rdo.
SG::WriteHandleKey< L0Muon::RPCCandDataContainerm_outputCandKey
 Output Trigger candidates.
ToolHandle< GenericMonitoringToolm_monTool {this, "MonTool", "", "Monitoring Tool"}
SG::ReadHandleKey< xAOD::TruthParticleContainerm_truthPartKey {this, "TruthPartKey", "MuonTruthParticles"}
 truth containers
SG::ReadDecorHandleKey< xAOD::TruthParticleContainerm_segmentLinkKey
ServiceHandle< Muon::IMuonIdHelperSvcm_idHelperSvc
 helper service
SG::ReadHandleKey< ActsTrk::GeometryContextm_geoCtxKey {this, "AlignmentKey", "ActsAlignment", "cond handle key"}
const MuonGMR4::MuonDetectorManagerm_detMgr {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

Detailed Description

Definition at line 27 of file RPCSimulation.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

◆ ~RPCSimulation()

virtual L0Muon::RPCSimulation::~RPCSimulation ( )
virtualdefault

Member Function Documentation

◆ buildFromTruth()

StatusCode L0Muon::RPCSimulation::buildFromTruth ( L0Muon::RPCCandDataContainer & outputCands,
const EventContext & ctx ) const
private

build the candidates from the MC truth

retrieve the truth hits

retrieve the truth particles

create the trigger candidates from the MC truth

Set the charge bit to zero for negative muons, 1 for positive muons

create the candidate do not set the sectorId and bcTag for the moment

loop on the truth hits and look for those associated with the muon

using for the moment the local position of the hit

Definition at line 104 of file RPCSimulation.cxx.

106 {
107 const ActsTrk::GeometryContext* geoContextHandle{nullptr};
108 ATH_CHECK(SG::get(geoContextHandle, m_geoCtxKey, ctx));
109 const ActsTrk::GeometryContext& gctx{*geoContextHandle};
111 const RpcIdHelper& id_helper{m_idHelperSvc->rpcIdHelper()};
113 const xAOD::TruthParticleContainer *truthParticles = nullptr;
114 ATH_CHECK(SG::get(truthParticles, m_truthPartKey, ctx));
115
117 for (const xAOD::TruthParticle* truthMuon : *truthParticles) {
118 std::vector<const xAOD::MuonSimHit*> rpcHits = collectHits(*truthMuon, ctx);
119 if (rpcHits.empty()) {
120 continue;
121 }
122
123 ATH_MSG_DEBUG("Found a muon with pdgId: " << truthMuon->pdgId());
124 const auto muonP4 = truthMuon->p4();
125
126 // Create a new candidate
127 float eta = truthMuon->eta();
128 float phi = truthMuon->phi();
129 float pt = truthMuon->pt();
131 uint8_t charge = truthMuon->charge() < 0 ? 0 : 1;
132
135 uint16_t subdetectorId = eta > 0 ? 0x65 : 0x66;
136 auto cand = std::make_unique<L0Muon::RPCCandData>(subdetectorId, 0, 0);
137
138 cand->setEta(eta);
139 cand->setPhi(phi);
140 cand->setPt(pt);
141 cand->setThreshold(0);
142 cand->setCharge(charge);
143 cand->setMdtFlag(0);
144
145 std::array<float, 4> zPos{};
146 std::array<int, 4> nZPos{};
148 for (const xAOD::MuonSimHit* hit : rpcHits) {
150
151 // get the hit identifier and the strip position
152 const Identifier id = hit->identify();
153
154 const MuonGMR4::RpcReadoutElement* detEl = m_detMgr->getRpcReadoutElement(id);
155
156 float hitPosZ = detEl->stripPosition(gctx,id).z();
157 switch (m_idHelperSvc->stationIndex(id)) {
159 case BI: {
160 zPos[0] += hitPosZ;
161 ++nZPos[0];
162 break;
163 } case BM: {
164 const int dR = id_helper.doubletR(id);
165 zPos[dR] += hitPosZ;
166 ++nZPos[dR];
167 break;
168 } case BO: {
169 zPos[3] += hitPosZ;
170 ++nZPos[3];
171 break;
172 } default :{
173 ATH_MSG_WARNING("Unknown RPC station: " << m_idHelperSvc->toString(hit->identify()));
174 break;
175 }
176 }
177 }
178 // Set the Z positions in the candidate
179 for (int i = 0; i < 4; ++i) {
180 if (nZPos[i] > 0) {
181 zPos[i] = std::abs(zPos[i]); // Use absolute value for Z position
182 zPos[i] /= nZPos[i];
183 // Normalize the Z position to the range of 12 bits
184 // The range is from 0 to +12500, so we map it to 0-4095
185 cand->setZPos(static_cast<uint16_t>(zPos[i]/
187 }
188 }
189 cand->setQuality(L0Muon::RPCCandData::Quality::Q_BEST);
190 outputCands.push_back(std::move(cand));
191 }
192 // Implementation of building candidates from truth
193 return StatusCode::SUCCESS;
194 }
Scalar eta() const
pseudorapidity method
Scalar phi() const
phi method
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_WARNING(x)
#define ATH_MSG_DEBUG(x)
double charge(const T &p)
Definition AtlasPID.h:997
value_type push_back(value_type pElem)
Add an element to the end of the collection.
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
SG::ReadHandleKey< xAOD::TruthParticleContainer > m_truthPartKey
truth containers
std::vector< const xAOD::MuonSimHit * > collectHits(const xAOD::TruthParticle &truthPart, const EventContext &ctx) const
const MuonGMR4::MuonDetectorManager * m_detMgr
ServiceHandle< Muon::IMuonIdHelperSvc > m_idHelperSvc
helper service
SG::ReadHandleKey< ActsTrk::GeometryContext > m_geoCtxKey
Amg::Vector3D stripPosition(const ActsTrk::GeometryContext &ctx, const Identifier &measId) const
Returns the position of the strip center.
int doubletR(const Identifier &id) const
StIndex
enum to classify the different station layers in the muon spectrometer
const T * get(const ReadCondHandleKey< T > &key, const EventContext &ctx)
Convenience function to retrieve an object given a ReadCondHandleKey.
MuonSimHit_v1 MuonSimHit
Defined the version of the MuonSimHit.
Definition MuonSimHit.h:12
TruthParticle_v1 TruthParticle
Typedef to implementation.
setWord1 uint16_t
TruthParticleContainer_v1 TruthParticleContainer
Declare the latest version of the truth particle container.

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

◆ collectHits()

std::vector< const xAOD::MuonSimHit * > L0Muon::RPCSimulation::collectHits ( const xAOD::TruthParticle & truthPart,
const EventContext & ctx ) const
private

Definition at line 78 of file RPCSimulation.cxx.

79 {
80
81 using SegLink_t = ElementLink<xAOD::MuonSegmentContainer>;
82 using SegLinkVec_t = std::vector<SegLink_t>;
83
84 SG::ReadDecorHandle<xAOD::TruthParticleContainer, SegLinkVec_t> acc_link{m_segmentLinkKey, ctx};
85 std::vector<const xAOD::MuonSimHit*> rpcHits{};
86
87 for (const SegLink_t& link : acc_link(truthPart)) {
88 const xAOD::MuonSegment* segment{*link};
90 continue;
91 }
92 auto simHits = MuonR4::getMatchingSimHits(*segment);
93 std::ranges::copy_if(simHits, std::back_inserter(rpcHits),
94 [this](const xAOD::MuonSimHit* hit){
95 return m_idHelperSvc->isRpc(hit->identify());
96 });
97 }
98 std::ranges::sort(rpcHits, [](const xAOD::MuonSimHit* a, const xAOD::MuonSimHit* b){
99 return a->identify() < b->identify();
100 });
101 return rpcHits;
102 }
static Double_t a
SG::ReadDecorHandleKey< xAOD::TruthParticleContainer > m_segmentLinkKey
::Muon::MuonStationIndex::ChIndex chamberIndex() const
Returns the chamber index.
Identifier identify() const
Returns the global ATLAS identifier of the SimHit.
std::unordered_set< const xAOD::MuonSimHit * > getMatchingSimHits(const xAOD::MuonSegment &segment)
: Returns all sim hits matched to a xAOD::MuonSegment
ElementLink< MuonR4::SegmentContainer > SegLink_t
Abrivation of the link to the reco segment container.
std::vector< SegLink_t > SegLinkVec_t
bool isBarrel(const ChIndex index)
Returns true if the chamber index points to a barrel chamber.
MuonSegment_v1 MuonSegment
Reference the current persistent version:

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

monitor RDO quantities

Definition at line 43 of file RPCSimulation.cxx.

44 {
45 ATH_MSG_DEBUG("Executing " << name() << "...");
46
47 // output candidates container
48 SG::WriteHandle outputCands(m_outputCandKey, ctx);
49 ATH_CHECK(outputCands.record(std::make_unique<L0Muon::RPCCandDataContainer>()));
50
51 if (m_useTruth)
52 {
53 ATH_CHECK(buildFromTruth(*outputCands, ctx));
54 }
55 else if (m_usePatterns)
56 {
57 // ATH_CHECK(buildFromPatterns(outputCands, ctx));
58 }
59 else
60 {
61 ATH_MSG_ERROR("No valid option selected for building candidates.");
62 return StatusCode::FAILURE;
63 }
64
65 SG::ReadHandle inputRDO(m_keyRpcRdo, ctx);
66 ATH_CHECK(inputRDO.isPresent());
67 ATH_MSG_DEBUG("Number of RPC RDO: " << inputRDO->size());
68
70 if (!m_monTool.empty())
71 {
72 auto n_of_RDO = Monitored::Scalar<unsigned int>("n_of_RDO", inputRDO->size());
73 }
74
75 return StatusCode::SUCCESS;
76 }
#define ATH_MSG_ERROR(x)
StatusCode buildFromTruth(L0Muon::RPCCandDataContainer &outputCands, const EventContext &ctx) const
build the candidates from the MC truth
Gaudi::Property< bool > m_usePatterns
Gaudi::Property< bool > m_useTruth
configuration options
SG::WriteHandleKey< L0Muon::RPCCandDataContainer > m_outputCandKey
Output Trigger candidates.
SG::ReadHandleKey< xAOD::NRPCRDOContainer > m_keyRpcRdo
RPC Rdo.
ToolHandle< GenericMonitoringTool > m_monTool

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::extraDeps_update_handler ( Gaudi::Details::PropertyBase & ExtraDeps)
protectedinherited

Add StoreName to extra input/output deps as needed.

use the logic of the VarHandleKey to parse the DataObjID keys supplied via the ExtraInputs and ExtraOuputs Properties to add the StoreName if it's not explicitly given

◆ extraOutputDeps()

const DataObjIDColl & AthCommonReentrantAlgorithm< Gaudi::Algorithm >::extraOutputDeps ( ) const
overridevirtualinherited

Return the list of extra output dependencies.

This list is extended to include symlinks implied by inheritance relations.

Definition at line 94 of file AthCommonReentrantAlgorithm.cxx.

90{
91 // If we didn't find any symlinks to add, just return the collection
92 // from the base class. Otherwise, return the extended collection.
93 if (!m_extendedExtraObjects.empty()) {
95 }
97}
An algorithm that can be simultaneously executed in multiple threads.

◆ filterPassed()

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

Definition at line 96 of file AthCommonReentrantAlgorithm.h.

96 {
97 return execState( ctx ).filterPassed();
98 }
virtual bool filterPassed(const EventContext &ctx) const

◆ initialize()

StatusCode L0Muon::RPCSimulation::initialize ( )
overridevirtual

container of output candidates

retrieve the monitoring tool

Definition at line 22 of file RPCSimulation.cxx.

23 {
24 ATH_MSG_DEBUG("Initializing " << name() << "...");
25
26 ATH_CHECK(m_truthPartKey.initialize());
27 ATH_CHECK(m_segmentLinkKey.initialize());
28
29 ATH_CHECK(m_keyRpcRdo.initialize());
30 ATH_CHECK(m_geoCtxKey.initialize());
32 ATH_CHECK(m_idHelperSvc.retrieve());
34 ATH_CHECK(m_outputCandKey.initialize());
35
37 if (!m_monTool.empty())
38 ATH_CHECK(m_monTool.retrieve());
39
40 return StatusCode::SUCCESS;
41 }
const ServiceHandle< StoreGateSvc > & detStore() const
retrieve(aClass, aKey=None)
Definition PyKernel.py:110

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::inputHandles ( ) const
overridevirtualinherited

Return this algorithm's input handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ isClonable()

◆ msg()

MsgStream & AthCommonMsg< Gaudi::Algorithm >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

24 {
25 return this->msgStream();
26 }

◆ msgLvl()

bool AthCommonMsg< Gaudi::Algorithm >::msgLvl ( const MSG::Level lvl) const
inlineinherited

Definition at line 30 of file AthCommonMsg.h.

30 {
31 return this->msgLevel(lvl);
32 }

◆ outputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::outputHandles ( ) const
overridevirtualinherited

Return this algorithm's output handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ renounce()

std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::renounce ( T & h)
inlineprotectedinherited

Definition at line 380 of file AthCommonDataStore.h.

381 {
382 h.renounce();
384 }
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce(T &h)

◆ renounceArray()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ setFilterPassed()

virtual void AthCommonReentrantAlgorithm< Gaudi::Algorithm >::setFilterPassed ( bool state,
const EventContext & ctx ) const
inlinevirtualinherited

Definition at line 100 of file AthCommonReentrantAlgorithm.h.

100 {
102 }
virtual void setFilterPassed(bool state, const EventContext &ctx) const

◆ sysExecute()

StatusCode AthCommonReentrantAlgorithm< Gaudi::Algorithm >::sysExecute ( const EventContext & ctx)
overridevirtualinherited

Execute an algorithm.

We override this in order to work around an issue with the Algorithm base class storing the event context in a member variable that can cause crashes in MT jobs.

Definition at line 85 of file AthCommonReentrantAlgorithm.cxx.

77{
78 return BaseAlg::sysExecute (ctx);
79}

◆ sysInitialize()

StatusCode AthCommonReentrantAlgorithm< Gaudi::Algorithm >::sysInitialize ( )
overridevirtualinherited

Override sysInitialize.

Override sysInitialize from the base class.

Loop through all output handles, and if they're WriteCondHandles, automatically register them and this Algorithm with the CondSvc

Scan through all outputHandles, and if they're WriteCondHandles, register them with the CondSvc

Reimplemented from AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >.

Reimplemented in HypoBase, and InputMakerBase.

Definition at line 61 of file AthCommonReentrantAlgorithm.cxx.

107 {
109
110 if (sc.isFailure()) {
111 return sc;
112 }
113
114 ServiceHandle<ICondSvc> cs("CondSvc",name());
115 for (auto h : outputHandles()) {
116 if (h->isCondition() && h->mode() == Gaudi::DataHandle::Writer) {
117 // do this inside the loop so we don't create the CondSvc until needed
118 if ( cs.retrieve().isFailure() ) {
119 ATH_MSG_WARNING("no CondSvc found: won't autoreg WriteCondHandles");
120 return StatusCode::SUCCESS;
121 }
122 if (cs->regHandle(this,*h).isFailure()) {
124 ATH_MSG_ERROR("unable to register WriteCondHandle " << h->fullKey()
125 << " with CondSvc");
126 }
127 }
128 }
129 return sc;
130}
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_detMgr

const MuonGMR4::MuonDetectorManager* L0Muon::RPCSimulation::m_detMgr {nullptr}
private

Definition at line 67 of file RPCSimulation.h.

67{nullptr};

◆ 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::RPCSimulation::m_geoCtxKey {this, "AlignmentKey", "ActsAlignment", "cond handle key"}
private

Definition at line 66 of file RPCSimulation.h.

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

◆ m_idHelperSvc

ServiceHandle<Muon::IMuonIdHelperSvc> L0Muon::RPCSimulation::m_idHelperSvc
private
Initial value:
{this, "MuonIdHelperSvc", "Muon::MuonIdHelperSvc/MuonIdHelperSvc",
"Muon Id Helper Service"}

helper service

Definition at line 64 of file RPCSimulation.h.

64 {this, "MuonIdHelperSvc", "Muon::MuonIdHelperSvc/MuonIdHelperSvc",
65 "Muon Id Helper Service"};

◆ m_keyRpcRdo

SG::ReadHandleKey<xAOD::NRPCRDOContainer> L0Muon::RPCSimulation::m_keyRpcRdo {this, "NrpcRdoKey", "NRPCRDO", "Location of input RpcRDO"}
private

RPC Rdo.

Definition at line 50 of file RPCSimulation.h.

50{this, "NrpcRdoKey", "NRPCRDO", "Location of input RpcRDO"};

◆ m_monTool

ToolHandle<GenericMonitoringTool> L0Muon::RPCSimulation::m_monTool {this, "MonTool", "", "Monitoring Tool"}
private

Definition at line 55 of file RPCSimulation.h.

55{this, "MonTool", "", "Monitoring Tool"};

◆ m_outputCandKey

SG::WriteHandleKey<L0Muon::RPCCandDataContainer> L0Muon::RPCSimulation::m_outputCandKey
private
Initial value:
{this, "L0MuonRPCCandKey", "L0MuonRPCCand",
"LVL0 Barrel trigger candidates in the Muon RPC"}

Output Trigger candidates.

Definition at line 53 of file RPCSimulation.h.

53 {this, "L0MuonRPCCandKey", "L0MuonRPCCand",
54 "LVL0 Barrel trigger candidates in the Muon RPC"};

◆ m_segmentLinkKey

SG::ReadDecorHandleKey<xAOD::TruthParticleContainer> L0Muon::RPCSimulation::m_segmentLinkKey
private
Initial value:
{this, "SegmentLinkKey", m_truthPartKey,
"truthSegmentLinks"}

Definition at line 60 of file RPCSimulation.h.

60 {this, "SegmentLinkKey", m_truthPartKey,
61 "truthSegmentLinks"};

◆ m_truthPartKey

SG::ReadHandleKey<xAOD::TruthParticleContainer> L0Muon::RPCSimulation::m_truthPartKey {this, "TruthPartKey", "MuonTruthParticles"}
private

truth containers

Definition at line 58 of file RPCSimulation.h.

58{this, "TruthPartKey", "MuonTruthParticles"};

◆ m_usePatterns

Gaudi::Property<bool> L0Muon::RPCSimulation::m_usePatterns {this, "UsePatterns", false, "Use patterns to build candidates"}
private

Definition at line 47 of file RPCSimulation.h.

47{this, "UsePatterns", false, "Use patterns to build candidates"};

◆ m_useTruth

Gaudi::Property<bool> L0Muon::RPCSimulation::m_useTruth {this, "UseTruth", true, "Use truth information to build candidates"}
private

configuration options

Definition at line 46 of file RPCSimulation.h.

46{this, "UseTruth", true, "Use truth information to build candidates"};

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