ATLAS Offline Software
SCT_FwdPowerTape.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2019 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 
10 class GeoMaterial;
11 
13 {
14 
15 public:
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 
35 private:
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
42  double m_innerRadius;
43  double m_outerRadius = 0.0;
44  double m_thickness = 0.0;
45  double m_length;
46  double m_zPosition;
47 
48 };
49 
50 #endif // SCT_GEOMODEL_SCT_FWDPOWERTAPE_H
51 
SCT_MaterialManager
Definition: SCT_MaterialManager.h:21
InDetDD::SCT_DetectorManager
Definition: SCT_DetectorManager.h:49
SCT_FwdPowerTape::m_thickness
double m_thickness
Definition: SCT_FwdPowerTape.h:44
SCT_FwdPowerTape::material
const GeoMaterial * material() const
Definition: SCT_FwdPowerTape.h:26
SCT_FwdPowerTape::thickness
double thickness() const
Definition: SCT_FwdPowerTape.h:31
SCT_FwdPowerTape::m_zPosition
double m_zPosition
Definition: SCT_FwdPowerTape.h:46
SCT_FwdPowerTape::m_crossSectArea
double m_crossSectArea
Definition: SCT_FwdPowerTape.h:41
SCT_FwdPowerTape::outerRadius
double outerRadius() const
Definition: SCT_FwdPowerTape.h:30
SCT_ComponentFactory.h
SCT_FwdPowerTape::m_numModules
int m_numModules
Definition: SCT_FwdPowerTape.h:40
SCT_FwdPowerTape::zPosition
double zPosition() const
Definition: SCT_FwdPowerTape.h:33
SCT_FwdPowerTape::build
virtual GeoVPhysVol * build()
Definition: SCT_FwdPowerTape.cxx:47
SCT_FwdPowerTape::m_material
const GeoMaterial * m_material
Definition: SCT_FwdPowerTape.h:39
SCT_FwdPowerTape::innerRadius
double innerRadius() const
Definition: SCT_FwdPowerTape.h:29
SCT_FwdPowerTape::m_outerRadius
double m_outerRadius
Definition: SCT_FwdPowerTape.h:43
SCT_FwdPowerTape::m_innerRadius
double m_innerRadius
Definition: SCT_FwdPowerTape.h:42
SCT_FwdPowerTape::crossSectArea
double crossSectArea() const
Definition: SCT_FwdPowerTape.h:27
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:192
SCT_FwdPowerTape::m_length
double m_length
Definition: SCT_FwdPowerTape.h:45
SCT_FwdPowerTape
Definition: SCT_FwdPowerTape.h:13
SCT_FwdPowerTape::SCT_FwdPowerTape
SCT_FwdPowerTape(const std::string &name, int numModules, double innerRadius, double startPos, double endPos, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
Definition: SCT_FwdPowerTape.cxx:19
SCT_SharedComponentFactory
Definition: SCT_ComponentFactory.h:56
SCT_FwdPowerTape::length
double length() const
Definition: SCT_FwdPowerTape.h:32
SCT_GeometryManager
Definition: SCT_GeometryManager.h:25
SCT_FwdPowerTape::getParameters
void getParameters()
Definition: SCT_FwdPowerTape.cxx:39