Geant4
10.02.p03
G4PDefManager.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
// $Id: G4PDefManager.cc 102308 2017-01-20 14:54:21Z 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
44
#include <stdlib.h>
45
46
#include "
G4PDefManager.hh
"
47
#include "
globals.hh
"
48
#include "
pwdefs.hh
"
49
#include "
G4AutoLock.hh
"
50
51
void
G4PDefData::initialize
()
52
{
53
theProcessManager
= 0;
54
}
55
56
G4ThreadLocal
G4int
G4PDefManager::slavetotalspace
=0;
57
G4ThreadLocal
G4PDefData
*
G4PDefManager::offset
=0;
58
59
G4PDefManager::G4PDefManager
() : totalobj(0)
60
{
61
G4MUTEXINIT
(
mutex
);
62
}
63
64
G4int
G4PDefManager::CreateSubInstance
()
65
// Invoked by the master or work thread to create a new subinstance
66
// whenever a new split class instance is created. For each worker
67
// thread, ions are created dynamically.
68
{
69
G4AutoLock
l(&
mutex
);
70
totalobj
++;
71
if
(
totalobj
>
slavetotalspace
)
72
{
73
l.
unlock
();
74
NewSubInstances
();
75
l.
lock
();
76
}
77
return
(
totalobj
- 1);
78
}
79
80
void
G4PDefManager::NewSubInstances
()
81
// Invoked by each worker thread to grow the subinstance array and
82
// initialize each new subinstance using a particular method defined
83
// by the subclass.
84
{
85
G4AutoLock
l(&
mutex
);
86
if
(
slavetotalspace
>=
totalobj
) {
return
; }
87
G4int
originaltotalspace =
slavetotalspace
;
88
slavetotalspace
=
totalobj
+ 512;
89
offset
= (
G4PDefData
*) realloc(
offset
,
slavetotalspace
*
sizeof
(
G4PDefData
));
90
91
if
(
offset
== 0)
92
{
93
G4Exception
(
"G4PDefManager::NewSubInstances()"
,
94
"OutOfMemory"
,
FatalException
,
"Cannot malloc space!"
);
95
}
96
97
for
(
G4int
i = originaltotalspace; i <
slavetotalspace
; i++)
98
{
99
offset
[i].
initialize
();
100
}
101
}
102
103
void
G4PDefManager::FreeSlave
()
104
// Invoked by all threads to free the subinstance array.
105
{
106
if
(!
offset
) {
return
; }
107
free
(
offset
);
108
offset
= 0;
109
}
110
111
112
G4PDefData
*
G4PDefManager::GetOffset
()
113
{
114
return
offset
;
115
}
116
117
void
G4PDefManager::UseWorkArea
(
G4PDefData
* newOffset )
// , G4int numObjects, G4int numSpace)
118
{
119
// Use recycled work area - which was created previously
120
if
(
offset
&&
offset
!=newOffset )
121
{
122
G4Exception
(
"G4PDefManager::UseWorkspace()"
,
123
"TwoWorkspaces"
,
FatalException
,
124
"Thread already has workspace - cannot use another."
);
125
}
126
offset
= newOffset;
127
// totalobj= numObjects;
128
// totalspace= numSpace;
129
}
130
131
G4PDefData
*
G4PDefManager::FreeWorkArea
()
// G4int* numObjects, G4int* numSpace)
132
{
133
// Detach this thread from this Location
134
// The object which calls this method is responsible for it.
135
//
136
G4PDefData
* offsetRet=
offset
;
137
138
offset
= 0;
139
140
return
offsetRet;
141
}
G4PDefManager::totalobj
G4int totalobj
Definition:
G4PDefManager.hh:120
G4PDefManager::FreeWorkArea
G4PDefData * FreeWorkArea()
Definition:
G4PDefManager.cc:131
G4PDefManager.hh
G4PDefData::theProcessManager
G4ProcessManager * theProcessManager
Definition:
G4PDefManager.hh:64
G4MUTEXINIT
#define G4MUTEXINIT(mutex)
Definition:
G4Threading.hh:177
G4PDefManager::offset
G4PART_DLL G4ThreadLocalStatic G4PDefData * offset
Definition:
G4PDefManager.hh:116
G4PDefManager::NewSubInstances
void NewSubInstances()
Definition:
G4PDefManager.cc:80
G4PDefManager::GetOffset
G4PDefData * GetOffset()
Definition:
G4PDefManager.cc:112
G4PDefManager::UseWorkArea
void UseWorkArea(G4PDefData *newOffset)
Definition:
G4PDefManager.cc:117
G4PDefManager::FreeSlave
void FreeSlave()
Definition:
G4PDefManager.cc:103
pwdefs.hh
G4ThreadLocal
#define G4ThreadLocal
Definition:
tls.hh:89
G4int
int G4int
Definition:
G4Types.hh:78
G4PDefManager::G4PDefManager
G4PDefManager()
Definition:
G4PDefManager.cc:59
G4ImpMutexAutoLock
Definition:
G4AutoLock.hh:108
G4TemplateAutoLock::unlock
void unlock()
Definition:
G4AutoLock.hh:82
globals.hh
G4Exception
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *comments)
Definition:
G4Exception.cc:41
G4PDefManager::slavetotalspace
G4PART_DLL G4ThreadLocalStatic G4int slavetotalspace
Definition:
G4PDefManager.hh:115
G4PDefManager::mutex
G4Mutex mutex
Definition:
G4PDefManager.hh:121
FatalException
Definition:
G4ExceptionSeverity.hh:60
G4PDefManager::CreateSubInstance
G4int CreateSubInstance()
Definition:
G4PDefManager.cc:64
G4PDefData
Definition:
G4PDefManager.hh:55
G4PDefData::initialize
void initialize()
Definition:
G4PDefManager.cc:51
G4AutoLock.hh
ForceCollisionState::free
G4TemplateAutoLock::lock
void lock()
Definition:
G4AutoLock.hh:88
Geant4
Geant4.10.02.p03
source
particles
management
src
G4PDefManager.cc
Generated by
1.8.13