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