ATLAS Offline Software
Loading...
Searching...
No Matches
MuonPhaseII/MuonDetDescr/MuonReadoutGeometryR4/src/MuonReadoutElement.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3*/
8#ifndef SIMULATIONBASE
9# include "Acts/Surfaces/LineBounds.hpp"
10# include "Acts/Surfaces/PlanarBounds.hpp"
11# include "Acts/Geometry/GeometryContext.hpp"
12# include "Acts/Surfaces/StrawSurface.hpp"
13# include "Acts/Surfaces/PlaneSurface.hpp"
14#endif
15
16using namespace ActsTrk;
17namespace MuonGMR4 {
20 : GeoVDetectorElement(args.physVol),
21 AthMessaging("MuonReadoutElement"),
22 m_args{args} {
23 if (!m_idHelperSvc.retrieve().isSuccess()) {
24 ATH_MSG_FATAL("Failed to retrieve the MuonIdHelperSvc");
25 }
26 m_stName = m_idHelperSvc->stationName(identify());
27 m_stEta = m_idHelperSvc->stationEta(identify());
28 m_stPhi = m_idHelperSvc->stationPhi(identify());
29 m_detElHash = m_idHelperSvc->detElementHash(identify());
30 m_chIdx = m_idHelperSvc->chamberIndex(identify());
31}
34 if(!alignableTransform()) {
35 ATH_MSG_FATAL("The readout element "<<idHelperSvc()->toStringDetEl(identify())<<" has no assigned alignable node");
36 return StatusCode::FAILURE;
37 }
38 m_centralTrfCache = std::make_unique<ReadoutSurfacePositioning<MuonReadoutElement>>(geoTransformHash(), this);
39 return StatusCode::SUCCESS;
40}
42 static const IdentifierHash hash{static_cast<unsigned>(~0)-1};
43 return hash;
44}
45
47 return getMaterialGeom()->getAbsoluteTransform(alignStore ? alignStore->geoModelAlignment.get() : nullptr);
48}
50 for (const auto& cache : m_localToGlobalCaches) {
51 if (cache){
52 cache->releaseNominalCache();
53 }
54 }
55 m_centralTrfCache->releaseNominalCache();
56}
57
59 if (store.detType != detectorType()) {
60 return 0;
61 }
62 ATH_MSG_DEBUG(__func__<<"() "<<__LINE__<<" - Start "<<idHelperSvc()->toStringDetEl(identify())<<".");
63 unsigned int aligned{0};
64 aligned+=m_centralTrfCache->storeTransform(store);
65 for (const auto& cache : m_localToGlobalCaches) {
66 if (!cache) {
67 continue;
68 }
69 aligned+=cache->storeTransform(store);
70 }
71 ATH_MSG_DEBUG(__func__<<"() "<<__LINE__<<" - Internal caching done.");
72 return aligned;
73}
74
81#ifndef SIMULATIONBASE
82const Acts::Transform3& MuonReadoutElement::localToGlobalTransform(const Acts::GeometryContext& anygctx) const {
83 const GeometryContext *gctx = anygctx.get<const GeometryContext *>();
85}
86std::shared_ptr<Acts::Surface> MuonReadoutElement::surfacePtr(const IdentifierHash& hash) const {
87 const IReadoutSurfacePositioning* cache = transformCache(hash);
88 if(cache && cache->placement()) return cache->placement()->getSurface();
89 ATH_MSG_FATAL(__FILE__<<":"<<__LINE__<<" "<<__func__<<"() -- Hash "<<hash
90 <<" is unknown to "<<idHelperSvc()->toStringDetEl(identify()));
91 return nullptr;
92}
93
94const Acts::Surface& MuonReadoutElement::surface() const { return surface(geoTransformHash()); }
96const Acts::Surface& MuonReadoutElement::surface(const IdentifierHash& hash) const { return *surfacePtr(hash); }
97Acts::Surface& MuonReadoutElement::surface(const IdentifierHash& hash) { return *surfacePtr(hash); }
98
100 std::shared_ptr<const Acts::LineBounds> lBounds) {
101
102 //get the local to global transform cache
104 if (!cache) {
105 ATH_MSG_FATAL(__FILE__<<":"<<__LINE__<<" - "<<idHelperSvc()->toString(identify())
106 <<" no transform cache available for hash "<<hash);
107 return StatusCode::FAILURE;
108 }
109 auto placement = SurfacePlacement::makeShared<Acts::StrawSurface>(*cache, std::move(lBounds));
110 if(!placement){
111 ATH_MSG_FATAL(__FILE__<<":"<<__LINE__<<" - "<<idHelperSvc()->toString(identify())
112 <<" Insertion to muon surface cache failed for hash "<<hash);
113 return StatusCode::FAILURE;
114 }
115 return StatusCode::SUCCESS;
116}
117
119 std::shared_ptr<const Acts::PlanarBounds> pBounds){
120
121 //get the local to global transform cache
123 if (!cache) {
124 ATH_MSG_FATAL(__FILE__<<":"<<__LINE__<<" - "<<idHelperSvc()->toString(identify())
125 <<" no transform cache available for hash "<<hash);
126 return StatusCode::FAILURE;
127 }
128 auto placement = SurfacePlacement::makeShared<Acts::PlaneSurface>(*cache, std::move(pBounds));
129 if(!placement) {
130 ATH_MSG_FATAL(__FILE__<<":"<<__LINE__<<" - "<<idHelperSvc()->toString(identify())
131 <<" Insertion to muon surface cache failed for hash "<<hash);
132 return StatusCode::FAILURE;
133 }
134 return StatusCode::SUCCESS;
135}
136
141 m_msSectorLink = envelope;
142}
143
144std::vector<std::shared_ptr<Acts::Surface>> MuonReadoutElement::getSurfaces() const {
145 std::vector<std::shared_ptr<Acts::Surface>> surfaces{};
146 surfaces.reserve(m_localToGlobalCaches.size());
147 for (const auto& cache : m_localToGlobalCaches) {
148 if (cache && cache->placement()) {
149 surfaces.push_back(cache->placement()->getSurface());
150 ATH_MSG_VERBOSE("Add surface "<<idHelperSvc()->toString(cache->identify())
151 <<std::endl<<(surfaces.back()->bounds()));
152 }
153 }
154 return surfaces;
155}
156#endif
157
158} // namespace MuonGMR4
#define ATH_MSG_FATAL(x)
#define ATH_MSG_VERBOSE(x)
#define ATH_MSG_DEBUG(x)
std::shared_ptr< GeoAlignmentStore > geoModelAlignment
Store containing the aligned GeoModel nodes.
virtual DetectorType detectorType() const =0
Returns the detector element type.
Interface extension for caches used to hold the transforms of surfaces from the readout geometry.
static std::shared_ptr< SurfacePlacement > makeShared(IReadoutSurfacePositioning &transformCache, std::shared_ptr< Bounds_t > &&bounds)
Factory method to create a SurfacePlacement together with an Acts::Surface.
AthMessaging(IMessageSvc *msgSvc, const std::string &name)
Constructor.
This is a "hash" representation of an Identifier.
Chamber represent the volume enclosing a muon station.
Definition Chamber.h:29
std::vector< std::shared_ptr< Acts::Surface > > getSurfaces() const
Returns all surfaces that are associated with the active readout planes.
Amg::Transform3D globalToLocalTransform(const ActsTrk::GeometryContext &ctx) const
Returns the transformation from the global ATLAS coordinate system into the local coordinate system o...
const Amg::Transform3D & toStation(const ActsTrk::DetectorAlignStore *alignStore) const
Returns the transformation from the GeoModel tree and applies the A-lines if a valid alignment store ...
const Acts::Surface & surface() const
Returns the surface associated with the readout element.
ServiceHandle< Muon::IMuonIdHelperSvc > m_idHelperSvc
IdHelperSvc for Identifier manipulation.
StatusCode strawSurfaceFactory(const IdentifierHash &hash, std::shared_ptr< const Acts::LineBounds > lBounds)
Invokes the factory to create straw surfaces && to associate them with the particular transform cache...
void setChamberLink(const Chamber *chamber)
Sets the link to the enclosing chamber.
void setSectorLink(const SpectrometerSector *envelope)
Set the link to the enclosing sector envelope.
std::shared_ptr< Acts::Surface > surfacePtr(const IdentifierHash &hash) const
Returns the mutable surface pointer associated with the transform of a given readout layer.
StatusCode planeSurfaceFactory(const IdentifierHash &hash, std::shared_ptr< const Acts::PlanarBounds > pBounds)
Invokes the factory to create plane surfaces && to associate them with the particular transform cache...
Identifier identify() const override final
Return the ATLAS identifier.
const Muon::IMuonIdHelperSvc * idHelperSvc() const
Returns the pointer to the muonIdHelperSvc.
Muon::MuonStationIndex::ChIndex m_chIdx
Cache the chamber index of the Identifier.
StatusCode createGeoTransform()
Creates the ReadoutSurfacePositioning corresponding the generic local -> global transformation of the...
const Chamber * chamber() const
Returns the pointer to the chamber enclosing this readout element.
std::unique_ptr< ActsTrk::IReadoutSurfacePositioning > m_centralTrfCache
Cache of the transform of the readout element itself.
MuonReadoutElement(const defineArgs &args)
Constructor taking the basic define arguments.
void releaseUnAlignedTrfs() const
Release all transforms from the memory that are not connected with a geometry context but cached by t...
const SpectrometerSector * m_msSectorLink
Pointer to the associated MS-sector & MuonChamber.
const ActsTrk::IReadoutSurfacePositioning * transformCache(const IdentifierHash &measHash) const
Returns the pointer to the TransformCache associated with this measurement hash.
unsigned int storeAlignedTransforms(ActsTrk::DetectorAlignStore &store) const override final
Construct the final aligned transformations and store them in the alignment store.
const Amg::Transform3D & localToGlobalTransform(const ActsTrk::GeometryContext &ctx) const override final
Returns the transformation from the local coordinate system of the readout element into the global AT...
static IdentifierHash geoTransformHash()
Returns the hash that is associated with the surface cache holding the transformation that is placing...
const GeoAlignableTransform * alignableTransform() const
Return the alignable transform node of the readout element.
A spectrometer sector forms the envelope of all chambers that are placed in the same MS sector & laye...
The AlignStoreProviderAlg loads the rigid alignment corrections and pipes them through the readout ge...
Eigen::Affine3d Transform3D
The ReadoutGeomCnvAlg converts the Run4 Readout geometry build from the GeoModelXML into the legacy M...
std::string toString(const MuonGMR4::MuonReadoutElement *re)