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