ATLAS Offline Software
Loading...
Searching...
No Matches
MuonR4::SegmentFitParDecorAlg Class Reference

Algorithm to decorate the local segment parameters onto the xAOD::MuonSegments produced by the legacy muon reconstruction chain. More...

#include <SegmentFitParDecorAlg.h>

Inheritance diagram for MuonR4::SegmentFitParDecorAlg:
Collaboration diagram for MuonR4::SegmentFitParDecorAlg:

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

using PrdCont_t = xAOD::MuonMeasurementContainer
using PrdLink_t = ElementLink<xAOD::UncalibratedMeasurementContainer>
using PrdLinkVec = std::vector<PrdLink_t>
using MeasKey_t = SG::ReadHandleKey<PrdCont_t>
using TechIdx_t = Muon::MuonStationIndex::TechnologyIndex
typedef ServiceHandle< StoreGateSvcStoreGateSvc_t

Private Member Functions

const MeasKey_tfetchKey (const TechIdx_t idx) const
 Fetch the read handle key to the Muon measurement container.
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

ServiceHandle< Muon::IMuonIdHelperSvcm_idHelperSvc
SG::ReadHandleKey< ActsTrk::GeometryContextm_geoCtxKey {this, "AlignmentKey", "ActsAlignment", "cond handle key"}
const MuonGMR4::MuonDetectorManagerm_detMgr {nullptr}
SG::ReadHandleKey< xAOD::MuonSegmentContainerm_segmentKey {this, "SegmentKey", "Segments"}
SG::WriteDecorHandleKey< xAOD::MuonSegmentContainerm_locParKey {this, "LocParKey", m_segmentKey, "localSegPars"}
 Decoration key of the local parameters.
SG::WriteDecorHandleKey< xAOD::MuonSegmentContainerm_prdLinkKey {this, "PrdLinkKey", m_segmentKey, "prdLinks"}
 Decoration key of the associated prep data objects.
MeasKey_t m_keyTgc {this, "TgcKey", "xTgcStrips"}
MeasKey_t m_keyRpc {this, "RpcKey", "xRpcMeasurements"}
MeasKey_t m_keyMdt {this, "MdtKey", "xMdtMeasurements"}
MeasKey_t m_keysTgc {this, "sTgcKey", "xAODsTgcMeasurements"}
MeasKey_t m_keyMM {this, "MmKey", "xAODMMClusters"}
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 decorate the local segment parameters onto the xAOD::MuonSegments produced by the legacy muon reconstruction chain.

Additionally, the links to the uncalibrated muon measurements are appended using the Identifiers of the RIO_OnTrack objects of the associated Trk::MuonSegment

Definition at line 21 of file SegmentFitParDecorAlg.h.

Member Typedef Documentation

◆ MeasKey_t

◆ PrdCont_t

◆ PrdLink_t

◆ PrdLinkVec

Definition at line 30 of file SegmentFitParDecorAlg.h.

◆ StoreGateSvc_t

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

Definition at line 388 of file AthCommonDataStore.h.

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

◆ 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 MuonR4::SegmentFitParDecorAlg::execute ( const EventContext & ctx) const
finaloverridevirtual

Sort first all measurement Identifiers by technology index

Definition at line 48 of file SegmentFitParDecorAlg.cxx.

48 {
49 const xAOD::MuonSegmentContainer* segmentContainer{nullptr};
50 const ActsTrk::GeometryContext* gctx{nullptr};
51
52 ATH_CHECK(SG::get(segmentContainer, m_segmentKey, ctx));
53 ATH_CHECK(SG::get(gctx, m_geoCtxKey, ctx));
54
55 SG::WriteDecorHandle<xAOD::MuonSegmentContainer, SegPars> parDecor{m_locParKey, ctx};
56 SG::WriteDecorHandle<xAOD::MuonSegmentContainer, PrdLinkVec> prdLinkDecor{m_prdLinkKey, ctx};
57 for (const xAOD::MuonSegment* seg : *segmentContainer) {
58 PrdLinkVec& prdLinks{prdLinkDecor(*seg)};
59 const Trk::Segment* trkSeg{*seg->muonSegment()};
60
61 std::array<std::vector<Identifier>, toInt(TechIdx_t::TechnologyIndexMax)> idsPerTech{};
63 auto appendId = [&] (const Identifier& id) {
64 idsPerTech[toInt(m_idHelperSvc->technologyIndex(id))].push_back(id);
65 };
66 for (const Trk::MeasurementBase* meas : trkSeg->containedMeasurements()) {
67 if (const auto* rot = dynamic_cast<const Trk::RIO_OnTrack*>(meas)) {
68 appendId(rot->identify());
69 } else if (const auto* cRot = dynamic_cast<const Trk::CompetingRIOsOnTrack*>(meas)){
70 for (unsigned int r = 0 ; r < cRot->numberOfContainedROTs(); ++r){
71 appendId(cRot->rioOnTrack(r).identify());
72 }
73 }
74 }
75 for (std::vector<Identifier>& ids : idsPerTech) {
76 if (ids.empty()) {
77 continue;
78 }
79 std::ranges::sort(ids,[this](const Identifier& a, const Identifier& b){
80 return m_idHelperSvc->detElementHash(a) < m_idHelperSvc->detElementHash(b);
81 });
82 const MeasKey_t& key = fetchKey(m_idHelperSvc->technologyIndex(ids.front()));
83 if (key.empty()) {
84 ATH_MSG_ERROR(__func__<<"() "<<__LINE__<<" - The key for technology "
85 <<m_idHelperSvc->technologyIndex(ids.front())<<" is empty");
86 return StatusCode::FAILURE;
87 }
89 ATH_CHECK(SG::get(container, key, ctx));
90 xAOD::ChamberViewer viewer{*container};
91 if (!viewer.loadView(m_idHelperSvc->detElementHash(ids.front()))){
92 ATH_MSG_ERROR(__func__<<"() "<<__LINE__<<" - Cannot find a xAOD view for "
93 <<m_idHelperSvc->toStringDetEl(ids.front()));
94 return StatusCode::FAILURE;
95 }
96 for (const Identifier& id : ids) {
97 const IdentifierHash dHash = m_idHelperSvc->detElementHash(id);
98 ATH_MSG_VERBOSE(__func__<<"() "<<__LINE__<<" - Search for view "
99 <<m_idHelperSvc->toStringDetEl(id)<<", hash: "<<dHash);
100 while(viewer.at(0)->identifierHash() != dHash) {
101 if (!viewer.next()) {
102 if (viewer.loadView(dHash)) {
103 ATH_MSG_WARNING(__func__<<"() "<<__LINE__<<" - Container is not sorted "
104 <<m_idHelperSvc->toStringDetEl(id)<<".");
105 break;
106 }
107 ATH_MSG_ERROR(__func__<<"() "<<__LINE__<<" - Cannot find a xAOD view for "
108 <<m_idHelperSvc->toStringDetEl(id));
109 return StatusCode::FAILURE;
110 }
111 }
112 const auto itr = std::ranges::find_if(viewer,[&id](const xAOD::MuonMeasurement* meas){
113 return meas->identify() == id;
114 });
115 if (itr == viewer.end()) {
116 ATH_MSG_ERROR(__func__<<"() "<<__LINE__<<" - Cannot find measurement "<<m_idHelperSvc->toString(id));
117 return StatusCode::FAILURE;
118 }
119 const auto* m{*itr};
120 prdLinks.emplace_back(container, m->index());
121 }
122 }
123 const MuonGMR4::SpectrometerSector* chamber = m_detMgr->getSectorEnvelope(seg->chamberIndex(),
124 seg->sector(),
125 seg->etaIndex());
126 const Amg::Transform3D globToLoc{chamber->globalToLocalTransform(*gctx)};
127
128 SegPars& locPars{parDecor(*seg)};
129
130 const Amg::Vector3D locDir = globToLoc.linear() * seg->direction();
131 const Amg::Vector3D locPos = globToLoc * seg->position();
132
133 const double travDist = Amg::intersect<3>(locPos, locDir, Amg::Vector3D::UnitZ(), 0).value_or(0);
134 const Amg::Vector3D atCentre = locPos + travDist * locDir;
135
136 locPars[Acts::toUnderlying(ParamDefs::x0)] = atCentre.x();
137 locPars[Acts::toUnderlying(ParamDefs::y0)] = atCentre.y();
138 locPars[Acts::toUnderlying(ParamDefs::theta)] = locDir.theta();
139 locPars[Acts::toUnderlying(ParamDefs::phi)] = locDir.phi();
140 ATH_MSG_VERBOSE("Segment "<<chamber->identString()<<" at chamber centre "<<Amg::toString(atCentre)
141 <<" + x *"<<Amg::toString(locDir));
142 }
143 return StatusCode::SUCCESS;
144 }
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
#define ATH_MSG_VERBOSE(x)
#define ATH_MSG_WARNING(x)
static Double_t a
SG::ReadHandleKey< xAOD::MuonSegmentContainer > m_segmentKey
SG::WriteDecorHandleKey< xAOD::MuonSegmentContainer > m_prdLinkKey
Decoration key of the associated prep data objects.
const MeasKey_t & fetchKey(const TechIdx_t idx) const
Fetch the read handle key to the Muon measurement container.
SG::ReadHandleKey< PrdCont_t > MeasKey_t
SG::ReadHandleKey< ActsTrk::GeometryContext > m_geoCtxKey
const MuonGMR4::MuonDetectorManager * m_detMgr
ServiceHandle< Muon::IMuonIdHelperSvc > m_idHelperSvc
SG::WriteDecorHandleKey< xAOD::MuonSegmentContainer > m_locParKey
Decoration key of the local parameters.
std::vector< PrdLink_t > PrdLinkVec
const std::vector< const Trk::MeasurementBase * > & containedMeasurements() const
returns the vector of Trk::MeasurementBase objects
const_iterator end() const noexcept
End iterator of the current chamber view.
const_ref at(const std::size_t idx) const
Returns the i-the measurement from the current chamber.
bool loadView(const Identifier &chamberId)
Loads the view matching the parsed identifier.
bool next()
Loads the hits from the next chamber.
const Identifier & identify() const
Returns the Athena identifier of the measurement.
int r
Definition globals.cxx:22
std::optional< double > intersect(const AmgVector(N)&posA, const AmgVector(N)&dirA, const AmgVector(N)&posB, const AmgVector(N)&dirB)
Calculates the point B' along the line B that's closest to a second line A.
std::string toString(const Translation3D &translation, int precision=4)
GeoPrimitvesToStringConverter.
Eigen::Affine3d Transform3D
Eigen::Matrix< double, 3, 1 > Vector3D
xAOD::MeasVector< Acts::toUnderlying(ParamDefs::nPars)> SegPars
constexpr int toInt(const EnumType enumVal)
const SG::AuxVectorData * container() const
Return the container holding this element.
const T * get(const ReadCondHandleKey< T > &key, const EventContext &ctx)
Convenience function to retrieve an object given a ReadCondHandleKey.
MuonSegmentContainer_v1 MuonSegmentContainer
Definition of the current "MuonSegment container version".
MuonMeasurement_v1 MuonMeasurement
MuonSegment_v1 MuonSegment
Reference the current persistent version:
MuonMeasurementContainer_v1 MuonMeasurementContainer

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

