ATLAS Offline Software
Loading...
Searching...
No Matches
SCT_FwdSpine.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_FWDSPINE_H
6#define SCT_GEOMODEL_SCT_FWDSPINE_H
7
9
10#include <string>
11
12class GeoMaterial;
13class GeoVPhysVol;
14
16{
17
18public:
19 SCT_FwdSpine(const std::string & name, int ringType,
20 InDetDD::SCT_DetectorManager* detectorManager,
21 SCT_GeometryManager* geometryManager,
22 SCT_MaterialManager* materials);
23
24public:
25
26 const GeoMaterial * material() const {return m_material;}
27 //Main spine:
28 double thickness() const {return m_thickness;}
29 double width() const {return m_width;}
30 double length() const {return m_length;}
31
32 double moduleCenterToEnd() const {return m_moduleCenterToEnd;}
33
34 virtual GeoVPhysVol * build();
35
36private:
37 void getParameters();
38
40
41 const GeoMaterial * m_material = nullptr;
42 std::string m_materialName;
43 double m_thickness = 0.0;
44 double m_width = 0.0;
45 double m_length = 0.0;
46 double m_moduleCenterToEnd = 0.0;
48};
49
50#endif // SCT_GEOMODEL_SCT_FWDSPINE_H
51
Dedicated detector manager extending the functionality of the SiDetectorManager with dedicated SCT in...
double moduleCenterToEnd() const
double width() const
std::string m_materialName
const GeoMaterial * material() const
const GeoMaterial * m_material
double length() const
double m_moduleCenterToEndTmp
virtual GeoVPhysVol * build()
double m_length
SCT_FwdSpine(const std::string &name, int ringType, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
double m_thickness
double m_moduleCenterToEnd
double thickness() const
void getParameters()
SCT_SharedComponentFactory(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials=nullptr)