ATLAS Offline Software
SCT_PowerTape.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_POWERTAPE_H
6 #define SCT_GEOMODEL_SCT_POWERTAPE_H
7 
9 
10 #include <string>
11 
12 class GeoMaterial;
13 class GeoVPhysVol;
14 
15 
17 
18 {
19 
20 public:
21  SCT_PowerTape(const std::string & name, double length,
22  InDetDD::SCT_DetectorManager* detectorManager,
23  SCT_GeometryManager* geometryManager,
24  SCT_MaterialManager* materials);
25 
26 public:
27  const GeoMaterial * material() const {return m_material;}
28  double thickness() const {return m_thickness;}
29  double width() const {return m_width;}
30  double length() const {return m_length;}
31 
32 private:
33  void getParameters();
34  virtual GeoVPhysVol * build();
35 
36  const GeoMaterial * m_material = nullptr;
37  double m_thickness = 0.0;
38  double m_width = 0.0;
39  double m_length;
40 
41 };
42 
43 #endif // SCT_GEOMODEL_SCT_POWERTAPE_H
SCT_MaterialManager
Definition: SCT_MaterialManager.h:21
InDetDD::SCT_DetectorManager
Definition: SCT_DetectorManager.h:49
SCT_PowerTape::m_material
const GeoMaterial * m_material
Definition: SCT_PowerTape.h:36
SCT_PowerTape::build
virtual GeoVPhysVol * build()
Definition: SCT_PowerTape.cxx:40
SCT_ComponentFactory.h
SCT_PowerTape::m_thickness
double m_thickness
Definition: SCT_PowerTape.h:37
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:192
SCT_PowerTape::width
double width() const
Definition: SCT_PowerTape.h:29
SCT_PowerTape::m_length
double m_length
Definition: SCT_PowerTape.h:39
SCT_PowerTape::getParameters
void getParameters()
Definition: SCT_PowerTape.cxx:31
SCT_PowerTape::SCT_PowerTape
SCT_PowerTape(const std::string &name, double length, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
Definition: SCT_PowerTape.cxx:18
SCT_SharedComponentFactory
Definition: SCT_ComponentFactory.h:56
SCT_PowerTape::m_width
double m_width
Definition: SCT_PowerTape.h:38
SCT_PowerTape::material
const GeoMaterial * material() const
Definition: SCT_PowerTape.h:27
SCT_PowerTape::thickness
double thickness() const
Definition: SCT_PowerTape.h:28
SCT_PowerTape
Definition: SCT_PowerTape.h:18
SCT_PowerTape::length
double length() const
Definition: SCT_PowerTape.h:30
SCT_GeometryManager
Definition: SCT_GeometryManager.h:25