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

#include <SCT_FwdModule.h>

Inheritance diagram for SCT_FwdModule:
Collaboration diagram for SCT_FwdModule:

Public Member Functions

 SCT_FwdModule (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_FwdModule ()
 SCT_FwdModule (const SCT_FwdModule &)=delete
SCT_FwdModuleoperator= (const SCT_FwdModule &)=delete
int ringType () const
virtual GeoVPhysVol * build (SCT_Identifier id)
double stereoAngle () const
double moduleShift () const
double length () const
double outerWidth () const
double innerWidth () const
double thickness () const
double innerRadius () const
double outerRadius () const
double centerRadius () const
double sensorCenterRadius () const
double powerTapeStart () const
double mainMountPointRadius () const
double secMountPointRadius () const
double endModuleRadius () const
const std::string & getName () const
std::string intToString (int i) const

Public Attributes

std::unique_ptr< SCT_FwdSensorm_sensor
std::unique_ptr< SCT_FwdModuleConnectorm_connector
std::unique_ptr< SCT_FwdHybridm_hybrid
std::unique_ptr< SCT_FwdSpinem_spine
std::unique_ptr< SCT_FwdSubSpinem_subspineL
std::unique_ptr< SCT_FwdSubSpinem_subspineR

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_ringType
double m_stereoAngle = 0.0
double m_length = 0.0
double m_widthOuter = 0.0
double m_widthInner = 0.0
double m_thickness = 0.0
double m_moduleShift = 0.0
double m_glueThickness = 0.0
double m_distBtwMountPoints = 0.0
double m_mountPointToCenter = 0.0
bool m_hybridIsOnInnerEdge = false
int m_upperSide = 0
double m_innerRadius = 0.0
double m_outerRadius = 0.0
double m_powerTapeStart = 0.0
double m_mainMountPoint = 0.0
double m_secMountPoint = 0.0
double m_endLocator = 0.0
bool m_connectorPresent = false
std::string m_name

Static Private Attributes

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

Detailed Description

Definition at line 26 of file SCT_FwdModule.h.

Constructor & Destructor Documentation

◆ SCT_FwdModule() [1/2]

SCT_FwdModule::SCT_FwdModule ( 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 50 of file SCT_FwdModule.cxx.

57 : SCT_UniqueComponentFactory(name, detectorManager, geometryManager, materials, sqliteReader, std::move(mapFPV), std::move(mapAX)),
59{
62 {
63 m_hybrid = std::make_unique<SCT_FwdHybrid>("SCT_FwdHybrid"+intToString(ringType), m_ringType, m_detectorManager, m_geometryManager, materials);
64 m_spine = std::make_unique<SCT_FwdSpine>("SCT_FwdSpine"+intToString(ringType), m_ringType, m_detectorManager, m_geometryManager, materials);
65 m_subspineL = std::make_unique<SCT_FwdSubSpine>("SCT_FwdSubSpineL"+intToString(ringType), m_ringType, SUBSPINE_LEFT,
67 m_subspineR = std::make_unique<SCT_FwdSubSpine>("SCT_FwdSubSpineR"+intToString(ringType), m_ringType, SUBSPINE_RIGHT,
70 m_connector = std::make_unique<SCT_FwdModuleConnector>("SCT_FwdModuleConnector"+intToString(ringType), m_ringType,
72 }
73 }
74 m_sensor = std::make_unique<SCT_FwdSensor>("ECSensor"+intToString(ringType), m_ringType,
77
78}
#define SUBSPINE_RIGHT
#define SUBSPINE_LEFT
std::string intToString(int i) const
InDetDD::SCT_DetectorManager * m_detectorManager
SCT_GeometryManager * m_geometryManager
int ringType() const
std::unique_ptr< SCT_FwdSensor > m_sensor
std::unique_ptr< SCT_FwdModuleConnector > m_connector
std::unique_ptr< SCT_FwdSubSpine > m_subspineR
std::unique_ptr< SCT_FwdSpine > m_spine
bool m_connectorPresent
virtual const GeoLogVol * preBuild()
std::unique_ptr< SCT_FwdHybrid > m_hybrid
std::unique_ptr< SCT_FwdSubSpine > m_subspineL
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)
std::shared_ptr< std::map< std::string, GeoFullPhysVol * > > m_mapFPV
std::shared_ptr< std::map< std::string, GeoAlignableTransform * > > m_mapAX
GeoModelIO::ReadGeoModel * m_sqliteReader

◆ ~SCT_FwdModule()

SCT_FwdModule::~SCT_FwdModule ( )

Definition at line 80 of file SCT_FwdModule.cxx.

81{
82}

◆ SCT_FwdModule() [2/2]

SCT_FwdModule::SCT_FwdModule ( const SCT_FwdModule & )
delete

Member Function Documentation

◆ build()

GeoVPhysVol * SCT_FwdModule::build ( SCT_Identifier id)
virtual

Implements SCT_UniqueComponentFactory.

Definition at line 175 of file SCT_FwdModule.cxx.

176{
177
178 // build method for creating module parent physical volume
179 // and puting all components into it
180 // - relative position of component is part of its shape
181 GeoFullPhysVol * module=nullptr;
182
183 if(!m_sqliteReader){
184
185 module= new GeoFullPhysVol(m_logVolume);
186
187 if (m_connector != nullptr) module->add(m_connector->getVolume());
188 module->add(m_hybrid->getVolume());
189 module->add(m_spine->getVolume());
190 module->add(m_subspineL->getVolume());
191 module->add(m_subspineR->getVolume());
192
193
194 // name tags are not final
195
196
197 // Position bottom (x<0)sensor
198 double positionX;
199 double positionZ = m_sensor->sensorOffset(); // For truncated middle the sensor is offset.
200 double rotation;
201 positionX =-(0.5*m_spine->thickness() + m_glueThickness + 0.5*m_sensor->thickness());
202 rotation = 0.5 * m_stereoAngle;
203 GeoTrf::Translation3D vecB(positionX,0,0);
204 // Rotate so that X axis goes from backside to implant side
205 GeoTrf::Transform3D rotB = GeoTrf::RotateX3D(rotation)*GeoTrf::RotateZ3D(180*Gaudi::Units::degree);
206 // First translate in z (only non-zero for truncated middle)
207 // Then rotate and then translate in x.
208 GeoAlignableTransform *bottomTransform
209 = new GeoAlignableTransform(GeoTrf::Transform3D(vecB*rotB)*GeoTrf::TranslateZ3D(positionZ));
210
211 int bottomSideNumber = (m_upperSide) ? 0 : 1;
212 id.setSide(bottomSideNumber);
213 module->add(new GeoNameTag("Sensor_Side#"+intToString(bottomSideNumber)));
214 module->add(new GeoIdentifierTag(600+bottomSideNumber));
215 module->add(bottomTransform);
216 GeoVPhysVol * bottomSensorPV = m_sensor->build(id);
217 module->add(bottomSensorPV);
218
219 // Store transform
220 m_detectorManager->addAlignableTransform(0, id.getWaferId(), bottomTransform, bottomSensorPV);
221
222
223 if (m_ringType == 2) { // Place glass pieces in place of sensor
224 module->add(new GeoTransform(GeoTrf::Transform3D(vecB*rotB)));
225 module->add(m_sensor->getInactive());
226 }
227
228 // Position top (x>0) sensor
229 positionX=-positionX;
231 GeoTrf::RotateX3D rotT(rotation);
232 //rotT.rotateZ(180*Gaudi::Units::degree); // Rotate so that X axis goes from implant side to backside
233 GeoTrf::Translation3D vecT(positionX,0,0);
234 // First translate in z (only non-zero for truncated middle)
235 // Then rotate and then translate in x.
236 GeoAlignableTransform *topTransform
237 = new GeoAlignableTransform(GeoTrf::Transform3D(vecT*rotT)*GeoTrf::TranslateZ3D(positionZ));
238
239 int topSideNumber = m_upperSide;
240 id.setSide(topSideNumber);
241 module->add(new GeoNameTag("Sensor_Side#"+intToString(topSideNumber)));
242 module->add(new GeoIdentifierTag(600+topSideNumber));
243 module->add(topTransform);
244 GeoVPhysVol * topSensorPV = m_sensor->build(id);
245 module->add(topSensorPV);
246
247 // Store transform
248 m_detectorManager->addAlignableTransform(0, id.getWaferId(), topTransform, topSensorPV);
249
250 if (m_ringType == 2) { // Place glass pieces in place of sensor
251 module->add(new GeoTransform(GeoTrf::Transform3D(vecT*rotT)));
252 module->add(m_sensor->getInactive());
253 };
254 }
255 else{
256
257 int bottomSideNumber = (m_upperSide) ? 0 : 1;
258 id.setSide(bottomSideNumber);
259 m_sensor->build(id);
260
261 // Store transform
262 std::string key="FwdSensor_Side#"+std::to_string(bottomSideNumber)+"_"+std::to_string(id.getBarrelEC())+"_"+std::to_string(id.getLayerDisk())+"_"+std::to_string(id.getEtaModule())+"_"+std::to_string(id.getPhiModule());
263 m_detectorManager->addAlignableTransform(0, id.getWaferId(), (*m_mapAX)[key], (*m_mapFPV)[key]);
264
265 int topSideNumber = m_upperSide;
266 id.setSide(topSideNumber);
267
268 m_sensor->build(id);
269
270 key="FwdSensor_Side#"+std::to_string(topSideNumber)+"_"+std::to_string(id.getBarrelEC())+"_"+std::to_string(id.getLayerDisk())+"_"+std::to_string(id.getEtaModule())+"_"+std::to_string(id.getPhiModule());
271
272 // Store transform
273 m_detectorManager->addAlignableTransform(0, id.getWaferId(), (*m_mapAX)[key], (*m_mapFPV)[key]);
274
275 }
276 return module;
277
278}
double m_stereoAngle
double m_glueThickness

◆ centerRadius()

double SCT_FwdModule::centerRadius ( ) const
inline

Definition at line 59 of file SCT_FwdModule.h.

59{return 0.5 * (m_innerRadius + m_outerRadius);}
double m_outerRadius
double m_innerRadius

◆ endModuleRadius()

double SCT_FwdModule::endModuleRadius ( ) const
inline

Definition at line 65 of file SCT_FwdModule.h.

65{return m_endLocator;}
double m_endLocator

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

Definition at line 86 of file SCT_FwdModule.cxx.

87{
88 const SCT_ForwardModuleParameters * parameters = m_geometryManager->forwardModuleParameters();
89 m_upperSide = parameters->fwdModuleUpperSideNumber(m_ringType);
91 {
92 m_glueThickness = parameters->fwdModuleGlueThickness(m_ringType);
93 m_distBtwMountPoints = parameters->fwdModuleDistBtwMountPoints(m_ringType);
94 m_mountPointToCenter = parameters->fwdModuleMountPoint(m_ringType);
95 m_hybridIsOnInnerEdge = parameters->fwdHybridIsOnInnerEdge(m_ringType);
96 m_stereoAngle = parameters->fwdModuleStereoAngle(m_ringType);
97 m_connectorPresent = parameters->fwdModuleConnectorPresent();
98
99 }
100
101}
double m_mountPointToCenter
double m_distBtwMountPoints
bool m_hybridIsOnInnerEdge

◆ innerRadius()

double SCT_FwdModule::innerRadius ( ) const
inline

Definition at line 56 of file SCT_FwdModule.h.

56{return m_innerRadius;}

◆ innerWidth()

double SCT_FwdModule::innerWidth ( ) const
inline

Definition at line 53 of file SCT_FwdModule.h.

53{return m_widthInner;}
double m_widthInner

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

Definition at line 51 of file SCT_FwdModule.h.

51{return m_length;}

◆ mainMountPointRadius()

double SCT_FwdModule::mainMountPointRadius ( ) const
inline

Definition at line 63 of file SCT_FwdModule.h.

63{return m_mainMountPoint;}
double m_mainMountPoint

◆ moduleShift()

double SCT_FwdModule::moduleShift ( ) const
inline

Definition at line 49 of file SCT_FwdModule.h.

49{return m_moduleShift;}
double m_moduleShift

◆ operator=()

SCT_FwdModule & SCT_FwdModule::operator= ( const SCT_FwdModule & )
delete

◆ outerRadius()

double SCT_FwdModule::outerRadius ( ) const
inline

Definition at line 57 of file SCT_FwdModule.h.

57{return m_outerRadius;}

◆ outerWidth()

double SCT_FwdModule::outerWidth ( ) const
inline

Definition at line 52 of file SCT_FwdModule.h.

52{return m_widthOuter;}
double m_widthOuter

◆ powerTapeStart()

double SCT_FwdModule::powerTapeStart ( ) const
inline

Definition at line 61 of file SCT_FwdModule.h.

61{return m_powerTapeStart;}
double m_powerTapeStart

◆ preBuild()

const GeoLogVol * SCT_FwdModule::preBuild ( )
privatevirtual

Implements SCT_UniqueComponentFactory.

Definition at line 104 of file SCT_FwdModule.cxx.

105{
106 // module volume preparing
107
108 if(m_sqliteReader) return nullptr;
109
110 const SCT_GeneralParameters * generalParameters = m_geometryManager->generalParameters();
111 double safety = generalParameters->safety();
112 double safetyTmp = safety * Gaudi::Units::cm; // For compatibility with minor bug in older version - safety already in CLHEP units;
113
114 // module_length = (zhyb->hyby - zhyb->hybysh + zsmi[m_ringType].mountd2 + 0.33 ) * Gaudi::Units::cm + safety;
115 // Distance from outer bybrid edge to outer spine edge.
116 // FIXME: The 1.05Gaudi::Units::mm is not needed
117 double moduleLength = m_hybrid->mountPointToOuterEdge() + m_mountPointToCenter + m_spine->moduleCenterToEnd() + 1.05 * Gaudi::Units::mm;
118 m_length = moduleLength + safety; // We add a bit of safety for the envelope
119
120 // module_thickness = (zhyb->hybz0 * 2 + safety) * Gaudi::Units::cm;
121 double sensorEnvelopeThickness = 2 * m_sensor->thickness() + m_spine->thickness() + 2 * m_glueThickness;
122 m_thickness = std::max(sensorEnvelopeThickness, m_hybrid->thickness());
123
124 // module_widthInner = ((zsmo->subdq + zssp[m_ringType].ssp0l + 0.325) * 2.+ 0.7 + safety)*Gaudi::Units::cm; // upto to NOVA_760
125 // module_widthOuter = ((zsmo->subdq + zssp[m_ringType].ssp2l + 0.325) * 2.+ 0.7 + safety)*Gaudi::Units::cm; // upto to NOVA_760
126
127 //module_widthInner = ((zsmo->subdq + zssp[m_ringType].ssp0l) * 2.+ 0.7 + safety)*Gaudi::Units::cm;
128 //module_widthOuter = ((zsmo->subdq + zssp[m_ringType].ssp2l) * 2.+ 0.7 + safety)*Gaudi::Units::cm;
129
130 m_widthInner = (m_spine->width() + 2 * m_subspineL->innerWidth() + 0.7*Gaudi::Units::cm) + safetyTmp;
131 m_widthOuter = (m_spine->width() + 2 * m_subspineL->outerWidth() + 0.7*Gaudi::Units::cm) + safetyTmp;
132
133 if (m_ringType == 3 ) {
134 // module_widthOuter = (( zsmo->subdq + zssp[m_ringType].ssp2l + 0.325) * 2.+ 1.6 + safety)*Gaudi::Units::cm; // upto to NOVA_760
135 // module_widthOuter = (( zsmo->subdq + zssp[m_ringType].ssp2l) * 2.+ 1.6 + safety)*Gaudi::Units::cm;
136 m_widthOuter = m_spine->width() + 2 * m_subspineL->outerWidth() + 1.6*Gaudi::Units::cm + safetyTmp;
137 }
138
139 // Calculate module shift. Distance between module physics center and center of envelope.
140 int hybridSign = m_hybridIsOnInnerEdge ? +1: -1;
141 //module_shift = (zhyb->hyby - zhyb->hybysh + zsmi[m_ringType].mountd + 0.05)*Gaudi::Units::cm;
142 //module_shift = hybrid * (module_length / 2. - module_shift);
143
144 double moduleCenterToHybridOuterEdge = m_hybrid->mountPointToOuterEdge() + m_mountPointToCenter + 0.5*Gaudi::Units::mm;
145 //FIXME: Should be: (ie don't need the 0.5Gaudi::Units::mm)
146 // double moduleCenterToHybridOuterEdge = m_hybrid->mountPointToOuterEdge() + m_mountPointToCenter ;
147 m_moduleShift = hybridSign * (0.5 * m_length - moduleCenterToHybridOuterEdge);
148
149 // Envelope inner/outer radius
150 m_innerRadius = m_sensor->centerRadius() + m_moduleShift - 0.5*m_length;
151 m_outerRadius = m_sensor->centerRadius() + m_moduleShift + 0.5*m_length;
152
153 // Radial location of mount points (ignoring streo rotation)
154 m_mainMountPoint = m_sensor->centerRadius() - hybridSign * m_mountPointToCenter;
156 m_endLocator = m_sensor->centerRadius() + hybridSign * m_spine->moduleCenterToEnd();
157
158 // Outer module the hybrid is on inner edge.
159 // For the rest its in the outer edge.
160 // TODO Check this.
161 m_powerTapeStart = m_sensor->centerRadius() - hybridSign * moduleCenterToHybridOuterEdge;
162
163
164 const GeoTrd * moduleEnvelopeShape = new GeoTrd(0.5 * m_thickness, 0.5 * m_thickness,
165 0.5 * m_widthInner, 0.5 * m_widthOuter,
166 0.5 * m_length);
167 const GeoShapeShift & moduleEnvelope = (*moduleEnvelopeShape << GeoTrf::TranslateZ3D(m_moduleShift) );
168
169 GeoLogVol * moduleLog = new GeoLogVol(getName(), &moduleEnvelope, m_materials->gasMaterial());
170
171 return moduleLog;
172
173}
const std::string & getName() const
SCT_MaterialManager * m_materials
double m_secMountPoint

◆ ringType()

int SCT_FwdModule::ringType ( ) const
inline

Definition at line 43 of file SCT_FwdModule.h.

43{return m_ringType;}

◆ secMountPointRadius()

double SCT_FwdModule::secMountPointRadius ( ) const
inline

Definition at line 64 of file SCT_FwdModule.h.

64{return m_secMountPoint;}

◆ sensorCenterRadius()

double SCT_FwdModule::sensorCenterRadius ( ) const
inline

Definition at line 60 of file SCT_FwdModule.h.

60{return m_sensor->centerRadius();}

◆ stereoAngle()

double SCT_FwdModule::stereoAngle ( ) const
inline

Definition at line 47 of file SCT_FwdModule.h.

47{return m_stereoAngle;}

◆ thickness()

double SCT_FwdModule::thickness ( ) const
inline

Definition at line 54 of file SCT_FwdModule.h.

54{return m_thickness;}

Member Data Documentation

◆ m_connector

std::unique_ptr<SCT_FwdModuleConnector> SCT_FwdModule::m_connector

Definition at line 99 of file SCT_FwdModule.h.

◆ m_connectorPresent

bool SCT_FwdModule::m_connectorPresent = false
private

Definition at line 94 of file SCT_FwdModule.h.

◆ m_detectorManager

InDetDD::SCT_DetectorManager* SCT_ComponentFactory::m_detectorManager
protectedinherited

Definition at line 41 of file SCT_ComponentFactory.h.

◆ m_distBtwMountPoints

double SCT_FwdModule::m_distBtwMountPoints = 0.0
private

Definition at line 81 of file SCT_FwdModule.h.

◆ m_endLocator

double SCT_FwdModule::m_endLocator = 0.0
private

Definition at line 92 of file SCT_FwdModule.h.

◆ m_geometryManager

SCT_GeometryManager* SCT_ComponentFactory::m_geometryManager
protectedinherited

Definition at line 42 of file SCT_ComponentFactory.h.

◆ m_glueThickness

double SCT_FwdModule::m_glueThickness = 0.0
private

Definition at line 80 of file SCT_FwdModule.h.

◆ m_hybrid

std::unique_ptr<SCT_FwdHybrid> SCT_FwdModule::m_hybrid

Definition at line 100 of file SCT_FwdModule.h.

◆ m_hybridIsOnInnerEdge

bool SCT_FwdModule::m_hybridIsOnInnerEdge = false
private

Definition at line 83 of file SCT_FwdModule.h.

◆ m_innerRadius

double SCT_FwdModule::m_innerRadius = 0.0
private

Definition at line 86 of file SCT_FwdModule.h.

◆ m_length

double SCT_FwdModule::m_length = 0.0
private

Definition at line 75 of file SCT_FwdModule.h.

◆ m_logVolume

const GeoLogVol* SCT_UniqueComponentFactory::m_logVolume
protectedinherited

Definition at line 90 of file SCT_ComponentFactory.h.

◆ m_mainMountPoint

double SCT_FwdModule::m_mainMountPoint = 0.0
private

Definition at line 90 of file SCT_FwdModule.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_moduleShift

double SCT_FwdModule::m_moduleShift = 0.0
private

Definition at line 79 of file SCT_FwdModule.h.

◆ m_mountPointToCenter

double SCT_FwdModule::m_mountPointToCenter = 0.0
private

Definition at line 82 of file SCT_FwdModule.h.

◆ m_name

std::string SCT_ComponentFactory::m_name
privateinherited

Definition at line 49 of file SCT_ComponentFactory.h.

◆ m_outerRadius

double SCT_FwdModule::m_outerRadius = 0.0
private

Definition at line 87 of file SCT_FwdModule.h.

◆ m_powerTapeStart

double SCT_FwdModule::m_powerTapeStart = 0.0
private

Definition at line 88 of file SCT_FwdModule.h.

◆ m_ringType

int SCT_FwdModule::m_ringType
private

Definition at line 72 of file SCT_FwdModule.h.

◆ m_secMountPoint

double SCT_FwdModule::m_secMountPoint = 0.0
private

Definition at line 91 of file SCT_FwdModule.h.

◆ m_sensor

std::unique_ptr<SCT_FwdSensor> SCT_FwdModule::m_sensor

Definition at line 98 of file SCT_FwdModule.h.

◆ m_spine

std::unique_ptr<SCT_FwdSpine> SCT_FwdModule::m_spine

Definition at line 101 of file SCT_FwdModule.h.

◆ m_sqliteReader

GeoModelIO::ReadGeoModel* SCT_UniqueComponentFactory::m_sqliteReader
protectedinherited

Definition at line 91 of file SCT_ComponentFactory.h.

◆ m_stereoAngle

double SCT_FwdModule::m_stereoAngle = 0.0
private

Definition at line 74 of file SCT_FwdModule.h.

◆ m_subspineL

std::unique_ptr<SCT_FwdSubSpine> SCT_FwdModule::m_subspineL

Definition at line 102 of file SCT_FwdModule.h.

◆ m_subspineR

std::unique_ptr<SCT_FwdSubSpine> SCT_FwdModule::m_subspineR

Definition at line 103 of file SCT_FwdModule.h.

◆ m_thickness

double SCT_FwdModule::m_thickness = 0.0
private

Definition at line 78 of file SCT_FwdModule.h.

◆ m_upperSide

int SCT_FwdModule::m_upperSide = 0
private

Definition at line 84 of file SCT_FwdModule.h.

◆ m_widthInner

double SCT_FwdModule::m_widthInner = 0.0
private

Definition at line 77 of file SCT_FwdModule.h.

◆ m_widthOuter

double SCT_FwdModule::m_widthOuter = 0.0
private

Definition at line 76 of file SCT_FwdModule.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: