ATLAS Offline Software
Loading...
Searching...
No Matches
SCT_FwdPowerTape.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef SCT_GEOMODEL_SCT_FWDPOWERTAPE_H
6#define SCT_GEOMODEL_SCT_FWDPOWERTAPE_H
7
9
10class GeoMaterial;
11
13{
14
15public:
16 SCT_FwdPowerTape(const std::string & name,
17 int numModules,
18 double innerRadius,
19 double startPos,
20 double endPos,
21 InDetDD::SCT_DetectorManager* detectorManager,
22 SCT_GeometryManager* geometryManager,
23 SCT_MaterialManager* materials);
24
25
26 const GeoMaterial * material() const {return m_material;}
27 double crossSectArea() const {return m_crossSectArea;}
28
29 double innerRadius() const {return m_innerRadius;}
30 double outerRadius() const {return m_outerRadius;}
31 double thickness() const {return m_thickness;}
32 double length() const {return m_length;}
33 double zPosition() const {return m_zPosition;}
34
35private:
36 void getParameters();
37 virtual GeoVPhysVol * build();
38
39 const GeoMaterial * m_material = nullptr;
41 double m_crossSectArea = 0.0; // Cross sectional area per module
43 double m_outerRadius = 0.0;
44 double m_thickness = 0.0;
45 double m_length;
47
48};
49
50#endif // SCT_GEOMODEL_SCT_FWDPOWERTAPE_H
51
Dedicated detector manager extending the functionality of the SiDetectorManager with dedicated SCT in...
double outerRadius() const
virtual GeoVPhysVol * build()
double zPosition() const
double length() const
SCT_FwdPowerTape(const std::string &name, int numModules, double innerRadius, double startPos, double endPos, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
double thickness() const
double crossSectArea() const
const GeoMaterial * material() const
const GeoMaterial * m_material
double innerRadius() const
SCT_SharedComponentFactory(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials=nullptr)