ATLAS Offline Software
InnerDetector
InDetDetDescr
SCT_GeoModel
src
SCT_Clamp.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#include "
SCT_GeoModel/SCT_Clamp.h
"
6
7
#include "
SCT_GeoModel/SCT_MaterialManager.h
"
8
9
#include "
SCT_GeoModel/SCT_GeometryManager.h
"
10
#include "
SCT_GeoModel/SCT_BarrelParameters.h
"
11
12
#include "GeoModelKernel/GeoTube.h"
13
#include "GeoModelKernel/GeoLogVol.h"
14
#include "GeoModelKernel/GeoPhysVol.h"
15
#include "GeoModelKernel/Units.h"
16
17
18
SCT_Clamp::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
:
SCT_SharedComponentFactory
(
name
, detectorManager, geometryManager, materials),
24
m_iLayer(iLayer), m_innerRadius(innerRadius)
25
{
26
getParameters
();
27
m_physVolume
=
SCT_Clamp::build
();
28
}
29
30
31
void
32
SCT_Clamp::getParameters
()
33
{
34
const
SCT_BarrelParameters
*
parameters
=
m_geometryManager
->
barrelParameters
();
35
36
m_materialName
=
parameters
->clampMaterial(
m_iLayer
);
37
m_length
=
parameters
->clampDeltaZ(
m_iLayer
);
38
m_radialWidth
=
parameters
->clampDeltaR(
m_iLayer
);
39
40
m_outerRadius
=
m_innerRadius
+
m_radialWidth
;
41
}
42
43
GeoVPhysVol *
44
SCT_Clamp::build
()
45
{
46
// Make the clamp. A simple tube.
47
48
const
GeoTube * clampShape =
new
GeoTube(
m_innerRadius
,
m_outerRadius
, 0.5 *
m_length
);
49
m_material
=
m_materials
->
getMaterialForVolume
(
m_materialName
, clampShape->volume());
50
if
(!
m_material
) {
m_material
=
m_materials
->
getMaterial
(
m_materialName
);}
51
const
GeoLogVol * clampLog =
new
GeoLogVol(
getName
(), clampShape,
m_material
);
52
53
GeoPhysVol * clamp =
new
GeoPhysVol(clampLog);
54
55
return
clamp;
56
}
SCT_Clamp::m_radialWidth
double m_radialWidth
Definition:
SCT_Clamp.h:42
SCT_ComponentFactory::m_geometryManager
SCT_GeometryManager * m_geometryManager
Definition:
SCT_ComponentFactory.h:42
SCT_MaterialManager
Definition:
SCT_MaterialManager.h:21
InDetDD::SCT_DetectorManager
Definition:
SCT_DetectorManager.h:49
SCT_Clamp::m_length
double m_length
Definition:
SCT_Clamp.h:41
SCT_MaterialManager.h
SCT_Clamp::m_iLayer
int m_iLayer
Definition:
SCT_Clamp.h:35
SCT_Clamp::m_innerRadius
double m_innerRadius
Definition:
SCT_Clamp.h:39
SCT_Clamp::m_material
const GeoMaterial * m_material
Definition:
SCT_Clamp.h:37
SCT_GeometryManager::barrelParameters
const SCT_BarrelParameters * barrelParameters() const
Definition:
SCT_GeometryManager.cxx:78
SCT_Clamp.h
SCT_MaterialManager::getMaterialForVolume
const GeoMaterial * getMaterialForVolume(const std::string &materialName, double volume)
Definition:
SCT_MaterialManager.cxx:61
SCT_ComponentFactory::m_materials
SCT_MaterialManager * m_materials
Definition:
SCT_ComponentFactory.h:43
SCT_Clamp::m_outerRadius
double m_outerRadius
Definition:
SCT_Clamp.h:40
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:228
SCT_SharedComponentFactory::m_physVolume
GeoVPhysVol * m_physVolume
Definition:
SCT_ComponentFactory.h:70
SCT_Clamp::build
virtual GeoVPhysVol * build()
Definition:
SCT_Clamp.cxx:44
SCT_MaterialManager::getMaterial
const GeoMaterial * getMaterial(const std::string &materialName)
Definition:
SCT_MaterialManager.cxx:40
SCT_BarrelParameters
Definition:
SCT_BarrelParameters.h:12
SCT_BarrelParameters.h
SCT_SharedComponentFactory
Definition:
SCT_ComponentFactory.h:56
physics_parameters.parameters
parameters
Definition:
physics_parameters.py:144
SCT_Clamp::m_materialName
std::string m_materialName
Definition:
SCT_Clamp.h:38
SCT_Clamp::SCT_Clamp
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
SCT_ComponentFactory::getName
const std::string & getName() const
Definition:
SCT_ComponentFactory.h:35
SCT_Clamp::getParameters
void getParameters()
Definition:
SCT_Clamp.cxx:32
SCT_GeometryManager.h
SCT_GeometryManager
Definition:
SCT_GeometryManager.h:25
Generated on Mon Dec 23 2024 21:17:46 for ATLAS Offline Software by
1.8.18