2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
4 #ifndef MUONREADOUTGEOMETRYR4_TGCREADOUTELEMENT_ICC
5 #define MUONREADOUTGEOMETRYR4_TGCREADOUTELEMENT_ICC
9 template <> inline Amg::Transform3D
10 TransformCacheDetEle<MuonGMR4::TgcReadoutElement>::fetchTransform(const DetectorAlignStore* store) const{
11 return m_parent->toStation(store) * m_parent->fromGapToChamOrigin(hash());
13 template <> inline Identifier
14 TransformCacheDetEle<MuonGMR4::TgcReadoutElement>::identify() const {
15 using RE = MuonGMR4::TgcReadoutElement;
16 return m_parent->measurementId(RE::constructHash(1, RE::gasGapNumber(hash()), RE::isStrip(hash())));
21 inline double TgcReadoutElement::moduleWidthS() const { return 2.*m_pars.halfWidthShort; }
22 inline double TgcReadoutElement::moduleWidthL() const { return 2.*m_pars.halfWidthLong; }
23 inline double TgcReadoutElement::moduleHeight() const { return 2.*m_pars.halfHeight; }
24 inline double TgcReadoutElement::moduleThickness() const { return 2.*m_pars.halfThickness; }
25 inline double TgcReadoutElement::thickness() const { return moduleThickness(); }
26 inline double TgcReadoutElement::gasGapPitch() const {return m_gasThickness; }
28 inline IdentifierHash TgcReadoutElement::constructHash(unsigned measCh,
31 /// Bit mask layout (measurment channel) | (gasGap [1-3]) | isStrip
32 constexpr unsigned gapShift = 1;
33 constexpr unsigned chanShift = 2 + gapShift;
35 return IdentifierHash{measCh << chanShift | (gasGap -1) << gapShift | isStrip};
37 inline IdentifierHash TgcReadoutElement::measurementHash(const Identifier& measId) const {
38 if (m_idHelper.elementID(measId) != m_idHelper.elementID(identify())) {
39 ATH_MSG_WARNING("The measurement " << idHelperSvc()->toString(measId)
40 << " picks the wrong readout element " << idHelperSvc()->toStringDetEl(identify()));
42 return constructHash(m_idHelper.channel(measId), m_idHelper.gasGap(measId), m_idHelper.isStrip(measId));
44 inline IdentifierHash TgcReadoutElement::layerHash(const Identifier& measId) const {
45 if (m_idHelper.elementID(measId) != m_idHelper.elementID(identify()) ) {
46 ATH_MSG_WARNING("The measurement " << idHelperSvc()->toString(measId)
47 << " picks the wrong readout element " << idHelperSvc()->toStringDetEl(identify()));
49 return constructHash(0, m_idHelper.gasGap(measId), m_idHelper.isStrip(measId));
51 inline IdentifierHash TgcReadoutElement::layerHash(const IdentifierHash& measHash) const {
52 return constructHash(0, gasGapNumber(measHash), isStrip(measHash));
54 inline unsigned TgcReadoutElement::channelNumber(const IdentifierHash& measHash) {
55 constexpr unsigned chanShift = 3;
56 return static_cast<unsigned>(measHash) >> chanShift;
58 inline unsigned TgcReadoutElement::gasGapNumber(const IdentifierHash& measHash) {
59 /// The hash is (0/1/2/ | 0/1) -> 3 bits for the gasgap + 1 bit strip
60 constexpr unsigned gapMask{(1<<1) | 1};
61 constexpr unsigned stripBit{1};
62 unsigned unstripped = static_cast<unsigned>(measHash) >> stripBit;
63 return (unstripped & gapMask) + 1;
65 inline bool TgcReadoutElement::isStrip(const IdentifierHash& measHash) {
66 constexpr unsigned stripBit{1};
67 return static_cast<unsigned>(measHash) & stripBit;
69 inline Identifier TgcReadoutElement::measurementId(const IdentifierHash& measHash) const {
70 return m_idHelper.channelID(identify(),
71 gasGapNumber(measHash),
73 channelNumber(measHash));
75 inline unsigned TgcReadoutElement::nGasGaps() const { return m_pars.nGasGaps; }
77 inline unsigned TgcReadoutElement::numChannels(const IdentifierHash& measHash) const {
78 return isStrip(measHash) ? numStrips(measHash) : numWireGangs(measHash);
80 inline unsigned TgcReadoutElement::numStrips(const IdentifierHash& measHash) const {
81 const StripLayerPtr& sensor{sensorLayout(flipIsStrip(measHash, true))};
82 return sensor && (sensor->hasPhiDesign() || isStrip(sensor->hash())) ? sensor->design(true).numStrips() : 0;
84 inline IdentifierHash TgcReadoutElement::flipIsStrip(const IdentifierHash& meashHash,
86 return constructHash(channelNumber(meashHash), gasGapNumber(meashHash), isStrip);
88 inline unsigned TgcReadoutElement::numWireGangs(const IdentifierHash& measHash) const {
89 const StripLayerPtr& sensor{sensorLayout(flipIsStrip(measHash, false))};
91 THROW_EXCEPTION("Arsch : gasGap"<<gasGapNumber(measHash)<<", "<<isStrip(measHash));
93 return sensor && !isStrip(sensor->hash()) ? sensor->design().numStrips() : 0;
95 inline const StripLayerPtr& TgcReadoutElement::sensorLayout(const IdentifierHash& measHash) const {
96 return m_pars.sensorLayouts.at(layerHash(measHash));
98 inline const WireGroupDesign& TgcReadoutElement::wireGangLayout(const IdentifierHash& measHash) const {
99 const StripLayerPtr& layerPtr = sensorLayout(flipIsStrip(measHash, false));
100 if (!layerPtr || isStrip(layerPtr->hash())) {
101 THROW_EXCEPTION(" Gas gap "<<gasGapNumber(measHash)<<" has no wire gangs in "<<idHelperSvc()->toStringDetEl(identify()));
103 return static_cast<const WireGroupDesign&>(layerPtr->design());
105 inline const RadialStripDesign& TgcReadoutElement::stripLayout(const IdentifierHash& measHash) const {
106 const StripLayerPtr& layerPtr = sensorLayout(flipIsStrip(measHash, true));
107 if (!layerPtr || !(layerPtr->hasPhiDesign() || isStrip(layerPtr->hash()))) {
108 THROW_EXCEPTION(" Gas gap "<<gasGapNumber(measHash)<<" has no strips in "<<idHelperSvc()->toStringDetEl(identify()));
110 return static_cast<const RadialStripDesign&>(layerPtr->design(true));
112 inline Amg::Vector3D TgcReadoutElement::channelPosition(const ActsGeometryContext& ctx, const Identifier& measId) const {
113 return channelPosition(ctx, measurementHash(measId));
115 } // namespace MuonGMR4