ATLAS Offline Software
TRT_EndcapElement.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 /** Type information: */
8 inline TRT_BaseElement::Type
9 TRT_EndcapElement::type() const
10 {
11  return TRT_BaseElement::ENDCAP;
12 }
13 
14 inline const TRT_EndcapElement*
15 TRT_EndcapElement::nextInZ() const
16 {
17  return m_nextInZ;
18 }
19 
20 inline const TRT_EndcapElement*
21 TRT_EndcapElement::previousInZ() const
22 {
23  return m_previousInZ;
24 }
25 
26 inline const TRT_EndcapCode&
27 TRT_EndcapElement::getCode() const
28 {
29  return m_code;
30 }
31 }