ATLAS Offline Software
Loading...
Searching...
No Matches
SCT_Spider.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_SPIDER_H
6#define SCT_GEOMODEL_SCT_SPIDER_H
7
9
10#include <string>
11
12class GeoMaterial;
13
15{
16
17public:
18 SCT_Spider(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 innerRadius() const {return m_innerRadius;}
26 double outerRadius() const {return m_outerRadius;}
27 double length() const {return m_length;}
28
29
30private:
31 void getParameters();
32 virtual GeoVPhysVol * build();
33
34 const GeoMaterial * m_material = nullptr;
35 std::string m_materialName;
36 double m_innerRadius = 0.0;
37 double m_outerRadius = 0.0;
38 double m_length = 0.0;
39};
40
41#endif // SCT_GEOMODEL_SCT_SPIDER_H
42
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)
double m_innerRadius
Definition SCT_Spider.h:36
SCT_Spider(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
double m_length
Definition SCT_Spider.h:38
double length() const
Definition SCT_Spider.h:27
void getParameters()
const GeoMaterial * material() const
Definition SCT_Spider.h:24
const GeoMaterial * m_material
Definition SCT_Spider.h:34
std::string m_materialName
Definition SCT_Spider.h:35
virtual GeoVPhysVol * build()
double innerRadius() const
Definition SCT_Spider.h:25
double m_outerRadius
Definition SCT_Spider.h:37
double outerRadius() const
Definition SCT_Spider.h:26