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

#include <SCT_FwdCoolingBlock.h>

Inheritance diagram for SCT_FwdCoolingBlock:
Collaboration diagram for SCT_FwdCoolingBlock:

Public Types

enum  types { UPPER = 1 , LOWER = -1 , MAIN = 0 , SECONDARY = 1 }

Public Member Functions

 SCT_FwdCoolingBlock (const std::string &name, int hiLo, int mainOrSecondary, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
const GeoMaterial * material () const
double thickness () const
double deltaR () const
double rphi () const
double offsetFromDisc () const
double index () 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_thickness = 0.0
double m_deltaR = 0.0
double m_rphi = 0.0
double m_offset = 0.0
int m_hiLo
int m_mainSec
int m_coolingBlockIndex = 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_FwdCoolingBlock.h.

Member Enumeration Documentation

◆ types

Enumerator
UPPER 
LOWER 
MAIN 
SECONDARY 

Definition at line 27 of file SCT_FwdCoolingBlock.h.

Constructor & Destructor Documentation

◆ SCT_FwdCoolingBlock()

SCT_FwdCoolingBlock::SCT_FwdCoolingBlock ( const std::string & name,
int hiLo,
int mainOrSecondary,
InDetDD::SCT_DetectorManager * detectorManager,
SCT_GeometryManager * geometryManager,
SCT_MaterialManager * materials )

Definition at line 20 of file SCT_FwdCoolingBlock.cxx.

24 : SCT_SharedComponentFactory(name, detectorManager, geometryManager, materials),
25 m_hiLo(hiLo), m_mainSec(mainOrSecondary)
26{
29}
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_FwdCoolingBlock::build ( )
privatevirtual

Implements SCT_SharedComponentFactory.

Definition at line 60 of file SCT_FwdCoolingBlock.cxx.

61{
62
63 // Build the CoolingBlock. Just a simple box.
64 const GeoBox * coolingBlockShape = new GeoBox(0.5*m_deltaR, 0.5*m_rphi, 0.5*m_thickness);
65 m_material = m_materials->getMaterialForVolume(m_materialName, coolingBlockShape->volume());
66 const GeoLogVol *coolingBlockLog =
67 new GeoLogVol(getName(), coolingBlockShape, m_material);
68 GeoPhysVol * coolingBlock = new GeoPhysVol(coolingBlockLog);
69
70 return coolingBlock;
71}
const std::string & getName() const
SCT_MaterialManager * m_materials
const GeoMaterial * m_material

◆ deltaR()

double SCT_FwdCoolingBlock::deltaR ( ) const
inline

Definition at line 35 of file SCT_FwdCoolingBlock.h.

35{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_FwdCoolingBlock::getParameters ( )
private

Definition at line 33 of file SCT_FwdCoolingBlock.cxx.

34{
35 const SCT_ForwardParameters * parameters = m_geometryManager->forwardParameters();
36
38 for (int i = 0; i < 4; i++){
39 if (parameters->fwdCoolingBlockHiLo(i) == m_hiLo && parameters->fwdCoolingBlockMainOrSecondary(i) == m_mainSec) {
41 }
42 }
43
44 if (m_coolingBlockIndex < 0){
45 std::cout << "SCT_FwdCoolingBlock: ERROR. Cooling block type is missing. HiLo = " << m_hiLo
46 << ", MainSecondary = " << m_mainSec << std::endl;
47 // Will crash or give unpredictable results
48 }
49
50 m_materialName = parameters->fwdCoolingBlockMaterial(m_coolingBlockIndex);
51 m_thickness = parameters->fwdCoolingBlockThickness(m_coolingBlockIndex);
52 m_deltaR = parameters->fwdCoolingBlockDeltaR(m_coolingBlockIndex);
53 m_rphi = parameters->fwdCoolingBlockRPhi(m_coolingBlockIndex);
54 m_offset = parameters->fwdCoolingBlockOffsetFromDisc(m_coolingBlockIndex);
55
56
57}
SCT_GeometryManager * m_geometryManager

◆ getVolume()

GeoVPhysVol * SCT_SharedComponentFactory::getVolume ( )
inlineinherited

Definition at line 67 of file SCT_ComponentFactory.h.

67{return m_physVolume;}

◆ index()

double SCT_FwdCoolingBlock::index ( ) const
inline

Definition at line 38 of file SCT_FwdCoolingBlock.h.

38{return m_coolingBlockIndex;}

◆ 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_FwdCoolingBlock::material ( ) const
inline

Definition at line 33 of file SCT_FwdCoolingBlock.h.

33{return m_material;}

◆ offsetFromDisc()

double SCT_FwdCoolingBlock::offsetFromDisc ( ) const
inline

Definition at line 37 of file SCT_FwdCoolingBlock.h.

37{return m_offset;}

◆ rphi()

double SCT_FwdCoolingBlock::rphi ( ) const
inline

Definition at line 36 of file SCT_FwdCoolingBlock.h.

36{return m_rphi;}

◆ thickness()

double SCT_FwdCoolingBlock::thickness ( ) const
inline

Definition at line 34 of file SCT_FwdCoolingBlock.h.

34{return m_thickness;}

Member Data Documentation

◆ m_coolingBlockIndex

int SCT_FwdCoolingBlock::m_coolingBlockIndex = 0
private

Definition at line 52 of file SCT_FwdCoolingBlock.h.

◆ m_deltaR

double SCT_FwdCoolingBlock::m_deltaR = 0.0
private

Definition at line 47 of file SCT_FwdCoolingBlock.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_hiLo

int SCT_FwdCoolingBlock::m_hiLo
private

Definition at line 50 of file SCT_FwdCoolingBlock.h.

◆ m_mainSec

int SCT_FwdCoolingBlock::m_mainSec
private

Definition at line 51 of file SCT_FwdCoolingBlock.h.

◆ m_material

const GeoMaterial* SCT_FwdCoolingBlock::m_material = nullptr
private

Definition at line 44 of file SCT_FwdCoolingBlock.h.

◆ m_materialName

std::string SCT_FwdCoolingBlock::m_materialName
private

Definition at line 45 of file SCT_FwdCoolingBlock.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_offset

double SCT_FwdCoolingBlock::m_offset = 0.0
private

Definition at line 49 of file SCT_FwdCoolingBlock.h.

◆ m_physVolume

GeoVPhysVol* SCT_SharedComponentFactory::m_physVolume
protectedinherited

Definition at line 70 of file SCT_ComponentFactory.h.

◆ m_rphi

double SCT_FwdCoolingBlock::m_rphi = 0.0
private

Definition at line 48 of file SCT_FwdCoolingBlock.h.

◆ m_thickness

double SCT_FwdCoolingBlock::m_thickness = 0.0
private

Definition at line 46 of file SCT_FwdCoolingBlock.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: