ATLAS Offline Software
Loading...
Searching...
No Matches
SCT_SupportCyl.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3*/
4
5#include "SCT_SupportCyl.h"
6
8
11
12#include "GeoModelKernel/GeoTube.h"
13#include "GeoModelKernel/GeoLogVol.h"
14#include "GeoModelKernel/GeoPhysVol.h"
15#include "GeoModelKernel/Units.h"
16
17
18SCT_SupportCyl::SCT_SupportCyl(const std::string & name, int iLayer, double length,
19 InDetDD::SCT_DetectorManager* detectorManager,
20 SCT_GeometryManager* geometryManager,
21 SCT_MaterialManager* materials)
22 : SCT_SharedComponentFactory(name, detectorManager, geometryManager, materials),
23 m_iLayer(iLayer), m_length(length)
24{
27}
28
29
30void
32{
33 const SCT_BarrelParameters * parameters = m_geometryManager->barrelParameters();
34
35 m_materialName = parameters->supportCylMaterial(m_iLayer);
36 m_innerRadius = parameters->supportCylInnerRadius(m_iLayer);
37 m_outerRadius = parameters->supportCylOuterRadius(m_iLayer);
38
39}
40
41GeoVPhysVol *
43{
44 // Make the support cyliner. A simple tube.
45 const GeoTube * supportCylShape = new GeoTube(m_innerRadius, m_outerRadius, 0.5 * m_length);
46 m_material = m_materials->getMaterialForVolume(m_materialName, supportCylShape->volume());
47 if (!m_material) m_material = m_materials->getMaterial(m_materialName);
48 const GeoLogVol * supportCylLog = new GeoLogVol(getName(), supportCylShape, m_material);
49
50 GeoPhysVol * supportCyl = new GeoPhysVol(supportCylLog);
51
52 return supportCyl;
53}
Dedicated detector manager extending the functionality of the SiDetectorManager with dedicated SCT in...
const std::string & getName() const
SCT_GeometryManager * m_geometryManager
SCT_MaterialManager * m_materials
SCT_SharedComponentFactory(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials=nullptr)
double length() const
std::string m_materialName
const GeoMaterial * m_material
SCT_SupportCyl(const std::string &name, int iLayer, double length, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
virtual GeoVPhysVol * build()