◆ fetchKey()

const SegmentFitParDecorAlg::MeasKey_t & MuonR4::SegmentFitParDecorAlg::fetchKey ( const TechIdx_t idx) const
private

Fetch the read handle key to the Muon measurement container.

Parameters
idxThe technology index indicating which key should be returned

Definition at line 34 of file SegmentFitParDecorAlg.cxx.

34 {
35 switch (idx) {
36 using enum TechIdx_t;
37 case MDT: return m_keyMdt;
38 case RPC: return m_keyRpc;
39 case TGC: return m_keyTgc;
40 case MM: return m_keyMM;
41 case STGC: return m_keysTgc;
42 default:
43 THROW_EXCEPTION("Invalid technology index "<<idx);
44 }
45 return m_keyMdt;
46 }
@ STGC
Definition RegSelEnums.h:39
@ MM
Definition RegSelEnums.h:38
@ RPC
Definition RegSelEnums.h:32
@ TGC
Definition RegSelEnums.h:33
@ MDT
Definition RegSelEnums.h:31
Muon::MuonStationIndex::TechnologyIndex TechIdx_t
#define THROW_EXCEPTION(MESSAGE)
Definition throwExcept.h:10

◆ 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 MuonR4::SegmentFitParDecorAlg::initialize ( )
finaloverridevirtual

Definition at line 19 of file SegmentFitParDecorAlg.cxx.

