ATLAS Offline Software
Loading...
Searching...
No Matches
InDetDD::TRT_BaseElement Class Referenceabstract

Virtual base class of TRT readout elements. More...

#include <TRT_BaseElement.h>

Inheritance diagram for InDetDD::TRT_BaseElement:

Public Types

enum  Type { BARREL , ENDCAP }

Public Member Functions

 TRT_BaseElement (const GeoVFullPhysVol *volume, const Identifier &id, const TRT_ID *idHelper, const TRT_Conditions *conditions)
 Constructor:
 TRT_BaseElement (const TRT_BaseElement &right)
virtual ~TRT_BaseElement ()=default
 Destructor:
virtual TRT_BaseElement::Type type () const =0
 Type information: returns BARREL or ENDCAP.
virtual Identifier identify () const override final
 identifier of this detector element:
virtual IdentifierHash identifyHash () const override final
 identifier hash
const GeoTrf::Transform3D & defTransform () const
 Get Default Transform (of module in barrel, layer in endcap) from GeoModel before alignment corrections.
const HepGeom::Transform3D getAbsoluteTransform (int straw) const
 This is an alias to strawTransform(int straw)
virtual const Trk::Surfacesurface () const override final
 Element Surface: access to the Surface (straw layer)
virtual const Trk::SurfaceBoundsbounds () const override final
 Straw layer bounds.
virtual const Amg::Transform3Dtransform () const override final
 Element Surface: Get Transform of element in Tracking frame: Amg.
virtual const Amg::Vector3Dcenter () const override final
 Element Surface: center of a straw layer.
virtual const Amg::Vector3Dnormal () const override final
 Element Surface: normal of a straw layer.
virtual Trk::DetectorElemType detectorType () const override final
 TrkDetElementBase interface detectorTyoe.
virtual const Trk::Surfacesurface (const Identifier &id) const override final
 Straw Surface: access to the surface via identifier.
const std::vector< const Trk::Surface * > & surfaces () const
 Returns the full list of all detection surfaces associated to this detector element.
virtual const Trk::SurfaceBoundsbounds (const Identifier &id) const override final
 Straw Surface: access to the bounds via Identifier.
virtual const Amg::Transform3Dtransform (const Identifier &id) const override final
 Straw Surface: access to the transform of individual straw in Tracking frame: Amg.
const Amg::Transform3DstrawTransform (unsigned int straw) const
 Straw transform - fast access in array, in Tracking frame: Amg.
virtual const Amg::Vector3Dcenter (const Identifier &id) const override final
 Straw Surface: Center of a straw using Identifier Straw center and straw axis can be obtained by the following: (The straw center is the center of the active region) Amg::Transform3D& transform = element->strawTransform(straw); Amb::Vector3D& center = element->strawCenter(); double r = element->strawCenter()->perp(); double phi = element->strawCenter()->phi(); Amg::Vector3D strawAxis = element->strawTransform(straw)* Vector3D(0,0,1) * strawDirection()
virtual const Amg::Vector3Dnormal (const Identifier &id) const override final
 Normal of a straw.
const Trk::StraightLineSurfacestrawSurface (int straw) const
 Straw Surface: access to the surface via integer.
const Amg::Transform3DstrawTransform (int straw) const
 Straw Surface: Local -> global transform of the straw via integer.
const Amg::Vector3DstrawCenter (int straw) const
 Straw Surface: Local -> global transform of the straw via integer.
Amg::Vector3D strawAxis (int straw) const
 Straw axis.
unsigned int nStraws () const
 Number of straws in the element.
virtual const double & strawLength () const =0
 Active straw length.
virtual int strawDirection () const =0
 StrawDirection.
void invalidate ()
 Invalidate cache.
void updateAllCaches (GeoAlignmentStore *alignStore=nullptr) const
 Update all caches.
const TRT_Conditionsconditions () const
 Return the TRT_Conditions object associated to this Detector element.
virtual HepGeom::Transform3D calculateStrawTransform (int straw, GeoAlignmentStore *alignStore=nullptr) const =0
 to be overloaded by the extended classes
virtual const Trk::SurfaceBoundsstrawBounds () const =0
 the straw bounds
virtual const Trk::SurfaceelementSurface () const =0
 creates surface for detector element, to be implemented in derived class
virtual void createSurfaceCache (GeoAlignmentStore *alignStore=nullptr) const =0
 create the surface cache of the detector element, to be implementd in the deried class
void createSurfaceCache (Identifier id, GeoAlignmentStore *alignStore=nullptr) const
 create the surface & surface cache for the straw
void invalidateOther () const
 invalidate action on the cache
std::string detectorTypeString () const
 Returns a string of the Detector element type.

Protected Member Functions

const Amg::Vector3Dcenter (const Identifier &id, GeoAlignmentStore *alignStore) const

Protected Attributes

Identifier m_id
IdentifierHash m_idHash
unsigned int m_nstraws = 0
const TRT_IDm_idHelper =nullptr
const TRT_Conditionsm_conditions =nullptr
CxxUtils::CachedUniquePtr< Trk::Surfacem_surface
std::vector< CxxUtils::CachedUniquePtr< Trk::StraightLineSurface > > m_strawSurfaces {}
std::vector< CxxUtils::CachedUniquePtr< SurfaceCacheBase > > m_strawSurfacesCache {}
 helper element surface for the cache
CxxUtils::CachedValue< std::vector< const Trk::Surface * > > m_surfaces
CxxUtils::CachedValue< SurfaceCachem_surfaceCache

Private Member Functions

const TRT_BaseElementoperator= (const TRT_BaseElement &right)
 Illegal operations:
void deleteCache ()
 Helper method for cache dealing.
std::unique_ptr< SurfaceCacheBasecreateSurfaceCacheHelper (int straw, GeoAlignmentStore *alignStore=nullptr) const

Detailed Description

Virtual base class of TRT readout elements.

Differently to the Silicon readout elements, the TRT readoutelements describe multiple readout surfaces, i.e. several straws that are described by a surface, such as e.g. a planar sector surface in the barrel, or a disc surface in the endcap.

Author
Grant Gorfine
  • modified& maintained: Andreas Salzburger, Nick Styles

Definition at line 52 of file TRT_BaseElement.h.

Member Enumeration Documentation

◆ Type

Enumerator
BARREL 
ENDCAP 

Definition at line 56 of file TRT_BaseElement.h.

Constructor & Destructor Documentation

◆ TRT_BaseElement() [1/2]

InDetDD::TRT_BaseElement::TRT_BaseElement ( const GeoVFullPhysVol * volume,
const Identifier & id,
const TRT_ID * idHelper,
const TRT_Conditions * conditions )

Constructor:

Definition at line 17 of file TRT_BaseElement.cxx.

21 : Trk::TrkDetElementBase(volume)
22 , m_id(id)
23 , m_idHelper(idHelper)
25 , m_surface{}
26 , m_surfaces{}
28{
29 m_idHash = m_idHelper->straw_layer_hash(id);
30}
const TRT_Conditions * m_conditions
const TRT_Conditions * conditions() const
Return the TRT_Conditions object associated to this Detector element.
CxxUtils::CachedValue< std::vector< const Trk::Surface * > > m_surfaces
CxxUtils::CachedValue< SurfaceCache > m_surfaceCache
CxxUtils::CachedUniquePtr< Trk::Surface > m_surface

◆ TRT_BaseElement() [2/2]

InDetDD::TRT_BaseElement::TRT_BaseElement ( const TRT_BaseElement & right)

Definition at line 32 of file TRT_BaseElement.cxx.

33 : Trk::TrkDetElementBase(right.getMaterialGeom())
34 , m_id(right.m_id)
35 , m_idHash(right.m_idHash)
36 , m_idHelper(right.m_idHelper)
37 , m_conditions(right.m_conditions)
38{}

◆ ~TRT_BaseElement()

virtual InDetDD::TRT_BaseElement::~TRT_BaseElement ( )
virtualdefault

Destructor:

Member Function Documentation

◆ bounds() [1/2]

virtual const Trk::SurfaceBounds & InDetDD::TRT_BaseElement::bounds ( ) const
finaloverridevirtual

Straw layer bounds.

Implements Trk::TrkDetElementBase.

◆ bounds() [2/2]

const Trk::SurfaceBounds & InDetDD::TRT_BaseElement::bounds ( const Identifier & id) const
finaloverridevirtual

Straw Surface: access to the bounds via Identifier.

Implements Trk::TrkDetElementBase.

Definition at line 72 of file TRT_BaseElement.cxx.

73{
74 return strawBounds();
75}
virtual const Trk::SurfaceBounds & strawBounds() const =0
the straw bounds

◆ calculateStrawTransform()

virtual HepGeom::Transform3D InDetDD::TRT_BaseElement::calculateStrawTransform ( int straw,
GeoAlignmentStore * alignStore = nullptr ) const
pure virtual

to be overloaded by the extended classes

Implemented in InDetDD::TRT_BarrelElement, and InDetDD::TRT_EndcapElement.

◆ center() [1/3]

virtual const Amg::Vector3D & InDetDD::TRT_BaseElement::center ( ) const
finaloverridevirtual

Element Surface: center of a straw layer.

Implements Trk::TrkDetElementBase.

◆ center() [2/3]

const Amg::Vector3D & InDetDD::TRT_BaseElement::center ( const Identifier & id) const
finaloverridevirtual

Straw Surface: Center of a straw using Identifier Straw center and straw axis can be obtained by the following: (The straw center is the center of the active region) Amg::Transform3D& transform = element->strawTransform(straw); Amb::Vector3D& center = element->strawCenter(); double r = element->strawCenter()->perp(); double phi = element->strawCenter()->phi(); Amg::Vector3D strawAxis = element->strawTransform(straw)* Vector3D(0,0,1) * strawDirection()

Implements Trk::TrkDetElementBase.

Definition at line 110 of file TRT_BaseElement.cxx.

111{
112 int straw = m_idHelper->straw(id);
113 if (!m_strawSurfacesCache[straw]) {
115 }
116 // forward the transform of the cache
117 return m_strawSurfacesCache[straw]->center();
118}
virtual void createSurfaceCache(GeoAlignmentStore *alignStore=nullptr) const =0
create the surface cache of the detector element, to be implementd in the deried class
std::vector< CxxUtils::CachedUniquePtr< SurfaceCacheBase > > m_strawSurfacesCache
helper element surface for the cache
@ straw
Definition HitInfo.h:82

◆ center() [3/3]

const Amg::Vector3D & InDetDD::TRT_BaseElement::center ( const Identifier & id,
GeoAlignmentStore * alignStore ) const
protected

Definition at line 121 of file TRT_BaseElement.cxx.

122{
123 int straw = m_idHelper->straw(id);
124 if (!m_strawSurfacesCache[straw]) {
125 createSurfaceCache(id, alignStore);
126 }
127 // forward the transform of the cache
128 return m_strawSurfacesCache[straw]->center();
129}

◆ conditions()

const TRT_Conditions * InDetDD::TRT_BaseElement::conditions ( ) const

Return the TRT_Conditions object associated to this Detector element.

◆ createSurfaceCache() [1/2]

virtual void InDetDD::TRT_BaseElement::createSurfaceCache ( GeoAlignmentStore * alignStore = nullptr) const
pure virtual

create the surface cache of the detector element, to be implementd in the deried class

Implemented in InDetDD::TRT_BarrelElement, and InDetDD::TRT_EndcapElement.

◆ createSurfaceCache() [2/2]

void InDetDD::TRT_BaseElement::createSurfaceCache ( Identifier id,
GeoAlignmentStore * alignStore = nullptr ) const

create the surface & surface cache for the straw

Definition at line 172 of file TRT_BaseElement.cxx.

173{
174 int straw = m_idHelper->straw(id);
175
176 // convert neccessary parts to Amg
177 if (!m_strawSurfacesCache[straw]) {
178 // create the surface cache & fill it
180 }
181 // creaete the surface only if needed (the links are still intact)
182 if (!m_strawSurfaces[straw]) {
184 std::make_unique<Trk::StraightLineSurface>(*this, id));
185 }
186}
std::unique_ptr< SurfaceCacheBase > createSurfaceCacheHelper(int straw, GeoAlignmentStore *alignStore=nullptr) const
std::vector< CxxUtils::CachedUniquePtr< Trk::StraightLineSurface > > m_strawSurfaces

◆ createSurfaceCacheHelper()

std::unique_ptr< SurfaceCacheBase > InDetDD::TRT_BaseElement::createSurfaceCacheHelper ( int straw,
GeoAlignmentStore * alignStore = nullptr ) const
private

Definition at line 189 of file TRT_BaseElement.cxx.

190{
191 // get the StrawTransform from GeoModel
192 HepGeom::Transform3D cStrawTransform = calculateStrawTransform(straw,alignStore);
193 auto sTransform =
195 auto sCenter = Amg::Vector3D(sTransform.translation());
196 // create the surface cache & fill it
197 return std::make_unique<SurfaceCacheBase>(sTransform, sCenter);
198}
virtual HepGeom::Transform3D calculateStrawTransform(int straw, GeoAlignmentStore *alignStore=nullptr) const =0
to be overloaded by the extended classes
Amg::Transform3D CLHEPTransformToEigen(const HepGeom::Transform3D &CLHEPtransf)
Converts a CLHEP-based HepGeom::Transform3D into an Eigen Amg::Transform3D.
Eigen::Affine3d Transform3D
Eigen::Matrix< double, 3, 1 > Vector3D

◆ defTransform()

const GeoTrf::Transform3D & InDetDD::TRT_BaseElement::defTransform ( ) const

Get Default Transform (of module in barrel, layer in endcap) from GeoModel before alignment corrections.

◆ deleteCache()

void InDetDD::TRT_BaseElement::deleteCache ( )
private

Helper method for cache dealing.

Definition at line 211 of file TRT_BaseElement.cxx.

212{
213 // for all straws
214 for (auto & i : m_strawSurfacesCache) {
215 i.release();
216 }
217}

◆ detectorType()

virtual Trk::DetectorElemType InDetDD::TRT_BaseElement::detectorType ( ) const
finaloverridevirtual

TrkDetElementBase interface detectorTyoe.

Implements Trk::TrkDetElementBase.

◆ detectorTypeString()

std::string Trk::TrkDetElementBase::detectorTypeString ( ) const
inherited

Returns a string of the Detector element type.

Definition at line 10 of file TrkDetElementBase.cxx.

10 {
11 auto type = detectorType();
13 return "SolidState";
14 else if (type == Trk::DetectorElemType::Silicon)
15 return "Silicon";
16 else if (type == Trk::DetectorElemType::TRT)
17 return "TRT";
18 else if (type == Trk::DetectorElemType::Csc)
19 return "Csc";
20 else if (type == Trk::DetectorElemType::Mdt)
21 return "Mdt";
22 else if (type == Trk::DetectorElemType::Rpc)
23 return "Rpc";
24 else if (type == Trk::DetectorElemType::Tgc)
25 return "Tgc";
26 else if (type == Trk::DetectorElemType::sTgc)
27 return "sTgc";
28 else if (type == Trk::DetectorElemType::MM)
29 return "Mm";
30 return "Unknown";
31}
virtual DetectorElemType detectorType() const =0
Return the Detector element type.

◆ elementSurface()

virtual const Trk::Surface & InDetDD::TRT_BaseElement::elementSurface ( ) const
pure virtual

