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