19 {
20 ATH_CHECK(m_idHelperSvc.retrieve());
21 ATH_CHECK(m_geoCtxKey.initialize());
22 ATH_CHECK(detStore()->retrieve(m_detMgr));
23 ATH_CHECK(m_segmentKey.initialize());
24 ATH_CHECK(m_locParKey.initialize());
25 ATH_CHECK(m_prdLinkKey.initialize());
26 ATH_CHECK(m_keyTgc.initialize(!m_keyTgc.empty()));
27 ATH_CHECK(m_keyRpc.initialize(!m_keyRpc.empty()));
28 ATH_CHECK(m_keyMdt.initialize(!m_keyMdt.empty()));
29 ATH_CHECK(m_keysTgc.initialize(!m_keysTgc.empty()));
30 ATH_CHECK(m_keyMM.initialize(!m_keyMM.empty()));
31 return StatusCode::SUCCESS;
32 }
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()

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

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}
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* MuonR4::SegmentFitParDecorAlg::m_detMgr {nullptr}
private

Definition at line 43 of file SegmentFitParDecorAlg.h.

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

Definition at line 41 of file SegmentFitParDecorAlg.h.

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

◆ m_idHelperSvc

ServiceHandle<Muon::IMuonIdHelperSvc> MuonR4::SegmentFitParDecorAlg::m_idHelperSvc
private
Initial value:
{this, "MuonIdHelperSvc",
"Muon::MuonIdHelperSvc/MuonIdHelperSvc"}

Definition at line 38 of file SegmentFitParDecorAlg.h.

38 {this, "MuonIdHelperSvc",
39 "Muon::MuonIdHelperSvc/MuonIdHelperSvc"};

◆ m_keyMdt

MeasKey_t MuonR4::SegmentFitParDecorAlg::m_keyMdt {this, "MdtKey", "xMdtMeasurements"}
private

Definition at line 54 of file SegmentFitParDecorAlg.h.

54{this, "MdtKey", "xMdtMeasurements"};

◆ m_keyMM

MeasKey_t MuonR4::SegmentFitParDecorAlg::m_keyMM {this, "MmKey", "xAODMMClusters"}
private

Definition at line 56 of file SegmentFitParDecorAlg.h.

56{this, "MmKey", "xAODMMClusters"};

◆ m_keyRpc

MeasKey_t MuonR4::SegmentFitParDecorAlg::m_keyRpc {this, "RpcKey", "xRpcMeasurements"}
private

Definition at line 53 of file SegmentFitParDecorAlg.h.

53{this, "RpcKey", "xRpcMeasurements"};

◆ m_keysTgc

MeasKey_t MuonR4::SegmentFitParDecorAlg::m_keysTgc {this, "sTgcKey", "xAODsTgcMeasurements"}
private

Definition at line 55 of file SegmentFitParDecorAlg.h.

55{this, "sTgcKey", "xAODsTgcMeasurements"};

◆ m_keyTgc

MeasKey_t MuonR4::SegmentFitParDecorAlg::m_keyTgc {this, "TgcKey", "xTgcStrips"}
private

Definition at line 52 of file SegmentFitParDecorAlg.h.

52{this, "TgcKey", "xTgcStrips"};

◆ m_locParKey

SG::WriteDecorHandleKey<xAOD::MuonSegmentContainer> MuonR4::SegmentFitParDecorAlg::m_locParKey {this, "LocParKey", m_segmentKey, "localSegPars"}
private

Decoration key of the local parameters.

Definition at line 48 of file SegmentFitParDecorAlg.h.

48{this, "LocParKey", m_segmentKey, "localSegPars"};

◆ m_prdLinkKey

SG::WriteDecorHandleKey<xAOD::MuonSegmentContainer> MuonR4::SegmentFitParDecorAlg::m_prdLinkKey {this, "PrdLinkKey", m_segmentKey, "prdLinks"}
private

Decoration key of the associated prep data objects.

Definition at line 50 of file SegmentFitParDecorAlg.h.

50{this, "PrdLinkKey", m_segmentKey, "prdLinks"};

◆ m_segmentKey

SG::ReadHandleKey<xAOD::MuonSegmentContainer> MuonR4::SegmentFitParDecorAlg::m_segmentKey {this, "SegmentKey", "Segments"}
private

Definition at line 45 of file SegmentFitParDecorAlg.h.

45{this, "SegmentKey", "Segments"};

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