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

#include <SCT_FSIScorpion.h>

Inheritance diagram for SCT_FSIScorpion:
Collaboration diagram for SCT_FSIScorpion:

Public Member Functions

 SCT_FSIScorpion (const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
const GeoMaterial * material () const
double radialWidth () const
double rPhiWidth () 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
std::string m_materialName
double m_radialWidth = 0.0
double m_rPhiWidth = 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 14 of file SCT_FSIScorpion.h.

Constructor & Destructor Documentation

◆ SCT_FSIScorpion()

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

Definition at line 18 of file SCT_FSIScorpion.cxx.

22 : SCT_SharedComponentFactory(name, detectorManager, geometryManager, materials)
23{
26}
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_FSIScorpion::build ( )
privatevirtual

Implements SCT_SharedComponentFactory.

Definition at line 40 of file SCT_FSIScorpion.cxx.

41{
42
43 // Build the barrel FSI scorpion. Just a simple box.
44 // Length is in z-direction.
45 const GeoBox * scorpionShape = new GeoBox(0.5*m_radialWidth, 0.5*m_rPhiWidth, 0.5*m_length);
46 m_material = m_materials->getMaterialForVolume(m_materialName, scorpionShape->volume());
47 const GeoLogVol *scorpionLog = new GeoLogVol(getName(), scorpionShape, m_material);
48 GeoPhysVol * scorpion = new GeoPhysVol(scorpionLog);
49
50 return scorpion;
51}
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 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_FSIScorpion::getParameters ( )
private

Definition at line 30 of file SCT_FSIScorpion.cxx.

31{
32 const SCT_BarrelParameters * parameters = m_geometryManager->barrelParameters();
33 m_materialName = parameters->fsiScorpionMaterial();
34 m_radialWidth = parameters->fsiScorpionRadialWidth();
35 m_rPhiWidth = parameters->fsiScorpionRPhiWidth();
36 m_length = parameters->fsiScorpionLength();
37}
SCT_GeometryManager * m_geometryManager

◆ 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_FSIScorpion::length ( ) const
inline

Definition at line 27 of file SCT_FSIScorpion.h.

27{return m_length;}

◆ material()

const GeoMaterial * SCT_FSIScorpion::material ( ) const
inline

Definition at line 24 of file SCT_FSIScorpion.h.

24{return m_material;}

◆ radialWidth()

double SCT_FSIScorpion::radialWidth ( ) const
inline

Definition at line 25 of file SCT_FSIScorpion.h.

25{return m_radialWidth;}

◆ rPhiWidth()

double SCT_FSIScorpion::rPhiWidth ( ) const
inline

Definition at line 26 of file SCT_FSIScorpion.h.

26{return m_rPhiWidth;}

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_FSIScorpion::m_length = 0.0
private

Definition at line 38 of file SCT_FSIScorpion.h.

◆ m_material

const GeoMaterial* SCT_FSIScorpion::m_material = nullptr
private

Definition at line 34 of file SCT_FSIScorpion.h.

◆ m_materialName

std::string SCT_FSIScorpion::m_materialName
private

Definition at line 35 of file SCT_FSIScorpion.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_radialWidth

double SCT_FSIScorpion::m_radialWidth = 0.0
private

Definition at line 36 of file SCT_FSIScorpion.h.

◆ m_rPhiWidth

double SCT_FSIScorpion::m_rPhiWidth = 0.0
private

Definition at line 37 of file SCT_FSIScorpion.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: