2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
4 #ifndef MUONREADOUTGEOMETRYR4_MDTREADOUTELEMENT_ICC
5 #define MUONREADOUTGEOMETRYR4_MDTREADOUTELEMENT_ICC
7 #include <GaudiKernel/SystemOfUnits.h>
9 template <> inline Amg::Transform3D
10 TransformCacheDetEle<MuonGMR4::MdtReadoutElement>::fetchTransform(const DetectorAlignStore* store) const {
11 using RE = MuonGMR4::MdtReadoutElement;
12 static const unsigned int layerTube = RE::tubeNumber(RE::measurementHash(1, 0));
13 /// Check whether the hash represents a tube or the central layer
14 const unsigned int tubeNum = m_parent->tubeNumber(hash());
15 if (tubeNum == layerTube) {
16 const Amg::Translation3D toCenter{0.5*m_parent->moduleHeight() * Amg::Vector3D::UnitY()};
17 return m_parent->toStation(store) * m_parent->toChamberLayer(hash()) *
18 toCenter * Amg::getRotateY3D(90*Gaudi::Units::deg);
20 return m_parent->toStation(store) *
21 m_parent->fromIdealToDeformed(hash(), store) * m_parent->toTubeFrame(hash());
23 template <> inline Identifier
24 TransformCacheDetEle<MuonGMR4::MdtReadoutElement>::identify() const {
25 using RE = MuonGMR4::MdtReadoutElement;
26 static const unsigned int layerTube = RE::tubeNumber(RE::measurementHash(0,0));
27 /// Check whether the hash represents a tube or the central layer
28 const unsigned int tubeNum = m_parent->tubeNumber(hash());
29 if (tubeNum == layerTube) {
30 return m_parent->measurementId(RE::measurementHash(RE::layerNumber(hash()) +1,
31 m_parent->numTubesInLay() +1));
33 return m_parent->measurementId(hash());
38 inline unsigned int MdtReadoutElement::multilayer() const { return m_stML; }
39 inline unsigned int MdtReadoutElement::numLayers() const { return m_pars.tubeLayers.size(); }
40 inline unsigned int MdtReadoutElement::numTubesInLay() const { return m_pars.tubeLayers.empty() ? 0 : m_pars.tubeLayers[0]->nTubes(); }
41 inline double MdtReadoutElement::innerTubeRadius() const {return m_pars.tubeInnerRad;}
42 inline double MdtReadoutElement::tubeRadius() const {return innerTubeRadius() + m_pars.tubeWall;}
43 inline double MdtReadoutElement::tubePitch() const { return m_pars.tubePitch;}
44 inline double MdtReadoutElement::thickness() const {return 2.* m_pars.halfHeight;}
45 inline double MdtReadoutElement::moduleWidthS() const{ return 2.*m_pars.shortHalfX; }
46 inline double MdtReadoutElement::moduleWidthL() const{ return 2.*m_pars.longHalfX; }
47 inline double MdtReadoutElement::moduleHeight() const{ return 2.*m_pars.halfY; }
48 inline double MdtReadoutElement::moduleThickness() const{ return 2.*m_pars.halfHeight; }
50 inline bool MdtReadoutElement::isValid(const IdentifierHash& measHash) const {
51 return layerNumber(measHash) < numLayers() &&
52 tubeNumber(measHash) < numTubesInLay() &&
53 !m_pars.removedTubes.count(measHash);
55 inline IdentifierHash MdtReadoutElement::measurementHash(const Identifier& measId) const {
56 if (idHelperSvc()->detElId(measId) != identify()) {
57 ATH_MSG_WARNING("The measurement "
58 << idHelperSvc()->toString(measId)
59 << " picks the wrong readout element "
60 << idHelperSvc()->toStringDetEl(identify()));
62 IdentifierHash hash = measurementHash(m_idHelper.tubeLayer(measId),
63 m_idHelper.tube(measId));
64 ATH_MSG_VERBOSE("Translate measurement identifier "
65 << idHelperSvc()->toString(measId)
66 << " to measurement hash " << static_cast<int>(hash));
69 inline IdentifierHash MdtReadoutElement::layerHash(const Identifier& measId) const {
70 if (idHelperSvc()->detElId(measId) != identify()) {
71 ATH_MSG_WARNING("The measurement "
72 << idHelperSvc()->toString(measId)
73 << " picks the wrong readout element "
74 << idHelperSvc()->toStringDetEl(identify()));
76 IdentifierHash hash = measurementHash(m_idHelper.tubeLayer(measId), 0);
77 ATH_MSG_VERBOSE("Translate measurement identifier "
78 << idHelperSvc()->toString(measId)
79 << " to layer hash hash " << static_cast<int>(hash));
82 inline unsigned int MdtReadoutElement::tubeNumber(const IdentifierHash& hash) {
83 return (static_cast<unsigned int>(hash) >> 16);
85 /// Transforms the identifier hash into a layer number ranging from
87 inline unsigned int MdtReadoutElement::layerNumber(const IdentifierHash& hash) {
88 constexpr uint16_t layMask = (~0);
89 return static_cast<unsigned int>(hash) & layMask;
91 inline IdentifierHash MdtReadoutElement::measurementHash(unsigned int layer, unsigned int tube) {
92 return IdentifierHash{( (tube-1) << 16) | (layer-1)};
94 inline IdentifierHash MdtReadoutElement::layerHash(const IdentifierHash& measHash) {
95 return measurementHash(layerNumber(measHash) + 1 , 0);
97 inline bool MdtReadoutElement::isBarrel() const { return m_isBarrel; }
100 inline Amg::Vector3D MdtReadoutElement::globalTubePos(const ActsGeometryContext& ctx,
101 const Identifier& measId) const {
102 return globalTubePos(ctx, measurementHash(measId));
104 inline Amg::Vector3D MdtReadoutElement::readOutPos(const ActsGeometryContext& ctx,
105 const Identifier& measId) const{
106 return readOutPos(ctx, measurementHash(measId));
108 inline Amg::Vector3D MdtReadoutElement::highVoltPos(const ActsGeometryContext& ctx,
109 const Identifier& measId) const {
110 return highVoltPos(ctx, measurementHash(measId));
112 inline double MdtReadoutElement::distanceToReadout(const ActsGeometryContext& ctx,
113 const Identifier& measId,
114 const Amg::Vector3D& globPoint) const {
115 return distanceToReadout(ctx,measurementHash(measId), globPoint);
119 } // namespace MuonGMR4