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