ATLAS Offline Software
Loading...
Searching...
No Matches
MuonCombinedR4::MuonCreatorAlg Class Reference

Algorithm to create the xAOD::Muon analysis objects from the various muon reconstruction chains. More...

#include <MuonCreatorAlg.h>

Inheritance diagram for MuonCombinedR4::MuonCreatorAlg:
Collaboration diagram for MuonCombinedR4::MuonCreatorAlg:

Classes

struct  DataShip
 Helper struct to ship the data containers across the methods. More...

Public Types

using TrackLink_t = ElementLink<xAOD::TrackParticleContainer>
 Abrivate the ElementLink to the track particles.

Public Member Functions

virtual StatusCode initialize () override final
virtual StatusCode execute (const EventContext &ctx) const override final
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 setupDataShip (const EventContext &ctx, DataShip &ship) const
 Load all containers from store gate and setup the output containers.
void createMuon (const EventContext &ctx, const std::span< const MuonR4::MuonTag *const > &muTags, DataShip &ship) const
 Create the xAOD::Muon from the list of muon tags.
TrackLink_t linkParticle (const EventContext &ctx, const xAOD::TrackParticle *trk) const
 Constructs an element link to the passed track particle If a nullptr is passed, an empty link is returned.
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

ToolHandle< CP::IMuonSelectionToolm_selectionTool {this, "SelectionTool", ""}
 The Muon selection tool to assess the muon quality.
SG::WriteHandleKey< xAOD::MuonContainerm_muonKey {this, "MuonKey", "Muons"}
 Key name to store the primary muon container.
SG::ReadHandleKeyArray< MuonR4::MuonTagContainerm_tagKeys {this, "TagKeys", {}}
 Key name under which the input tags can be found.
ToolHandle< MuonR4::ITrackSummaryToolm_summaryTool {this, "SummaryTool" , ""}
 Handle to the muon summary tool.
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

Algorithm to create the xAOD::Muon analysis objects from the various muon reconstruction chains.

The configured MuonTag containers are grouped by the commonly shared ID track particle and the tags are then ordered to define the muon's momentum and author. The parameters and track summaries are copied onto the muon as well as the links to the associated track particles

Definition at line 29 of file MuonSpectrometer/MuonPhaseII/MuonIdentification/MuonCombinedAlgsR4/src/MuonCreatorAlg.h.

Member Typedef Documentation

◆ StoreGateSvc_t

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

Definition at line 388 of file AthCommonDataStore.h.

◆ TrackLink_t

Member Function Documentation

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

62{
63 return 0;
64}

◆ createMuon()

void MuonCreatorAlg::createMuon ( const EventContext & ctx,
const std::span< const MuonR4::MuonTag *const > & muTags,
DataShip & ship ) const
private

Create the xAOD::Muon from the list of muon tags.

The first tag in the list seves as primary author and to define the muon's momentum. The remaining ones just copy the parameters and additional track particle links onto the muon.

Parameters
ctxEventContext to establish the ElementLink
muTagsSorted list of muon tags to be transformed into a muon object
shipThe data holder in the event to whose containers the muon is appended to

Link the available particles

Definition at line 90 of file MuonSpectrometer/MuonPhaseII/MuonIdentification/MuonCombinedAlgsR4/src/MuonCreatorAlg.cxx.

