ATLAS Offline Software
Public Member Functions | Protected Member Functions | Protected Attributes | Private Member Functions | Private Attributes | Static Private Attributes | List of all members
SCT_FwdCylinderServices Class Reference

#include <SCT_FwdCylinderServices.h>

Inheritance diagram for SCT_FwdCylinderServices:
Collaboration diagram for SCT_FwdCylinderServices:

Public Member Functions

 SCT_FwdCylinderServices (const std::string &name, double rmin, double rmax, double length, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
 
 ~SCT_FwdCylinderServices ()
 
double innerRadius () const
 
double outerRadius () 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

double m_innerRadius
 
double m_outerRadius
 
double m_length
 
std::vector< double > m_coolingLocAngle
 
std::vector< double > m_lmtLocAngle
 
std::vector< double > m_lmtCoolingLocAngle
 
std::vector< double > m_fibreLocAngle
 
std::vector< double > m_nPipeLocAngle
 
std::vector< double > m_railLocAngle
 
double m_coolingDeltaR = 0.0
 
double m_lmtDeltaR = 0.0
 
double m_lmtCoolingDeltaR = 0.0
 
double m_fibreDeltaR = 0.0
 
double m_nPipeDeltaR = 0.0
 
double m_railDeltaR = 0.0
 
double m_coolingRPhi = 0.0
 
double m_lmtRPhi = 0.0
 
double m_lmtCoolingRPhi = 0.0
 
double m_fibreRPhi = 0.0
 
double m_nPipeRPhi = 0.0
 
double m_railRPhi = 0.0
 
std::string m_coolingMaterialName
 
std::string m_lmtMaterialName
 
std::string m_lmtCoolingMaterialName
 
std::string m_fibreMaterialName
 
std::string m_nPipeMaterialName
 
std::string m_railMaterialName
 
double m_lmtCoolingZOffset = 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 12 of file SCT_FwdCylinderServices.h.

Constructor & Destructor Documentation

◆ SCT_FwdCylinderServices()

SCT_FwdCylinderServices::SCT_FwdCylinderServices ( const std::string &  name,
double  rmin,
double  rmax,
double  length,
InDetDD::SCT_DetectorManager detectorManager,
SCT_GeometryManager geometryManager,
SCT_MaterialManager materials 
)

Definition at line 26 of file SCT_FwdCylinderServices.cxx.

33  : SCT_SharedComponentFactory(name, detectorManager, geometryManager, materials),
35 {
36  getParameters();
38 
39 }

◆ ~SCT_FwdCylinderServices()

SCT_FwdCylinderServices::~SCT_FwdCylinderServices ( )

Definition at line 41 of file SCT_FwdCylinderServices.cxx.

42 {
43 }

Member Function Documentation

◆ build()

GeoVPhysVol * SCT_FwdCylinderServices::build ( )
privatevirtual

Implements SCT_SharedComponentFactory.

Definition at line 113 of file SCT_FwdCylinderServices.cxx.

114 {
115 
116  // Make envelope for the services
117  const GeoTube * cylinderShape = new GeoTube(m_innerRadius, m_outerRadius, 0.5 * m_length);
118  const GeoLogVol * cylinderLog = new GeoLogVol(getName(), cylinderShape, m_materials->gasMaterial());
119  GeoPhysVol * cylinder = new GeoPhysVol(cylinderLog);
120 
121  // Create All Services
122  // All except LMT Cooling run complete length of cylinder
123  // LMT Cooling starts midway between wheels 1 and 2
124  // CoolingPipe, LMT and Fibres build up in z and are modelled as cone sections
125  // LMT Cooling, N2 Pipes and Rails are uniform in z and modelled as tube sections
126  // Cooling pipe, LMT, fibres and N2 pipe are placed at same radius
127  // LMT Cooling is outside LMT
128  // Rails are outside Cooling and N2 pipes
129 
130  // Cooling pipe
131  double coolingRmin = m_innerRadius;
132  double coolingRmax1 = coolingRmin + 0.2 * m_coolingDeltaR;
133  double coolingRmax2 = coolingRmin + 1.8 * m_coolingDeltaR;
134  double coolingDPhi = m_coolingRPhi / coolingRmin;
135  const GeoCons* coolingShape = new GeoCons(coolingRmin, coolingRmin, coolingRmax1, coolingRmax2,
136  0.5 * m_length,
137  -0.5 * coolingDPhi * Gaudi::Units::radian, coolingDPhi * Gaudi::Units::radian);
138  const GeoLogVol * coolingLog = new GeoLogVol("CoolingPipe", coolingShape, m_materials->getMaterialForVolume(m_coolingMaterialName, coolingShape->volume()));
139  GeoPhysVol * coolingPipe = new GeoPhysVol(coolingLog);
140 
141  // Low Mass Tapes
142  double lmtRmin = m_innerRadius;
143  double lmtRmax1 = lmtRmin + 0.2 * m_lmtDeltaR;
144  double lmtRmax2 = lmtRmin + 1.8 * m_lmtDeltaR;
145  double lmtDPhi = m_lmtRPhi / lmtRmin;
146  const GeoCons* lmtShape = new GeoCons(lmtRmin, lmtRmin, lmtRmax1, lmtRmax2, 0.5 * m_length,
147  -0.5 * lmtDPhi * Gaudi::Units::radian, lmtDPhi * Gaudi::Units::radian);
148  const GeoLogVol * lmtLog = new GeoLogVol("LMT", lmtShape, m_materials->getMaterialForVolume(m_lmtMaterialName,lmtShape->volume()));
149  GeoPhysVol * lmt = new GeoPhysVol(lmtLog);
150 
151  // LMT Cooling: must be outside LMTs
152  double lmtCoolingRmin = lmtRmax2;
153  double lmtCoolingRmax = lmtCoolingRmin + m_lmtCoolingDeltaR;
154  double lmtCoolingDPhi = m_lmtCoolingRPhi / lmtCoolingRmin;
155  double lmtLength = m_length - 2. * m_lmtCoolingZOffset;
156  const GeoTubs* lmtCoolingShape = new GeoTubs(lmtCoolingRmin, lmtCoolingRmax, 0.5 * lmtLength,
157  -0.5 * lmtCoolingDPhi * Gaudi::Units::radian, lmtCoolingDPhi * Gaudi::Units::radian);
158  const GeoLogVol * lmtCoolingLog = new GeoLogVol("LMTCooling", lmtCoolingShape, m_materials->getMaterialForVolume(m_lmtCoolingMaterialName,lmtCoolingShape->volume()));
159  GeoPhysVol * lmtCooling = new GeoPhysVol(lmtCoolingLog);
160 
161  // Fibres
162  double fibreRmin = m_innerRadius;
163  double fibreRmax1 = fibreRmin + 0.2 * m_fibreDeltaR;
164  double fibreRmax2 = fibreRmin + 1.8 * m_fibreDeltaR;
165  double fibreDPhi = m_fibreRPhi / fibreRmin;
166  const GeoCons* fibreShape = new GeoCons(fibreRmin, fibreRmin, fibreRmax1, fibreRmax2, 0.5 * m_length,
167  -0.5 * fibreDPhi * Gaudi::Units::radian, fibreDPhi * Gaudi::Units::radian);
168  const GeoLogVol * fibreLog = new GeoLogVol("Fibres", fibreShape, m_materials->getMaterialForVolume(m_fibreMaterialName,fibreShape->volume()));
169  GeoPhysVol * fibres = new GeoPhysVol(fibreLog);
170 
171  // N2 Pipe
172  double nPipeRmin = m_innerRadius;
173  double nPipeRmax = nPipeRmin + m_nPipeDeltaR;
174  double nPipeDPhi = m_nPipeRPhi / nPipeRmin;
175  const GeoTubs* nPipeShape = new GeoTubs(nPipeRmin, nPipeRmax, 0.5 * m_length,
176  -0.5 * nPipeDPhi * Gaudi::Units::radian, nPipeDPhi * Gaudi::Units::radian);
177  const GeoLogVol * nPipeLog = new GeoLogVol("NPipe", nPipeShape, m_materials->getMaterialForVolume(m_nPipeMaterialName,nPipeShape->volume()));
178  GeoPhysVol * nPipe = new GeoPhysVol(nPipeLog);
179 
180  // Rails: must be outside Cooling and N2 Pipes
181  double railRmin = std::max(coolingRmax2, nPipeRmax);
182  double railRmax = railRmin + m_railDeltaR;
183  double railDPhi = m_railRPhi / railRmin;
184  const GeoTubs* railShape = new GeoTubs(railRmin, railRmax,
185  0.5 * m_length, -0.5 * railDPhi * Gaudi::Units::radian, railDPhi * Gaudi::Units::radian);
186  const GeoLogVol * railLog = new GeoLogVol("Rail", railShape, m_materials->getMaterialForVolume(m_railMaterialName,railShape->volume()));
187  GeoPhysVol * rail = new GeoPhysVol(railLog);
188 
189  // Services are repeated for each quadrant
190  for (int iquad = 0; iquad < 4; iquad++) {
191 
192  // Cooling pipe
193  for (unsigned int iLoc = 0; iLoc < m_coolingLocAngle.size(); iLoc++) {
194  double coolingAngle = m_coolingLocAngle[iLoc] + iquad * 90*Gaudi::Units::degree;
195  cylinder->add(new GeoTransform(GeoTrf::RotateZ3D(coolingAngle)));
196  cylinder->add(coolingPipe);
197  }
198 
199  // Low Mass Tapes and LMT Cooling are at same phi positions
200  for (unsigned int iLoc = 0; iLoc < m_lmtLocAngle.size(); iLoc++) {
201  double lmtAngle = m_lmtLocAngle[iLoc] + iquad * 90*Gaudi::Units::degree;
202  cylinder->add(new GeoTransform(GeoTrf::RotateZ3D(lmtAngle)));
203  cylinder->add(lmt);
204  cylinder->add(new GeoTransform(GeoTrf::RotateZ3D(lmtAngle)*GeoTrf::TranslateZ3D(m_lmtCoolingZOffset)));
205  cylinder->add(lmtCooling);
206  }
207 
208  // Fibres are between pairs of LMTs
209  for (unsigned int iLoc = 0; iLoc < m_fibreLocAngle.size(); iLoc++) {
210  double fibreAngle = m_fibreLocAngle[iLoc] + iquad * 90*Gaudi::Units::degree;
211  cylinder->add(new GeoTransform(GeoTrf::RotateZ3D(fibreAngle)));
212  cylinder->add(fibres);
213  }
214 
215  // N2 Pipes
216  for (unsigned int iLoc = 0; iLoc < m_nPipeLocAngle.size(); iLoc++) {
217  double nPipeAngle = m_nPipeLocAngle[iLoc] + iquad * 90*Gaudi::Units::degree;
218  cylinder->add(new GeoTransform(GeoTrf::RotateZ3D(nPipeAngle)));
219  cylinder->add(nPipe);
220  }
221 
222  // Rails
223  for (unsigned int iLoc = 0; iLoc < m_railLocAngle.size(); iLoc++) {
224  double railAngle = m_railLocAngle[iLoc] + iquad * 90*Gaudi::Units::degree;
225  cylinder->add(new GeoTransform(GeoTrf::RotateZ3D(railAngle)));
226  cylinder->add(rail);
227  }
228 
229  } // end loop over quadrants
230 
231  return cylinder;
232 
233 }

◆ epsilon()

double SCT_ComponentFactory::epsilon ( ) const
protectedinherited

Definition at line 37 of file SCT_ComponentFactory.cxx.

38 {
39  return s_epsilon;
40 }

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

Definition at line 46 of file SCT_FwdCylinderServices.cxx.

47 {
49 
50  // Retrieve parameters for each service
51  for (int iType = 0; iType < parameters->fwdNumCylinderServiceTypes(); iType++) {
52  if (parameters->fwdCylinderServiceName(iType) == "CoolingPipe") {
53  m_coolingDeltaR = parameters->fwdCylinderServiceDeltaR(iType);
54  m_coolingRPhi = parameters->fwdCylinderServiceRPhi(iType);
55  m_coolingMaterialName = parameters->fwdCylinderServiceMaterial(iType);
56  }
57  if (parameters->fwdCylinderServiceName(iType) == "LMT") {
58  m_lmtDeltaR = parameters->fwdCylinderServiceDeltaR(iType);
59  m_lmtRPhi = parameters->fwdCylinderServiceRPhi(iType);
60  m_lmtMaterialName = parameters->fwdCylinderServiceMaterial(iType);
61  }
62  if (parameters->fwdCylinderServiceName(iType) == "LMTCooling") {
63  m_lmtCoolingDeltaR = parameters->fwdCylinderServiceDeltaR(iType);
64  m_lmtCoolingRPhi = parameters->fwdCylinderServiceRPhi(iType);
65  m_lmtCoolingMaterialName = parameters->fwdCylinderServiceMaterial(iType);
66  }
67  if (parameters->fwdCylinderServiceName(iType) == "Fibres") {
68  m_fibreDeltaR = parameters->fwdCylinderServiceDeltaR(iType);
69  m_fibreRPhi = parameters->fwdCylinderServiceRPhi(iType);
70  m_fibreMaterialName = parameters->fwdCylinderServiceMaterial(iType);
71  }
72  if (parameters->fwdCylinderServiceName(iType) == "NPipe") {
73  m_nPipeDeltaR = parameters->fwdCylinderServiceDeltaR(iType);
74  m_nPipeRPhi = parameters->fwdCylinderServiceRPhi(iType);
75  m_nPipeMaterialName = parameters->fwdCylinderServiceMaterial(iType);
76  }
77  if (parameters->fwdCylinderServiceName(iType) == "Rail") {
78  m_railDeltaR = parameters->fwdCylinderServiceDeltaR(iType);
79  m_railRPhi = parameters->fwdCylinderServiceRPhi(iType);
80  m_railMaterialName = parameters->fwdCylinderServiceMaterial(iType);
81  }
82  }
83 
84  // Retrieve angles for each service
85  for (int iLoc = 0; iLoc < parameters->fwdNumCylinderServiceLocs(); iLoc++) {
86  if (parameters->fwdCylinderServiceLocName(iLoc) == "CoolingPipe") {
87  m_coolingLocAngle.push_back(parameters->fwdCylinderServiceLocAngle(iLoc));
88  }
89  if (parameters->fwdCylinderServiceLocName(iLoc) == "LMT") {
90  m_lmtLocAngle.push_back(parameters->fwdCylinderServiceLocAngle(iLoc));
91  }
92  if (parameters->fwdCylinderServiceLocName(iLoc) == "LMTCooling") {
93  m_lmtCoolingLocAngle.push_back(parameters->fwdCylinderServiceLocAngle(iLoc));
94  }
95  if (parameters->fwdCylinderServiceLocName(iLoc) == "Fibres") {
96  m_fibreLocAngle.push_back(parameters->fwdCylinderServiceLocAngle(iLoc));
97  }
98  if (parameters->fwdCylinderServiceLocName(iLoc) == "NPipe") {
99  m_nPipeLocAngle.push_back(parameters->fwdCylinderServiceLocAngle(iLoc));
100  }
101  if (parameters->fwdCylinderServiceLocName(iLoc) == "Rail") {
102  m_railLocAngle.push_back(parameters->fwdCylinderServiceLocAngle(iLoc));
103  }
104  }
105 
106  // Starting position for LMT Cooling is midpoint between wheels 1 and 2
107  double lmtCoolingZStart = 0.5 * (parameters->fwdWheelZPosition(1) + parameters->fwdWheelZPosition(2));
108  m_lmtCoolingZOffset = 0.5 * (lmtCoolingZStart - parameters->fwdSupportFrameZMin());
109 
110 }

◆ getVolume()

GeoVPhysVol* SCT_SharedComponentFactory::getVolume ( )
inlineinherited

Definition at line 67 of file SCT_ComponentFactory.h.

67 {return m_physVolume;}

◆ innerRadius()

double SCT_FwdCylinderServices::innerRadius ( ) const
inline

Definition at line 25 of file SCT_FwdCylinderServices.h.

25 {return m_innerRadius;}

◆ intToString()

std::string SCT_ComponentFactory::intToString ( int  i) const
inherited

Definition at line 29 of file SCT_ComponentFactory.cxx.

30 {
31  std::ostringstream str;
32  str << i;
33  return str.str();
34 }

◆ length()

double SCT_FwdCylinderServices::length ( ) const
inline

Definition at line 27 of file SCT_FwdCylinderServices.h.

27 {return m_length;}

◆ outerRadius()

double SCT_FwdCylinderServices::outerRadius ( ) const
inline

Definition at line 26 of file SCT_FwdCylinderServices.h.

26 {return m_outerRadius;}

Member Data Documentation

◆ m_coolingDeltaR

double SCT_FwdCylinderServices::m_coolingDeltaR = 0.0
private

Definition at line 46 of file SCT_FwdCylinderServices.h.

◆ m_coolingLocAngle

std::vector<double> SCT_FwdCylinderServices::m_coolingLocAngle
private

Definition at line 39 of file SCT_FwdCylinderServices.h.

◆ m_coolingMaterialName

std::string SCT_FwdCylinderServices::m_coolingMaterialName
private

Definition at line 60 of file SCT_FwdCylinderServices.h.

◆ m_coolingRPhi

double SCT_FwdCylinderServices::m_coolingRPhi = 0.0
private

Definition at line 53 of file SCT_FwdCylinderServices.h.

◆ m_detectorManager

InDetDD::SCT_DetectorManager* SCT_ComponentFactory::m_detectorManager
protectedinherited

Definition at line 41 of file SCT_ComponentFactory.h.

◆ m_fibreDeltaR

double SCT_FwdCylinderServices::m_fibreDeltaR = 0.0
private

Definition at line 49 of file SCT_FwdCylinderServices.h.

◆ m_fibreLocAngle

std::vector<double> SCT_FwdCylinderServices::m_fibreLocAngle
private

Definition at line 42 of file SCT_FwdCylinderServices.h.

◆ m_fibreMaterialName

std::string SCT_FwdCylinderServices::m_fibreMaterialName
private

Definition at line 63 of file SCT_FwdCylinderServices.h.

◆ m_fibreRPhi

double SCT_FwdCylinderServices::m_fibreRPhi = 0.0
private

Definition at line 56 of file SCT_FwdCylinderServices.h.

◆ m_geometryManager

SCT_GeometryManager* SCT_ComponentFactory::m_geometryManager
protectedinherited

Definition at line 42 of file SCT_ComponentFactory.h.

◆ m_innerRadius

double SCT_FwdCylinderServices::m_innerRadius
private

Definition at line 34 of file SCT_FwdCylinderServices.h.

◆ m_length

double SCT_FwdCylinderServices::m_length
private

Definition at line 36 of file SCT_FwdCylinderServices.h.

◆ m_lmtCoolingDeltaR

double SCT_FwdCylinderServices::m_lmtCoolingDeltaR = 0.0
private

Definition at line 48 of file SCT_FwdCylinderServices.h.

◆ m_lmtCoolingLocAngle

std::vector<double> SCT_FwdCylinderServices::m_lmtCoolingLocAngle
private

Definition at line 41 of file SCT_FwdCylinderServices.h.

◆ m_lmtCoolingMaterialName

std::string SCT_FwdCylinderServices::m_lmtCoolingMaterialName
private

Definition at line 62 of file SCT_FwdCylinderServices.h.

◆ m_lmtCoolingRPhi

double SCT_FwdCylinderServices::m_lmtCoolingRPhi = 0.0
private

Definition at line 55 of file SCT_FwdCylinderServices.h.

◆ m_lmtCoolingZOffset

double SCT_FwdCylinderServices::m_lmtCoolingZOffset = 0.0
private

Definition at line 67 of file SCT_FwdCylinderServices.h.

◆ m_lmtDeltaR

double SCT_FwdCylinderServices::m_lmtDeltaR = 0.0
private

Definition at line 47 of file SCT_FwdCylinderServices.h.

◆ m_lmtLocAngle

std::vector<double> SCT_FwdCylinderServices::m_lmtLocAngle
private

Definition at line 40 of file SCT_FwdCylinderServices.h.

◆ m_lmtMaterialName

std::string SCT_FwdCylinderServices::m_lmtMaterialName
private

Definition at line 61 of file SCT_FwdCylinderServices.h.

◆ m_lmtRPhi

double SCT_FwdCylinderServices::m_lmtRPhi = 0.0
private

Definition at line 54 of file SCT_FwdCylinderServices.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_nPipeDeltaR

double SCT_FwdCylinderServices::m_nPipeDeltaR = 0.0
private

Definition at line 50 of file SCT_FwdCylinderServices.h.

◆ m_nPipeLocAngle

std::vector<double> SCT_FwdCylinderServices::m_nPipeLocAngle
private

Definition at line 43 of file SCT_FwdCylinderServices.h.

◆ m_nPipeMaterialName

std::string SCT_FwdCylinderServices::m_nPipeMaterialName
private

Definition at line 64 of file SCT_FwdCylinderServices.h.

◆ m_nPipeRPhi

double SCT_FwdCylinderServices::m_nPipeRPhi = 0.0
private

Definition at line 57 of file SCT_FwdCylinderServices.h.

◆ m_outerRadius

double SCT_FwdCylinderServices::m_outerRadius
private

Definition at line 35 of file SCT_FwdCylinderServices.h.

◆ m_physVolume

GeoVPhysVol* SCT_SharedComponentFactory::m_physVolume
protectedinherited

Definition at line 70 of file SCT_ComponentFactory.h.

◆ m_railDeltaR

double SCT_FwdCylinderServices::m_railDeltaR = 0.0
private

Definition at line 51 of file SCT_FwdCylinderServices.h.

◆ m_railLocAngle

std::vector<double> SCT_FwdCylinderServices::m_railLocAngle
private

Definition at line 44 of file SCT_FwdCylinderServices.h.

◆ m_railMaterialName

std::string SCT_FwdCylinderServices::m_railMaterialName
private

Definition at line 65 of file SCT_FwdCylinderServices.h.

◆ m_railRPhi

double SCT_FwdCylinderServices::m_railRPhi = 0.0
private

Definition at line 58 of file SCT_FwdCylinderServices.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:
SCT_ComponentFactory::m_geometryManager
SCT_GeometryManager * m_geometryManager
Definition: SCT_ComponentFactory.h:42
SCT_ComponentFactory::m_name
std::string m_name
Definition: SCT_ComponentFactory.h:49
SCT_FwdCylinderServices::m_lmtCoolingLocAngle
std::vector< double > m_lmtCoolingLocAngle
Definition: SCT_FwdCylinderServices.h:41
SCT_FwdCylinderServices::m_length
double m_length
Definition: SCT_FwdCylinderServices.h:36
max
#define max(a, b)
Definition: cfImp.cxx:41
SCT_FwdCylinderServices::m_lmtCoolingZOffset
double m_lmtCoolingZOffset
Definition: SCT_FwdCylinderServices.h:67
SCT_FwdCylinderServices::m_lmtLocAngle
std::vector< double > m_lmtLocAngle
Definition: SCT_FwdCylinderServices.h:40
SCT_FwdCylinderServices::m_lmtMaterialName
std::string m_lmtMaterialName
Definition: SCT_FwdCylinderServices.h:61
SCT_FwdCylinderServices::m_nPipeLocAngle
std::vector< double > m_nPipeLocAngle
Definition: SCT_FwdCylinderServices.h:43
SCT_FwdCylinderServices::m_coolingDeltaR
double m_coolingDeltaR
Definition: SCT_FwdCylinderServices.h:46
SCT_GeometryManager::forwardParameters
const SCT_ForwardParameters * forwardParameters() const
Definition: SCT_GeometryManager.cxx:98
SCT_FwdCylinderServices::m_lmtCoolingRPhi
double m_lmtCoolingRPhi
Definition: SCT_FwdCylinderServices.h:55
SCT_FwdCylinderServices::m_railRPhi
double m_railRPhi
Definition: SCT_FwdCylinderServices.h:58
SCT_FwdCylinderServices::m_nPipeMaterialName
std::string m_nPipeMaterialName
Definition: SCT_FwdCylinderServices.h:64
SCT_FwdCylinderServices::m_fibreLocAngle
std::vector< double > m_fibreLocAngle
Definition: SCT_FwdCylinderServices.h:42
SCT_FwdCylinderServices::length
double length() const
Definition: SCT_FwdCylinderServices.h:27
SCT_FwdCylinderServices::m_nPipeDeltaR
double m_nPipeDeltaR
Definition: SCT_FwdCylinderServices.h:50
python.SystemOfUnits.radian
int radian
Definition: SystemOfUnits.py:104
SCT_FwdCylinderServices::m_fibreDeltaR
double m_fibreDeltaR
Definition: SCT_FwdCylinderServices.h:49
lumiFormat.i
int i
Definition: lumiFormat.py:92
SCT_MaterialManager::gasMaterial
const GeoMaterial * gasMaterial() const
Definition: SCT_MaterialManager.cxx:80
SCT_FwdCylinderServices::m_coolingLocAngle
std::vector< double > m_coolingLocAngle
Definition: SCT_FwdCylinderServices.h:39
SCT_FwdCylinderServices::m_railDeltaR
double m_railDeltaR
Definition: SCT_FwdCylinderServices.h:51
SCT_FwdCylinderServices::m_coolingMaterialName
std::string m_coolingMaterialName
Definition: SCT_FwdCylinderServices.h:60
SCT_FwdCylinderServices::getParameters
void getParameters()
Definition: SCT_FwdCylinderServices.cxx:46
SCT_FwdCylinderServices::m_innerRadius
double m_innerRadius
Definition: SCT_FwdCylinderServices.h:34
SCT_ComponentFactory::s_epsilon
static const double s_epsilon
Definition: SCT_ComponentFactory.h:50
SCT_MaterialManager::getMaterialForVolume
const GeoMaterial * getMaterialForVolume(const std::string &materialName, double volume)
Definition: SCT_MaterialManager.cxx:72
SCT_ComponentFactory::m_materials
SCT_MaterialManager * m_materials
Definition: SCT_ComponentFactory.h:43
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
SCT_SharedComponentFactory::m_physVolume
GeoVPhysVol * m_physVolume
Definition: SCT_ComponentFactory.h:70
SCT_SharedComponentFactory::SCT_SharedComponentFactory
SCT_SharedComponentFactory(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials=nullptr)
Definition: SCT_ComponentFactory.h:59
SCT_FwdCylinderServices::m_nPipeRPhi
double m_nPipeRPhi
Definition: SCT_FwdCylinderServices.h:57
SCT_FwdCylinderServices::m_outerRadius
double m_outerRadius
Definition: SCT_FwdCylinderServices.h:35
SCT_FwdCylinderServices::m_lmtRPhi
double m_lmtRPhi
Definition: SCT_FwdCylinderServices.h:54
SCT_FwdCylinderServices::m_lmtDeltaR
double m_lmtDeltaR
Definition: SCT_FwdCylinderServices.h:47
SCT_FwdCylinderServices::m_fibreMaterialName
std::string m_fibreMaterialName
Definition: SCT_FwdCylinderServices.h:63
python.CaloScaleNoiseConfig.str
str
Definition: CaloScaleNoiseConfig.py:78
SCT_FwdCylinderServices::m_railMaterialName
std::string m_railMaterialName
Definition: SCT_FwdCylinderServices.h:65
SCT_FwdCylinderServices::build
virtual GeoVPhysVol * build()
Definition: SCT_FwdCylinderServices.cxx:113
physics_parameters.parameters
parameters
Definition: physics_parameters.py:144
SCT_FwdCylinderServices::m_fibreRPhi
double m_fibreRPhi
Definition: SCT_FwdCylinderServices.h:56
str
Definition: BTagTrackIpAccessor.cxx:11
SCT_FwdCylinderServices::m_lmtCoolingMaterialName
std::string m_lmtCoolingMaterialName
Definition: SCT_FwdCylinderServices.h:62
SCT_FwdCylinderServices::m_coolingRPhi
double m_coolingRPhi
Definition: SCT_FwdCylinderServices.h:53
SCT_ComponentFactory::getName
const std::string & getName() const
Definition: SCT_ComponentFactory.h:35
SCT_FwdCylinderServices::m_railLocAngle
std::vector< double > m_railLocAngle
Definition: SCT_FwdCylinderServices.h:44
python.SystemOfUnits.degree
tuple degree
Definition: SystemOfUnits.py:106
SCT_FwdCylinderServices::m_lmtCoolingDeltaR
double m_lmtCoolingDeltaR
Definition: SCT_FwdCylinderServices.h:48
SCT_ForwardParameters
Definition: SCT_ForwardParameters.h:16