ATLAS Offline Software
MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.cxx
Go to the documentation of this file.
1 
2 /*
3  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
4 */
5 #include "GeoModelsTgcTest.h"
9 #include <fstream>
10 
11 using namespace ActsTrk;
12 namespace MuonGMR4{
13 
14 GeoModelsTgcTest::GeoModelsTgcTest(const std::string& name, ISvcLocator* pSvcLocator):
15 AthHistogramAlgorithm(name,pSvcLocator) {}
16 
18  ATH_CHECK(m_idHelperSvc.retrieve());
21  ATH_CHECK(m_tree.init(this));
22 
23 
24  const sTgcIdHelper& id_helper{m_idHelperSvc->stgcIdHelper()};
25  for (const std::string& testCham : m_selectStat) {
26  if (testCham.size() != 6) {
27  ATH_MSG_FATAL("Wrong format given " << testCham);
28  return StatusCode::FAILURE;
29  }
31  std::string statName = testCham.substr(0, 3);
32  unsigned int statEta = std::atoi(testCham.substr(3, 1).c_str()) *
33  (testCham[4] == 'A' ? 1 : -1);
34  unsigned int statPhi = std::atoi(testCham.substr(5, 1).c_str());
35  bool is_valid{false};
36  const Identifier eleId = id_helper.elementID(statName, statEta, statPhi, is_valid);
37  if (!is_valid) {
38  ATH_MSG_FATAL("Failed to deduce a station name for " << testCham);
39  return StatusCode::FAILURE;
40  }
41  std::copy_if(id_helper.detectorElement_begin(),
42  id_helper.detectorElement_end(),
43  std::inserter(m_testStations, m_testStations.end()),
44  [&](const Identifier& id) {
45  return id_helper.elementID(id) == eleId;
46  });
47  }
49  if (m_testStations.empty()){
50  std::copy(id_helper.detectorElement_begin(),
51  id_helper.detectorElement_end(),
52  std::inserter(m_testStations, m_testStations.end()));
53  } else {
54  std::stringstream sstr{};
55  for (const Identifier& id : m_testStations){
56  sstr<<" *** "<<m_idHelperSvc->toString(id)<<std::endl;
57  }
58  ATH_MSG_INFO("Test only the following stations "<<std::endl<<sstr.str());
59  }
61  return StatusCode::SUCCESS;
62 }
65  return StatusCode::SUCCESS;
66 }
68  const EventContext& ctx{Gaudi::Hive::currentContext()};
69 
70  SG::ReadHandle<ActsGeometryContext> geoContextHandle{m_geoCtxKey, ctx};
71  ATH_CHECK(geoContextHandle.isPresent());
72  const ActsGeometryContext& gctx{*geoContextHandle};
73 
74 
75  for (const Identifier& test_me : m_testStations) {
76  ATH_MSG_DEBUG("Test retrieval of sTgc detector element "<<m_idHelperSvc->toStringDetEl(test_me));
77  const sTgcReadoutElement* reElement = m_detMgr->getsTgcReadoutElement(test_me);
78  if (!reElement) {
79  continue;
80  }
82  if (m_idHelperSvc->stgcIdHelper().elementID(reElement->identify()) != m_idHelperSvc->stgcIdHelper().elementID(test_me)) {
83  ATH_MSG_FATAL("Expected to retrieve "<<m_idHelperSvc->toString(test_me)
84  <<". But got instead "<<m_idHelperSvc->toString(reElement->identify()));
85  return StatusCode::FAILURE;
86  }
87  ATH_CHECK(dumpToTree(ctx,gctx,reElement));
88  const Amg::Transform3D globToLocal{reElement->globalToLocalTrans(gctx)};
89  const Amg::Transform3D& localToGlob{reElement->localToGlobalTrans(gctx)};
91  const Amg::Transform3D transClosure = globToLocal * localToGlob;
92  for (Amg::Vector3D axis :{Amg::Vector3D::UnitX(),Amg::Vector3D::UnitY(),Amg::Vector3D::UnitZ()}) {
93  const double closure_mag = std::abs( (transClosure*axis).dot(axis) - 1.);
94  if (closure_mag > std::numeric_limits<float>::epsilon() ) {
95  ATH_MSG_FATAL("Closure test failed for "<<m_idHelperSvc->toStringDetEl(test_me)<<" and axis "<<Amg::toString(axis, 0)
96  <<". Ended up with "<< Amg::toString(transClosure*axis) );
97  return StatusCode::FAILURE;
98  }
99  }
100  const sTgcIdHelper& id_helper{m_idHelperSvc->stgcIdHelper()};
101  for (unsigned int layer = 1; layer <= reElement->numLayers(); ++layer) {
102  for (int chType = sTgcIdHelper::sTgcChannelTypes::Pad; chType <= sTgcIdHelper::sTgcChannelTypes::Wire; ++chType) {
103  unsigned int numChannel = 0;
104  bool isValidLay{false};
105  const Identifier layID = id_helper.channelID(reElement->identify(),
106  reElement->multilayer(),
107  layer, chType, 1, isValidLay);
108  if (!isValidLay) {
109  continue;
110  }
111  switch(chType) {
112  case sTgcIdHelper::sTgcChannelTypes::Pad:
113  numChannel = reElement->numPads(layID);
114  break;
115 
116  case sTgcIdHelper::sTgcChannelTypes::Strip:
117  numChannel = reElement->numStrips(layID);
118  break;
119 
120  case sTgcIdHelper::sTgcChannelTypes::Wire:
121  numChannel = reElement->numWireGroups(layer);
122  break;
123  }
124  for (unsigned int channel = 1; channel < numChannel ; ++channel) {
125  bool isValidCh{false};
126  const Identifier chID = id_helper.channelID(reElement->identify(),
127  reElement->multilayer(),
128  layer, chType, channel, isValidCh);
129  if (!isValidCh) {
130  continue;
131  }
133  const IdentifierHash measHash = reElement->measurementHash(chID);
134  const IdentifierHash layHash = reElement->layerHash(chID);
135  ATH_MSG_VERBOSE("layer: "<<layer<<", chType: "<<chType
136  <<" --> layerHash: "<<static_cast<unsigned>(layHash));
137  const Identifier backCnv = reElement->measurementId(measHash);
138  if (backCnv != chID) {
139  ATH_MSG_FATAL("The back and forth conversion of "<<m_idHelperSvc->toString(chID)
140  <<" failed. Got "<<m_idHelperSvc->toString(backCnv));
141  return StatusCode::FAILURE;
142  }
143  if (layHash != reElement->layerHash(measHash)) {
144  ATH_MSG_FATAL("Constructing the layer hash from the identifier "<<
145  m_idHelperSvc->toString(chID)<<" leads to different layer hashes "<<
146  layHash<<" vs. "<< reElement->layerHash(measHash));
147  return StatusCode::FAILURE;
148  }
149  if (chType == sTgcIdHelper::sTgcChannelTypes::Strip) {
150  ATH_MSG_VERBOSE("Channel "<<m_idHelperSvc->toString(chID)<<" strip position "
151  <<Amg::toString(reElement->globalChannelPosition(gctx, measHash)));
152  }
153  else if (chType == sTgcIdHelper::sTgcChannelTypes::Wire) {
154  ATH_MSG_VERBOSE("Channel "<<m_idHelperSvc->toString(chID)<<" wireGroup position "
155  <<Amg::toString(reElement->globalChannelPosition(gctx, measHash)));
156  }
157  else if (chType == sTgcIdHelper::sTgcChannelTypes::Pad) {
158  ATH_MSG_VERBOSE("Channel "<<m_idHelperSvc->toString(chID)<<" Pad position "
159  <<Amg::toString(reElement->globalChannelPosition(gctx, measHash)));
160  }
161  }
162  }
163  }
164 
165  }
166  return StatusCode::SUCCESS;
167 }
168 
169 StatusCode GeoModelsTgcTest::dumpToTree(const EventContext& ctx,
170  const ActsGeometryContext& gctx,
171  const sTgcReadoutElement* reElement){
172 
173  m_stIndex = reElement->stationName();
174  m_stEta = reElement->stationEta();
175  m_stPhi = reElement->stationPhi();
176  m_stML = reElement->multilayer();
177  m_chamberDesign = reElement->chamberDesign();
179  m_numLayers = reElement->numLayers();
180  m_gasTck = reElement->gasGapThickness();
182  m_sChamberLength = reElement->sChamberLength();
183  m_lChamberLength = reElement->lChamberLength();
184  m_chamberHeight = reElement->chamberHeight();
185 
187  const Amg::Transform3D& transform{reElement->localToGlobalTrans(gctx)};
189  m_alignableNode = reElement->alignableTransform()->getDefTransform();
190 
191  const sTgcIdHelper& id_helper{m_idHelperSvc->stgcIdHelper()};
192  for (unsigned int layer = 1; layer <= reElement->numLayers(); ++layer) {
193  for (int chType = sTgcIdHelper::sTgcChannelTypes::Pad; chType <= sTgcIdHelper::sTgcChannelTypes::Wire; ++chType) {
194  unsigned int numWireGroup = 0;
196  bool isValidLay{false};
197  const Identifier layID = id_helper.channelID(reElement->identify(),
198  reElement->multilayer(),
199  layer, chType, 1, isValidLay);
200  if (!isValidLay) {
201  continue;
202  }
204  m_sGapLength = reElement->sGapLength(layID);
205  m_lGapLength = reElement->lGapLength(layID);
206  m_sPadLength = reElement->sPadLength(layID);
207  m_lPadLength = reElement->lPadLength(layID);
208  m_gapHeight = reElement->gapHeight(layID);
209  m_yCutout = reElement->yCutout(layID);
210 
211  switch (chType) {
212  case sTgcIdHelper::sTgcChannelTypes::Pad:
213  m_numPads.push_back(reElement->numPads(layID));
214  m_numPadEta.push_back(reElement->numPadEta(layID));
215  m_numPadPhi.push_back(reElement->numPadPhi(layID));
216  m_firstPadHeight.push_back(reElement->firstPadHeight(layID));
217  m_padHeight.push_back(reElement->padHeight(layID));
218  m_padPhiShift.push_back(reElement->padPhiShift(layID));
219  m_firstPadPhiDiv.push_back(reElement->firstPadPhiDiv(layID));
220  m_anglePadPhi = reElement->anglePadPhi(layID);
221  m_beamlineRadius = reElement->beamlineRadius(layID);
222  for (unsigned int pad = 1; pad <= reElement->numPads(layID); ++pad) {
223  bool isValidPad{false};
224  const Identifier padID = id_helper.channelID(reElement->identify(),
225  reElement->multilayer(),
226  layer, chType, pad, isValidPad);
227  if (!isValidPad) {
228  ATH_MSG_WARNING("Invalid Identifier detected for readout element "
229  <<m_idHelperSvc->toStringDetEl(reElement->identify())
230  <<" layer: "<<layer<<" pad: "<<pad<<" channelType: "<<chType);
231  continue;
232  }
233 
234  Amg::Vector2D localPadPos(Amg::Vector2D::Zero());
235  std::array<Amg::Vector2D,4> localPadCorners{make_array<Amg::Vector2D, 4>(Amg::Vector2D::Zero())};
236  Amg::Vector3D globalPadPos(Amg::Vector3D::Zero());
237  std::array<Amg::Vector3D,4> globalPadCorners{make_array<Amg::Vector3D, 4>(Amg::Vector3D::Zero())};
238 
239  localPadPos = reElement->localChannelPosition(padID);
240  localPadCorners = reElement->localPadCorners(padID);
241 
242  m_localPadPos.push_back(localPadPos);
243  m_localPadCornerBL.push_back(localPadCorners[0]);
244  m_localPadCornerBR.push_back(localPadCorners[1]);
245  m_localPadCornerTL.push_back(localPadCorners[2]);
246  m_localPadCornerTR.push_back(localPadCorners[3]);
247 
248  Amg::Vector2D hitCorrection{-.1, -.1};
249  Amg::Vector2D hitPos = localPadCorners[3] + hitCorrection;
250  m_hitPosition.push_back(hitPos);
251  m_padNumber.push_back(reElement->padNumber(hitPos, padID));
252 
253  globalPadPos = reElement->globalChannelPosition(gctx, padID);
254  globalPadCorners = reElement->globalPadCorners(gctx, padID);
255 
256  m_globalPadPos.push_back(globalPadPos);
257  m_globalPadCornerBR.push_back(globalPadCorners[0]);
258  m_globalPadCornerBL.push_back(globalPadCorners[1]);
259  m_globalPadCornerTR.push_back(globalPadCorners[2]);
260  m_globalPadCornerTL.push_back(globalPadCorners[3]);
261 
262  m_padEta.push_back(reElement->padEta(padID));
263  m_padPhi.push_back(reElement->padPhi(padID));
265 
266  if (pad != 1) continue;
267  const Amg::Transform3D locToGlob = reElement->localToGlobalTrans(gctx, padID);
268  ATH_MSG_DEBUG("The local to global transformation on layers is: " << Amg::toString(locToGlob));
269  m_padRot.push_back(locToGlob);
271 
272  }
273  break;
274 
275  case sTgcIdHelper::sTgcChannelTypes::Strip:
276  m_numStrips = reElement->numStrips(layID);
277  m_stripPitch = reElement->stripPitch(layID);
278  m_stripWidth = reElement->stripWidth(layID);
279  for (unsigned int strip = 1; strip <= reElement->numStrips(layID); ++strip) {
280  bool isValidStrip{false};
281  const Identifier stripID = id_helper.channelID(reElement->identify(),
282  reElement->multilayer(),
283  layer, chType, strip, isValidStrip);
284  if (!isValidStrip) {
285  ATH_MSG_WARNING("Invalid Identifier detected for readout element "
286  <<m_idHelperSvc->toStringDetEl(reElement->identify())
287  <<" layer: "<<layer<<" strip: "<<strip<<" channelType: "<<chType);
288  continue;
289  }
290  m_localStripPos.push_back((reElement->localChannelPosition(stripID)).block<2,1>(0,0));
291  m_globalStripPos.push_back(reElement->globalChannelPosition(gctx, stripID));
293  m_stripNum.push_back(strip);
294  m_stripLengths.push_back(reElement->stripLength(stripID));
295 
296  if (strip != 1) continue;
297  const Amg::Transform3D locToGlob = reElement->localToGlobalTrans(gctx, stripID);
298  ATH_MSG_DEBUG("The local to global transformation on layers is: " << Amg::toString(locToGlob));
299  m_stripRot.push_back(locToGlob);
301 
302  }
303  break;
304 
305  case sTgcIdHelper::sTgcChannelTypes::Wire:
306  m_wireGroupWidth = reElement->wireGroupWidth(layer);
307  numWireGroup = reElement->numWireGroups(layer);
308  m_wirePitch = reElement->wirePitch(layID);
309  m_wireWidth = reElement->wireWidth(layID);
310  m_numWires.push_back(reElement->numWires(layer));
312  m_numWireGroups.push_back(numWireGroup);
313  m_wireCutout.push_back(reElement->wireCutout(layer));
314  std::cout << "The number of wire groups are:" << numWireGroup << std::endl;
315  for (unsigned int wireGroup = 1; wireGroup <= numWireGroup; ++wireGroup) {
316  bool isValidWire{false};
317  const Identifier wireGroupID = id_helper.channelID(reElement->identify(),
318  reElement->multilayer(),
319  layer, chType, wireGroup, isValidWire);
320  if (!isValidWire) {
321  ATH_MSG_WARNING("Invalid Identifier detected for readout element "
322  <<m_idHelperSvc->toStringDetEl(reElement->identify())
323  <<" layer: "<<layer<<" wireGroup: "<<wireGroup<<" channelType: "<<chType);
324  continue;
325  }
326  m_localWireGroupPos.push_back(reElement->localChannelPosition(wireGroupID));
327  m_globalWireGroupPos.push_back(reElement->globalChannelPosition(gctx, wireGroupID));
329  m_wireGroupNum.push_back(wireGroup);
330 
331  if (wireGroup != 1) continue;
332  const Amg::Transform3D locToGlob = reElement->localToGlobalTrans(gctx, wireGroupID);
333  ATH_MSG_DEBUG("The local to global transformation on layers is: " << Amg::toString(locToGlob));
334  m_wireGroupRot.push_back(locToGlob);
336  }
337  break;
338  }
339  }
340  }
341  return m_tree.fill(ctx) ? StatusCode::SUCCESS : StatusCode::FAILURE;
342 }
343 
344 }
345 
MuonGMR4::sTgcReadoutElement::localChannelPosition
Amg::Vector2D localChannelPosition(const Identifier &measId) const
Returns the local pad/strip/wireGroup position.
python.PyKernel.retrieve
def retrieve(aClass, aKey=None)
Definition: PyKernel.py:110
MuonGMR4::sTgcReadoutElement::yCutout
double yCutout(const Identifier &measId) const
Returns the yCutout value of the chamber.
chType
sTgcIdHelper::sTgcChannelTypes chType
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/NSWGeoPlottingAlg.cxx:18
MuonGMR4::GeoModelsTgcTest::m_wireWidth
MuonVal::ScalarBranch< float > & m_wireWidth
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:105
MuonGMR4::sTgcReadoutElement::multilayer
int multilayer() const
Returns the multilayer of the sTgcReadoutElement.
MuonGMR4::GeoModelsTgcTest::m_lChamberLength
MuonVal::ScalarBranch< float > & m_lChamberLength
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:63
MuonGMR4::sTgcReadoutElement::padHeight
double padHeight(const Identifier &measId) const
Returns the height of all the pads that are not adjacent to the bottom edge of the trapezoid active a...
ATH_MSG_FATAL
#define ATH_MSG_FATAL(x)
Definition: AthMsgStreamMacros.h:34
MuonGMR4::GeoModelsTgcTest::m_padNumber
MuonVal::VectorBranch< int > & m_padNumber
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:131
MuonGMR4::sTgcReadoutElement::padEta
unsigned int padEta(const Identifier &measId) const
Returns the Eta index of the pad for the given pad identifier.
plotting.yearwise_efficiency.channel
channel
Definition: yearwise_efficiency.py:28
MuonGMR4::GeoModelsTgcTest::m_stripLengths
MuonVal::VectorBranch< float > & m_stripLengths
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:97
MuonGMR4::GeoModelsTgcTest::m_padRotGasGap
MuonVal::VectorBranch< uint8_t > & m_padRotGasGap
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:87
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition: AthMsgStreamMacros.h:31
MuonVal::MuonTesterTree::init
StatusCode init(OWNER *instance)
Initialize method.
MuonGMR4::GeoModelsTgcTest::m_wireGroupRotGasGap
MuonVal::VectorBranch< uint8_t > & m_wireGroupRotGasGap
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:83
MuonGMR4::GeoModelsTgcTest::m_tree
MuonVal::MuonTesterTree m_tree
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:48
ActsGeometryContext.h
MuonGMR4::sTgcReadoutElement::numPadEta
unsigned int numPadEta(const Identifier &measId) const
Returns the number of pads in the eta direction in the given layer.
MuonGMR4::GeoModelsTgcTest::m_selectStat
Gaudi::Property< std::vector< std::string > > m_selectStat
String should be formated like <stationName><stationEta><A/C><stationPhi>
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:41
MuonGMR4::GeoModelsTgcTest::m_globalPadCornerTL
MuonVal::ThreeVectorBranch m_globalPadCornerTL
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:136
Amg::Vector2D
Eigen::Matrix< double, 2, 1 > Vector2D
Definition: GeoPrimitives.h:48
SG::ReadHandle
Definition: StoreGate/StoreGate/ReadHandle.h:70
MuonGMR4::GeoModelsTgcTest::m_localPadPos
MuonVal::TwoVectorBranch m_localPadPos
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:129
MuonGMR4::GeoModelsTgcTest::m_idHelperSvc
ServiceHandle< Muon::IMuonIdHelperSvc > m_idHelperSvc
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:32
MuonGMR4::sTgcReadoutElement::numPadPhi
unsigned int numPadPhi(const Identifier &measId) const
Returns the number of pads in the Phi direction in the given gasGap layer.
MuonGMR4::MuonReadoutElement::chamberDesign
std::string chamberDesign() const
The chamber design refers to the construction parameters of a readout element.
MuonGMR4::GeoModelsTgcTest::m_localPadCornerBL
MuonVal::TwoVectorBranch m_localPadCornerBL
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:126
MuonGMR4::GeoModelsTgcTest::m_wireGroupNum
MuonVal::VectorBranch< uint8_t > & m_wireGroupNum
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:109
MuonGMR4::GeoModelsTgcTest::m_hitPosition
MuonVal::TwoVectorBranch m_hitPosition
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:130
MuonGMR4::GeoModelsTgcTest::m_padPhiShift
MuonVal::VectorBranch< float > & m_padPhiShift
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:120
yodamerge_tmp.axis
list axis
Definition: yodamerge_tmp.py:241
MuonGMR4::GeoModelsTgcTest::m_firstWireGroupWidth
MuonVal::VectorBranch< uint > & m_firstWireGroupWidth
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:101
MuonGMR4::GeoModelsTgcTest::m_globalPadCornerBL
MuonVal::ThreeVectorBranch m_globalPadCornerBL
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:134
MuonGMR4::GeoModelsTgcTest::m_numPadEta
MuonVal::VectorBranch< uint > & m_numPadEta
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:116
MuonGMR4::GeoModelsTgcTest::m_padRot
MuonVal::CoordSystemsBranch m_padRot
Rotation matrix of the respective pad layers.
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:86
MuonGMR4::GeoModelsTgcTest::m_sPadLength
MuonVal::ScalarBranch< float > & m_sPadLength
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:114
MuonGMR4::GeoModelsTgcTest::m_wireGroupGasGap
MuonVal::VectorBranch< uint8_t > & m_wireGroupGasGap
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:110
MuonGMR4::sTgcReadoutElement::stripLength
double stripLength(const Identifier &measId) const
Length of each strip.
MuonGMR4::MuonReadoutElement::globalToLocalTrans
Amg::Transform3D globalToLocalTrans(const ActsGeometryContext &ctx) const
Transformations to translate between local <-> global coordinates.
Definition: MuonPhaseII/MuonDetDescr/MuonReadoutGeometryR4/src/MuonReadoutElement.cxx:73
ATH_MSG_VERBOSE
#define ATH_MSG_VERBOSE(x)
Definition: AthMsgStreamMacros.h:28
sTgcIdHelper::sTgcChannelTypes
sTgcChannelTypes
Definition: sTgcIdHelper.h:190
MuonGMR4::GeoModelsTgcTest::m_stIndex
MuonVal::ScalarBranch< short > & m_stIndex
Identifier of the readout element.
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:51
MuonGMR4::sTgcReadoutElement::sPadLength
double sPadLength(const Identifier &measId) const
Length of gas Gap on short side for wireGroup/Pads.
MuonGMR4::GeoModelsTgcTest::initialize
StatusCode initialize() override
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.cxx:17
MuonGMR4::sTgcReadoutElement::padNumber
unsigned int padNumber(const Identifier &measId) const
Returns the pad number in the conventional pad numbering scheme from the sequential channel number.
MuonGMR4::GeoModelsTgcTest::m_stPhi
MuonVal::ScalarBranch< short > & m_stPhi
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:53
MuonGMR4::GeoModelsTgcTest::m_globalPadCornerBR
MuonVal::ThreeVectorBranch m_globalPadCornerBR
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:133
MuonGMR4::sTgcReadoutElement::measurementHash
IdentifierHash measurementHash(const Identifier &measId) const override final
Constructs the identifier hash from the full measurement Identifier.
MuonGMR4::sTgcReadoutElement::chamberHeight
double chamberHeight() const
Height of the chamber.
MuonGMR4::GeoModelsTgcTest::m_sChamberLength
MuonVal::ScalarBranch< float > & m_sChamberLength
Chamber Length for debug.
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:62
MuonGMR4::GeoModelsTgcTest::m_yCutout
MuonVal::ScalarBranch< float > & m_yCutout
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:59
MuonGMR4::sTgcReadoutElement::firstPadPhiDiv
double firstPadPhiDiv(const Identifier &measId) const
Returns the angle of the first pad outer edge w.r.t. the gasGap center from the beamline for the give...
MuonGMR4::GeoModelsTgcTest::m_padHeight
MuonVal::VectorBranch< float > & m_padHeight
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:119
AthCommonDataStore< AthCommonMsg< Algorithm > >::detStore
const ServiceHandle< StoreGateSvc > & detStore() const
The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
Definition: AthCommonDataStore.h:95
MuonGMR4::GeoModelsTgcTest::m_gasTck
MuonVal::ScalarBranch< float > & m_gasTck
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:60
MuonGMR4::GeoModelsTgcTest::m_stripPitch
MuonVal::ScalarBranch< float > & m_stripPitch
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:91
MuonGMR4::sTgcReadoutElement::padPhiShift
double padPhiShift(const Identifier &measId) const
Returns the staggering shift of inner pad edges in the phi direction.
MuonGMR4::GeoModelsTgcTest::m_numWireGroups
MuonVal::VectorBranch< uint > & m_numWireGroups
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:102
MuonVal::ThreeVectorBranch::push_back
void push_back(const Amg::Vector3D &vec)
interface using the Amg::Vector3D
Definition: ThreeVectorBranch.cxx:23
MuonGMR4::GeoModelsTgcTest::m_lGapLength
MuonVal::ScalarBranch< float > & m_lGapLength
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:67
sTgcReadoutElement.h
MuonGMR4::GeoModelsTgcTest::m_geoCtxKey
SG::ReadHandleKey< ActsGeometryContext > m_geoCtxKey
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:35
MuonGMR4::GeoModelsTgcTest::dumpToTree
StatusCode dumpToTree(const EventContext &ctx, const ActsGeometryContext &gctx, const sTgcReadoutElement *readoutEle)
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.cxx:169
Amg::toString
std::string toString(const Translation3D &translation, int precision=4)
GeoPrimitvesToStringConverter.
Definition: GeoPrimitivesToStringConverter.h:40
MuonGMR4::GeoModelsTgcTest::m_readoutTransform
MuonVal::CoordTransformBranch m_readoutTransform
Transformation of the readout element (Translation, ColX, ColY, ColZ)
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:74
MuonGMR4
A muon chamber is a collection of readout elements belonging to the same station.
Definition: ChamberAssembleTool.h:16
MuonGMR4::GeoModelsTgcTest::m_stripRotGasGap
MuonVal::VectorBranch< uint8_t > & m_stripRotGasGap
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:79
EventPrimitivesToStringConverter.h
MuonVal::TwoVectorBranch::push_back
void push_back(const Amg::Vector2D &vec)
interface using the Amg::Vector3D
Definition: TwoVectorBranch.cxx:21
MuonGMR4::sTgcReadoutElement::numWireGroups
unsigned int numWireGroups(unsigned int gasGap) const
Number of wire groups in the gas gap.
MuonGMR4::GeoModelsTgcTest::m_stripNum
MuonVal::VectorBranch< uint > & m_stripNum
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:95
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
ATH_MSG_DEBUG
#define ATH_MSG_DEBUG(x)
Definition: AthMsgStreamMacros.h:29
MuonGMR4::GeoModelsTgcTest::m_firstPadPhiDiv
MuonVal::VectorBranch< float > & m_firstPadPhiDiv
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:121
TRT::Hit::layer
@ layer
Definition: HitInfo.h:79
MuonGMR4::GeoModelsTgcTest::m_stripWidth
MuonVal::ScalarBranch< float > & m_stripWidth
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:92
MuonGMR4::GeoModelsTgcTest::m_wireGroupRot
MuonVal::CoordSystemsBranch m_wireGroupRot
Rotation matrix of the respective wireGroup layers.
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:82
MuonGMR4::GeoModelsTgcTest::m_gapHeight
MuonVal::ScalarBranch< float > & m_gapHeight
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:68
Amg::Transform3D
Eigen::Affine3d Transform3D
Definition: GeoPrimitives.h:46
MuonGMR4::GeoModelsTgcTest::m_alignableNode
MuonVal::CoordTransformBranch m_alignableNode
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:75
Amg::transform
Amg::Vector3D transform(Amg::Vector3D &v, Amg::Transform3D &tr)
Transform a point from a Trasformation3D.
Definition: GeoPrimitivesHelpers.h:156
MuonGMR4::GeoModelsTgcTest::m_numPads
MuonVal::VectorBranch< uint > & m_numPads
Pad dimensions.
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:113
MuonGMR4::sTgcReadoutElement::gapHeight
double gapHeight(const Identifier &measId) const
Height of gas Gap.
MuonGMR4::GeoModelsTgcTest::m_stripRot
MuonVal::CoordSystemsBranch m_stripRot
Rotation matrix of the respective strip layers.
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:78
MuonGMR4::GeoModelsTgcTest::m_padEta
MuonVal::VectorBranch< uint > & m_padEta
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:140
MuonGMR4::GeoModelsTgcTest::m_beamlineRadius
MuonVal::ScalarBranch< float > & m_beamlineRadius
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:123
MuonGMR4::GeoModelsTgcTest::m_stEta
MuonVal::ScalarBranch< short > & m_stEta
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:52
MuonGMR4::GeoModelsTgcTest::m_numWires
MuonVal::VectorBranch< uint > & m_numWires
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:100
MuonGMR4::GeoModelsTgcTest::m_localPadCornerBR
MuonVal::TwoVectorBranch m_localPadCornerBR
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:125
AnalysisUtils::copy_if
Out copy_if(In first, const In &last, Out res, const Pred &p)
Definition: IFilterUtils.h:30
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
MuonGMR4::GeoModelsTgcTest::m_padGasGap
MuonVal::VectorBranch< uint8_t > & m_padGasGap
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:139
MuonGMR4::GeoModelsTgcTest::m_localStripPos
MuonVal::TwoVectorBranch m_localStripPos
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:93
GeoModelsTgcTest.h
SG::VarHandleKey::initialize
StatusCode initialize(bool used=true)
If this object is used as a property, then this should be called during the initialize phase.
Definition: AthToolSupport/AsgDataHandles/Root/VarHandleKey.cxx:103
MuonGMR4::GeoModelsTgcTest::m_lPadLength
MuonVal::ScalarBranch< float > & m_lPadLength
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:115
AthHistogramAlgorithm
Definition: AthHistogramAlgorithm.h:32
MuonGMR4::sTgcReadoutElement::measurementId
Identifier measurementId(const IdentifierHash &measHash) const override final
Converts the measurement hash back to the full Identifier.
dot.dot
def dot(G, fn, nodesToHighlight=[])
Definition: dot.py:5
MuonGMR4::GeoModelsTgcTest::m_globalPadPos
MuonVal::ThreeVectorBranch m_globalPadPos
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:137
ActsGeometryContext
Include the GeoPrimitives which need to be put first.
Definition: ActsGeometryContext.h:28
MuonGMR4::sTgcReadoutElement::beamlineRadius
double beamlineRadius(const Identifier &measId) const
Returns the distance between the gasGap center and the beamline.
MuonGMR4::GeoModelsTgcTest::m_detMgr
const MuonDetectorManager * m_detMgr
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:43
MuonGMR4::GeoModelsTgcTest::m_firstPadHeight
MuonVal::VectorBranch< float > & m_firstPadHeight
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:118
MuonVal::VectorBranch::push_back
void push_back(const T &value)
Adds a new element at the end of the vector.
MuonGMR4::GeoModelsTgcTest::m_globalWireGroupPos
MuonVal::ThreeVectorBranch m_globalWireGroupPos
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:108
MuonGMR4::sTgcReadoutElement::sChamberLength
double sChamberLength() const
Length of the chamber on the short side.
MuonGMR4::GeoModelsTgcTest::m_testStations
std::set< Identifier > m_testStations
Set of stations to be tested.
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:38
MuonGMR4::sTgcReadoutElement::globalChannelPosition
Amg::Vector3D globalChannelPosition(const ActsGeometryContext &ctx, const Identifier &measId) const
Returns the global pad/strip/wireGroup position.
MuonGMR4::sTgcReadoutElement::lChamberLength
double lChamberLength() const
Length of the chamber on the long side.
MuonGMR4::sTgcReadoutElement::gasGapThickness
double gasGapThickness() const
Returns the thickness of the gas gap.
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:192
MuonGMR4::MuonReadoutElement::alignableTransform
const GeoAlignableTransform * alignableTransform() const
Returnsthe alignable transform of the readout element.
MuonGMR4::sTgcReadoutElement::wireGroupWidth
unsigned int wireGroupWidth(unsigned int gasGap) const
Number of wires in a normal wire group.
MuonGMR4::sTgcReadoutElement::sGapLength
double sGapLength(const Identifier &measId) const
Length of gas Gap on short side for strips.
sTgcIdHelper
Definition: sTgcIdHelper.h:55
MuonGMR4::MuonReadoutElement::identify
Identifier identify() const override final
Return the athena identifier.
MuonGMR4::GeoModelsTgcTest::m_wireGroupWidth
MuonVal::ScalarBranch< uint > & m_wireGroupWidth
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:106
MuonGMR4::GeoModelsTgcTest::m_padPhi
MuonVal::VectorBranch< uint > & m_padPhi
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:141
MuonGMR4::GeoModelsTgcTest::m_anglePadPhi
MuonVal::ScalarBranch< float > & m_anglePadPhi
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:122
MuonGMR4::GeoModelsTgcTest::m_wirePitch
MuonVal::ScalarBranch< float > & m_wirePitch
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:104
Amg::Vector3D
Eigen::Matrix< double, 3, 1 > Vector3D
Definition: GeoPrimitives.h:47
MuonGMR4::GeoModelsTgcTest::m_stripGasGap
MuonVal::VectorBranch< uint8_t > & m_stripGasGap
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:96
MuonGMR4::sTgcReadoutElement::numWires
unsigned int numWires(unsigned int gasGap) const
Number of wires in the gas gap.
MuonGMR4::GeoModelsTgcTest::m_chamberHeight
MuonVal::ScalarBranch< float > & m_chamberHeight
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:64
MuonGMR4::GeoModelsTgcTest::m_wireCutout
MuonVal::VectorBranch< float > & m_wireCutout
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:103
MuonGMR4::sTgcReadoutElement::numLayers
unsigned int numLayers() const
Returns the number of gas gap layers.
MuonGMR4::GeoModelsTgcTest::m_numStrips
MuonVal::ScalarBranch< uint > & m_numStrips
Strip dimensions.
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:90
MuonGMR4::sTgcReadoutElement::padPhi
unsigned int padPhi(const Identifier &measId) const
Returns the Phi index of the pad for the given pad identifier.
MuonGMR4::sTgcReadoutElement
Definition: MuonPhaseII/MuonDetDescr/MuonReadoutGeometryR4/MuonReadoutGeometryR4/sTgcReadoutElement.h:19
MuonGMR4::GeoModelsTgcTest::m_localPadCornerTL
MuonVal::TwoVectorBranch m_localPadCornerTL
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:128
MuonGMR4::GeoModelsTgcTest::m_numLayers
MuonVal::ScalarBranch< short > & m_numLayers
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:58
MuonGMR4::sTgcReadoutElement::firstWireGroupWidth
unsigned int firstWireGroupWidth(unsigned int gasGap) const
Number of wires in the first wire group.
MuonGMR4::sTgcReadoutElement::stripWidth
double stripWidth(const Identifier &measId) const
Width of a strip.
MuonGMR4::MuonReadoutElement::stationName
int stationName() const
Returns the stationName (BIS, BOS, etc) encoded into the integer.
MuonGMR4::sTgcReadoutElement::anglePadPhi
double anglePadPhi(const Identifier &measId) const
Returns the angular pitch of the pads in the phi direction.
ATH_MSG_WARNING
#define ATH_MSG_WARNING(x)
Definition: AthMsgStreamMacros.h:32
MuonGMR4::sTgcReadoutElement::wireCutout
double wireCutout(unsigned int gasGap) const
Wire Cutout of a gas Gap.
MuonGMR4::sTgcReadoutElement::globalPadCorners
globalCornerArray globalPadCorners(const ActsGeometryContext &ctx, const Identifier &measId) const
MuonVal::CoordSystemsBranch::push_back
void push_back(const Amg::Transform3D &trans)
Definition: CoordTransformBranch.cxx:28
MuonGMR4::sTgcReadoutElement::localPadCorners
localCornerArray localPadCorners(const Identifier &measId) const
MuonGMR4::GeoModelsTgcTest::m_sGapLength
MuonVal::ScalarBranch< float > & m_sGapLength
GasGap Lengths for debug.
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:66
MuonVal::MuonTesterTree::fill
bool fill(const EventContext &ctx)
Fills the tree per call.
Definition: MuonTesterTree.cxx:89
MuonGMR4::GeoModelsTgcTest::m_globalPadCornerTR
MuonVal::ThreeVectorBranch m_globalPadCornerTR
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:135
MuonGMR4::sTgcReadoutElement::numPads
unsigned int numPads(const Identifier &measId) const
Pads Total number of pads in the given layer.
MuonGMR4::sTgcReadoutElement::numStrips
unsigned int numStrips(const Identifier &measId) const
Strips Number of strips in a chamber.
MuonGMR4::MuonReadoutElement::localToGlobalTrans
const Amg::Transform3D & localToGlobalTrans(const ActsGeometryContext &ctx) const
Returns the local to global transformation into the ATLAS coordinate system.
Definition: MuonPhaseII/MuonDetDescr/MuonReadoutGeometryR4/src/MuonReadoutElement.cxx:76
MuonVal::MuonTesterTree::write
StatusCode write()
Finally write the TTree objects.
Definition: MuonTesterTree.cxx:178
MuonGMR4::sTgcReadoutElement::lGapLength
double lGapLength(const Identifier &measId) const
Length of gas Gap on long side for strips.
CxxUtils::atoi
int atoi(std::string_view str)
Helper functions to unpack numbers decoded in string into integers and doubles The strings are requir...
Definition: Control/CxxUtils/Root/StringUtils.cxx:85
ActsTrk
The AlignStoreProviderAlg loads the rigid alignment corrections and pipes them through the readout ge...
Definition: MuonDetectorBuilderTool.cxx:34
MuonGMR4::GeoModelsTgcTest::m_localWireGroupPos
MuonVal::TwoVectorBranch m_localWireGroupPos
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:107
MuonGMR4::sTgcReadoutElement::wirePitch
double wirePitch(const Identifier &measId) const
Wires Pitch of the wire.
MuonGMR4::GeoModelsTgcTest::finalize
StatusCode finalize() override
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.cxx:63
MuonGMR4::MuonReadoutElement::stationEta
int stationEta() const
Returns the stationEta (positive A site, negative O site)
calibdata.copy
bool copy
Definition: calibdata.py:27
MuonGMR4::GeoModelsTgcTest::m_stML
MuonVal::ScalarBranch< short > & m_stML
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:54
MuonGMR4::sTgcReadoutElement::lPadLength
double lPadLength(const Identifier &measId) const
Length of gas Gap on long side for wireGroup/Pads.
MuonGMR4::sTgcReadoutElement::layerHash
IdentifierHash layerHash(const Identifier &measId) const override final
Transforms the Identifier into a layer hash.
MuonGMR4::GeoModelsTgcTest::execute
StatusCode execute() override
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.cxx:67
MuonGMR4::GeoModelsTgcTest::m_chamberDesign
MuonVal::ScalarBranch< std::string > & m_chamberDesign
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:55
MuonGMR4::MuonReadoutElement::stationPhi
int stationPhi() const
Returns the stationPhi (1-8) -> sector (2*phi - (isSmall))
MuonGMR4::sTgcReadoutElement::firstPadHeight
double firstPadHeight(const Identifier &measId) const
Returns the height of the pads that are adjacent to the bottom edge of the trapezoid active area.
MuonGMR4::sTgcReadoutElement::stripPitch
double stripPitch(const Identifier &measId) const
Pitch of a strip.
generate::Zero
void Zero(TH1D *hin)
Definition: generate.cxx:32
MuonGMR4::GeoModelsTgcTest::m_numPadPhi
MuonVal::VectorBranch< uint > & m_numPadPhi
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:117
MuonGMR4::GeoModelsTgcTest::m_localPadCornerTR
MuonVal::TwoVectorBranch m_localPadCornerTR
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:127
MuonGMR4::GeoModelsTgcTest::m_globalStripPos
MuonVal::ThreeVectorBranch m_globalStripPos
Definition: MuonPhaseII/MuonDetDescr/MuonGeoModelTestR4/src/GeoModelsTgcTest.h:94
MuonGMR4::sTgcReadoutElement::wireWidth
double wireWidth(const Identifier &measId) const
Width of a single wire.