ATLAS Offline Software
Loading...
Searching...
No Matches
SCT_FwdCoolingPipe.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef SCT_GEOMODEL_SCT_FWDCOOLINGPIPE_H
6#define SCT_GEOMODEL_SCT_FWDCOOLINGPIPE_H
7
9
10class GeoMaterial;
11
13{
14
15public:
16
17public:
18 SCT_FwdCoolingPipe(const std::string & name,
19 int numPipes,
20 double innerRadius,
21 double startPos,
22 double endPos,
23 InDetDD::SCT_DetectorManager* detectorManager,
24 SCT_GeometryManager* geometryManager,
25 SCT_MaterialManager* materials);
26
27 const GeoMaterial * material() const {return m_material;}
28 double pipeRadius() const {return m_pipeRadius;}
29
30 double innerRadius() const {return m_innerRadius;}
31 double outerRadius() const {return m_outerRadius;}
32 double thickness() const {return m_thickness;}
33 double length() const {return m_length;}
34 double zPosition() const {return m_zPosition;}
35
36private:
37 void getParameters();
38 virtual GeoVPhysVol * build();
39
40 const GeoMaterial * m_material = nullptr;
42 double m_pipeRadius = 0.0;
44 double m_outerRadius = 0.0;
45 double m_thickness = 0.0;
46 double m_length;
48
49};
50
51#endif // SCT_GEOMODEL_SCT_FWDCOOLINGPIPE_H
52
Dedicated detector manager extending the functionality of the SiDetectorManager with dedicated SCT in...
const GeoMaterial * material() const
double pipeRadius() const
double outerRadius() const
double innerRadius() const
const GeoMaterial * m_material
virtual GeoVPhysVol * build()
SCT_FwdCoolingPipe(const std::string &name, int numPipes, double innerRadius, double startPos, double endPos, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
double zPosition() const
double thickness() const
SCT_SharedComponentFactory(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials=nullptr)