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

#include <SCT_FSIFibreMask.h>

Inheritance diagram for SCT_FSIFibreMask:
Collaboration diagram for SCT_FSIFibreMask:

Public Member Functions

 SCT_FSIFibreMask (const std::string &name, int iLayer, double length, 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

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
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_FSIFibreMask.h.

Constructor & Destructor Documentation

◆ SCT_FSIFibreMask()

SCT_FSIFibreMask::SCT_FSIFibreMask ( const std::string & name,
int iLayer,
double length,
InDetDD::SCT_DetectorManager * detectorManager,
SCT_GeometryManager * geometryManager,
SCT_MaterialManager * materials )

Definition at line 19 of file SCT_FSIFibreMask.cxx.

23 : SCT_SharedComponentFactory(name, detectorManager, geometryManager, materials),
24 m_iLayer(iLayer), m_length(length)
25{
28}
virtual GeoVPhysVol * build()
double length() const
SCT_SharedComponentFactory(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials=nullptr)

Member Function Documentation

◆ build()

GeoVPhysVol * SCT_FSIFibreMask::build ( )
privatevirtual

Implements SCT_SharedComponentFactory.

Definition at line 43 of file SCT_FSIFibreMask.cxx.

44{
45 // Make the support cyliner. A simple tube.
46 const GeoTube * fibreMaskShape = new GeoTube(m_innerRadius, m_outerRadius, 0.5 * m_length);
47 m_material = m_materials->getMaterialForVolume(std::format("{}{}",m_materialName,m_iLayer), fibreMaskShape->volume());
48 const GeoLogVol * fibreMaskLog = new GeoLogVol(getName(), fibreMaskShape, m_material);
49
50 GeoPhysVol * fibreMask = new GeoPhysVol(fibreMaskLog);
51
52 return fibreMask;
53}
const std::string & getName() const
SCT_MaterialManager * m_materials
std::string m_materialName
const GeoMaterial * m_material

◆ epsilon()

double SCT_ComponentFactory::epsilon ( ) const
protectedinherited

Definition at line 28 of file SCT_ComponentFactory.cxx.

29{
30 return s_epsilon;
31}
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_FSIFibreMask::getParameters ( )
private

Definition at line 32 of file SCT_FSIFibreMask.cxx.

33{
34 const SCT_BarrelParameters * parameters = m_geometryManager->barrelParameters();
35
36 m_materialName = parameters->fsiFibreMaskMaterial();
37 m_outerRadius = parameters->supportCylInnerRadius(m_iLayer);
38 m_innerRadius = m_outerRadius - parameters->fsiFibreMaskDeltaR();
39
40}
SCT_GeometryManager * m_geometryManager

◆ getVolume()

GeoVPhysVol * SCT_SharedComponentFactory::getVolume ( )
inlineinherited

Definition at line 63 of file SCT_ComponentFactory.h.

63{return m_physVolume;}

◆ innerRadius()

double SCT_FSIFibreMask::innerRadius ( ) const
inline

Definition at line 25 of file SCT_FSIFibreMask.h.

25{return m_innerRadius;}

◆ length()

double SCT_FSIFibreMask::length ( ) const
inline

Definition at line 27 of file SCT_FSIFibreMask.h.

27{return m_length;}

◆ material()

const GeoMaterial * SCT_FSIFibreMask::material ( ) const
inline

Definition at line 24 of file SCT_FSIFibreMask.h.

24{return m_material;}

◆ outerRadius()

double SCT_FSIFibreMask::outerRadius ( ) const
inline

Definition at line 26 of file SCT_FSIFibreMask.h.

26{return m_outerRadius;}

Member Data Documentation

◆ m_detectorManager

InDetDD::SCT_DetectorManager* SCT_ComponentFactory::m_detectorManager {}
protectedinherited

Definition at line 38 of file SCT_ComponentFactory.h.

38{};

◆ m_geometryManager

SCT_GeometryManager* SCT_ComponentFactory::m_geometryManager {}
protectedinherited

Definition at line 39 of file SCT_ComponentFactory.h.

39{};

◆ m_iLayer

int SCT_FSIFibreMask::m_iLayer
private

Definition at line 34 of file SCT_FSIFibreMask.h.

◆ m_innerRadius

double SCT_FSIFibreMask::m_innerRadius = 0.0
private

Definition at line 38 of file SCT_FSIFibreMask.h.

◆ m_length

double SCT_FSIFibreMask::m_length
private

Definition at line 40 of file SCT_FSIFibreMask.h.

◆ m_material

const GeoMaterial* SCT_FSIFibreMask::m_material = nullptr
private

Definition at line 36 of file SCT_FSIFibreMask.h.

◆ m_materialName

std::string SCT_FSIFibreMask::m_materialName
private

Definition at line 37 of file SCT_FSIFibreMask.h.

◆ m_materials

SCT_MaterialManager* SCT_ComponentFactory::m_materials {}
protectedinherited

Definition at line 40 of file SCT_ComponentFactory.h.

40{};

◆ m_name

std::string SCT_ComponentFactory::m_name
privateinherited

Definition at line 46 of file SCT_ComponentFactory.h.

◆ m_outerRadius

double SCT_FSIFibreMask::m_outerRadius = 0.0
private

Definition at line 39 of file SCT_FSIFibreMask.h.

◆ m_physVolume

GeoVPhysVol* SCT_SharedComponentFactory::m_physVolume {}
protectedinherited

Definition at line 66 of file SCT_ComponentFactory.h.

66{};

◆ s_epsilon

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

Definition at line 47 of file SCT_ComponentFactory.h.


The documentation for this class was generated from the following files: