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