ATLAS Offline Software
Loading...
Searching...
No Matches
SCT_FwdCylinderServices.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_FWDCYLINDERSERVICES_H
6#define SCT_GEOMODEL_SCT_FWDCYLINDERSERVICES_H
7
9
10#include <vector>
11
13{
14
15public:
16
17 SCT_FwdCylinderServices(const std::string & name, double rmin, double rmax, double length,
18 InDetDD::SCT_DetectorManager* detectorManager,
19 SCT_GeometryManager* geometryManager,
20 SCT_MaterialManager* materials);
22
23 //
24 // Methods to return basic and derived parameters.
25 double innerRadius() const {return m_innerRadius;}
26 double outerRadius() const {return m_outerRadius;}
27 double length() const {return m_length;}
28
29private:
30 void getParameters();
31 virtual GeoVPhysVol * build();
32
33 // Basic parameters
36 double m_length;
37
38 // Parameters of daughters
39 std::vector<double> m_coolingLocAngle;
40 std::vector<double> m_lmtLocAngle;
41 std::vector<double> m_lmtCoolingLocAngle;
42 std::vector<double> m_fibreLocAngle;
43 std::vector<double> m_nPipeLocAngle;
44 std::vector<double> m_railLocAngle;
45
46 double m_coolingDeltaR = 0.0;
47 double m_lmtDeltaR = 0.0;
48 double m_lmtCoolingDeltaR = 0.0;
49 double m_fibreDeltaR = 0.0;
50 double m_nPipeDeltaR = 0.0;
51 double m_railDeltaR = 0.0;
52
53 double m_coolingRPhi = 0.0;
54 double m_lmtRPhi = 0.0;
55 double m_lmtCoolingRPhi = 0.0;
56 double m_fibreRPhi = 0.0;
57 double m_nPipeRPhi = 0.0;
58 double m_railRPhi = 0.0;
59
61 std::string m_lmtMaterialName;
65 std::string m_railMaterialName;
66
67 double m_lmtCoolingZOffset = 0.0;
68
69};
70
71#endif // SCT_GEOMODEL_SCT_FWDCYLINDERSERVICES_H
72
Dedicated detector manager extending the functionality of the SiDetectorManager with dedicated SCT in...
std::vector< double > m_fibreLocAngle
std::vector< double > m_coolingLocAngle
SCT_FwdCylinderServices(const std::string &name, double rmin, double rmax, double length, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
std::vector< double > m_lmtCoolingLocAngle
std::vector< double > m_railLocAngle
std::vector< double > m_nPipeLocAngle
std::vector< double > m_lmtLocAngle
SCT_SharedComponentFactory(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials=nullptr)