![]() |
ATLAS Offline Software
|
#include <VolumeBuilder.h>
Public Types | |
| using | PhysVolPtr = GeoIntrusivePtr<GeoPhysVol> |
Public Member Functions | |
| VolumeBuilder (const Zone &zone, const std::vector< const ServiceVolume * > &services) | |
| VolumeBuilder (const std::vector< const ServiceVolume * > &services) | |
| VolumeBuilder (const Zone &zone, const std::vector< const ServiceVolume * > &services, const std::vector< const ServiceVolume * > &servEnv, const std::vector< const ServiceVolume * > &servChild) | |
| void | setRegion (const std::string ®ion, double zcenter) |
| void | setMaterialManager (InDetMaterialManager *matManager) |
| const std::vector< const ServiceVolume * > & | services () |
| const std::vector< const ServiceVolume * > & | servicesEnv () |
| const std::vector< const ServiceVolume * > & | servicesChild () |
| void | buildAndPlace (const std::string ®ion, GeoPhysVol *parent, double zcenter=0) |
| void | buildAndPlace (const std::string ®ion, GeoFullPhysVol *parent, double zcenter=0) |
| void | buildAndPlaceEnvelope (const std::string ®ion, GeoFullPhysVol *parent, int iParent, int iElement, double zcenter=0) |
| void | buildAndPlaceEnvelope (const std::string ®ion, GeoPhysVol *parent, int iParent, int iElement, double zcenter=0) |
| void | addServices (const Zone &zone, const std::vector< const ServiceVolume * > &services) |
| PhysVolPtr | build (int iElement) |
| int | numCopies (int iElement) |
| GeoTransform * | getPlacement (int iElement, int iCopy) |
| GeoTransform * | getPlacementEnvelope (int iElement, int iCopy, int iMothElement) |
| bool | isEnvelopeOrChild (int iElement) |
| int | getEnvelopeNum (int iElement) |
| int | getParentNum (int iElement) |
| bool | isChildService (int iElt, int iChld) |
| double | getZcenter (int iElt) |
| bool | msgLvl (const MSG::Level lvl) const |
| Test the output level. | |
| MsgStream & | msg () const |
| The standard message stream. | |
| MsgStream & | msg (const MSG::Level lvl) const |
| The standard message stream. | |
| void | setLevel (MSG::Level lvl) |
| Change the current logging level. | |
Private Member Functions | |
| void | initMessaging () const |
| Initialize our message level and MessageSvc. | |
Private Attributes | |
| std::string | m_region |
| double | m_zcenter |
| const std::vector< const ServiceVolume * > * | m_services |
| const std::vector< const ServiceVolume * > * | m_servEnvelope |
| const std::vector< const ServiceVolume * > * | m_servChild |
| VolumeSplitter | m_splitter |
| InDetMaterialManager * | m_matManager |
| std::string | m_nm |
| Message source name. | |
| boost::thread_specific_ptr< MsgStream > | m_msg_tls |
| MsgStream instance (a std::cout like with print-out levels) | |
| std::atomic< IMessageSvc * > | m_imsg { nullptr } |
| MessageSvc pointer. | |
| std::atomic< MSG::Level > | m_lvl { MSG::NIL } |
| Current logging level. | |
| std::atomic_flag m_initialized | ATLAS_THREAD_SAFE = ATOMIC_FLAG_INIT |
| Messaging initialized (initMessaging) | |
Definition at line 25 of file InnerDetector/InDetDetDescr/InDetGeoModelUtils/InDetGeoModelUtils/VolumeBuilder.h.
| using InDetDD::VolumeBuilder::PhysVolPtr = GeoIntrusivePtr<GeoPhysVol> |
Definition at line 44 of file InnerDetector/InDetDetDescr/InDetGeoModelUtils/InDetGeoModelUtils/VolumeBuilder.h.
| VolumeBuilder::VolumeBuilder | ( | const Zone & | zone, |
| const std::vector< const ServiceVolume * > & | services ) |
Definition at line 20 of file VolumeBuilder.cxx.
| VolumeBuilder::VolumeBuilder | ( | const std::vector< const ServiceVolume * > & | services | ) |
Definition at line 31 of file VolumeBuilder.cxx.
| VolumeBuilder::VolumeBuilder | ( | const Zone & | zone, |
| const std::vector< const ServiceVolume * > & | services, | ||
| const std::vector< const ServiceVolume * > & | servEnv, | ||
| const std::vector< const ServiceVolume * > & | servChild ) |
Definition at line 41 of file VolumeBuilder.cxx.
| void VolumeBuilder::addServices | ( | const Zone & | zone, |
| const std::vector< const ServiceVolume * > & | services ) |
Definition at line 55 of file VolumeBuilder.cxx.
| PhysVolPtr VolumeBuilder::build | ( | int | iElement | ) |
Definition at line 187 of file VolumeBuilder.cxx.
| void VolumeBuilder::buildAndPlace | ( | const std::string & | region, |
| GeoFullPhysVol * | parent, | ||
| double | zcenter = 0 ) |
Definition at line 99 of file VolumeBuilder.cxx.
| void VolumeBuilder::buildAndPlace | ( | const std::string & | region, |
| GeoPhysVol * | parent, | ||
| double | zcenter = 0 ) |
Definition at line 83 of file VolumeBuilder.cxx.
| void VolumeBuilder::buildAndPlaceEnvelope | ( | const std::string & | region, |
| GeoFullPhysVol * | parent, | ||
| int | iParent, | ||
| int | iElement, | ||
| double | zcenter = 0 ) |
Definition at line 124 of file VolumeBuilder.cxx.
| void VolumeBuilder::buildAndPlaceEnvelope | ( | const std::string & | region, |
| GeoPhysVol * | parent, | ||
| int | iParent, | ||
| int | iElement, | ||
| double | zcenter = 0 ) |
Definition at line 156 of file VolumeBuilder.cxx.
| int VolumeBuilder::getEnvelopeNum | ( | int | iElement | ) |
Definition at line 238 of file VolumeBuilder.cxx.
| int VolumeBuilder::getParentNum | ( | int | iElement | ) |
Definition at line 244 of file VolumeBuilder.cxx.
| GeoTransform * VolumeBuilder::getPlacement | ( | int | iElement, |
| int | iCopy ) |
Definition at line 274 of file VolumeBuilder.cxx.
| GeoTransform * VolumeBuilder::getPlacementEnvelope | ( | int | iElement, |
| int | iCopy, | ||
| int | iMothElement ) |
Definition at line 325 of file VolumeBuilder.cxx.
| double VolumeBuilder::getZcenter | ( | int | iElt | ) |
Definition at line 250 of file VolumeBuilder.cxx.
|
privateinherited |
Initialize our message level and MessageSvc.
This method should only be called once.
Definition at line 39 of file AthMessaging.cxx.
| bool VolumeBuilder::isChildService | ( | int | iElt, |
| int | iChld ) |
Definition at line 256 of file VolumeBuilder.cxx.
| bool VolumeBuilder::isEnvelopeOrChild | ( | int | iElement | ) |
Definition at line 232 of file VolumeBuilder.cxx.
|
inlineinherited |
The standard message stream.
Returns a reference to the default message stream May not be invoked before sysInitialize() has been invoked.
Definition at line 163 of file AthMessaging.h.
|
inlineinherited |
The standard message stream.
Returns a reference to the default message stream May not be invoked before sysInitialize() has been invoked.
Definition at line 178 of file AthMessaging.h.
|
inlineinherited |
Test the output level.
| lvl | The message level to test against |
| true | Messages at level "lvl" will be printed |
Definition at line 151 of file AthMessaging.h.
| int VolumeBuilder::numCopies | ( | int | iElement | ) |
Definition at line 269 of file VolumeBuilder.cxx.
| const std::vector< const ServiceVolume * > & VolumeBuilder::services | ( | ) |
Definition at line 66 of file VolumeBuilder.cxx.
| const std::vector< const ServiceVolume * > & VolumeBuilder::servicesChild | ( | ) |
Definition at line 78 of file VolumeBuilder.cxx.
| const std::vector< const ServiceVolume * > & VolumeBuilder::servicesEnv | ( | ) |
Definition at line 73 of file VolumeBuilder.cxx.
|
inherited |
Change the current logging level.
Use this rather than msg().setLevel() for proper operation with MT.
Definition at line 28 of file AthMessaging.cxx.
|
inline |
Definition at line 34 of file InnerDetector/InDetDetDescr/InDetGeoModelUtils/InDetGeoModelUtils/VolumeBuilder.h.
| void VolumeBuilder::setRegion | ( | const std::string & | region, |
| double | zcenter ) |
Definition at line 60 of file VolumeBuilder.cxx.
|
mutableprivateinherited |
Messaging initialized (initMessaging)
Definition at line 141 of file AthMessaging.h.
|
mutableprivateinherited |
|
mutableprivateinherited |
|
private |
Definition at line 63 of file InnerDetector/InDetDetDescr/InDetGeoModelUtils/InDetGeoModelUtils/VolumeBuilder.h.
|
mutableprivateinherited |
MsgStream instance (a std::cout like with print-out levels)
Definition at line 132 of file AthMessaging.h.
|
privateinherited |
Message source name.
Definition at line 129 of file AthMessaging.h.
|
private |
Definition at line 57 of file InnerDetector/InDetDetDescr/InDetGeoModelUtils/InDetGeoModelUtils/VolumeBuilder.h.
|
private |
Definition at line 61 of file InnerDetector/InDetDetDescr/InDetGeoModelUtils/InDetGeoModelUtils/VolumeBuilder.h.
|
private |
Definition at line 60 of file InnerDetector/InDetDetDescr/InDetGeoModelUtils/InDetGeoModelUtils/VolumeBuilder.h.
|
private |
Definition at line 59 of file InnerDetector/InDetDetDescr/InDetGeoModelUtils/InDetGeoModelUtils/VolumeBuilder.h.
|
private |
Definition at line 62 of file InnerDetector/InDetDetDescr/InDetGeoModelUtils/InDetGeoModelUtils/VolumeBuilder.h.
|
private |
Definition at line 58 of file InnerDetector/InDetDetDescr/InDetGeoModelUtils/InDetGeoModelUtils/VolumeBuilder.h.