ATLAS Offline Software
TRT_EndcapDescriptor.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 
7 // The number of straws in a module:
8 inline const unsigned int &TRT_EndcapDescriptor::nStraws() const {
9  return m_nStraws;
10 }
11 
12 inline const double &TRT_EndcapDescriptor::strawPitch() const {
13  return m_strawPitch;
14 }
15 
16 inline const double &TRT_EndcapDescriptor::startPhi() const {
17  return m_startPhi;
18 }
19 
20 
21 inline const double &TRT_EndcapDescriptor::strawLength() const {
22  return m_strawLength;
23 }
24 
25 inline double TRT_EndcapDescriptor::innerTubeRadius() const
26 {
27  return m_innerTubeRadius;
28 }
29 
30 inline const double &TRT_EndcapDescriptor::innerRadius() const {
31  return m_innerRadius;
32 }
33 
34 inline const GeoXF::Function * TRT_EndcapDescriptor::getStrawTransform() const {
35  return m_f;
36 }
37 
38 inline size_t TRT_EndcapDescriptor::getStrawTransformOffset() const {
39  return m_o;
40 }
41 
42 
43 
44 }
45