ATLAS Offline Software
SCT_BaseBoard.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_BaseBoard_H
6 #define SCT_GEOMODEL_SCT_BaseBoard_H
7 
9 
10 #include <string>
11 
12 class GeoMaterial;
13 class GeoVPhysVol;
14 
16 {
17 public:
18  SCT_BaseBoard(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 thickness() const {return m_thickness;}
26  double width() const {return m_width;}
27  double length() const {return m_length;}
28 
29  //double baseBoardOffsetX() const {return m_baseBoardOffsetX;} // Thu 16th Jun 2005 D.Naito removed.
30  //double baseBoardOffsetY() const {return m_baseBoardOffsetY;} // Thu 16th Jun 2005 D.Naito removed.
31  //double baseBoardOffsetZ() const {return m_baseBoardOffsetZ;} // Thu 16th Jun 2005 D.Naito removed.
32 
33 private:
34  void getParameters();
35  virtual GeoVPhysVol * build();
36 
37  const GeoMaterial * m_material = nullptr;
38  double m_thickness = 0.0;
39  double m_width = 0.0;
40  double m_length = 0.0;
41 
42  //double m_baseBoardOffsetX; // Thu 16th Jun 2005 D.Naito removed.
43  //double m_baseBoardOffsetY; // Thu 16th Jun 2005 D.Naito removed.
44  //double m_baseBoardOffsetZ; // Thu 16th Jun 2005 D.Naito removed.
45  double m_safety = 0.0;
46 
47 };
48 
49 #endif // SCT_GEOMODEL_SCT_BaseBoard_H
SCT_MaterialManager
Definition: SCT_MaterialManager.h:21
InDetDD::SCT_DetectorManager
Definition: SCT_DetectorManager.h:49
SCT_BaseBoard::m_thickness
double m_thickness
Definition: SCT_BaseBoard.h:38
SCT_BaseBoard
Definition: SCT_BaseBoard.h:16
SCT_BaseBoard::length
double length() const
Definition: SCT_BaseBoard.h:27
SCT_BaseBoard::material
const GeoMaterial * material() const
Definition: SCT_BaseBoard.h:24
SCT_BaseBoard::m_material
const GeoMaterial * m_material
Definition: SCT_BaseBoard.h:37
SCT_ComponentFactory.h
SCT_BaseBoard::getParameters
void getParameters()
Definition: SCT_BaseBoard.cxx:29
SCT_BaseBoard::build
virtual GeoVPhysVol * build()
Definition: SCT_BaseBoard.cxx:43
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:192
SCT_BaseBoard::thickness
double thickness() const
Definition: SCT_BaseBoard.h:25
SCT_BaseBoard::width
double width() const
Definition: SCT_BaseBoard.h:26
SCT_SharedComponentFactory
Definition: SCT_ComponentFactory.h:56
SCT_BaseBoard::m_width
double m_width
Definition: SCT_BaseBoard.h:39
SCT_BaseBoard::SCT_BaseBoard
SCT_BaseBoard(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
Definition: SCT_BaseBoard.cxx:18
SCT_BaseBoard::m_safety
double m_safety
Definition: SCT_BaseBoard.h:45
SCT_BaseBoard::m_length
double m_length
Definition: SCT_BaseBoard.h:40
SCT_GeometryManager
Definition: SCT_GeometryManager.h:25