ATLAS Offline Software
Loading...
Searching...
No Matches
SCT_Clamp.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_CLAMP_H
6#define SCT_GEOMODEL_SCT_CLAMP_H
7
9
10#include <string>
11
12class GeoMaterial;
13
15{
16
17public:
18 SCT_Clamp(const std::string & name, int iLayer,
19 double innerRadius,
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 innerRadius() const {return m_innerRadius;}
27 double outerRadius() const {return m_outerRadius;}
28 double length() const {return m_length;}
29
30
31private:
32 void getParameters();
33 virtual GeoVPhysVol * build();
34
36
37 const GeoMaterial * m_material = nullptr;
38 std::string m_materialName;
40 double m_outerRadius = 0.0;
41 double m_length = 0.0;
42 double m_radialWidth = 0.0;
43};
44
45#endif // SCT_GEOMODEL_SCT_CLAMP_H
46
Dedicated detector manager extending the functionality of the SiDetectorManager with dedicated SCT in...
virtual GeoVPhysVol * build()
Definition SCT_Clamp.cxx:44
int m_iLayer
Definition SCT_Clamp.h:35
SCT_Clamp(const std::string &name, int iLayer, double innerRadius, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
Definition SCT_Clamp.cxx:18
std::string m_materialName
Definition SCT_Clamp.h:38
const GeoMaterial * material() const
Definition SCT_Clamp.h:25
double length() const
Definition SCT_Clamp.h:28
double outerRadius() const
Definition SCT_Clamp.h:27
double m_outerRadius
Definition SCT_Clamp.h:40
double m_radialWidth
Definition SCT_Clamp.h:42
void getParameters()
Definition SCT_Clamp.cxx:32
const GeoMaterial * m_material
Definition SCT_Clamp.h:37
double m_length
Definition SCT_Clamp.h:41
double innerRadius() const
Definition SCT_Clamp.h:26
double m_innerRadius
Definition SCT_Clamp.h:39
SCT_SharedComponentFactory(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials=nullptr)