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

#include <SCT_FwdCoolingPipe.h>

Inheritance diagram for SCT_FwdCoolingPipe:
Collaboration diagram for SCT_FwdCoolingPipe:

Public Member Functions

 SCT_FwdCoolingPipe (const std::string &name, int numPipes, double innerRadius, double startPos, double endPos, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
const GeoMaterial * material () const
double pipeRadius () const
double innerRadius () const
double outerRadius () const
double thickness () const
double length () const
double zPosition () 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
int m_numPipes
double m_pipeRadius = 0.0
double m_innerRadius
double m_outerRadius = 0.0
double m_thickness = 0.0
double m_length
double m_zPosition
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_FwdCoolingPipe.h.

Constructor & Destructor Documentation

◆ SCT_FwdCoolingPipe()

SCT_FwdCoolingPipe::SCT_FwdCoolingPipe ( const std::string & name,
int numPipes,
double innerRadius,
double startPos,
double endPos,
InDetDD::SCT_DetectorManager * detectorManager,
SCT_GeometryManager * geometryManager,
SCT_MaterialManager * materials )

Definition at line 21 of file SCT_FwdCoolingPipe.cxx.

29 : SCT_SharedComponentFactory(name, detectorManager, geometryManager, materials),
31{
32 m_length = std::abs(endPos - startPos);
33 m_zPosition = 0.5 * (startPos + endPos);
34
37}
double innerRadius() const
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_FwdCoolingPipe::build ( )
privatevirtual

Implements SCT_SharedComponentFactory.

Definition at line 49 of file SCT_FwdCoolingPipe.cxx.

50{
51 // Calculate the dimensions.
52 // area = Gaudi::Units::pi*(pipeRadius)^2 * numPipes
53 // also area = 2*Gaudi::Units::pi*r_ave*delta_r approx= 2 * Gaudi::Units::pi * rMin * delta_r
54 // solve for delta_r
55 // m_thickness = delta_r
56
57 double area = Gaudi::Units::pi * sqr(m_pipeRadius) * m_numPipes;
58 m_thickness = area/(2. * Gaudi::Units::pi * m_innerRadius);
60
61
62 // Make the support disk. A simple tube.
63 const GeoTube * pipeShape = new GeoTube(m_innerRadius, m_outerRadius, 0.5 * m_length);
64 const GeoLogVol * pipeLog = new GeoLogVol(getName(), pipeShape, m_material);
65
66 GeoPhysVol * pipe = new GeoPhysVol(pipeLog);
67
68 return pipe;
69}
double area(double R)
#define sqr(t)
const std::string & getName() const
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_FwdCoolingPipe::getParameters ( )
private

Definition at line 41 of file SCT_FwdCoolingPipe.cxx.

42{
43 const SCT_ForwardParameters * parameters = m_geometryManager->forwardParameters();
44 m_material = m_materials->getMaterial(parameters->fwdCoolingPipeMaterial());
45 m_pipeRadius = parameters->fwdCoolingPipeRadius();
46}
SCT_GeometryManager * m_geometryManager
SCT_MaterialManager * m_materials

◆ getVolume()

GeoVPhysVol * SCT_SharedComponentFactory::getVolume ( )
inlineinherited

Definition at line 67 of file SCT_ComponentFactory.h.

67{return m_physVolume;}

◆ innerRadius()

double SCT_FwdCoolingPipe::innerRadius ( ) const
inline

Definition at line 30 of file SCT_FwdCoolingPipe.h.

30{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}

◆ length()

double SCT_FwdCoolingPipe::length ( ) const
inline

Definition at line 33 of file SCT_FwdCoolingPipe.h.

33{return m_length;}

◆ material()

const GeoMaterial * SCT_FwdCoolingPipe::material ( ) const
inline

Definition at line 27 of file SCT_FwdCoolingPipe.h.

27{return m_material;}

◆ outerRadius()

double SCT_FwdCoolingPipe::outerRadius ( ) const
inline

Definition at line 31 of file SCT_FwdCoolingPipe.h.

31{return m_outerRadius;}

◆ pipeRadius()

double SCT_FwdCoolingPipe::pipeRadius ( ) const
inline

Definition at line 28 of file SCT_FwdCoolingPipe.h.

28{return m_pipeRadius;}

◆ thickness()

double SCT_FwdCoolingPipe::thickness ( ) const
inline

Definition at line 32 of file SCT_FwdCoolingPipe.h.

32{return m_thickness;}

◆ zPosition()

double SCT_FwdCoolingPipe::zPosition ( ) const
inline

Definition at line 34 of file SCT_FwdCoolingPipe.h.

34{return m_zPosition;}

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_innerRadius

double SCT_FwdCoolingPipe::m_innerRadius
private

Definition at line 43 of file SCT_FwdCoolingPipe.h.

◆ m_length

double SCT_FwdCoolingPipe::m_length
private

Definition at line 46 of file SCT_FwdCoolingPipe.h.

◆ m_material

const GeoMaterial* SCT_FwdCoolingPipe::m_material = nullptr
private

Definition at line 40 of file SCT_FwdCoolingPipe.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_numPipes

int SCT_FwdCoolingPipe::m_numPipes
private

Definition at line 41 of file SCT_FwdCoolingPipe.h.

◆ m_outerRadius

double SCT_FwdCoolingPipe::m_outerRadius = 0.0
private

Definition at line 44 of file SCT_FwdCoolingPipe.h.

◆ m_physVolume

GeoVPhysVol* SCT_SharedComponentFactory::m_physVolume
protectedinherited

Definition at line 70 of file SCT_ComponentFactory.h.

◆ m_pipeRadius

double SCT_FwdCoolingPipe::m_pipeRadius = 0.0
private

Definition at line 42 of file SCT_FwdCoolingPipe.h.

◆ m_thickness

double SCT_FwdCoolingPipe::m_thickness = 0.0
private

Definition at line 45 of file SCT_FwdCoolingPipe.h.

◆ m_zPosition

double SCT_FwdCoolingPipe::m_zPosition
private

Definition at line 47 of file SCT_FwdCoolingPipe.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: