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