Geant4  10.03.p01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4PDefManager.hh
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 // $Id: G4PDefManager.hh 101112 2016-11-07 08:19:33Z gcosmo $
28 //
29 //
30 // ------------------------------------------------------------
31 //
32 // GEANT 4 class header file
33 //
34 // ---------------- G4PDefManager ----------------
35 //
36 // Utility template class for splitting RW data for thread-safety from
37 // classes: G4ParticleDefinition, G4VDecayChannel.
38 //
39 // ------------------------------------------------------------
40 // History:
41 // 01.25.2009 Xin Dong: First implementation from automatic MT conversion.
42 // ------------------------------------------------------------
43 #ifndef G4PDefManager_HH
44 #define G4PDefManager_HH
45 
46 #include <stdlib.h>
47 
48 #include "globals.hh"
49 #include "pwdefs.hh"
50 #include "G4AutoLock.hh"
51 
52 class G4ProcessManager;
53 
54 // G4PDefData is the private data from the object to be split
56 {
57  // Encapsulates the fields of the class G4ParticleDefinition
58  // that may not be read-only.
59 
60  public:
61 
62  void initialize();
63 
65 };
66 
67 // The type G4PDefManager is introduced to encapsulate the methods used by
68 // both the master thread and worker threads to allocate memory space for
69 // the fields encapsulated by the class G4PDefData. When each thread
70 // changes the value for these fields, it refers to them using a macro
71 // definition defined below. For every G4ParticleDefinition instance,
72 // there is a corresponding G4PDefData instance. All G4PDefData instances
73 // are organized by the class G4PDefManager as an array.
74 // The field "int g4particleDefinitionInstanceID" is added to the class G4ParticleDefinition.
75 // The value of this field in each G4ParticleDefinition instance is the
76 // subscript of the corresponding G4PDefData instance.
77 // In order to use the class G4PDefManager, we add a static member in the class
78 // G4ParticleDefinition as follows: "static G4PDefManager subInstanceManager".
79 // Both the master thread and worker threads change the length of the array
80 // for G4PDefData instances mutually along with G4ParticleDefinition
81 // instances are created. For each worker thread, it dynamically creates ions.
82 // Consider any thread A, if there is any other thread which creates an ion.
83 // This ion is shared by the thread A. So the thread A leaves an empty space
84 // in the array of G4PDefData instances for the ion.
85 //
86 
88 {
89  public:
90 
91  G4PDefManager();
93  // Invoked by the master or work thread to create a new subinstance
94  // whenever a new split class instance is created. For each worker
95  // thread, ions are created dynamically.
96 
97 
98  void NewSubInstances();
99  // Invoked by each worker thread to grow the subinstance array and
100  // initialize each new subinstance using a particular method defined
101  // by the subclass.
102 
103  void FreeSlave();
104  // Invoked by all threads to free the subinstance array.
105 
106 
108 
109  void UseWorkArea( G4PDefData* newOffset ); // , G4int numObjects, G4int numSpace)
110 
111  G4PDefData* FreeWorkArea(); // G4int* numObjects, G4int* numSpace)
112 
113  public:
114 
117 
118  private:
119 
120  G4int totalobj;
121  G4Mutex mutex;
122 };
123 
124 #endif
G4PDefData * FreeWorkArea()
G4ProcessManager * theProcessManager
G4PART_DLL G4ThreadLocalStatic G4PDefData * offset
void NewSubInstances()
G4PDefData * GetOffset()
void UseWorkArea(G4PDefData *newOffset)
#define G4ThreadLocalStatic
Definition: tls.hh:88
int G4int
Definition: G4Types.hh:78
G4int G4Mutex
Definition: G4Threading.hh:173
G4PART_DLL G4ThreadLocalStatic G4int slavetotalspace
G4int CreateSubInstance()
#define G4PART_DLL
Definition: pwdefs.hh:48
void initialize()