ATLAS Offline Software
Public Member Functions | Protected Member Functions | Protected Attributes | Private Member Functions | Private Attributes | Static Private Attributes | List of all members
SCT_Flange Class Reference

#include <SCT_Flange.h>

Inheritance diagram for SCT_Flange:
Collaboration diagram for SCT_Flange:

Public Member Functions

 SCT_Flange (const std::string &name, int iLayer, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
 
const GeoMaterial * material () const
 
double innerRadius () const
 
double outerRadius () const
 
double length () const
 
GeoVPhysVol * getVolume ()
 
const std::string & getName () const
 
std::string intToString (int i) const
 

Protected Member Functions

double epsilon () const
 

Protected Attributes

GeoVPhysVol * m_physVolume
 
InDetDD::SCT_DetectorManagerm_detectorManager
 
SCT_GeometryManagerm_geometryManager
 
SCT_MaterialManagerm_materials
 

Private Member Functions

void getParameters ()
 
virtual GeoVPhysVol * build ()
 

Private Attributes

int m_iLayer
 
const GeoMaterial * m_material = nullptr
 
std::string m_materialName
 
double m_innerRadius = 0.0
 
double m_outerRadius = 0.0
 
double m_length = 0.0
 
double m_radialWidth = 0.0
 
std::string m_name
 

Static Private Attributes

static const double s_epsilon = 1.0e-6 * Gaudi::Units::mm
 

Detailed Description

Definition at line 14 of file SCT_Flange.h.

Constructor & Destructor Documentation

◆ SCT_Flange()

SCT_Flange::SCT_Flange ( const std::string &  name,
int  iLayer,
InDetDD::SCT_DetectorManager detectorManager,
SCT_GeometryManager geometryManager,
SCT_MaterialManager materials 
)

Definition at line 18 of file SCT_Flange.cxx.

22  : SCT_SharedComponentFactory(name, detectorManager, geometryManager, materials),
23  m_iLayer(iLayer)
24 {
25  getParameters();
27 }

Member Function Documentation

◆ build()

GeoVPhysVol * SCT_Flange::build ( )
privatevirtual

Implements SCT_SharedComponentFactory.

Definition at line 51 of file SCT_Flange.cxx.

52 {
53  // Make the flange. A simple tube.
54  const GeoTube * flangeShape = new GeoTube(m_innerRadius, m_outerRadius, 0.5 * m_length);
55  m_material = m_materials->getMaterialForVolume(m_materialName, flangeShape->volume());
57  const GeoLogVol * flangeLog = new GeoLogVol(getName(), flangeShape, m_material);
58 
59  GeoPhysVol * flange = new GeoPhysVol(flangeLog);
60 
61  return flange;
62 }

◆ epsilon()

double SCT_ComponentFactory::epsilon ( ) const
protectedinherited

Definition at line 37 of file SCT_ComponentFactory.cxx.

38 {
39  return s_epsilon;
40 }

◆ getName()

const std::string& SCT_ComponentFactory::getName ( ) const
inlineinherited

Definition at line 35 of file SCT_ComponentFactory.h.

35 {return m_name;}

◆ getParameters()

void SCT_Flange::getParameters ( )
private

Definition at line 31 of file SCT_Flange.cxx.

32 {
34 
35  m_materialName = parameters->flangeMaterial(m_iLayer);
36  m_length = parameters->flangeDeltaZ(m_iLayer);
37  m_radialWidth = parameters->flangeDeltaR(m_iLayer);
38 
39  if(parameters->isOldGeometry()) {
40  // Same outer radius as support cylinder
41  m_outerRadius = parameters->supportCylOuterRadius(m_iLayer);
42  }
43  else {
44  // Outer radius is inner radius of support cylinder
45  m_outerRadius = parameters->supportCylInnerRadius(m_iLayer);
46  }
48 }

◆ getVolume()

GeoVPhysVol* SCT_SharedComponentFactory::getVolume ( )
inlineinherited

Definition at line 67 of file SCT_ComponentFactory.h.

67 {return m_physVolume;}

◆ innerRadius()

double SCT_Flange::innerRadius ( ) const
inline

Definition at line 25 of file SCT_Flange.h.

25 {return m_innerRadius;}

◆ intToString()

std::string SCT_ComponentFactory::intToString ( int  i) const
inherited

Definition at line 29 of file SCT_ComponentFactory.cxx.

30 {
31  std::ostringstream str;
32  str << i;
33  return str.str();
34 }

◆ length()

double SCT_Flange::length ( ) const
inline

Definition at line 27 of file SCT_Flange.h.

27 {return m_length;}

◆ material()

const GeoMaterial* SCT_Flange::material ( ) const
inline

Definition at line 24 of file SCT_Flange.h.

24 {return m_material;}

◆ outerRadius()

double SCT_Flange::outerRadius ( ) const
inline

Definition at line 26 of file SCT_Flange.h.

26 {return m_outerRadius;}

Member Data Documentation

◆ m_detectorManager

InDetDD::SCT_DetectorManager* SCT_ComponentFactory::m_detectorManager
protectedinherited

Definition at line 41 of file SCT_ComponentFactory.h.

◆ m_geometryManager

SCT_GeometryManager* SCT_ComponentFactory::m_geometryManager
protectedinherited

Definition at line 42 of file SCT_ComponentFactory.h.

◆ m_iLayer

int SCT_Flange::m_iLayer
private

Definition at line 34 of file SCT_Flange.h.

◆ m_innerRadius

double SCT_Flange::m_innerRadius = 0.0
private

Definition at line 38 of file SCT_Flange.h.

◆ m_length

double SCT_Flange::m_length = 0.0
private

Definition at line 40 of file SCT_Flange.h.

◆ m_material

const GeoMaterial* SCT_Flange::m_material = nullptr
private

Definition at line 36 of file SCT_Flange.h.

◆ m_materialName

std::string SCT_Flange::m_materialName
private

Definition at line 37 of file SCT_Flange.h.

◆ m_materials

SCT_MaterialManager* SCT_ComponentFactory::m_materials
protectedinherited

Definition at line 43 of file SCT_ComponentFactory.h.

◆ m_name

std::string SCT_ComponentFactory::m_name
privateinherited

Definition at line 49 of file SCT_ComponentFactory.h.

◆ m_outerRadius

double SCT_Flange::m_outerRadius = 0.0
private

Definition at line 39 of file SCT_Flange.h.

◆ m_physVolume

GeoVPhysVol* SCT_SharedComponentFactory::m_physVolume
protectedinherited

Definition at line 70 of file SCT_ComponentFactory.h.

◆ m_radialWidth

double SCT_Flange::m_radialWidth = 0.0
private

Definition at line 41 of file SCT_Flange.h.

◆ s_epsilon

const double SCT_ComponentFactory::s_epsilon = 1.0e-6 * Gaudi::Units::mm
staticprivateinherited

Definition at line 50 of file SCT_ComponentFactory.h.


The documentation for this class was generated from the following files:
SCT_Flange::m_iLayer
int m_iLayer
Definition: SCT_Flange.h:34
SCT_ComponentFactory::m_geometryManager
SCT_GeometryManager * m_geometryManager
Definition: SCT_ComponentFactory.h:42
SCT_ComponentFactory::m_name
std::string m_name
Definition: SCT_ComponentFactory.h:49
lumiFormat.i
int i
Definition: lumiFormat.py:92
SCT_Flange::build
virtual GeoVPhysVol * build()
Definition: SCT_Flange.cxx:51
SCT_GeometryManager::barrelParameters
const SCT_BarrelParameters * barrelParameters() const
Definition: SCT_GeometryManager.cxx:78
SCT_Flange::m_material
const GeoMaterial * m_material
Definition: SCT_Flange.h:36
SCT_ComponentFactory::s_epsilon
static const double s_epsilon
Definition: SCT_ComponentFactory.h:50
SCT_MaterialManager::getMaterialForVolume
const GeoMaterial * getMaterialForVolume(const std::string &materialName, double volume)
Definition: SCT_MaterialManager.cxx:72
SCT_Flange::m_length
double m_length
Definition: SCT_Flange.h:40
SCT_ComponentFactory::m_materials
SCT_MaterialManager * m_materials
Definition: SCT_ComponentFactory.h:43
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
SCT_SharedComponentFactory::m_physVolume
GeoVPhysVol * m_physVolume
Definition: SCT_ComponentFactory.h:70
SCT_SharedComponentFactory::SCT_SharedComponentFactory
SCT_SharedComponentFactory(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials=nullptr)
Definition: SCT_ComponentFactory.h:59
SCT_Flange::getParameters
void getParameters()
Definition: SCT_Flange.cxx:31
SCT_MaterialManager::getMaterial
const GeoMaterial * getMaterial(const std::string &materialName)
Definition: SCT_MaterialManager.cxx:51
SCT_BarrelParameters
Definition: SCT_BarrelParameters.h:12
python.CaloScaleNoiseConfig.str
str
Definition: CaloScaleNoiseConfig.py:78
SCT_Flange::m_outerRadius
double m_outerRadius
Definition: SCT_Flange.h:39
physics_parameters.parameters
parameters
Definition: physics_parameters.py:144
SCT_Flange::m_radialWidth
double m_radialWidth
Definition: SCT_Flange.h:41
SCT_Flange::m_materialName
std::string m_materialName
Definition: SCT_Flange.h:37
str
Definition: BTagTrackIpAccessor.cxx:11
SCT_Flange::m_innerRadius
double m_innerRadius
Definition: SCT_Flange.h:38
SCT_ComponentFactory::getName
const std::string & getName() const
Definition: SCT_ComponentFactory.h:35