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

#include <SCT_Forward.h>

Inheritance diagram for SCT_Forward:
Collaboration diagram for SCT_Forward:

Public Member Functions

 SCT_Forward (const std::string &name, int ec, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials, GeoModelIO::ReadGeoModel *sqliteReader, std::shared_ptr< std::map< std::string, GeoFullPhysVol * >> mapFPV, std::shared_ptr< std::map< std::string, GeoAlignableTransform * >> mapAX)
 
 ~SCT_Forward ()
 
int numModuleTypes () const
 
int numWheels () const
 
double innerRadius () const
 
double outerRadius () const
 
double zMax () const
 
double zMin () const
 
double trtGapPos () const
 
double length () const
 
double zCenter () const
 
virtual GeoVPhysVol * build (SCT_Identifier id)
 
const std::string & getName () const
 
std::string intToString (int i) const
 

Protected Member Functions

double epsilon () const
 

Protected Attributes

const GeoLogVol * m_logVolume
 
GeoModelIO::ReadGeoModel * m_sqliteReader
 
std::shared_ptr< std::map< std::string, GeoFullPhysVol * > > m_mapFPV
 
std::shared_ptr< std::map< std::string, GeoAlignableTransform * > > m_mapAX
 
InDetDD::SCT_DetectorManagerm_detectorManager
 
SCT_GeometryManagerm_geometryManager
 
SCT_MaterialManagerm_materials
 

Private Member Functions

void getParameters ()
 
virtual const GeoLogVol * preBuild ()
 

Private Attributes

int m_endcap
 
int m_numModuleTypes = 0
 
int m_numWheels = 0
 
double m_innerRadius = 0.0
 
double m_outerRadius = 0.0
 
double m_zMin = 0.0
 
double m_zMax = 0.0
 
double m_trtGapPos = 0.0
 
double m_coolingPipeRadius = 0.0
 
int m_numThermalShieldElements = 0
 
bool m_cylinderServicesPresent = false
 
double m_length = 0.0
 
double m_outerRadiusCylinderServices = 0.0
 
std::vector< std::unique_ptr< SCT_FwdWheel > > m_wheels
 
std::vector< std::unique_ptr< SCT_FwdModule > > m_modules
 
std::string m_name
 

Static Private Attributes

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

Detailed Description

Definition at line 17 of file SCT_Forward.h.

Constructor & Destructor Documentation

◆ SCT_Forward()

SCT_Forward::SCT_Forward ( const std::string &  name,
int  ec,
InDetDD::SCT_DetectorManager detectorManager,
SCT_GeometryManager geometryManager,
SCT_MaterialManager materials,
GeoModelIO::ReadGeoModel *  sqliteReader,
std::shared_ptr< std::map< std::string, GeoFullPhysVol * >>  mapFPV,
std::shared_ptr< std::map< std::string, GeoAlignableTransform * >>  mapAX 
)

Definition at line 41 of file SCT_Forward.cxx.

48  : SCT_UniqueComponentFactory(name, detectorManager, geometryManager, materials, sqliteReader, std::move(mapFPV), std::move(mapAX)),
49  m_endcap(ec)
50 {
51  getParameters();
53 
54 }

◆ ~SCT_Forward()

SCT_Forward::~SCT_Forward ( )

Definition at line 56 of file SCT_Forward.cxx.

57 {
58 }

Member Function Documentation

◆ build()

GeoVPhysVol * SCT_Forward::build ( SCT_Identifier  id)
virtual

Implements SCT_UniqueComponentFactory.

Definition at line 132 of file SCT_Forward.cxx.

133 {
134  GeoFullPhysVol * forward=nullptr;
135  if(!m_sqliteReader)
136  {
137  forward = new GeoFullPhysVol(m_logVolume);
138 
139  for (int iWheel = 0; iWheel < m_numWheels; iWheel++){
140 
141  SCT_FwdWheel * wheel = m_wheels[iWheel].get();
142  std::ostringstream wheelName; wheelName << "Wheel#" << iWheel;
143  double zpos = wheel->zPosition() - zCenter();
144  forward->add(new GeoNameTag(wheelName.str()));
145  forward->add(new GeoIdentifierTag(iWheel));
146  GeoAlignableTransform * transform = new GeoAlignableTransform(GeoTrf::TranslateZ3D(zpos));
147  forward->add(transform);
148  id.setLayerDisk(iWheel);
149  GeoVPhysVol * wheelPV = wheel->build(id);
150  forward->add(wheelPV);
151 
152  // Store the alignable transform
153  m_detectorManager->addAlignableTransform(2, id.getWaferId(), transform, wheelPV);
154  }
155 
156  //
157  // Place SupportFrame
158  //
159  SCT_FwdSupportFrame supportFrame("SupportFrame", m_detectorManager, m_geometryManager, m_materials);
160  double supportFrameZPos = supportFrame.zPosition() - zCenter();
161  forward->add(new GeoTransform(GeoTrf::TranslateZ3D(supportFrameZPos)));
162  forward->add(supportFrame.getVolume());
163 
164  // Make and Place Cylinder Services
165 
167 
168  // New phi-dependent services
169  SCT_FwdCylinderServices cylinderServices("CylinderServices",
170  supportFrame.outerRadius(),
172  supportFrame.length(),
174  forward->add(new GeoTransform(GeoTrf::TranslateZ3D(supportFrameZPos)));
175  forward->add(cylinderServices.getVolume());
176 
177  } else {
178 
179  // Old cylindrical services
180  //
181  // Make cooling pipes. These extend from the wheel to the TRT Gap.
182  //
183  {
184  // End position of the pipes.
185  double endPos = m_trtGapPos;
186 
187  // Calculate radius to start placing cooling pipes. This is equal to the
188  // outer radius of the support frame + the pipe radius (The pipe radius is to just
189  // give a small gap - it is not really necessary)
190  double innerRadiusCooling = supportFrame.outerRadius() + m_coolingPipeRadius;
191 
192  // Inner radius of cylinder representing pipes. Gets incremented for each wheel.
193  double rStart = innerRadiusCooling;
194 
195  for (int iWheel = 0; iWheel < m_numWheels; iWheel++){
196  // Start position of the pipes.
197  double startPos = m_wheels[iWheel]->zPosition();
198 
199  // Assume one cooling circuit per quadrant of each ring. ie 8 pipes per ring.
200  int numPipes = 8 * m_wheels[iWheel]->numRings();
201 
202  // Label Cooling pipe with W# at end of string
203  SCT_FwdCoolingPipe coolingPipe("OffDiskCoolingPipeW"+intToString(iWheel),
204  numPipes, rStart, startPos, endPos,
206 
207  // Place the cooling pipes
208  double coolingPipeZPos = coolingPipe.zPosition() - zCenter();
209  forward->add(new GeoTransform(GeoTrf::TranslateZ3D(coolingPipeZPos)));
210  forward->add(coolingPipe.getVolume());
211 
212  // Set rStart for next cooling pipe equal to outer radius of this cooling pipe.
213  rStart = coolingPipe.outerRadius();
214 
215  }
216  }
217 
218  //
219  // Make Power Tapes. These extend from the wheel to the TRT Gap.
220  //
221  {
222 
223  // End position of the power tapes.
224  double endPos = m_trtGapPos;
225 
226  // Calculate radius to start placing power tapes. This is half way bewteen outer radius
227  // of support fram and outer radius of forward envelope.
228  // The -1 mm is to avoid a clash with the thermal shield.
229  double innerRadiusPowerTapes = 0.5*(supportFrame.outerRadius() + m_outerRadius) - 1*Gaudi::Units::mm;
230 
231  // Inner radius of cylinder representing power tapes. Gets incremented for each wheel.
232  double rStart = innerRadiusPowerTapes;
233 
234  for (int iWheel = 0; iWheel < m_numWheels; iWheel++){
235 
236  // Start position of the power tapes.
237  double startPos = m_wheels[iWheel]->zPosition();
238 
239  // Get total number of modules in wheel
240  int numModules = m_wheels[iWheel]->totalModules();
241 
242  // Label power tape with W# at end of string
243  SCT_FwdPowerTape powerTape("OffDiskPowerTapeW"+intToString(iWheel),
244  numModules, rStart, startPos, endPos,
246 
247  // Place Power Tapes
248  double powerTapeZPos = powerTape.zPosition() - zCenter();
249  forward->add(new GeoTransform(GeoTrf::TranslateZ3D(powerTapeZPos)));
250  forward->add(powerTape.getVolume());
251 
252  // Set rStart for next power tape equal to outer radius of this power tape.
253  rStart = powerTape.outerRadius();
254  } // end loop over wheels
255  }
256  }
257 
258  //
259  // Place Thermal Shield Elements
260  //
261  for (int iElement = 0; iElement < m_numThermalShieldElements; iElement++){
262  SCT_FwdThermalShieldElement thermalShieldElement("FwdThermalShieldElement"+intToString(iElement),
264  double elementZPos = thermalShieldElement.zPosition() - zCenter();
265  forward->add(new GeoTransform(GeoTrf::TranslateZ3D(elementZPos)));
266  forward->add(thermalShieldElement.getVolume());
267  }
268 
269  // Extra Material
271  xMat.add(forward, "SCTEndcap", zCenter());
272  if (m_endcap > 0) {
273  xMat.add(forward, "SCTEndcapA", zCenter());
274  } else {
275  xMat.add(forward, "SCTEndcapC", zCenter());
276  }
277 
278  }else
279  {
280  for (int iWheel = 0; iWheel < m_numWheels; iWheel++){
281 
282  SCT_FwdWheel * wheel = m_wheels[iWheel].get();
283  std::ostringstream wheelName; wheelName << "Wheel#" << iWheel;
284  id.setLayerDisk(iWheel);
285  wheel->build(id);
286 
287  std::string key=wheelName.str()+"_"+std::to_string(id.getBarrelEC());
288 
289  // Store the alignable transform
290  m_detectorManager->addAlignableTransform(2, id.getWaferId(), (*m_mapAX)[key], (*m_mapFPV)[key]);
291  }
292  if (m_endcap > 0) {
293  forward= (*m_mapFPV)["SCTEndcapA"];
294  } else {
295  forward= (*m_mapFPV)["SCTEndcapC"];
296  }
297 
298  }
299  return forward;
300 }

◆ epsilon()

double SCT_ComponentFactory::epsilon ( ) const
protectedinherited

Definition at line 38 of file SCT_ComponentFactory.cxx.

39 {
40  return s_epsilon;
41 }

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

Definition at line 61 of file SCT_Forward.cxx.

62 {
65 
66  //m_numRingTypes = parameters->fwdNumRingTypes();
67  m_numModuleTypes = moduleParameters->fwdModuleNumTypes();
68  m_numWheels = parameters->fwdNumWheels();
69  m_innerRadius = parameters->fwdInnerRadius();
70  m_outerRadius = parameters->fwdOuterRadius();
71  m_zMin = parameters->fwdZMin();
72  m_zMax = parameters->fwdZMax();
73  m_trtGapPos = parameters->fwdTrtGapPos();
74  m_coolingPipeRadius = parameters->fwdCoolingPipeRadius();
75  m_numThermalShieldElements = parameters->fwdNumThermalShieldElements();
76  m_cylinderServicesPresent = parameters->fwdCylinderServicePresent();
77 
78  // Outer radius of cylinder services is given by inner radius of OTE
80  for (int iElement = 0; iElement < m_numThermalShieldElements; iElement++){
81  if(parameters->fwdThermalShieldMaterial(iElement) == "sct::FwdOTE") {
82  m_outerRadiusCylinderServices = parameters->fwdThermalShieldInnerRadius(iElement);
83  }
84  }
85  }
86 
87  // Length of forward envelope
88  m_length = m_zMax - m_zMin;
89 
90 
91  // Set numerology
93 
94 
95 }

◆ innerRadius()

double SCT_Forward::innerRadius ( ) const
inline

Definition at line 39 of file SCT_Forward.h.

39 {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_Forward::length ( ) const
inline

Definition at line 48 of file SCT_Forward.h.

48 {return m_length;}

◆ numModuleTypes()

int SCT_Forward::numModuleTypes ( ) const
inline

Definition at line 37 of file SCT_Forward.h.

37 {return m_numModuleTypes;}

◆ numWheels()

int SCT_Forward::numWheels ( ) const
inline

Definition at line 38 of file SCT_Forward.h.

38 {return m_numWheels;}

◆ outerRadius()

double SCT_Forward::outerRadius ( ) const
inline

Definition at line 40 of file SCT_Forward.h.

40 {return m_outerRadius;}

◆ preBuild()

const GeoLogVol * SCT_Forward::preBuild ( )
privatevirtual

Implements SCT_UniqueComponentFactory.

Definition at line 100 of file SCT_Forward.cxx.

101 {
102  // Create the elements we need for the forward
103  // We make all the module types here. There is a outer, middle, truncated middle and inner type module.
104  std::vector<SCT_FwdModule*> modules;
105  for (int iModuleType = 0; iModuleType < m_numModuleTypes; iModuleType++){
106 
107  std::unique_ptr<SCT_FwdModule> module = std::make_unique<SCT_FwdModule>("FwdModule"+intToString(iModuleType), iModuleType,
109  modules.push_back(module.get());
110  m_modules.push_back(std::move(module));
111  }
112 
113  for (int iWheel = 0; iWheel < m_numWheels; iWheel++){
114  // Build Wheels
115  std::ostringstream name; name << "Wheel" << iWheel << ((m_endcap > 0) ? "A" : "C");
116  m_wheels.push_back(std::make_unique<SCT_FwdWheel>(name.str(), iWheel, modules, m_endcap,
118  }
119 
120  if(m_sqliteReader) return nullptr;
121 
122  // Make one end of the Forward tracker
123  // Tube envelope containing the forward
124  const GeoTube * forwardEnvelopeShape = new GeoTube(m_innerRadius, m_outerRadius, 0.5 * m_length);
125  const GeoLogVol * forwardLog =
126  new GeoLogVol(getName(), forwardEnvelopeShape, m_materials->gasMaterial());
127 
128  return forwardLog;
129 }

◆ trtGapPos()

double SCT_Forward::trtGapPos ( ) const
inline

Definition at line 43 of file SCT_Forward.h.

43 {return m_trtGapPos;}

◆ zCenter()

double SCT_Forward::zCenter ( ) const
inline

Definition at line 49 of file SCT_Forward.h.

49 {return 0.5*(m_zMin+m_zMax);}

◆ zMax()

double SCT_Forward::zMax ( ) const
inline

Definition at line 41 of file SCT_Forward.h.

41 {return m_zMax;}

◆ zMin()

double SCT_Forward::zMin ( ) const
inline

Definition at line 42 of file SCT_Forward.h.

42 {return m_zMin;}

Member Data Documentation

◆ m_coolingPipeRadius

double SCT_Forward::m_coolingPipeRadius = 0.0
private

Definition at line 68 of file SCT_Forward.h.

◆ m_cylinderServicesPresent

bool SCT_Forward::m_cylinderServicesPresent = false
private

Definition at line 70 of file SCT_Forward.h.

◆ m_detectorManager

InDetDD::SCT_DetectorManager* SCT_ComponentFactory::m_detectorManager
protectedinherited

Definition at line 41 of file SCT_ComponentFactory.h.

◆ m_endcap

int SCT_Forward::m_endcap
private

Definition at line 60 of file SCT_Forward.h.

◆ m_geometryManager

SCT_GeometryManager* SCT_ComponentFactory::m_geometryManager
protectedinherited

Definition at line 42 of file SCT_ComponentFactory.h.

◆ m_innerRadius

double SCT_Forward::m_innerRadius = 0.0
private

Definition at line 63 of file SCT_Forward.h.

◆ m_length

double SCT_Forward::m_length = 0.0
private

Definition at line 73 of file SCT_Forward.h.

◆ m_logVolume

const GeoLogVol* SCT_UniqueComponentFactory::m_logVolume
protectedinherited

Definition at line 90 of file SCT_ComponentFactory.h.

◆ m_mapAX

std::shared_ptr<std::map<std::string, GeoAlignableTransform*> > SCT_UniqueComponentFactory::m_mapAX
protectedinherited

Definition at line 96 of file SCT_ComponentFactory.h.

◆ m_mapFPV

std::shared_ptr<std::map<std::string, GeoFullPhysVol*> > SCT_UniqueComponentFactory::m_mapFPV
protectedinherited

Definition at line 95 of file SCT_ComponentFactory.h.

◆ m_materials

SCT_MaterialManager* SCT_ComponentFactory::m_materials
protectedinherited

Definition at line 43 of file SCT_ComponentFactory.h.

◆ m_modules

std::vector<std::unique_ptr<SCT_FwdModule> > SCT_Forward::m_modules
private

Definition at line 79 of file SCT_Forward.h.

◆ m_name

std::string SCT_ComponentFactory::m_name
privateinherited

Definition at line 49 of file SCT_ComponentFactory.h.

◆ m_numModuleTypes

int SCT_Forward::m_numModuleTypes = 0
private

Definition at line 61 of file SCT_Forward.h.

◆ m_numThermalShieldElements

int SCT_Forward::m_numThermalShieldElements = 0
private

Definition at line 69 of file SCT_Forward.h.

◆ m_numWheels

int SCT_Forward::m_numWheels = 0
private

Definition at line 62 of file SCT_Forward.h.

◆ m_outerRadius

double SCT_Forward::m_outerRadius = 0.0
private

Definition at line 64 of file SCT_Forward.h.

◆ m_outerRadiusCylinderServices

double SCT_Forward::m_outerRadiusCylinderServices = 0.0
private

Definition at line 74 of file SCT_Forward.h.

◆ m_sqliteReader

GeoModelIO::ReadGeoModel* SCT_UniqueComponentFactory::m_sqliteReader
protectedinherited

Definition at line 91 of file SCT_ComponentFactory.h.

◆ m_trtGapPos

double SCT_Forward::m_trtGapPos = 0.0
private

Definition at line 67 of file SCT_Forward.h.

◆ m_wheels

std::vector<std::unique_ptr<SCT_FwdWheel> > SCT_Forward::m_wheels
private

Definition at line 77 of file SCT_Forward.h.

◆ m_zMax

double SCT_Forward::m_zMax = 0.0
private

Definition at line 66 of file SCT_Forward.h.

◆ m_zMin

double SCT_Forward::m_zMin = 0.0
private

Definition at line 65 of file SCT_Forward.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_FwdSupportFrame
Definition: SCT_FwdSupportFrame.h:15
SCT_Forward::m_modules
std::vector< std::unique_ptr< SCT_FwdModule > > m_modules
Definition: SCT_Forward.h:79
SCT_GeometryManager::forwardModuleParameters
const SCT_ForwardModuleParameters * forwardModuleParameters() const
Definition: SCT_GeometryManager.cxx:91
SCT_Forward::m_innerRadius
double m_innerRadius
Definition: SCT_Forward.h:63
SCT_ComponentFactory::m_name
std::string m_name
Definition: SCT_ComponentFactory.h:49
InDetDD::SiDetectorManager::numerology
const SiNumerology & numerology() const
Access Numerology.
Definition: SiDetectorManager.h:126
SCT_UniqueComponentFactory::m_mapFPV
std::shared_ptr< std::map< std::string, GeoFullPhysVol * > > m_mapFPV
Definition: SCT_ComponentFactory.h:95
SCT_FwdWheel::build
virtual GeoVPhysVol * build(SCT_Identifier id)
Definition: SCT_FwdWheel.cxx:260
SCT_UniqueComponentFactory::m_mapAX
std::shared_ptr< std::map< std::string, GeoAlignableTransform * > > m_mapAX
Definition: SCT_ComponentFactory.h:96
SCT_UniqueComponentFactory::SCT_UniqueComponentFactory
SCT_UniqueComponentFactory(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials=nullptr, GeoModelIO::ReadGeoModel *sqliteReader=nullptr, std::shared_ptr< std::map< std::string, GeoFullPhysVol * >> mapFPV=nullptr, std::shared_ptr< std::map< std::string, GeoAlignableTransform * >> mapAX=nullptr)
Definition: SCT_ComponentFactory.cxx:44
SCT_Forward::m_wheels
std::vector< std::unique_ptr< SCT_FwdWheel > > m_wheels
Definition: SCT_Forward.h:77
SCT_GeometryManager::forwardParameters
const SCT_ForwardParameters * forwardParameters() const
Definition: SCT_GeometryManager.cxx:98
SCT_Forward::m_outerRadiusCylinderServices
double m_outerRadiusCylinderServices
Definition: SCT_Forward.h:74
SCT_ComponentFactory::m_detectorManager
InDetDD::SCT_DetectorManager * m_detectorManager
Definition: SCT_ComponentFactory.h:41
SCT_Forward::m_cylinderServicesPresent
bool m_cylinderServicesPresent
Definition: SCT_Forward.h:70
SCT_Forward::m_coolingPipeRadius
double m_coolingPipeRadius
Definition: SCT_Forward.h:68
SCT_FwdThermalShieldElement
Definition: SCT_FwdThermalShieldElement.h:15
SCT_Forward::m_zMax
double m_zMax
Definition: SCT_Forward.h:66
python.PyAthena.module
module
Definition: PyAthena.py:131
SCT_ForwardModuleParameters
Definition: SCT_ForwardModuleParameters.h:12
SCT_FwdWheel::zPosition
double zPosition() const
Definition: SCT_FwdWheel.h:48
lumiFormat.i
int i
Definition: lumiFormat.py:85
SCT_MaterialManager::gasMaterial
const GeoMaterial * gasMaterial() const
Definition: SCT_MaterialManager.cxx:69
Amg::transform
Amg::Vector3D transform(Amg::Vector3D &v, Amg::Transform3D &tr)
Transform a point from a Trasformation3D.
Definition: GeoPrimitivesHelpers.h:156
SCT_Forward::m_numModuleTypes
int m_numModuleTypes
Definition: SCT_Forward.h:61
SCT_GeometryManager::distortedMatManager
InDetDD::DistortedMaterialManager * distortedMatManager() const
Definition: SCT_GeometryManager.cxx:111
SCT_ComponentFactory::intToString
std::string intToString(int i) const
Definition: SCT_ComponentFactory.cxx:30
SCT_ForwardModuleParameters::fwdModuleNumTypes
int fwdModuleNumTypes() const
Definition: SCT_ForwardModuleParameters.cxx:296
SCT_ComponentFactory::s_epsilon
static const double s_epsilon
Definition: SCT_ComponentFactory.h:50
InDetDD::SiNumerology::setNumDisks
void setNumDisks(int nDisks)
Definition: SiNumerology.cxx:41
SCT_Forward::m_numThermalShieldElements
int m_numThermalShieldElements
Definition: SCT_Forward.h:69
SCT_Forward::m_outerRadius
double m_outerRadius
Definition: SCT_Forward.h:64
SCT_ComponentFactory::m_materials
SCT_MaterialManager * m_materials
Definition: SCT_ComponentFactory.h:43
SCT_FwdCoolingPipe
Definition: SCT_FwdCoolingPipe.h:13
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:228
SCT_Forward::m_endcap
int m_endcap
Definition: SCT_Forward.h:60
ActsTrk::to_string
std::string to_string(const DetectorType &type)
Definition: GeometryDefs.h:34
SCT_Forward::m_trtGapPos
double m_trtGapPos
Definition: SCT_Forward.h:67
SCT_Forward::zCenter
double zCenter() const
Definition: SCT_Forward.h:49
SCT_UniqueComponentFactory::m_logVolume
const GeoLogVol * m_logVolume
Definition: SCT_ComponentFactory.h:90
SCT_FwdPowerTape
Definition: SCT_FwdPowerTape.h:13
python.SystemOfUnits.mm
int mm
Definition: SystemOfUnits.py:83
SCT_Forward::preBuild
virtual const GeoLogVol * preBuild()
Definition: SCT_Forward.cxx:100
SCT_Forward::getParameters
void getParameters()
Definition: SCT_Forward.cxx:61
python.CaloScaleNoiseConfig.str
str
Definition: CaloScaleNoiseConfig.py:78
SCT_FwdWheel
Definition: SCT_FwdWheel.h:26
InDetDD::SCT_DetectorManager::addAlignableTransform
virtual void addAlignableTransform(int level, const Identifier &id, GeoAlignableTransform *xf, const GeoVFullPhysVol *child)
Add alignable transforms. No access to these, they will be changed by manager:
Definition: SCT_DetectorManager.cxx:264
SCT_Forward::m_numWheels
int m_numWheels
Definition: SCT_Forward.h:62
SCT_Forward::m_zMin
double m_zMin
Definition: SCT_Forward.h:65
physics_parameters.parameters
parameters
Definition: physics_parameters.py:144
str
Definition: BTagTrackIpAccessor.cxx:11
SCT_Forward::m_length
double m_length
Definition: SCT_Forward.h:73
SCT_UniqueComponentFactory::m_sqliteReader
GeoModelIO::ReadGeoModel * m_sqliteReader
Definition: SCT_ComponentFactory.h:91
SCT_FwdCylinderServices
Definition: SCT_FwdCylinderServices.h:13
InDetDD::ExtraMaterial
Definition: ExtraMaterial.h:23
SCT_ComponentFactory::getName
const std::string & getName() const
Definition: SCT_ComponentFactory.h:35
SCT_ForwardParameters
Definition: SCT_ForwardParameters.h:16
mapkey::key
key
Definition: TElectronEfficiencyCorrectionTool.cxx:37