creates surface for detector element, to be implemented in derived class

Implemented in InDetDD::TRT_BarrelElement, and InDetDD::TRT_EndcapElement.

◆ getAbsoluteTransform()

const HepGeom::Transform3D InDetDD::TRT_BaseElement::getAbsoluteTransform ( int straw) const

This is an alias to strawTransform(int straw)

Definition at line 42 of file TRT_BaseElement.cxx.

43{
45}
const Amg::Transform3D & strawTransform(unsigned int straw) const
Straw transform - fast access in array, in Tracking frame: Amg.
HepGeom::Transform3D EigenTransformToCLHEP(const Amg::Transform3D &eigenTransf)
Converts an Eigen-based Amg::Transform3D into a CLHEP-based HepGeom::Transform3D.

◆ identify()

virtual Identifier InDetDD::TRT_BaseElement::identify ( ) const
finaloverridevirtual

identifier of this detector element:

Implements Trk::TrkDetElementBase.

◆ identifyHash()

virtual IdentifierHash InDetDD::TRT_BaseElement::identifyHash ( ) const
finaloverridevirtual

identifier hash

Implements Trk::TrkDetElementBase.

◆ invalidate()

void InDetDD::TRT_BaseElement::invalidate ( )

Invalidate cache.

Definition at line 201 of file TRT_BaseElement.cxx.

202{
203 // Invalidate the caches
204 // Call and barrel or endcap specific invalidation
206 // Its enough to delete and zero the caches.
207 deleteCache();
208}
void deleteCache()
Helper method for cache dealing.
void invalidateOther() const
invalidate action on the cache

◆ invalidateOther()

void InDetDD::TRT_BaseElement::invalidateOther ( ) const
inline

invalidate action on the cache

Definition at line 188 of file TRT_BaseElement.h.

188{};

◆ normal() [1/2]

virtual const Amg::Vector3D & InDetDD::TRT_BaseElement::normal ( ) const
finaloverridevirtual

Element Surface: normal of a straw layer.

Implements Trk::TrkDetElementBase.

◆ normal() [2/2]

const Amg::Vector3D & InDetDD::TRT_BaseElement::normal ( const Identifier & id) const
finaloverridevirtual

Normal of a straw.

(Not very meaningful).

Implements Trk::TrkDetElementBase.

Definition at line 100 of file TRT_BaseElement.cxx.

101{
102 // Not sure if the normal of the straw is ever used.
103 // nor is there a well defined normal.
104 // This wont be corrected for alignments.
105 // Just return the element normal
106 return normal();
107}
virtual const Amg::Vector3D & normal() const override final
Element Surface: normal of a straw layer.

◆ nStraws()

unsigned int InDetDD::TRT_BaseElement::nStraws ( ) const

Number of straws in the element.

◆ operator=()

const TRT_BaseElement & InDetDD::TRT_BaseElement::operator= ( const TRT_BaseElement & right)
private

Illegal operations:

◆ strawAxis()

Amg::Vector3D InDetDD::TRT_BaseElement::strawAxis ( int straw) const

Straw axis.

Always in direction of increasing eta. +ve z direction in barrel (for both +ve and -ve half) Away from beam pipe in -ve z endcap, Towards beam pipe in +ve endcap.

Definition at line 165 of file TRT_BaseElement.cxx.

166{
167 return (strawTransform(straw).linear() * Amg::Vector3D::UnitZ() *
169}
virtual int strawDirection() const =0
StrawDirection.

◆ strawBounds()

virtual const Trk::SurfaceBounds & InDetDD::TRT_BaseElement::strawBounds ( ) const
pure virtual

the straw bounds

Implemented in InDetDD::TRT_BarrelElement, and InDetDD::TRT_EndcapElement.

◆ strawCenter()

const Amg::Vector3D & InDetDD::TRT_BaseElement::strawCenter ( int straw) const

Straw Surface: Local -> global transform of the straw via integer.

Definition at line 154 of file TRT_BaseElement.cxx.

155{
156 if (!m_strawSurfacesCache[straw]) {
157 Identifier id = m_idHelper->straw_id(identify(), straw);
159 }
160 // forward the transform of the cache
161 return m_strawSurfacesCache[straw]->center();
162}
virtual Identifier identify() const override final
identifier of this detector element:

◆ strawDirection()

virtual int InDetDD::TRT_BaseElement::strawDirection ( ) const
pure virtual

StrawDirection.

+1 if axis is in same direction as local z axis, -1 otherwise.

Implemented in InDetDD::TRT_BarrelElement, and InDetDD::TRT_EndcapElement.

◆ strawLength()

virtual const double & InDetDD::TRT_BaseElement::strawLength ( ) const
pure virtual

Active straw length.

Implemented in InDetDD::TRT_BarrelElement, and InDetDD::TRT_EndcapElement.

◆ strawSurface()

const Trk::StraightLineSurface & InDetDD::TRT_BaseElement::strawSurface ( int straw) const

Straw Surface: access to the surface via integer.

Definition at line 132 of file TRT_BaseElement.cxx.

133{
134 if (!m_strawSurfaces[straw]) {
135 // get the straw identifier to the given straw number and element identifier
136 Identifier id = m_idHelper->straw_id(identify(), straw);
138 }
139 return *(m_strawSurfaces[straw].get());
140}

◆ strawTransform() [1/2]

const Amg::Transform3D & InDetDD::TRT_BaseElement::strawTransform ( int straw) const

Straw Surface: Local -> global transform of the straw via integer.

Definition at line 143 of file TRT_BaseElement.cxx.

144{
145 if (!m_strawSurfacesCache[straw]) {
146 Identifier id = m_idHelper->straw_id(identify(), straw);
148 }
149 // forward the transform of the cache
150 return m_strawSurfacesCache[straw]->transform();
151}

◆ strawTransform() [2/2]

const Amg::Transform3D & InDetDD::TRT_BaseElement::strawTransform ( unsigned int straw) const

Straw transform - fast access in array, in Tracking frame: Amg.

Straw Surface: access to the transform of individual straw in Tracking frame: Amg

Definition at line 89 of file TRT_BaseElement.cxx.

90{
91 if (!m_strawSurfacesCache[straw]) {
92 Identifier id = m_idHelper->straw_id(identify(), straw);
94 }
95 // forward the transform of the cache
96 return m_strawSurfacesCache[straw]->transform();
97}

◆ surface() [1/2]

virtual const Trk::Surface & InDetDD::TRT_BaseElement::surface ( ) const
finaloverridevirtual

Element Surface: access to the Surface (straw layer)

Implements Trk::TrkDetElementBase.

◆ surface() [2/2]

const Trk::Surface & InDetDD::TRT_BaseElement::surface ( const Identifier & id) const
finaloverridevirtual

Straw Surface: access to the surface via identifier.

Implements Trk::TrkDetElementBase.

Definition at line 48 of file TRT_BaseElement.cxx.

49{
50 int straw = m_idHelper->straw(id);
51 if (!m_strawSurfaces[straw]) {
53 }
54 return *(m_strawSurfaces[straw]);
55}

◆ surfaces()

const std::vector< const Trk::Surface * > & InDetDD::TRT_BaseElement::surfaces ( ) const

Returns the full list of all detection surfaces associated to this detector element.

Definition at line 58 of file TRT_BaseElement.cxx.

59{
60 if (!m_surfaces.isValid()) {
61 std::vector<const Trk::Surface*> tmp_surfaces;
62 tmp_surfaces.reserve(nStraws());
63 for (unsigned is = 0; is < nStraws(); ++is) {
64 tmp_surfaces.push_back(&strawSurface(is));
65 }
66 m_surfaces.set(tmp_surfaces);
67 }
68 return *(m_surfaces.ptr());
69}
unsigned int nStraws() const
Number of straws in the element.
const Trk::StraightLineSurface & strawSurface(int straw) const
Straw Surface: access to the surface via integer.

◆ transform() [1/2]

virtual const Amg::Transform3D & InDetDD::TRT_BaseElement::transform ( ) const
finaloverridevirtual

Element Surface: Get Transform of element in Tracking frame: Amg.

Implements Trk::TrkDetElementBase.

◆ transform() [2/2]

const Amg::Transform3D & InDetDD::TRT_BaseElement::transform ( const Identifier & id) const
finaloverridevirtual

Straw Surface: access to the transform of individual straw in Tracking frame: Amg.

Implements Trk::TrkDetElementBase.

Definition at line 78 of file TRT_BaseElement.cxx.

79{
80 int straw = m_idHelper->straw(id);
81 if (!m_strawSurfacesCache[straw]) {
83 }
84 // forward the transform of the cache
85 return m_strawSurfacesCache[straw]->transform();
86}

◆ type()

virtual TRT_BaseElement::Type InDetDD::TRT_BaseElement::type ( ) const
pure virtual

Type information: returns BARREL or ENDCAP.

Implemented in InDetDD::TRT_BarrelElement, and InDetDD::TRT_EndcapElement.

◆ updateAllCaches()

void InDetDD::TRT_BaseElement::updateAllCaches ( GeoAlignmentStore * alignStore = nullptr) const

Update all caches.

Definition at line 220 of file TRT_BaseElement.cxx.

221{
222 // Strawlayer caches
223 if (!m_surfaceCache.isValid()){
224 createSurfaceCache(alignStore);
225 }
226 // Loop over all straws and request items that get cached.
227 for (unsigned int iStraw = 0; iStraw < nStraws(); iStraw++) {
228 Identifier strawId = m_idHelper->straw_id(identify(), iStraw);
229 createSurfaceCache(strawId,alignStore);
230 }
231}

Member Data Documentation

◆ m_conditions

const TRT_Conditions* InDetDD::TRT_BaseElement::m_conditions =nullptr
protected

Definition at line 208 of file TRT_BaseElement.h.

◆ m_id

Identifier InDetDD::TRT_BaseElement::m_id
protected

Definition at line 199 of file TRT_BaseElement.h.

◆ m_idHash

IdentifierHash InDetDD::TRT_BaseElement::m_idHash
protected

Definition at line 200 of file TRT_BaseElement.h.

◆ m_idHelper

const TRT_ID* InDetDD::TRT_BaseElement::m_idHelper =nullptr
protected

Definition at line 207 of file TRT_BaseElement.h.

◆ m_nstraws

unsigned int InDetDD::TRT_BaseElement::m_nstraws = 0
protected

Definition at line 206 of file TRT_BaseElement.h.

◆ m_strawSurfaces

std::vector<CxxUtils::CachedUniquePtr<Trk::StraightLineSurface> > InDetDD::TRT_BaseElement::m_strawSurfaces {}
protected

Definition at line 211 of file TRT_BaseElement.h.

211{};

◆ m_strawSurfacesCache

std::vector<CxxUtils::CachedUniquePtr<SurfaceCacheBase> > InDetDD::TRT_BaseElement::m_strawSurfacesCache {}
protected

helper element surface for the cache

Definition at line 212 of file TRT_BaseElement.h.

212{};

◆ m_surface

CxxUtils::CachedUniquePtr<Trk::Surface> InDetDD::TRT_BaseElement::m_surface
protected

Definition at line 209 of file TRT_BaseElement.h.

◆ m_surfaceCache

CxxUtils::CachedValue<SurfaceCache> InDetDD::TRT_BaseElement::m_surfaceCache
protected

Definition at line 215 of file TRT_BaseElement.h.

◆ m_surfaces

CxxUtils::CachedValue<std::vector<const Trk::Surface*> > InDetDD::TRT_BaseElement::m_surfaces
protected

Definition at line 214 of file TRT_BaseElement.h.


The documentation for this class was generated from the following files: