ATLAS Offline Software
SCT_FwdDiscFixation.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_FWDDISCFIXATION_H
6 #define SCT_GEOMODEL_SCT_FWDDISCFIXATION_H
7 
9 
10 class GeoMaterial;
11 
13 {
14 
15 public:
16  SCT_FwdDiscFixation(const std::string & name,
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  const GeoMaterial * material() const {return m_material;}
25  double radius() const {return m_radius;}
26  double thickness() const {return m_thickness;}
27 
28 
29 private:
30  void getParameters();
31  virtual GeoVPhysVol * build();
32 
33  // Basic parameters
34  double m_radius = 0.0;
35  double m_thickness = 0.0;
36  const GeoMaterial * m_material = nullptr;
37  std::string m_materialName;
38 
39 };
40 
41 #endif // SCT_GEOMODEL_SCT_FWDDISCFIXATION_H
42 
SCT_MaterialManager
Definition: SCT_MaterialManager.h:21
SCT_FwdDiscFixation::getParameters
void getParameters()
Definition: SCT_FwdDiscFixation.cxx:30
InDetDD::SCT_DetectorManager
Definition: SCT_DetectorManager.h:49
SCT_FwdDiscFixation::m_material
const GeoMaterial * m_material
Definition: SCT_FwdDiscFixation.h:36
SCT_FwdDiscFixation::radius
double radius() const
Definition: SCT_FwdDiscFixation.h:25
SCT_FwdDiscFixation::build
virtual GeoVPhysVol * build()
Definition: SCT_FwdDiscFixation.cxx:40
SCT_FwdDiscFixation::m_radius
double m_radius
Definition: SCT_FwdDiscFixation.h:34
SCT_ComponentFactory.h
SCT_FwdDiscFixation::m_materialName
std::string m_materialName
Definition: SCT_FwdDiscFixation.h:37
SCT_FwdDiscFixation::m_thickness
double m_thickness
Definition: SCT_FwdDiscFixation.h:35
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:192
SCT_FwdDiscFixation::material
const GeoMaterial * material() const
Definition: SCT_FwdDiscFixation.h:24
SCT_SharedComponentFactory
Definition: SCT_ComponentFactory.h:56
SCT_FwdDiscFixation::SCT_FwdDiscFixation
SCT_FwdDiscFixation(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
Definition: SCT_FwdDiscFixation.cxx:18
SCT_FwdDiscFixation::thickness
double thickness() const
Definition: SCT_FwdDiscFixation.h:26
SCT_FwdDiscFixation
Definition: SCT_FwdDiscFixation.h:13
SCT_GeometryManager
Definition: SCT_GeometryManager.h:25