ATLAS Offline Software
SCT_FwdDiscSupport.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_FWDDISCSUPPORT_H
6 #define SCT_GEOMODEL_SCT_FWDDISCSUPPORT_H
7 
9 
10 class GeoMaterial;
11 
13 {
14 
15 public:
16  SCT_FwdDiscSupport(const std::string & name, int iWheel,
17  InDetDD::SCT_DetectorManager* detectorManager,
18  SCT_GeometryManager* geometryManager,
19  SCT_MaterialManager* materials);
20 
21  //
22  // Methods to return basic and derived parameters.
23  //
24  // Retrieve basic parameters
25  //
26  const GeoMaterial * material() const {return m_material;}
27  double innerRadius() const {return m_innerRadius;}
28  double outerRadius() const {return m_outerRadius;}
29  double thickness() const {return m_thickness;}
30 
31 
32 private:
33  void getParameters();
34  virtual GeoVPhysVol * build();
35 
36  int m_iWheel;
37 
38  // Basic parameters
39  double m_innerRadius = 0.0;
40  double m_outerRadius = 0.0;
41  double m_thickness = 0.0;
42  const GeoMaterial * m_material = nullptr;
43  std::string m_materialName;
44 
45 };
46 
47 #endif // SCT_GEOMODEL_SCT_FWDDISCSUPPORT_H
48 
SCT_FwdDiscSupport::m_innerRadius
double m_innerRadius
Definition: SCT_FwdDiscSupport.h:39
SCT_MaterialManager
Definition: SCT_MaterialManager.h:21
InDetDD::SCT_DetectorManager
Definition: SCT_DetectorManager.h:49
SCT_FwdDiscSupport::innerRadius
double innerRadius() const
Definition: SCT_FwdDiscSupport.h:27
SCT_FwdDiscSupport::m_thickness
double m_thickness
Definition: SCT_FwdDiscSupport.h:41
SCT_FwdDiscSupport::build
virtual GeoVPhysVol * build()
Definition: SCT_FwdDiscSupport.cxx:41
SCT_FwdDiscSupport::outerRadius
double outerRadius() const
Definition: SCT_FwdDiscSupport.h:28
SCT_ComponentFactory.h
SCT_FwdDiscSupport::m_iWheel
int m_iWheel
Definition: SCT_FwdDiscSupport.h:36
SCT_FwdDiscSupport::thickness
double thickness() const
Definition: SCT_FwdDiscSupport.h:29
SCT_FwdDiscSupport::material
const GeoMaterial * material() const
Definition: SCT_FwdDiscSupport.h:26
SCT_FwdDiscSupport::m_materialName
std::string m_materialName
Definition: SCT_FwdDiscSupport.h:43
SCT_FwdDiscSupport::getParameters
void getParameters()
Definition: SCT_FwdDiscSupport.cxx:30
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:192
SCT_FwdDiscSupport::m_material
const GeoMaterial * m_material
Definition: SCT_FwdDiscSupport.h:42
SCT_FwdDiscSupport::SCT_FwdDiscSupport
SCT_FwdDiscSupport(const std::string &name, int iWheel, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
Definition: SCT_FwdDiscSupport.cxx:17
SCT_FwdDiscSupport
Definition: SCT_FwdDiscSupport.h:13
SCT_SharedComponentFactory
Definition: SCT_ComponentFactory.h:56
SCT_FwdDiscSupport::m_outerRadius
double m_outerRadius
Definition: SCT_FwdDiscSupport.h:40
SCT_GeometryManager
Definition: SCT_GeometryManager.h:25