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