92 {
93 // Create a new muon
94 xAOD::Muon* newMuon = ship.muons->push_back(std::make_unique<xAOD::Muon>());
95
96 bool p4Set{false}, summarySet{false};
97 using SegLink_t = ElementLink<xAOD::MuonSegmentContainer>;
98 std::vector<SegLink_t> segLinks{};
99
100 std::unordered_set<const xAOD::MuonSegment*> addedSegs{};
101 for (const MuonR4::MuonTag* tag : muTags) {
102 if (!p4Set) {
103 const xAOD::TrackParticle* pTrk = tag->primaryTrack();
104 newMuon->setP4(pTrk->pt(), pTrk->eta(), pTrk->phi());
105 newMuon->setCharge(pTrk->charge());
106 newMuon->setAuthor(tag->author());
107 }
108 if (!summarySet && tag->summary()) {
109 m_summaryTool->copySummary(*tag->summary(), *newMuon);
110 summarySet = true;
111 }
112 using Trk_t = xAOD::Muon::TrackParticleType;
114 if (!p4Set || !newMuon->trackParticle(Trk_t::InnerDetectorTrackParticle)){
115 newMuon->setTrackParticleLink(Trk_t::InnerDetectorTrackParticle,
116 linkParticle(ctx, tag->idTrack()));
117 }
118 if (!p4Set || !newMuon->trackParticle(Trk_t::MuonSpectrometerTrackParticle)){
119 newMuon->setTrackParticleLink(Trk_t::MuonSpectrometerTrackParticle,
120 linkParticle(ctx, tag->msTrack()));
121 }
122 if (!p4Set || !newMuon->trackParticle(Trk_t::CombinedTrackParticle)){
123 newMuon->setTrackParticleLink(Trk_t::CombinedTrackParticle,
124 linkParticle(ctx, tag->cbTrack()));
125 }
126 for (const xAOD::MuonSegment* seg : tag->segments()) {
127 if (addedSegs.insert(seg).second) {
128 segLinks.emplace_back(static_cast<const xAOD::MuonSegmentContainer&>(*seg->container()),
129 seg->index(), ctx);
130 }
131 }
132 newMuon->addAllAuthor(tag->author());
133 tag->copyParameters(*newMuon);
134 p4Set = true;
135 }
136 newMuon->setMuonSegmentLinks(segLinks);
137 m_selectionTool->setPassesIDCuts(*newMuon);
138 m_selectionTool->setQuality(*newMuon);
139}
ToolHandle< CP::IMuonSelectionTool > m_selectionTool
The Muon selection tool to assess the muon quality.
TrackLink_t linkParticle(const EventContext &ctx, const xAOD::TrackParticle *trk) const
Constructs an element link to the passed track particle If a nullptr is passed, an empty link is retu...
ToolHandle< MuonR4::ITrackSummaryTool > m_summaryTool
Handle to the muon summary tool.
void setTrackParticleLink(TrackParticleType type, const ElementLink< TrackParticleContainer > &link)
Set method for TrackParticle links.
Definition Muon_v1.cxx:501
void addAllAuthor(const Author author)
add author to all authors
Definition Muon_v1.cxx:92
void setAuthor(Author auth)
set author
void setMuonSegmentLinks(const std::vector< ElementLink< MuonSegmentContainer > > &segments)
Set the vector of ElementLinks to the MuonSegments used to create this Muon.
void setP4(double pt, double eta, double phi)
Set method for IParticle values.
Definition Muon_v1.cxx:58
void setCharge(float charge)
Set the charge (must be the same as primaryTrackParticle() ).
const TrackParticle * trackParticle(TrackParticleType type) const
Returns a pointer (which can be NULL) to the TrackParticle used in identification of this muon.
Definition Muon_v1.cxx:482
virtual double phi() const override final
The azimuthal angle ( ) of the particle (has range to .).
virtual double pt() const override final
The transverse momentum ( ) of the particle.
virtual double eta() const override final
The pseudorapidity ( ) of the particle.
float charge() const
Returns the charge.
ElementLink< MuonR4::SegmentContainer > SegLink_t
Abrivation of the link to the reco segment container.
MuonSegmentContainer_v1 MuonSegmentContainer
Definition of the current "MuonSegment container version".
TrackParticle_v1 TrackParticle
Reference the current persistent version:
Muon_v1 Muon
Reference the current persistent version:
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 MuonCreatorAlg::execute ( const EventContext & ctx) const
finaloverridevirtual

Create first the combined muon tags

Create then the other muon tags

Definition at line 23 of file MuonSpectrometer/MuonPhaseII/MuonIdentification/MuonCombinedAlgsR4/src/MuonCreatorAlg.cxx.

23 {
24 DataShip ship{};
25 ATH_CHECK(setupDataShip(ctx, ship));
26
28 for (const auto& [idTrk, muTags] : ship.combinedTags) {
29 ATH_MSG_DEBUG("Store new combined muon having associated ID track with"
30 <<idTrk->pt()*inGeV<<", eta: "<<idTrk->eta()<<", phi:" <<idTrk->phi()*inDeg);
31 createMuon(ctx, muTags, ship);
32 }
34 for (const MuonR4::MuonTag* saTag: ship.standaloneTags) {
35 ATH_MSG_DEBUG("Store new standalone muon with pt: "
36 <<saTag->msTrack()->pt()*inGeV
37 <<", eta: "<<saTag->msTrack()->eta()
38 <<", phi: "<<saTag->msTrack()->phi()*inDeg);
39 createMuon(ctx, std::array{saTag}, ship);
40 }
41 return StatusCode::SUCCESS;
42}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_DEBUG(x)
void createMuon(const EventContext &ctx, const std::span< const MuonR4::MuonTag *const > &muTags, DataShip &ship) const
Create the xAOD::Muon from the list of muon tags.
StatusCode setupDataShip(const EventContext &ctx, DataShip &ship) const
Load all containers from store gate and setup the output containers.
const xAOD::TrackParticle * msTrack() const
Returns the ms track candidate from which the tag was built.
Definition MuonTag.cxx:19

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

88{
89 // If we didn't find any symlinks to add, just return the collection
90 // from the base class. Otherwise, return the extended collection.
91 if (!m_extendedExtraObjects.empty()) {
93 }
95}
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 MuonCreatorAlg::initialize ( )
finaloverridevirtual

Definition at line 16 of file MuonSpectrometer/MuonPhaseII/MuonIdentification/MuonCombinedAlgsR4/src/MuonCreatorAlg.cxx.

16 {
17 ATH_CHECK(m_muonKey.initialize());
18 ATH_CHECK(m_tagKeys.initialize());
19 ATH_CHECK(m_selectionTool.retrieve());
20 ATH_CHECK(m_summaryTool.retrieve());
21 return StatusCode::SUCCESS;
22}
SG::WriteHandleKey< xAOD::MuonContainer > m_muonKey
Key name to store the primary muon container.
SG::ReadHandleKeyArray< MuonR4::MuonTagContainer > m_tagKeys
Key name under which the input tags can be found.

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

◆ linkParticle()

ElementLink< xAOD::TrackParticleContainer > MuonCreatorAlg::linkParticle ( const EventContext & ctx,
const xAOD::TrackParticle * trk ) const
private

Constructs an element link to the passed track particle If a nullptr is passed, an empty link is returned.

Parameters
ctxThe current event context
trkPointer to the track particle for which the link is to be constructed

Definition at line 80 of file MuonSpectrometer/MuonPhaseII/MuonIdentification/MuonCombinedAlgsR4/src/MuonCreatorAlg.cxx.

81 {
82 if (!trk) {
83 return TrackLink_t{};
84 }
85 return TrackLink_t{static_cast<const xAOD::TrackParticleContainer&>(*trk->container()),
86 trk->index(), ctx};
87}
ElementLink< xAOD::TrackParticleContainer > TrackLink_t
Abrivate the ElementLink to the track particles.
TrackParticleContainer_v1 TrackParticleContainer
Definition of the current "TrackParticle container version".

◆ 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

◆ setupDataShip()

StatusCode MuonCreatorAlg::setupDataShip ( const EventContext & ctx,
DataShip & ship ) const
private

Load all containers from store gate and setup the output containers.

Todo
Sort the tag containers by authors to ensure that the standalone tag is at last

Loop over the defined muon tag containers and sort them according to their ID track (Covers segmentTag, inside-out combined, combined)

Definition at line 45 of file MuonSpectrometer/MuonPhaseII/MuonIdentification/MuonCombinedAlgsR4/src/MuonCreatorAlg.cxx.

45 {
46 ATH_CHECK(ship.muons.record(m_muonKey, ctx));
47
48 std::unordered_set<const xAOD::TrackParticle*> cmbMsTrks{};
49 std::vector<const MuonR4::MuonTagContainer*> tagContainers{};
50 tagContainers.reserve(m_tagKeys.size());
51 for (const SG::ReadHandleKey<MuonR4::MuonTagContainer>& key : m_tagKeys) {
52 const MuonR4::MuonTagContainer* tagCont{nullptr};
53 ATH_CHECK(SG::get(tagCont, key, ctx));
54 if (tagCont->empty()) {
55 continue;
56 }
57 tagContainers.push_back(tagCont);
58 }
59
66 for (const MuonR4::MuonTagContainer* tagCont: tagContainers) {
67 for (const MuonR4::MuonTag* muTag: *tagCont) {
68 if (muTag->idTrack() != nullptr) {
69 ship.combinedTags[muTag->idTrack()].emplace_back(muTag);
70 cmbMsTrks.insert(muTag->msTrack());
71 } else if (cmbMsTrks.insert(muTag->msTrack()).second) {
72 ship.standaloneTags.emplace_back(muTag);
73 }
74 }
75 }
76 return StatusCode::SUCCESS;
77}
bool empty() const noexcept
Returns true if the collection is empty.
DataVector< MuonTag > MuonTagContainer
Definition MuonTag.h:94
const T * get(const ReadCondHandleKey< T > &key, const EventContext &ctx)
Convenience function to retrieve an object given a ReadCondHandleKey.

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

75{
76 return BaseAlg::sysExecute (ctx);
77}

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

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

SG::WriteHandleKey<xAOD::MuonContainer> MuonCombinedR4::MuonCreatorAlg::m_muonKey {this, "MuonKey", "Muons"}
private

Key name to store the primary muon container.

Definition at line 65 of file MuonSpectrometer/MuonPhaseII/MuonIdentification/MuonCombinedAlgsR4/src/MuonCreatorAlg.h.

65{this, "MuonKey", "Muons"};

◆ m_selectionTool

ToolHandle<CP::IMuonSelectionTool> MuonCombinedR4::MuonCreatorAlg::m_selectionTool {this, "SelectionTool", ""}
private

The Muon selection tool to assess the muon quality.

Definition at line 63 of file MuonSpectrometer/MuonPhaseII/MuonIdentification/MuonCombinedAlgsR4/src/MuonCreatorAlg.h.

63{this, "SelectionTool", ""};

◆ m_summaryTool

ToolHandle<MuonR4::ITrackSummaryTool> MuonCombinedR4::MuonCreatorAlg::m_summaryTool {this, "SummaryTool" , ""}
private

Handle to the muon summary tool.

Definition at line 69 of file MuonSpectrometer/MuonPhaseII/MuonIdentification/MuonCombinedAlgsR4/src/MuonCreatorAlg.h.

69{this, "SummaryTool" , ""};

◆ m_tagKeys

SG::ReadHandleKeyArray<MuonR4::MuonTagContainer> MuonCombinedR4::MuonCreatorAlg::m_tagKeys {this, "TagKeys", {}}
private

Key name under which the input tags can be found.

Definition at line 67 of file MuonSpectrometer/MuonPhaseII/MuonIdentification/MuonCombinedAlgsR4/src/MuonCreatorAlg.h.

67{this, "TagKeys", {}};

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