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