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