#include <G4GeometryWorkspace.hh>
Definition at line 56 of file G4GeometryWorkspace.hh.
◆ pool_type
◆ G4GeometryWorkspace()
G4GeometryWorkspace::G4GeometryWorkspace |
( |
| ) |
|
Definition at line 50 of file G4GeometryWorkspace.cc.
51{
52 fpLogicalVolumeSIM=
54 fpPhysicalVolumeSIM=
56 fpReplicaSIM=
58 fpRegionSIM=
60
61
62
63
65
66 fLogicalVolumeOffset = fpLogicalVolumeSIM->GetOffset();
67
68 fPhysicalVolumeOffset = fpPhysicalVolumeSIM->GetOffset();
69
70 fReplicaOffset = fpReplicaSIM->GetOffset();
71
72 fRegionOffset = fpRegionSIM->GetOffset();
73}
G4GeomSplitter< G4LVData > G4LVManager
G4GeomSplitter< G4ReplicaData > G4PVRManager
G4GeomSplitter< G4RegionData > G4RegionManager
G4GeomSplitter< G4PVData > G4PVManager
void InitialiseWorkspace()
static const G4LVManager & GetSubInstanceManager()
static const G4PVRManager & GetSubInstanceManager()
static const G4RegionManager & GetSubInstanceManager()
static const G4PVManager & GetSubInstanceManager()
◆ ~G4GeometryWorkspace()
G4GeometryWorkspace::~G4GeometryWorkspace |
( |
| ) |
|
|
default |
◆ CloneReplicaSolid()
Definition at line 141 of file G4GeometryWorkspace.cc.
142{
144 G4VSolid* solid = logicalV->
GetSolid();
145
147 G4VSolid* workerSolid = solid->
Clone();
148 aLock.unlock();
149
150 if( workerSolid != nullptr )
151 {
153 }
154 else
155 {
156
157
158
159
161 ed << "ERROR - Unable to initialise geometry for worker node." << "\n"
162 << "A solid lacks the Clone() method - or Clone() failed." << "\n"
164 << " Parameters: " << *solid;
165 G4Exception(
"G4GeometryWorkspace::CloneReplicaSolid()",
167 return false;
168 }
169 return true;
170}
G4TemplateAutoLock< G4Mutex > G4AutoLock
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
G4VSolid * GetSolid() const
void InitialiseWorker(G4LogicalVolume *ptrMasterObject, G4VSolid *pSolid, G4VSensitiveDetector *pSDetector)
G4LogicalVolume * GetLogicalVolume() const
virtual G4VSolid * Clone() const
virtual G4GeometryType GetEntityType() const =0
Referenced by InitialisePhysicalVolumes().
◆ DestroyWorkspace()
void G4GeometryWorkspace::DestroyWorkspace |
( |
| ) |
|
Definition at line 189 of file G4GeometryWorkspace.cc.
190{
192 for (auto physVol : *physVolStore)
193 {
194 G4LogicalVolume* logicalVol = physVol->GetLogicalVolume();
195 auto g4PVReplica = dynamic_cast<G4PVReplica*>(physVol);
196 if (g4PVReplica != nullptr)
197 {
198 g4PVReplica->TerminateWorker(g4PVReplica);
199 }
201 }
202
203
204
205
207 fpLogicalVolumeSIM->FreeSlave();
208 fpPhysicalVolumeSIM->FreeSlave();
209 fpReplicaSIM->FreeSlave();
210 fpRegionSIM->FreeSlave();
211 aLock.unlock();
212}
void TerminateWorker(G4LogicalVolume *ptrMasterObject)
static G4PhysicalVolumeStore * GetInstance()
Referenced by G4WorkerThread::UpdateGeometryAndPhysicsVectorFromMaster().
◆ GetPool()
◆ InitialisePhysicalVolumes()
void G4GeometryWorkspace::InitialisePhysicalVolumes |
( |
| ) |
|
|
protected |
Definition at line 108 of file G4GeometryWorkspace.cc.
109{
111 for (auto physVol : *physVolStore)
112 {
113 G4LogicalVolume *logicalVol = physVol->GetLogicalVolume();
114
115
116
118 auto g4PVReplica = dynamic_cast<G4PVReplica*>(physVol);
119 if (g4PVReplica == nullptr)
120 {
121
122
124 }
125 else
126 {
127 g4PVReplica->InitialiseWorker(g4PVReplica);
129
130
131
132
134 }
135 }
136}
G4bool CloneReplicaSolid(G4PVReplica *)
G4VSolid * GetMasterSolid() const
Referenced by InitialiseWorkspace().
◆ InitialiseWorkspace()
void G4GeometryWorkspace::InitialiseWorkspace |
( |
| ) |
|
◆ ReleaseWorkspace()
void G4GeometryWorkspace::ReleaseWorkspace |
( |
| ) |
|
Definition at line 97 of file G4GeometryWorkspace.cc.
98{
99 fpLogicalVolumeSIM->UseWorkArea(nullptr);
100 fpPhysicalVolumeSIM->UseWorkArea(nullptr);
101
102 fpReplicaSIM->UseWorkArea(nullptr);
103 fpRegionSIM->UseWorkArea(nullptr);
104}
◆ UseWorkspace()
void G4GeometryWorkspace::UseWorkspace |
( |
| ) |
|
Definition at line 78 of file G4GeometryWorkspace.cc.
79{
80
81
82
83 fpLogicalVolumeSIM->UseWorkArea(fLogicalVolumeOffset);
84 fpPhysicalVolumeSIM->UseWorkArea(fPhysicalVolumeOffset);
85
86 fpReplicaSIM->UseWorkArea(fReplicaOffset);
87 fpRegionSIM->UseWorkArea(fRegionOffset);
88
89
90
91
92
93}
The documentation for this class was generated from the following files: