ATLAS Offline Software
Loading...
Searching...
No Matches
SCT_CoolingPipe.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_COOLINGPIPE_H
6#define SCT_GEOMODEL_SCT_COOLINGPIPE_H
7
9
10#include <string>
11
12class GeoMaterial;
13class GeoVPhysVol;
14
15
17
18{
19
20public:
21 SCT_CoolingPipe(const std::string & name, double length,
22 InDetDD::SCT_DetectorManager* detectorManager,
23 SCT_GeometryManager* geometryManager,
24 SCT_MaterialManager* materials);
25
26public:
27 const GeoMaterial * material() const {return m_material;}
28 double pipeRadius() const {return m_pipeRadius;}
29 double length() const {return m_length;}
30
31private:
32 void getParameters();
33 virtual GeoVPhysVol * build();
34
35 const GeoMaterial * m_material = nullptr;
36 std::string m_materialName;
37 double m_pipeRadius = 0.0;
38 double m_length;
39
40};
41
42#endif // SCT_GEOMODEL_SCT_COOLINGPIPE_H
Dedicated detector manager extending the functionality of the SiDetectorManager with dedicated SCT in...
const GeoMaterial * m_material
std::string m_materialName
const GeoMaterial * material() const
double length() const
double pipeRadius() const
SCT_CoolingPipe(const std::string &name, double length, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
virtual GeoVPhysVol * build()
SCT_SharedComponentFactory(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials=nullptr)