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

#include <SCT_FwdModuleConnector.h>

Inheritance diagram for SCT_FwdModuleConnector:
Collaboration diagram for SCT_FwdModuleConnector:

Public Member Functions

 SCT_FwdModuleConnector (const std::string &name, int ringType, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
const GeoMaterial * material () const
double deltaR () const
double rphi () 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_ringType
double m_deltaR = 0.0
double m_rphi = 0.0
double m_thickness = 0.0
const GeoMaterial * m_material = nullptr
std::string m_materialName
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_FwdModuleConnector.h.

Constructor & Destructor Documentation

◆ SCT_FwdModuleConnector()

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

Definition at line 21 of file SCT_FwdModuleConnector.cxx.

25 : SCT_SharedComponentFactory(name, detectorManager, geometryManager, materials),
26 m_ringType(ringType)
27{
30}
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_FwdModuleConnector::build ( )
privatevirtual

Implements SCT_SharedComponentFactory.

Definition at line 45 of file SCT_FwdModuleConnector.cxx.

46{
47 const SCT_ForwardModuleParameters * parameters = m_geometryManager->forwardModuleParameters();
48
49 // Construct box
50 const GeoBox * moduleConnShape = new GeoBox(0.5 * m_thickness, 0.5 * m_rphi, 0.5 * m_deltaR);
51 m_material = m_materials->getMaterialForVolume(m_materialName, moduleConnShape->volume());
52
53 // Shift to correct position within module
54 double xposition = 0.5 * (parameters->fwdHybridThickness() + m_thickness);
55 double zposition = parameters->fwdModuleMountPoint(m_ringType) - parameters->fwdHybridMountPointToInnerEdge() + parameters->fwdHybridLength() - 0.5*(m_deltaR);
56 if (m_ringType == 0) { zposition = -1 * zposition; }; // outer module, hybrid in inner side
57 const GeoShape & connectorPos = (*moduleConnShape << GeoTrf::Translate3D(xposition,0.,zposition));
58
59
60 const GeoLogVol * moduleConnLog = new GeoLogVol(getName(), &connectorPos, m_material);
61
62 GeoPhysVol * moduleConnector = new GeoPhysVol(moduleConnLog);
63
64 return moduleConnector;
65}
const std::string & getName() const
SCT_GeometryManager * m_geometryManager
SCT_MaterialManager * m_materials
const GeoMaterial * m_material

◆ deltaR()

double SCT_FwdModuleConnector::deltaR ( ) const
inline

Definition at line 25 of file SCT_FwdModuleConnector.h.

25{return m_deltaR;}

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

Definition at line 34 of file SCT_FwdModuleConnector.cxx.

35{
36 const SCT_ForwardModuleParameters * parameters = m_geometryManager->forwardModuleParameters();
37
38 m_materialName= parameters->fwdModuleConnectorMaterial();
39 m_deltaR = parameters->fwdModuleConnectorDeltaR();
40 m_rphi = parameters->fwdModuleConnectorRPhi();
41 m_thickness = parameters->fwdModuleConnectorThickness();
42}

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

◆ material()

const GeoMaterial * SCT_FwdModuleConnector::material ( ) const
inline

Definition at line 24 of file SCT_FwdModuleConnector.h.

24{return m_material;}

◆ rphi()

double SCT_FwdModuleConnector::rphi ( ) const
inline

Definition at line 26 of file SCT_FwdModuleConnector.h.

26{return m_rphi;}

◆ thickness()

double SCT_FwdModuleConnector::thickness ( ) const
inline

Definition at line 27 of file SCT_FwdModuleConnector.h.

27{return m_thickness;}

Member Data Documentation

◆ m_deltaR

double SCT_FwdModuleConnector::m_deltaR = 0.0
private

Definition at line 36 of file SCT_FwdModuleConnector.h.

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

const GeoMaterial* SCT_FwdModuleConnector::m_material = nullptr
private

Definition at line 39 of file SCT_FwdModuleConnector.h.

◆ m_materialName

std::string SCT_FwdModuleConnector::m_materialName
private

Definition at line 40 of file SCT_FwdModuleConnector.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_ringType

int SCT_FwdModuleConnector::m_ringType
private

Definition at line 34 of file SCT_FwdModuleConnector.h.

◆ m_rphi

double SCT_FwdModuleConnector::m_rphi = 0.0
private

Definition at line 37 of file SCT_FwdModuleConnector.h.

◆ m_thickness

double SCT_FwdModuleConnector::m_thickness = 0.0
private

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