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