ATLAS Offline Software
Loading...
Searching...
No Matches
SCT_FwdFSI.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_FWDFSI_H
6#define SCT_GEOMODEL_SCT_FWDFSI_H
7
9
10class GeoMaterial;
11
13{
14
15public:
16 SCT_FwdFSI(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 deltaR() const {return m_deltaR;}
26 double rphi() const {return m_rphi;}
27 double thickness() const {return m_thickness;}
28 double zOffset() const {return m_zOffset;}
29
30private:
31 void getParameters();
32 virtual GeoVPhysVol * build();
33
34 int m_type;
35
36 // Basic parameters
37 double m_deltaR = 0.0;
38 double m_rphi = 0.0;
39 double m_thickness = 0.0;
40 double m_zOffset = 0.0;
41 const GeoMaterial * m_material = nullptr;
42 std::string m_materialName;
43
44};
45
46#endif // SCT_GEOMODEL_SCT_FWDFSI_H
47
Dedicated detector manager extending the functionality of the SiDetectorManager with dedicated SCT in...
double m_deltaR
Definition SCT_FwdFSI.h:37
std::string m_materialName
Definition SCT_FwdFSI.h:42
SCT_FwdFSI(const std::string &name, int type, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
void getParameters()
double zOffset() const
Definition SCT_FwdFSI.h:28
double rphi() const
Definition SCT_FwdFSI.h:26
double m_rphi
Definition SCT_FwdFSI.h:38
const GeoMaterial * m_material
Definition SCT_FwdFSI.h:41
const GeoMaterial * material() const
Definition SCT_FwdFSI.h:24
double m_zOffset
Definition SCT_FwdFSI.h:40
double thickness() const
Definition SCT_FwdFSI.h:27
virtual GeoVPhysVol * build()
double deltaR() const
Definition SCT_FwdFSI.h:25
double m_thickness
Definition SCT_FwdFSI.h:39
SCT_SharedComponentFactory(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials=nullptr)