Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4SolidsWorkspace.cc
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 
27 #include "G4SolidsWorkspace.hh"
28 
29 #include "G4VSolid.hh"
30 
31 #include "G4PolyconeSide.hh"
32 #include "G4PolyhedraSide.hh"
33 
34 #include "G4AutoLock.hh"
35 
37  : fVerbose(verbose)
38 {
39  // G4PlSideManager *fPolyconeSideSIM; // (G4PlSideManager::GetSubInstanceManager())
40 
41  fpPolyconeSideSIM=
43  fpPolyhedraSideSIM=
45 
46  // Copy information from master into PolyCone/Gon Sides in this thread.
48 
49  // Capture its address of PolyCone/Gon Sides in this thread
50  fPolyconeSideOffset= fpPolyconeSideSIM->GetOffset();
51  fPolyhedraSideOffset= fpPolyhedraSideSIM->GetOffset();
52 }
53 
55 {
56 
57 }
58 
59 // Static methods
60 // For with current (original) G4WorkerThread -- which uses static methods
61 
62 void
64 {
65  if( fVerbose )
66  G4cout << "G4SolidsWorkspace::UseWorkspace: Copying geometry - Start " << G4endl;
67 
68  // Implementation copied from G4WorkerThread::BuildGeometryAndPhysicsVector()
69 
70  //Geometry related, split classes mechanism: instantiate sub-instance for this thread
71  fpPolyconeSideSIM->UseWorkArea(fPolyconeSideOffset);
72  fpPolyhedraSideSIM->UseWorkArea(fPolyhedraSideOffset);
73 
74 }
75 
76 
78 // The opposite of Use Workspace - let go of it.
79 {
80  fpPolyconeSideSIM->UseWorkArea(0);
81  fpPolyhedraSideSIM->UseWorkArea(0);
82 }
83 
85 {
86 }
87 
88 void
90 {
91  if( fVerbose )
92  G4cout << "G4SolidsWorkspace::InitialiseWorkspace: "
93  << "Copying geometry - Start " << G4endl;
94 
95  //Geometry related, split classes mechanism:
96  // Do *NOT* instantiate sub-instance for this thread,
97  // just copy the contents !!
98 
99  fpPolyconeSideSIM->SlaveInitializeSubInstance();
100  fpPolyhedraSideSIM->SlaveInitializeSubInstance();
101 
102  // Additional initialization if needed - beyond copying memory
104 
105  if( fVerbose )
106  G4cout << "G4SolidsWorkspace::CreateAndUseWorkspace: "
107  << "Copying geometry - Done!" << G4endl;
108 }
109 
111 {
112  fpPolyconeSideSIM->FreeSlave();
113  fpPolyhedraSideSIM->FreeSlave();
114 }
static const G4PhSideManager & GetSubInstanceManager()
G4GLOB_DLL std::ostream G4cout
bool G4bool
Definition: G4Types.hh:79
static const G4PlSideManager & GetSubInstanceManager()
#define G4endl
Definition: G4ios.hh:61
void UseWorkArea(T *newOffset)
G4SolidsWorkspace(G4bool verbose=false)
void SlaveInitializeSubInstance()