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

#include <SCT_FwdSensor.h>

Inheritance diagram for SCT_FwdSensor:
Collaboration diagram for SCT_FwdSensor:

Public Member Functions

 SCT_FwdSensor (const std::string &name, int ringType, 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_FwdSensor ()
 
int ringType () const
 
double innerRadius () const
 
double outerRadius () const
 
double innerWidth () const
 
double outerWidth () const
 
double thickness () const
 
double length () const
 
double centerRadius () const
 
double sensorOffset () const
 
double outerWidthN () const
 
double innerWidthN () const
 
double lengthN () const
 
double thicknessN () const
 
double outerWidthF () const
 
double innerWidthF () const
 
double lengthF () const
 
double thicknessF () const
 
virtual GeoVPhysVol * build (SCT_Identifier id)
 
GeoPhysVol * getInactive ()
 
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 ()
 
void makeDesign ()
 

Private Attributes

int m_ringType {}
 
double m_thickness = 0.0
 
double m_outerRadius = 0.0
 
double m_innerRadius = 0.0
 
double m_innerWidth = 0.0
 
double m_outerWidth = 0.0
 
double m_outerWidthN = 0.0
 
double m_innerWidthN = 0.0
 
double m_lengthN = 0.0
 
double m_thicknessN = 0.0
 
double m_radiusN = 0.0
 
double m_activeHalfLengthNear = 0.0
 
double m_outerWidthF = 0.0
 
double m_innerWidthF = 0.0
 
double m_lengthF = 0.0
 
double m_thicknessF = 0.0
 
double m_radiusF = 0.0
 
double m_activeHalfLengthFar = 0.0
 
double m_sensorRadius = 0.0
 
double m_sensorOffset = 0.0
 
const GeoMaterial * m_materialSensor = nullptr
 
const GeoMaterial * m_materialGlass = nullptr
 
GeoIntrusivePtr< GeoPhysVol > m_inactive = nullptr
 
const InDetDD::SiDetectorDesignm_design = nullptr
 
std::atomic_bool m_noElementWarning
 
std::string m_name
 

Static Private Attributes

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

Detailed Description

Definition at line 30 of file SCT_FwdSensor.h.

Constructor & Destructor Documentation

◆ SCT_FwdSensor()

SCT_FwdSensor::SCT_FwdSensor ( const std::string &  name,
int  ringType,
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 42 of file SCT_FwdSensor.cxx.

50  : SCT_UniqueComponentFactory(name, detectorManager, geometryManager, materials, sqliteReader, std::move(mapFPV), std::move(mapAX)),
52  m_noElementWarning{true}
53 {
54  getParameters();
56 
57 }

◆ ~SCT_FwdSensor()

SCT_FwdSensor::~SCT_FwdSensor ( )
default

Member Function Documentation

◆ build()

GeoVPhysVol * SCT_FwdSensor::build ( SCT_Identifier  id)
virtual

Implements SCT_UniqueComponentFactory.

Definition at line 303 of file SCT_FwdSensor.cxx.

304 {
305 
306  GeoFullPhysVol * sensor=nullptr;
307  if (m_sqliteReader)
308  {
309 
310  std::string key="FwdSensor_Side#"+std::to_string(id.getSide())+"_"+std::to_string(id.getBarrelEC())+"_"+std::to_string(id.getLayerDisk())+"_"+std::to_string(id.getEtaModule())+"_"+std::to_string(id.getPhiModule());
311 
312  sensor = (*m_mapFPV)[key];
313  } else
314  sensor= new GeoFullPhysVol(m_logVolume);
315 
316  // Make detector element and add to collection
317  // Only do so if we have a valid id helper.
318  //id.print(); // for debugging only
319 
320  const SiCommonItems* commonItems = m_geometryManager->commonItems();
321 
322  if (commonItems->getIdHelper()) {
323 
324  // detElement will be owned by SCT_DetectorManager
325  // and will be deleted in destructor of SiDetectorElementCollection in SCT_DetectorManager
326  SiDetectorElement * detElement = new SiDetectorElement(id.getWaferId(),
327  m_design,
328  sensor,
329  commonItems);
330 
331  // Add the detector element.
333 
334  } else {
335  if (m_noElementWarning) {
336  std::cout << "WARNING!!!!: No SCT id helper and so no elements being produced." << std::endl;
337  m_noElementWarning = false;
338  }
339  }
340 
341  return sensor;
342 }

◆ centerRadius()

double SCT_FwdSensor::centerRadius ( ) const
inline

Definition at line 65 of file SCT_FwdSensor.h.

65 {return m_sensorRadius;}

◆ epsilon()

double SCT_ComponentFactory::epsilon ( ) const
protectedinherited

Definition at line 38 of file SCT_ComponentFactory.cxx.

39 {
40  return s_epsilon;
41 }

◆ getInactive()

GeoPhysVol* SCT_FwdSensor::getInactive ( )
inline

Definition at line 82 of file SCT_FwdSensor.h.

82 {return m_inactive;}

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

Definition at line 62 of file SCT_FwdSensor.cxx.

63 {
65 
66  if(!m_sqliteReader){
68 
69  m_materialGlass = nullptr;
70  if (m_ringType == 2) { // Only need to define glass if its a Truncated middle module.
71  m_materialGlass = m_materials->getMaterial(parameters->fwdSensorMaterialNear(m_ringType));
72  }
73  }
74 
75  m_thicknessN = m_thicknessF = parameters->fwdSensorThickness(m_ringType);
76 
77  m_innerWidthF = parameters->fwdSensorInnerWidthFar(m_ringType);
78  m_outerWidthF = parameters->fwdSensorOuterWidthFar(m_ringType);
79  m_lengthF = parameters->fwdSensorLengthFar(m_ringType);
80  m_radiusF = parameters->fwdSensorRadiusFar(m_ringType);
81 
82  m_innerWidthN = parameters->fwdSensorInnerWidthNear(m_ringType);
83  m_outerWidthN = parameters->fwdSensorOuterWidthNear(m_ringType);
84  m_lengthN = parameters->fwdSensorLengthNear(m_ringType);
85  m_radiusN = parameters->fwdSensorRadiusNear(m_ringType);
86 
87  if (m_ringType == 3) {
88  // For Inner Module only use number for far sensor.
91  } else {
94  }
97 
98  m_activeHalfLengthFar = parameters->fwdSensorActiveHalfLengthFar(m_ringType);
99  m_activeHalfLengthNear = parameters->fwdSensorActiveHalfLengthNear(m_ringType);
100 
101  if (m_ringType == 3) { // Inner
103  } else {
106  }
107 
108  // For truncated middle the sensor is offset from what it would be if it was a full middle.
109  m_sensorOffset = 0;
110  if (m_ringType == 2) { // truncated middle
112  }
113 
114  // The thickness of the two are the same, but to be pedantic.
116 }

◆ innerRadius()

double SCT_FwdSensor::innerRadius ( ) const
inline

Definition at line 47 of file SCT_FwdSensor.h.

47 {return m_innerRadius;}

◆ innerWidth()

double SCT_FwdSensor::innerWidth ( ) const
inline

Definition at line 53 of file SCT_FwdSensor.h.

53 {return m_innerWidth;}

◆ innerWidthF()

double SCT_FwdSensor::innerWidthF ( ) const
inline

Definition at line 75 of file SCT_FwdSensor.h.

75 {return m_innerWidthF;}

◆ innerWidthN()

double SCT_FwdSensor::innerWidthN ( ) const
inline

Definition at line 70 of file SCT_FwdSensor.h.

70 {return m_innerWidthN;}

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

Definition at line 62 of file SCT_FwdSensor.h.

62 {return m_outerRadius - m_innerRadius;}

◆ lengthF()

double SCT_FwdSensor::lengthF ( ) const
inline

Definition at line 76 of file SCT_FwdSensor.h.

76 {return m_lengthF;}

◆ lengthN()

double SCT_FwdSensor::lengthN ( ) const
inline

Definition at line 71 of file SCT_FwdSensor.h.

71 {return m_lengthN;}

◆ makeDesign()

void SCT_FwdSensor::makeDesign ( )
private

Definition at line 170 of file SCT_FwdSensor.cxx.

171 {
172 
173  // The designs require a name when put in the collection
174  // but usually the design is accessed through SiDetectorElement
175  // and so is not generally acessesed through the DesignCollection.
176 
177  // Design names are no longer used/needed, but might be used in the future for
178  // information purposes.
179  /*
180  std::string designName;
181  switch (m_ringType) {
182  case 0: // Outer
183  designName = "SCT:ForwardRing1G3";
184  break;
185  case 1: // Middle
186  designName = "SCT:ForwardRing2G3";
187  break;
188  case 2: // Truncated Middle
189  designName = "SCT:ForwardRing3G3";
190  break;
191  case 3: // Inner
192  designName = "SCT:ForwardRing4G3";
193  break;
194  default:
195  break;
196  }
197  */
198 
199  // These can no longer be user defined and are ignored.
200  //SiDetectorDesign::Axis etaAxis = SiDetectorDesign::zAxis;
201  //SiDetectorDesign::Axis phiAxis = SiDetectorDesign::yAxis;
202  //SiDetectorDesign::Axis depthAxis = SiDetectorDesign::xAxis;
203 
204 
205  // SCT_ForwardModuleSideDesign Constructor with parameters:
206  // local axis corresponding to eta direction
207  // local axis corresponding to phi direction
208  // local axis corresponding to depth direction
209  // thickness of silicon sensor
210  // number of crystals within module side
211  // number of diodes within crystal
212  // number of cells within module side
213  // index of diode connected to cell with index 0
214  // radius from inner crystal center to beam
215  // inner crystal half height
216  // radius from outer crystal (if present) center to beam
217  // outer crystal (if present) half height
218  // strip step in angle (same for both crystals)
219  // eta coordinate of crystal center
220  // phi coordinate of crystal center
221 
223 
224  double radius1=0;
225  double radius2=0;
226  double halfHeight1=0;
227  double halfHeight2=0;
228  int crystals=0;
229 
230  switch (m_ringType) {
231  case 0: // Outer Module
232  case 1: // Full Middle module
233  crystals = 2;
234  radius1 = m_radiusN;
235  radius2 = m_radiusF;
236  halfHeight1 = m_activeHalfLengthNear;
237  halfHeight2 = m_activeHalfLengthFar;
238  break;
239  case 2: // Truncated Middle Module
240  case 3: // Inner Module
241  crystals = 1;
242  radius1 = m_radiusF;
243  radius2 = 0.;
244  halfHeight1 = m_activeHalfLengthFar;
245  halfHeight2 = 0.;
246  break;
247  default:
248  std::cout << "ERROR!!!! SCT_FwdSensor: Invalid ring type" << std::endl;
249  }
250 
251  double etaCenter = 0;
252  double phiCenter = 0;
253 
254  //int cells = parameters->fwdSensorNumReadoutStrips();
255  //int diodes = parameters->fwdSensorNumStrips();
256  //int shift = parameters->fwdSensorStripShift();
257  // For consistency with older version we keep shift = 0.
258  int cells = parameters->fwdSensorNumReadoutStrips(m_ringType);
259  int diodes = cells;
260  int shift = 0;
261 
262  double step = parameters->fwdSensorAngularPitch(m_ringType);
263 
264  // Readout direction is same direction as local phi direction for outer module
265  // and the opposite direction for inner and middle module.
266  bool swapStripReadout = (m_ringType != 0); // ie false for outer module only.
267 
268  // The readout side is at the +ve depth direction
269  int readoutSide = +1;
270 
271  // m_design will be owned and deleted by SCT_DetectorManager
272  std::unique_ptr<SCT_ForwardModuleSideDesign> design = std::make_unique<SCT_ForwardModuleSideDesign>(m_thicknessN,
273  crystals,
274  diodes,
275  cells,
276  shift,
277  swapStripReadout,
279  radius1,
280  halfHeight1,
281  radius2,
282  halfHeight2,
283  step,
284  etaCenter,
285  phiCenter,
286  readoutSide);
287  m_design = m_detectorManager->addDesign(std::move(design));
288 
289  //
290  // Flags to signal if axis can be swapped.
291  // For trapezoid z axis (xEta) cannot be swapped.
292  // This is the default and no action is required.
293  // Can force axes not to be swapped by setting to false.
294  //
295  // bool phiSyGaudi::Units::mmetric = true;
296  // bool etaSyGaudi::Units::mmetric = false;
297  // bool depthSyGaudi::Units::mmetric = true;
298  // m_design->setSyGaudi::Units::mmetry(phiSyGaudi::Units::mmetric, etaSyGaudi::Units::mmetric, depthSyGaudi::Units::mmetric,
299  //
300 
301 }

◆ outerRadius()

double SCT_FwdSensor::outerRadius ( ) const
inline

Definition at line 50 of file SCT_FwdSensor.h.

50 {return m_outerRadius;}

◆ outerWidth()

double SCT_FwdSensor::outerWidth ( ) const
inline

Definition at line 56 of file SCT_FwdSensor.h.

56 {return m_outerWidth;}

◆ outerWidthF()

double SCT_FwdSensor::outerWidthF ( ) const
inline

Definition at line 74 of file SCT_FwdSensor.h.

74 {return m_outerWidthF;}

◆ outerWidthN()

double SCT_FwdSensor::outerWidthN ( ) const
inline

Definition at line 69 of file SCT_FwdSensor.h.

69 {return m_outerWidthN;}

◆ preBuild()

const GeoLogVol * SCT_FwdSensor::preBuild ( )
privatevirtual

Implements SCT_UniqueComponentFactory.

Definition at line 118 of file SCT_FwdSensor.cxx.

119 {
120  const GeoLogVol * sensorLog=nullptr;
121  if(!m_sqliteReader){
122 
123  const GeoTrd * sensorShapeF = new GeoTrd(0.5 * m_thicknessF, 0.5 * m_thicknessF,
124  0.5 * m_innerWidthF, 0.5 * m_outerWidthF,
125  0.5 * m_lengthF);
126 
127 
128  const GeoTrd * sensorShapeN= nullptr;
129  if (m_ringType != 3) {
130  sensorShapeN= new GeoTrd(0.5 * m_thicknessN, 0.5 * m_thicknessN,
131  0.5 * m_innerWidthN, 0.5 * m_outerWidthN,
132  0.5 * m_lengthN);
133  }
134 
135 
136  const GeoShape * sensorShape = nullptr;
137  if ((m_ringType == 2) || (m_ringType == 3)) {
138  // For truncated middle and inner there is only one wafer.
139  sensorShape = sensorShapeF;
140  } else {
141  // For outer and middle there are two wafers. We
142  // define the sensor as a boolean volume of the two wafers.
143  // relative position of near sensor
144  double positionNearZ = m_radiusN - m_sensorRadius;
145  const GeoShape & sensorPosN = (*sensorShapeN<< GeoTrf::TranslateZ3D(positionNearZ)) ;
146  // relative position of near sensor
147  double positionFarZ = m_radiusF - m_sensorRadius;
148  const GeoShape & sensorPosF = (*sensorShapeF<< GeoTrf::TranslateZ3D(positionFarZ) );
149  sensorShape = &(sensorPosF.add(sensorPosN));
150  }
151 
152  sensorLog = new GeoLogVol(getName(), sensorShape, m_materialSensor);
153 
154 
155  if (m_ringType == 2) {
156  // Make inactive glass sensor.
157  double positionZ = m_radiusN - m_sensorRadius;
158  const GeoShape & sensorPosN = (*sensorShapeN<< GeoTrf::TranslateZ3D(positionZ) );
159  GeoLogVol * inactiveLog = new GeoLogVol(getName()+"Glass", &sensorPosN, m_materialGlass);
160  m_inactive = new GeoPhysVol(inactiveLog);
161  }
162  }
163 
164  // Make the moduleside design for this sensor
165  makeDesign();
166 
167  return sensorLog;
168 }

◆ ringType()

int SCT_FwdSensor::ringType ( ) const
inline

Definition at line 43 of file SCT_FwdSensor.h.

43 {return m_ringType;}

◆ sensorOffset()

double SCT_FwdSensor::sensorOffset ( ) const
inline

Definition at line 66 of file SCT_FwdSensor.h.

66 {return m_sensorOffset;}

◆ thickness()

double SCT_FwdSensor::thickness ( ) const
inline

Definition at line 59 of file SCT_FwdSensor.h.

59 {return m_thickness;}

◆ thicknessF()

double SCT_FwdSensor::thicknessF ( ) const
inline

Definition at line 77 of file SCT_FwdSensor.h.

77 {return m_thicknessF;}

◆ thicknessN()

double SCT_FwdSensor::thicknessN ( ) const
inline

Definition at line 72 of file SCT_FwdSensor.h.

72 {return m_thicknessN;}

Member Data Documentation

◆ m_activeHalfLengthFar

double SCT_FwdSensor::m_activeHalfLengthFar = 0.0
private

Definition at line 110 of file SCT_FwdSensor.h.

◆ m_activeHalfLengthNear

double SCT_FwdSensor::m_activeHalfLengthNear = 0.0
private

Definition at line 103 of file SCT_FwdSensor.h.

◆ m_design

const InDetDD::SiDetectorDesign* SCT_FwdSensor::m_design = nullptr
private

Definition at line 122 of file SCT_FwdSensor.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_inactive

GeoIntrusivePtr<GeoPhysVol> SCT_FwdSensor::m_inactive = nullptr
private

Definition at line 120 of file SCT_FwdSensor.h.

◆ m_innerRadius

double SCT_FwdSensor::m_innerRadius = 0.0
private

Definition at line 93 of file SCT_FwdSensor.h.

◆ m_innerWidth

double SCT_FwdSensor::m_innerWidth = 0.0
private

Definition at line 94 of file SCT_FwdSensor.h.

◆ m_innerWidthF

double SCT_FwdSensor::m_innerWidthF = 0.0
private

Definition at line 106 of file SCT_FwdSensor.h.

◆ m_innerWidthN

double SCT_FwdSensor::m_innerWidthN = 0.0
private

Definition at line 99 of file SCT_FwdSensor.h.

◆ m_lengthF

double SCT_FwdSensor::m_lengthF = 0.0
private

Definition at line 107 of file SCT_FwdSensor.h.

◆ m_lengthN

double SCT_FwdSensor::m_lengthN = 0.0
private

Definition at line 100 of file SCT_FwdSensor.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_materialGlass

const GeoMaterial* SCT_FwdSensor::m_materialGlass = nullptr
private

Definition at line 118 of file SCT_FwdSensor.h.

◆ m_materials

SCT_MaterialManager* SCT_ComponentFactory::m_materials
protectedinherited

Definition at line 43 of file SCT_ComponentFactory.h.

◆ m_materialSensor

const GeoMaterial* SCT_FwdSensor::m_materialSensor = nullptr
private

Definition at line 117 of file SCT_FwdSensor.h.

◆ m_name

std::string SCT_ComponentFactory::m_name
privateinherited

Definition at line 49 of file SCT_ComponentFactory.h.

◆ m_noElementWarning

std::atomic_bool SCT_FwdSensor::m_noElementWarning
mutableprivate

Definition at line 124 of file SCT_FwdSensor.h.

◆ m_outerRadius

double SCT_FwdSensor::m_outerRadius = 0.0
private

Definition at line 92 of file SCT_FwdSensor.h.

◆ m_outerWidth

double SCT_FwdSensor::m_outerWidth = 0.0
private

Definition at line 95 of file SCT_FwdSensor.h.

◆ m_outerWidthF

double SCT_FwdSensor::m_outerWidthF = 0.0
private

Definition at line 105 of file SCT_FwdSensor.h.

◆ m_outerWidthN

double SCT_FwdSensor::m_outerWidthN = 0.0
private

Definition at line 98 of file SCT_FwdSensor.h.

◆ m_radiusF

double SCT_FwdSensor::m_radiusF = 0.0
private

Definition at line 109 of file SCT_FwdSensor.h.

◆ m_radiusN

double SCT_FwdSensor::m_radiusN = 0.0
private

Definition at line 102 of file SCT_FwdSensor.h.

◆ m_ringType

int SCT_FwdSensor::m_ringType {}
private

Definition at line 89 of file SCT_FwdSensor.h.

◆ m_sensorOffset

double SCT_FwdSensor::m_sensorOffset = 0.0
private

Definition at line 114 of file SCT_FwdSensor.h.

◆ m_sensorRadius

double SCT_FwdSensor::m_sensorRadius = 0.0
private

Definition at line 112 of file SCT_FwdSensor.h.

◆ m_sqliteReader

GeoModelIO::ReadGeoModel* SCT_UniqueComponentFactory::m_sqliteReader
protectedinherited

Definition at line 91 of file SCT_ComponentFactory.h.

◆ m_thickness

double SCT_FwdSensor::m_thickness = 0.0
private

Definition at line 91 of file SCT_FwdSensor.h.

◆ m_thicknessF

double SCT_FwdSensor::m_thicknessF = 0.0
private

Definition at line 108 of file SCT_FwdSensor.h.

◆ m_thicknessN

double SCT_FwdSensor::m_thicknessN = 0.0
private

Definition at line 101 of file SCT_FwdSensor.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_FwdSensor::ringType
int ringType() const
Definition: SCT_FwdSensor.h:43
SCT_FwdSensor::m_lengthF
double m_lengthF
Definition: SCT_FwdSensor.h:107
RunTileCalibRec.cells
cells
Definition: RunTileCalibRec.py:271
SCT_ComponentFactory::m_geometryManager
SCT_GeometryManager * m_geometryManager
Definition: SCT_ComponentFactory.h:42
SCT_FwdSensor::m_ringType
int m_ringType
Definition: SCT_FwdSensor.h:89
SCT_GeometryManager::forwardModuleParameters
const SCT_ForwardModuleParameters * forwardModuleParameters() const
Definition: SCT_GeometryManager.cxx:91
SCT_ComponentFactory::m_name
std::string m_name
Definition: SCT_ComponentFactory.h:49
SCT_FwdSensor::m_lengthN
double m_lengthN
Definition: SCT_FwdSensor.h:100
max
#define max(a, b)
Definition: cfImp.cxx:41
SCT_FwdSensor::m_radiusN
double m_radiusN
Definition: SCT_FwdSensor.h:102
InDetDD::SiCommonItems::getIdHelper
const AtlasDetectorID * getIdHelper() const
Definition: SiCommonItems.h:83
InDetDD::holes
@ holes
Definition: InDetDD_Defs.h:17
SCT_FwdSensor::m_activeHalfLengthNear
double m_activeHalfLengthNear
Definition: SCT_FwdSensor.h:103
SCT_GeometryManager::commonItems
const InDetDD::SiCommonItems * commonItems() const
Definition: SCT_GeometryManager.cxx:66
SCT_FwdSensor::m_inactive
GeoIntrusivePtr< GeoPhysVol > m_inactive
Definition: SCT_FwdSensor.h:120
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_FwdSensor::m_outerWidthN
double m_outerWidthN
Definition: SCT_FwdSensor.h:98
InDetDD::SiDetectorManager::addDesign
const SiDetectorDesign * addDesign(std::unique_ptr< const SiDetectorDesign > &&)
Access to module design; returns an observer pointer.
Definition: SiDetectorManager.cxx:134
SCT_FwdSensor::m_thicknessF
double m_thicknessF
Definition: SCT_FwdSensor.h:108
SCT_ComponentFactory::m_detectorManager
InDetDD::SCT_DetectorManager * m_detectorManager
Definition: SCT_ComponentFactory.h:41
SCT_FwdSensor::m_outerWidthF
double m_outerWidthF
Definition: SCT_FwdSensor.h:105
SCT_FwdSensor::m_materialSensor
const GeoMaterial * m_materialSensor
Definition: SCT_FwdSensor.h:117
SCT_ForwardModuleParameters
Definition: SCT_ForwardModuleParameters.h:12
lumiFormat.i
int i
Definition: lumiFormat.py:85
SCT_FwdSensor::m_thickness
double m_thickness
Definition: SCT_FwdSensor.h:91
SCT_FwdSensor::preBuild
virtual const GeoLogVol * preBuild()
Definition: SCT_FwdSensor.cxx:118
SCT_FwdSensor::m_sensorRadius
double m_sensorRadius
Definition: SCT_FwdSensor.h:112
SCT_FwdSensor::m_radiusF
double m_radiusF
Definition: SCT_FwdSensor.h:109
SCT_ComponentFactory::s_epsilon
static const double s_epsilon
Definition: SCT_ComponentFactory.h:50
SCT_FwdSensor::m_outerWidth
double m_outerWidth
Definition: SCT_FwdSensor.h:95
SCT_ComponentFactory::m_materials
SCT_MaterialManager * m_materials
Definition: SCT_ComponentFactory.h:43
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:221
InDetDD::SiCommonItems
Definition: SiCommonItems.h:45
ActsTrk::to_string
std::string to_string(const DetectorType &type)
Definition: GeometryDefs.h:34
InDetDD::SiDetectorElement
Definition: SiDetectorElement.h:109
SCT_FwdSensor::m_innerWidth
double m_innerWidth
Definition: SCT_FwdSensor.h:94
SCT_UniqueComponentFactory::m_logVolume
const GeoLogVol * m_logVolume
Definition: SCT_ComponentFactory.h:90
SCT_FwdSensor::m_thicknessN
double m_thicknessN
Definition: SCT_FwdSensor.h:101
SCT_MaterialManager::getMaterial
const GeoMaterial * getMaterial(const std::string &materialName)
Definition: SCT_MaterialManager.cxx:40
python.CaloScaleNoiseConfig.str
str
Definition: CaloScaleNoiseConfig.py:78
SCT_FwdSensor::m_innerWidthN
double m_innerWidthN
Definition: SCT_FwdSensor.h:99
InDetDD::SCT_DetectorManager::addDetectorElement
virtual void addDetectorElement(SiDetectorElement *element) override
Add elememts during construction.
Definition: SCT_DetectorManager.cxx:104
SCT_FwdSensor::m_innerRadius
double m_innerRadius
Definition: SCT_FwdSensor.h:93
LArCellBinning.step
step
Definition: LArCellBinning.py:158
physics_parameters.parameters
parameters
Definition: physics_parameters.py:144
SCT_FwdSensor::getParameters
void getParameters()
Definition: SCT_FwdSensor.cxx:62
str
Definition: BTagTrackIpAccessor.cxx:11
SCT_UniqueComponentFactory::m_sqliteReader
GeoModelIO::ReadGeoModel * m_sqliteReader
Definition: SCT_ComponentFactory.h:91
SCT_FwdSensor::m_materialGlass
const GeoMaterial * m_materialGlass
Definition: SCT_FwdSensor.h:118
SCT_ComponentFactory::getName
const std::string & getName() const
Definition: SCT_ComponentFactory.h:35
SCT_FwdSensor::m_activeHalfLengthFar
double m_activeHalfLengthFar
Definition: SCT_FwdSensor.h:110
SCT_FwdSensor::m_sensorOffset
double m_sensorOffset
Definition: SCT_FwdSensor.h:114
SCT_FwdSensor::makeDesign
void makeDesign()
Definition: SCT_FwdSensor.cxx:170
SCT_FwdSensor::m_outerRadius
double m_outerRadius
Definition: SCT_FwdSensor.h:92
SCT_FwdSensor::m_design
const InDetDD::SiDetectorDesign * m_design
Definition: SCT_FwdSensor.h:122
mapkey::key
key
Definition: TElectronEfficiencyCorrectionTool.cxx:37
SCT_FwdSensor::m_noElementWarning
std::atomic_bool m_noElementWarning
Definition: SCT_FwdSensor.h:124
SCT_FwdSensor::m_innerWidthF
double m_innerWidthF
Definition: SCT_FwdSensor.h:106