ATLAS Offline Software
Loading...
Searching...
No Matches
SCT_BaseBoard.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_BaseBoard_H
6#define SCT_GEOMODEL_SCT_BaseBoard_H
7
9
10#include <string>
11
12class GeoMaterial;
13class GeoVPhysVol;
14
16{
17public:
18 SCT_BaseBoard(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 thickness() const {return m_thickness;}
26 double width() const {return m_width;}
27 double length() const {return m_length;}
28
29 //double baseBoardOffsetX() const {return m_baseBoardOffsetX;} // Thu 16th Jun 2005 D.Naito removed.
30 //double baseBoardOffsetY() const {return m_baseBoardOffsetY;} // Thu 16th Jun 2005 D.Naito removed.
31 //double baseBoardOffsetZ() const {return m_baseBoardOffsetZ;} // Thu 16th Jun 2005 D.Naito removed.
32
33private:
34 void getParameters();
35 virtual GeoVPhysVol * build();
36
37 const GeoMaterial * m_material = nullptr;
38 double m_thickness = 0.0;
39 double m_width = 0.0;
40 double m_length = 0.0;
41
42 //double m_baseBoardOffsetX; // Thu 16th Jun 2005 D.Naito removed.
43 //double m_baseBoardOffsetY; // Thu 16th Jun 2005 D.Naito removed.
44 //double m_baseBoardOffsetZ; // Thu 16th Jun 2005 D.Naito removed.
45 double m_safety = 0.0;
46
47};
48
49#endif // SCT_GEOMODEL_SCT_BaseBoard_H
Dedicated detector manager extending the functionality of the SiDetectorManager with dedicated SCT in...
double width() const
double length() const
double thickness() const
const GeoMaterial * m_material
SCT_BaseBoard(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
const GeoMaterial * material() const
virtual GeoVPhysVol * build()
SCT_SharedComponentFactory(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials=nullptr)