ATLAS Offline Software
TRT_Numerology.icc
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 namespace InDetDD {
6 inline unsigned int TRT_Numerology::getNBarrelLayers (unsigned int iMod) const {
7  return m_nlayerBarrel[iMod];
8 }
9 
10 
11 inline unsigned int TRT_Numerology::getNEndcapLayers (unsigned int iWheel) const {
12  return m_nlayerEndcap[iWheel];
13 }
14 
15 inline unsigned int TRT_Numerology::getNBarrelRings() const {
16  return m_nringBarrel;
17 }
18 
19 inline unsigned int TRT_Numerology::getNBarrelPhi() const {
20  return m_nphiBarrel;
21 }
22 
23 inline unsigned int TRT_Numerology::getNEndcapWheels() const {
24  return m_nwheelEndcap;
25 }
26 
27 inline unsigned int TRT_Numerology::getNEndcapPhi() const {
28  return m_nphiEndcap;
29 }
30 }