ATLAS Offline Software
Loading...
Searching...
No Matches
SCT_FwdPatchPanel.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_FWDPATCHPANEL_H
6#define SCT_GEOMODEL_SCT_FWDPATCHPANEL_H
7
9
10class GeoMaterial;
11
13{
14
15public:
16 SCT_FwdPatchPanel(const std::string & name, int type,
17 InDetDD::SCT_DetectorManager* detectorManager,
18 SCT_GeometryManager* geometryManager,
19 SCT_MaterialManager* materials);
20
21 //
22 // Methods to return basic and derived parameters.
23 //
24 const GeoMaterial * material() const {return m_material;}
25 double innerRadius() const {return m_midRadius - 0.5*m_deltaR;}
26 double outerRadius() const {return m_midRadius + 0.5*m_deltaR;}
27 double midRadius() const {return m_midRadius;}
28 double deltaR() const {return m_deltaR;}
29 double rphi() const {return m_rphi;}
30 double thickness() const {return m_thickness;}
31
32
33private:
34 void getParameters();
35 virtual GeoVPhysVol * build();
36
37 int m_type;
38
39 // Basic parameters
40 double m_midRadius = 0.0;
41 double m_deltaR = 0.0;
42 double m_rphi = 0.0;
43 double m_thickness = 0.0;
44 const GeoMaterial * m_material = nullptr;
45 std::string m_materialName;
46
47};
48
49#endif // SCT_GEOMODEL_SCT_FWDPATCHPANEL_H
50
Dedicated detector manager extending the functionality of the SiDetectorManager with dedicated SCT in...
double midRadius() const
std::string m_materialName
const GeoMaterial * material() const
double outerRadius() const
double deltaR() const
const GeoMaterial * m_material
double thickness() const
double innerRadius() const
SCT_FwdPatchPanel(const std::string &name, int type, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
virtual GeoVPhysVol * build()
double rphi() const
SCT_SharedComponentFactory(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials=nullptr)