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

#include <SCT_FwdOptoHarness.h>

Inheritance diagram for SCT_FwdOptoHarness:
Collaboration diagram for SCT_FwdOptoHarness:

Public Member Functions

 SCT_FwdOptoHarness (const std::string &name, int iType, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
const GeoMaterial * material () const
double innerRadius () const
double outerRadius () const
double thickness () 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_type
double m_innerRadius = 0.0
double m_outerRadius = 0.0
double m_thickness = 0.0
const GeoMaterial * m_material = nullptr
std::string m_materialName
int m_index = 0
std::string m_name

Static Private Attributes

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

Detailed Description

Definition at line 12 of file SCT_FwdOptoHarness.h.

Constructor & Destructor Documentation

◆ SCT_FwdOptoHarness()

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

Definition at line 22 of file SCT_FwdOptoHarness.cxx.

26 : SCT_SharedComponentFactory(name, detectorManager, geometryManager, materials),
27 m_type(itype)
28{
31}
virtual GeoVPhysVol * build()
SCT_SharedComponentFactory(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials=nullptr)

Member Function Documentation

◆ build()

GeoVPhysVol * SCT_FwdOptoHarness::build ( )
privatevirtual

Implements SCT_SharedComponentFactory.

Definition at line 57 of file SCT_FwdOptoHarness.cxx.

58{
59 const GeoTube * optoHarnessShape = new GeoTube(m_innerRadius, m_outerRadius, 0.5 * m_thickness);
60 m_material = m_materials->getMaterialForVolume(m_materialName, optoHarnessShape->volume());
61 const GeoLogVol * optoHarnessLog = new GeoLogVol(getName(), optoHarnessShape, m_material);
62
63 GeoPhysVol * optoHarness = new GeoPhysVol(optoHarnessLog);
64
65 return optoHarness;
66}
const std::string & getName() const
SCT_MaterialManager * m_materials
const GeoMaterial * m_material

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

Definition at line 35 of file SCT_FwdOptoHarness.cxx.

36{
37 const SCT_ForwardParameters * parameters = m_geometryManager->forwardParameters();
38
39 m_index = -1;
40 for(int i=0; i<3; ++i) {
41 if(parameters->fwdOptoHarnessDiscType(i) == m_type) {m_index = i;}
42 }
43
44 if(m_index < 0) {
45 std::cout << "SCT_FwdOptoHarness: ERROR. Disc type is missing" << m_type << std::endl;
46 std::cout << "Assuming type 1" << std::endl;
47 m_index = 0;
48 }
49
50 m_materialName= parameters->fwdOptoHarnessMaterial(m_index);
51 m_innerRadius = parameters->fwdOptoHarnessInnerRadius(m_index);
52 m_outerRadius = parameters->fwdOptoHarnessOuterRadius(m_index);
53 m_thickness = parameters->fwdOptoHarnessThickness(m_index);
54}
SCT_GeometryManager * m_geometryManager

◆ getVolume()

GeoVPhysVol * SCT_SharedComponentFactory::getVolume ( )
inlineinherited

Definition at line 67 of file SCT_ComponentFactory.h.

67{return m_physVolume;}

◆ innerRadius()

double SCT_FwdOptoHarness::innerRadius ( ) const
inline

Definition at line 25 of file SCT_FwdOptoHarness.h.

25{return m_innerRadius;}

◆ 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}

◆ material()

const GeoMaterial * SCT_FwdOptoHarness::material ( ) const
inline

Definition at line 24 of file SCT_FwdOptoHarness.h.

24{return m_material;}

◆ outerRadius()

double SCT_FwdOptoHarness::outerRadius ( ) const
inline

Definition at line 26 of file SCT_FwdOptoHarness.h.

26{return m_outerRadius;}

◆ thickness()

double SCT_FwdOptoHarness::thickness ( ) const
inline

Definition at line 27 of file SCT_FwdOptoHarness.h.

27{return m_thickness;}

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_index

int SCT_FwdOptoHarness::m_index = 0
private

Definition at line 42 of file SCT_FwdOptoHarness.h.

◆ m_innerRadius

double SCT_FwdOptoHarness::m_innerRadius = 0.0
private

Definition at line 36 of file SCT_FwdOptoHarness.h.

◆ m_material

const GeoMaterial* SCT_FwdOptoHarness::m_material = nullptr
private

Definition at line 39 of file SCT_FwdOptoHarness.h.

◆ m_materialName

std::string SCT_FwdOptoHarness::m_materialName
private

Definition at line 40 of file SCT_FwdOptoHarness.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_FwdOptoHarness::m_outerRadius = 0.0
private

Definition at line 37 of file SCT_FwdOptoHarness.h.

◆ m_physVolume

GeoVPhysVol* SCT_SharedComponentFactory::m_physVolume
protectedinherited

Definition at line 70 of file SCT_ComponentFactory.h.

◆ m_thickness

double SCT_FwdOptoHarness::m_thickness = 0.0
private

Definition at line 38 of file SCT_FwdOptoHarness.h.

◆ m_type

int SCT_FwdOptoHarness::m_type
private

Definition at line 34 of file SCT_FwdOptoHarness.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: