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