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