ATLAS Offline Software
Loading...
Searching...
No Matches
SCT_SkiPowerTape.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_SKIPOWERTAPE_H
6#define SCT_GEOMODEL_SCT_SKIPOWERTAPE_H
7
9
10#include <string>
11
12class SCT_Ski;
13
15{
16
17public:
18
19 SCT_SkiPowerTape(const std::string & name,
20 const SCT_Ski * ski,
21 double length,
22 InDetDD::SCT_DetectorManager* detectorManager,
23 SCT_GeometryManager* geometryManager,
24 SCT_MaterialManager* materials);
25
26 //
27 // Methods to return basic and derived parameters.
28 //
29 double thickness() const {return m_thickness;}
30 double width() const {return m_width;}
31 double length() const {return m_length;}
33
34private:
35 void getParameters();
36 virtual GeoVPhysVol * build();
37
38 // Basic and Derived parameters
39 double m_length;
40 double m_width = 0.0;
41 double m_thickness = 0.0;
43
44 // Child detector elements
45 const SCT_Ski * m_ski;
46
47 // 15th Aug 2005 S.Mima modified.
48 // Power Tape Z Offset from Bracket
50};
51
52#endif // SCT_GEOMODEL_SCT_SKIPOWERTAPE_H
53
Dedicated detector manager extending the functionality of the SiDetectorManager with dedicated SCT in...
SCT_SharedComponentFactory(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials=nullptr)
SCT_SkiPowerTape(const std::string &name, const SCT_Ski *ski, double length, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
double width() const
virtual GeoVPhysVol * build()
const SCT_Ski * m_ski
double m_powerTapeStartPointOffset
double powerTapeThickness() const
double thickness() const
double length() const