ATLAS Offline Software
Loading...
Searching...
No Matches
SCT_Bracket Class Reference

#include <SCT_Bracket.h>

Inheritance diagram for SCT_Bracket:
Collaboration diagram for SCT_Bracket:

Public Member Functions

 SCT_Bracket (const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
const GeoMaterial * material () const
double thickness () const
double width () 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

const GeoMaterial * m_material = nullptr
double m_thickness = 0.0
double m_width = 0.0
double m_length = 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 16 of file SCT_Bracket.h.

Constructor & Destructor Documentation

◆ SCT_Bracket()

SCT_Bracket::SCT_Bracket ( const std::string & name,
InDetDD::SCT_DetectorManager * detectorManager,
SCT_GeometryManager * geometryManager,
SCT_MaterialManager * materials )

Definition at line 21 of file SCT_Bracket.cxx.

25 : SCT_SharedComponentFactory(name, detectorManager, geometryManager, materials)
26{
29}
virtual GeoVPhysVol * build()
void getParameters()
SCT_SharedComponentFactory(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials=nullptr)

Member Function Documentation

◆ build()

GeoVPhysVol * SCT_Bracket::build ( )
privatevirtual

Implements SCT_SharedComponentFactory.

Definition at line 44 of file SCT_Bracket.cxx.

45{
46
47 // Build the Bracket. Just a simple box.
48 // Width is in phi-direction.
49 // Length is in z-direction.
50
51 const GeoBox * bracketShape = new GeoBox(0.5*m_thickness, 0.5*m_width, 0.5*m_length);
52 const GeoLogVol *bracketLog = new GeoLogVol(getName(), bracketShape, m_material);
53 GeoPhysVol * bracket = new GeoPhysVol(bracketLog);
54
55 return bracket;
56}
double m_width
Definition SCT_Bracket.h:38
double m_thickness
Definition SCT_Bracket.h:37
double m_length
Definition SCT_Bracket.h:39
const GeoMaterial * m_material
Definition SCT_Bracket.h:36
const std::string & getName() const

◆ epsilon()

double SCT_ComponentFactory::epsilon ( ) const
protectedinherited

Definition at line 38 of file SCT_ComponentFactory.cxx.

39{
40 return s_epsilon;
41}
static const double s_epsilon

◆ 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_Bracket::getParameters ( )
private

Definition at line 33 of file SCT_Bracket.cxx.

34{
35 const SCT_BarrelParameters * parameters = m_geometryManager->barrelParameters();
36
37 m_material = m_materials->getMaterial(parameters->bracketMaterial());
38 m_thickness = parameters->bracketThickness();
39 m_length = parameters->bracketLength();
40 m_width = parameters->bracketWidth();
41}
SCT_GeometryManager * m_geometryManager
SCT_MaterialManager * m_materials

◆ getVolume()

GeoVPhysVol * SCT_SharedComponentFactory::getVolume ( )
inlineinherited

Definition at line 67 of file SCT_ComponentFactory.h.

67{return m_physVolume;}

◆ intToString()

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

Definition at line 30 of file SCT_ComponentFactory.cxx.

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

◆ length()

double SCT_Bracket::length ( ) const
inline

Definition at line 30 of file SCT_Bracket.h.

30{return m_length;}

◆ material()

const GeoMaterial * SCT_Bracket::material ( ) const
inline

Definition at line 27 of file SCT_Bracket.h.

27{return m_material;}

◆ thickness()

double SCT_Bracket::thickness ( ) const
inline

Definition at line 28 of file SCT_Bracket.h.

28{return m_thickness;}

◆ width()

double SCT_Bracket::width ( ) const
inline

Definition at line 29 of file SCT_Bracket.h.

29{return m_width;}

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_length

double SCT_Bracket::m_length = 0.0
private

Definition at line 39 of file SCT_Bracket.h.

◆ m_material

const GeoMaterial* SCT_Bracket::m_material = nullptr
private

Definition at line 36 of file SCT_Bracket.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_physVolume

GeoVPhysVol* SCT_SharedComponentFactory::m_physVolume
protectedinherited

Definition at line 70 of file SCT_ComponentFactory.h.

◆ m_thickness

double SCT_Bracket::m_thickness = 0.0
private

Definition at line 37 of file SCT_Bracket.h.

◆ m_width

double SCT_Bracket::m_width = 0.0
private

Definition at line 38 of file SCT_Bracket.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: