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