ATLAS Offline Software
Loading...
Searching...
No Matches
GDMLDetectorTool Class Referencefinal

Tool for building detectors out of a GDML description. More...

#include <GDMLDetectorTool.h>

Inheritance diagram for GDMLDetectorTool:
Collaboration diagram for GDMLDetectorTool:

Public Member Functions

 GDMLDetectorTool (const std::string &type, const std::string &name, const IInterface *parent)
 ~GDMLDetectorTool ()
virtual StatusCode initialize () override final
 Athena method.
virtual void BuildGeometry () override final
 virtual methods being implemented here
virtual void Build () override
 purely virtual methods being implemented here
virtual void PositionInParent () override
virtual void SetRotationAndOffset ()
virtual void BuildSubDetectors () override
virtual void SetEnvelope () override
virtual void ResetEnvelope () override
virtual void SetAsWorld () override
std::string GetDetectorName () const override
void SetDetectorName (const std::string &) override
void SetParent (IDetectorGeometryTool *) override
EnvelopeGetEnvelope () override final
G4VPhysicalVolume * GetWorldVolume () override final

Protected Attributes

ToolHandleArray< IDetectorGeometryToolm_subDetTools {this, "SubDetectors", {}, "Tool handle array of all subdetector tools"}
ServiceHandle< IG4GeometryNotifierSvcm_notifierSvc {this, "GeometryNotifierSvc", "G4GeometryNotifierSvc", "Detector name (same as the Tool name if not set"}
IDetectorGeometryToolm_theParent {}
Envelope m_envelope
Gaudi::Property< std::string > m_detectorName {this, "DetectorName", "", "Detector name (same as the Tool name if not set"}
bool m_isWorld {false}
Gaudi::Property< double > m_rotateX {this, "RotateX" , 0.0, "Rotation around the X-axis"}
Gaudi::Property< double > m_rotateY {this, "RotateY" , 0.0, "Rotation around the Y-axis"}
Gaudi::Property< double > m_rotateZ {this, "RotateZ" , 0.0, "Rotation around the Z-axis"}
Gaudi::Property< double > m_offsetX {this, "OffsetX" , 0.0, "Offset in the X-direction"}
Gaudi::Property< double > m_offsetY {this, "OffsetY" , 0.0, "Offset in the Y-direction"}
Gaudi::Property< double > m_offsetZ {this, "OffsetZ" , 0.0, "Offset in the Z-direction"}

Private Member Functions

bool IsTopTransform ()
void SetInitialTransformation ()

Private Attributes

std::string m_GDMLFileName
std::string m_builderName
bool m_blGetTopTransform
G4Transform3D m_topTransform
std::string m_geoDetectorName

Detailed Description

Tool for building detectors out of a GDML description.

Author
Andrea Dell'Acqua
Date
2017-02-21

Definition at line 27 of file GDMLDetectorTool.h.

Constructor & Destructor Documentation

◆ GDMLDetectorTool()

GDMLDetectorTool::GDMLDetectorTool ( const std::string & type,
const std::string & name,
const IInterface * parent )

Definition at line 16 of file GDMLDetectorTool.cxx.

18{
19 m_topTransform.setIdentity();
20 ATH_MSG_DEBUG( "GDMLDetectorTool constructor for " << name );
21 declareProperty("GeoDetectorName",m_geoDetectorName, "Name of the detector in GeoModel, if different from G4.");
22 declareProperty("GDMLFileName",m_GDMLFileName,"Name of the GDML file to be used as input.");
23
24}
#define ATH_MSG_DEBUG(x)
DetectorGeometryBase(const std::string &type, const std::string &name, const IInterface *parent)
G4Transform3D m_topTransform
std::string m_GDMLFileName
std::string m_geoDetectorName

◆ ~GDMLDetectorTool()

GDMLDetectorTool::~GDMLDetectorTool ( )
inline

Definition at line 32 of file GDMLDetectorTool.h.

32{}

Member Function Documentation

◆ Build()

void DetectorGeometryBase::Build ( )
overridevirtualinherited

purely virtual methods being implemented here

Definition at line 53 of file DetectorGeometryBase.cxx.

54{
55 ATH_MSG_VERBOSE( name() << "::Build() (Base class method): Starting. Number of registered volumes "<<G4LogicalVolumeStore::GetInstance()->size() );
56
58 ATH_MSG_VERBOSE( name() << "::Build() - Envelope set. Number of registered volumes "<<G4LogicalVolumeStore::GetInstance()->size() );
59
60 m_notifierSvc->SetCurrentDetectorName(m_detectorName.value());
62 ATH_MSG_VERBOSE( name() << "::Build() - Geometry built. Number of registered volumes "<<G4LogicalVolumeStore::GetInstance()->size() );
63
65 ATH_MSG_VERBOSE( name() << "::Build() - Volume moved around. Number of registered volumes "<<G4LogicalVolumeStore::GetInstance()->size() );
66
68 ATH_MSG_VERBOSE( name() << "::Build() - Connected with parent. Number of registered volumes "<<G4LogicalVolumeStore::GetInstance()->size() );
69
71 ATH_MSG_VERBOSE( name() << "::Build() (Base class method): Finished. Number of registered volumes "<<G4LogicalVolumeStore::GetInstance()->size() );
72 return;
73}
#define ATH_MSG_VERBOSE(x)
virtual void BuildGeometry() override
virtual void SetEnvelope() override
virtual void SetRotationAndOffset()
Gaudi::Property< std::string > m_detectorName
ServiceHandle< IG4GeometryNotifierSvc > m_notifierSvc
virtual void PositionInParent() override
virtual void BuildSubDetectors() override

◆ BuildGeometry()

void GDMLDetectorTool::BuildGeometry ( )
finaloverridevirtual

virtual methods being implemented here

Reimplemented from DetectorGeometryBase.

Definition at line 59 of file GDMLDetectorTool.cxx.

60{
61 ATH_MSG_VERBOSE( name() << " GDMLDetectorTool::BuildGeometry(): Starting" );
62
63 G4GDMLParser parser;
64 parser.Read(m_GDMLFileName.c_str(),false);
65 m_envelope.theEnvelope=parser.GetWorldVolume()->GetLogicalVolume();
66
67 ATH_MSG_VERBOSE( name() << " GDMLDetectorTool::BuildGeometry(): Finished" );
68}

◆ BuildSubDetectors()

void DetectorGeometryBase::BuildSubDetectors ( )
overridevirtualinherited

Definition at line 155 of file DetectorGeometryBase.cxx.

156{
157 ATH_MSG_VERBOSE( name() << "::BuildSubDetectors() (Base class method): Starting");
158 for (auto& subDetTool: m_subDetTools)
159 {
160 ATH_MSG_VERBOSE(name() << "::BuildSubDetectors() (Base class method): Positioning "<<subDetTool->GetDetectorName()<<" within "<<m_detectorName.value());
161 subDetTool->SetParent(this);
162 subDetTool->Build();
163 }
164 ATH_MSG_VERBOSE( name() << "::BuildSubDetectors() (Base class method): Finished");
165}
ToolHandleArray< IDetectorGeometryTool > m_subDetTools

◆ GetDetectorName()

std::string DetectorGeometryBase::GetDetectorName ( ) const
overrideinherited

Definition at line 180 of file DetectorGeometryBase.cxx.

181{
182 return m_detectorName.value();
183}

◆ GetEnvelope()

Envelope & DetectorGeometryBase::GetEnvelope ( )
finaloverrideinherited

Definition at line 195 of file DetectorGeometryBase.cxx.

196{
197 return m_envelope;
198}

◆ GetWorldVolume()

G4VPhysicalVolume * DetectorGeometryBase::GetWorldVolume ( )
finaloverrideinherited

Definition at line 200 of file DetectorGeometryBase.cxx.

201{
202 if (m_isWorld)
203 return m_envelope.thePositionedVolume;
204 else
205 {
206 ATH_MSG_ERROR("trying to get World from a DetectorTool which World is not!");
207 return 0;
208 }
209}
#define ATH_MSG_ERROR(x)

◆ initialize()

StatusCode GDMLDetectorTool::initialize ( )
finaloverridevirtual

Athena method.

called at initialization time, being customized here

Definition at line 26 of file GDMLDetectorTool.cxx.

27{
28 ATH_MSG_DEBUG( name() << " GDMLDetectorTool::initialize(): Starting" );
29
30 if(m_detectorName.empty())
31 {
32 m_detectorName = this->name();
33 // re-initialize m_detectorName in order to take the real detector name rather than the path to it
34 size_t ipos=m_detectorName.value().find_last_of('.');
35 size_t length=m_detectorName.value().size();
36 if (ipos<length)
37 {
38 ATH_MSG_DEBUG( "m_detectorName: " << m_detectorName.value() << " needs to be reset.");
39 m_detectorName=m_detectorName.value().substr(ipos+1,length-ipos-1);
40 ATH_MSG_DEBUG( "m_detectorName default value reset to " << m_detectorName.value());
41 }
42 }
43 ATH_MSG_DEBUG( name() << "GDMLDetectorTool::initialize() : Detector name = " << m_detectorName.value()<<" File name: "<<m_GDMLFileName );
44 if(m_geoDetectorName.empty())
45 {
47 }
48 if(m_GDMLFileName.empty())
49 {
50 m_GDMLFileName = m_detectorName.value()+".gdml";
51 }
52 ATH_MSG_DEBUG( name() << "GDMLDetectorTool::initialize() : Geo Detector name = " << m_geoDetectorName<<" File name: "<<m_GDMLFileName );
53
54 ATH_MSG_DEBUG( name() << " GDMLDetectorTool::initialize(): Finished" );
55 return StatusCode::SUCCESS;
56}
double length(const pvec &v)

◆ IsTopTransform()

bool GDMLDetectorTool::IsTopTransform ( )
private

Definition at line 70 of file GDMLDetectorTool.cxx.

71{
73}

◆ PositionInParent()

void DetectorGeometryBase::PositionInParent ( )
overridevirtualinherited

Reimplemented in GeoDetectorTool.

Definition at line 120 of file DetectorGeometryBase.cxx.

121{
122 ATH_MSG_VERBOSE( name() << "::PositionInParent() (Base class method)");
123 if (m_isWorld)
124 {
125 // check that the detector is built
126 if (m_envelope.IsBuilt())
127 {
128 G4VPhysicalVolume* physWorld= new G4PVPlacement(0,G4ThreeVector(),
129 m_envelope.theEnvelope,m_envelope.theEnvelope->GetName(),0,false,0,false);
130 m_envelope.thePositionedVolume=physWorld;
131 }
132 }
133 else
134 {
135 // check that there is a parent
136 if (!m_theParent)
137 {
138 ATH_MSG_ERROR("Parent not set for "<<m_detectorName.value()<<"!!!!!!!!!!");
139 }
140 else
141 {
142 if (m_theParent->GetEnvelope().IsBuilt())
143 {
144 // G4VPhysicalVolume *physVol = new G4PVPlacement(0,G4ThreeVector(),
145 // m_envelope.theEnvelope,m_envelope.theEnvelope->GetName(),m_theParent->GetEnvelope().theEnvelope,false,0,false);
146 // TODO: implement a possible rotation/displacement - something like this based on the old code?
147 G4VPhysicalVolume *physVol = new G4PVPlacement(m_envelope.theRotation,m_envelope.thePosition,
148 m_envelope.theEnvelope,m_envelope.theEnvelope->GetName(),m_theParent->GetEnvelope().theEnvelope,false,0);
149 m_envelope.thePositionedVolume=physVol;
150 }
151 }
152 }
153}
IDetectorGeometryTool * m_theParent

◆ ResetEnvelope()

void DetectorGeometryBase::ResetEnvelope ( )
overridevirtualinherited

Definition at line 171 of file DetectorGeometryBase.cxx.

172{
173}

◆ SetAsWorld()

void DetectorGeometryBase::SetAsWorld ( )
overridevirtualinherited

Definition at line 185 of file DetectorGeometryBase.cxx.

186{
187 m_isWorld=true;
188}

◆ SetDetectorName()

void DetectorGeometryBase::SetDetectorName ( const std::string & s)
overrideinherited

Definition at line 175 of file DetectorGeometryBase.cxx.

◆ SetEnvelope()

void DetectorGeometryBase::SetEnvelope ( )
overridevirtualinherited

Definition at line 167 of file DetectorGeometryBase.cxx.

168{
169}

◆ SetInitialTransformation()

void GDMLDetectorTool::SetInitialTransformation ( )
private

Definition at line 75 of file GDMLDetectorTool.cxx.

76{
77 ATH_MSG_VERBOSE( name() << " GDMLDetectorTool::SetInitialTransformation(): Starting" );
78 if (!m_envelope.theRotation)
79 {
80 ATH_MSG_VERBOSE( name() << " GDMLDetectorTool::SetInitialTransformation(): Creating new G4RotationMatrix" );
81 m_envelope.theRotation=new G4RotationMatrix;
82 }
83 *(m_envelope.theRotation)=m_topTransform.getRotation().inverse();
84 m_envelope.thePosition=m_topTransform.getTranslation();
85 ATH_MSG_VERBOSE( name() << " GDMLDetectorTool::SetInitialTransformation(): Finished" );
86}

◆ SetParent()

void DetectorGeometryBase::SetParent ( IDetectorGeometryTool * p)
overrideinherited

◆ SetRotationAndOffset()

void DetectorGeometryBase::SetRotationAndOffset ( )
virtualinherited

Definition at line 80 of file DetectorGeometryBase.cxx.

81{
82 ATH_MSG_VERBOSE( name() << "::SetRotationAndOffset() (Base class method)");
83 // Firstly do the rotation
84 if (!m_envelope.theRotation)
85 {
86 // m_envelope.theRotation is null, so create an identity
87 // rotation first.
88 // FIXME probably a neater way to do this part.
89 m_envelope.theRotation=new G4RotationMatrix;
90 // add the extra rotations.
91 m_envelope.theRotation->rotateX(m_rotateX);
92 m_envelope.theRotation->rotateY(m_rotateY);
93 m_envelope.theRotation->rotateZ(m_rotateZ);
94 if (m_envelope.thePositionedVolume)
95 {
96 // Override the rotation for m_envelope.thePositionedVolume.
97 m_envelope.thePositionedVolume->SetRotation(m_envelope.theRotation);
98 }
99 }
100 else
101 {
102 // m_envelope.theRotation already exists, so just add the
103 // extra rotations.
104 m_envelope.theRotation->rotateX(m_rotateX);
105 m_envelope.theRotation->rotateY(m_rotateY);
106 m_envelope.theRotation->rotateZ(m_rotateZ);
107 }
108 // Secondly add the additional position offset to the existing
109 // m_envelope.thePosition vector.
110 m_envelope.thePosition+=G4ThreeVector(m_offsetX,m_offsetY,m_offsetZ);
111 if (m_envelope.thePositionedVolume)
112 {
113 // Override the translation for m_envelope.thePositionedVolume.
114 m_envelope.thePositionedVolume->SetTranslation(m_envelope.thePosition);
115 }
116
117 ATH_MSG_VERBOSE( name() << "::SetRotationAndOffset() (Base class method): Finished" );
118 return;
119}
Gaudi::Property< double > m_rotateY
Gaudi::Property< double > m_rotateX
Gaudi::Property< double > m_offsetX
Gaudi::Property< double > m_offsetY
Gaudi::Property< double > m_rotateZ
Gaudi::Property< double > m_offsetZ

Member Data Documentation

◆ m_blGetTopTransform

bool GDMLDetectorTool::m_blGetTopTransform
private

Definition at line 45 of file GDMLDetectorTool.h.

◆ m_builderName

std::string GDMLDetectorTool::m_builderName
private

Definition at line 44 of file GDMLDetectorTool.h.

◆ m_detectorName

Gaudi::Property<std::string> DetectorGeometryBase::m_detectorName {this, "DetectorName", "", "Detector name (same as the Tool name if not set"}
protectedinherited

Definition at line 71 of file DetectorGeometryBase.h.

71{this, "DetectorName", "", "Detector name (same as the Tool name if not set"};

◆ m_envelope

Envelope DetectorGeometryBase::m_envelope
protectedinherited

Definition at line 70 of file DetectorGeometryBase.h.

◆ m_GDMLFileName

std::string GDMLDetectorTool::m_GDMLFileName
private

Definition at line 43 of file GDMLDetectorTool.h.

◆ m_geoDetectorName

std::string GDMLDetectorTool::m_geoDetectorName
private

Definition at line 47 of file GDMLDetectorTool.h.

◆ m_isWorld

bool DetectorGeometryBase::m_isWorld {false}
protectedinherited

Definition at line 72 of file DetectorGeometryBase.h.

72{false};

◆ m_notifierSvc

ServiceHandle<IG4GeometryNotifierSvc> DetectorGeometryBase::m_notifierSvc {this, "GeometryNotifierSvc", "G4GeometryNotifierSvc", "Detector name (same as the Tool name if not set"}
protectedinherited

Definition at line 66 of file DetectorGeometryBase.h.

66{this, "GeometryNotifierSvc", "G4GeometryNotifierSvc", "Detector name (same as the Tool name if not set"};

◆ m_offsetX

Gaudi::Property<double> DetectorGeometryBase::m_offsetX {this, "OffsetX" , 0.0, "Offset in the X-direction"}
protectedinherited

Definition at line 76 of file DetectorGeometryBase.h.

76{this, "OffsetX" , 0.0, "Offset in the X-direction"};

◆ m_offsetY

Gaudi::Property<double> DetectorGeometryBase::m_offsetY {this, "OffsetY" , 0.0, "Offset in the Y-direction"}
protectedinherited

Definition at line 77 of file DetectorGeometryBase.h.

77{this, "OffsetY" , 0.0, "Offset in the Y-direction"};

◆ m_offsetZ

Gaudi::Property<double> DetectorGeometryBase::m_offsetZ {this, "OffsetZ" , 0.0, "Offset in the Z-direction"}
protectedinherited

Definition at line 78 of file DetectorGeometryBase.h.

78{this, "OffsetZ" , 0.0, "Offset in the Z-direction"};

◆ m_rotateX

Gaudi::Property<double> DetectorGeometryBase::m_rotateX {this, "RotateX" , 0.0, "Rotation around the X-axis"}
protectedinherited

Definition at line 73 of file DetectorGeometryBase.h.

73{this, "RotateX" , 0.0, "Rotation around the X-axis"};

◆ m_rotateY

Gaudi::Property<double> DetectorGeometryBase::m_rotateY {this, "RotateY" , 0.0, "Rotation around the Y-axis"}
protectedinherited

Definition at line 74 of file DetectorGeometryBase.h.

74{this, "RotateY" , 0.0, "Rotation around the Y-axis"};

◆ m_rotateZ

Gaudi::Property<double> DetectorGeometryBase::m_rotateZ {this, "RotateZ" , 0.0, "Rotation around the Z-axis"}
protectedinherited

Definition at line 75 of file DetectorGeometryBase.h.

75{this, "RotateZ" , 0.0, "Rotation around the Z-axis"};

◆ m_subDetTools

ToolHandleArray<IDetectorGeometryTool> DetectorGeometryBase::m_subDetTools {this, "SubDetectors", {}, "Tool handle array of all subdetector tools"}
protectedinherited

Definition at line 64 of file DetectorGeometryBase.h.

64{this, "SubDetectors", {}, "Tool handle array of all subdetector tools"};

◆ m_theParent

IDetectorGeometryTool* DetectorGeometryBase::m_theParent {}
protectedinherited

Definition at line 68 of file DetectorGeometryBase.h.

68{};

◆ m_topTransform

G4Transform3D GDMLDetectorTool::m_topTransform
private

Definition at line 46 of file GDMLDetectorTool.h.


The documentation for this class was generated from the following files: