Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4CacheReference< G4double > Class Reference

#include <G4CacheDetails.hh>

Public Member Functions

void Initialize (unsigned int id)
 
void Destroy (unsigned int id, G4bool last)
 
G4doubleGetCache (unsigned int id) const
 
void Initialize (unsigned int id)
 
void Destroy (unsigned int id, G4bool last)
 
G4doubleGetCache (unsigned int id) const
 

Detailed Description

Definition at line 116 of file G4CacheDetails.hh.

Member Function Documentation

◆ Destroy() [1/2]

void G4CacheReference< V >::Destroy ( unsigned int id,
G4bool last )
inline

Definition at line 76 of file G4CacheDetails.hh.

156{
157 if(cache() != nullptr)
158 {
159#ifdef g4cdebug
160 std::cout << "V: Destroying element " << id << " is last? " << last
161 << std::endl;
162#endif
163 if(cache()->size() < id)
164 {
166 msg << "Internal fatal error. Invalid G4Cache size (requested id: " << id
167 << " but cache has size: " << cache()->size();
168 msg << " Possibly client created G4Cache object in a thread and"
169 << " tried to delete it from another thread!";
170 G4Exception("G4CacheReference<V>::Destroy", "Cache001", FatalException,
171 msg);
172 return;
173 }
174 if(cache()->size() > id && (*cache())[id] != nullptr)
175 {
176#ifdef g4cdebug
177 std::cout << "V: Destroying element " << id
178 << " size: " << cache()->size() << std::endl;
179#endif
180 delete(*cache())[id];
181 (*cache())[id] = nullptr;
182 }
183 if(last)
184 {
185#ifdef g4cdebug
186 std::cout << "V: Destroying LAST element!" << std::endl;
187#endif
188 delete cache();
189 cache() = nullptr;
190 }
191 }
192}
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)

◆ Destroy() [2/2]

void G4CacheReference< G4double >::Destroy ( unsigned int id,
G4bool last )
inline

Definition at line 298 of file G4CacheDetails.hh.

299{
300 if(cache() != nullptr && last)
301 {
302#ifdef g4cdebug
303 std::cout << "DB: Destroying LAST element! Is it last? " << last
304 << std::endl;
305#endif
306 delete cache();
307 cache() = nullptr;
308 }
309}

◆ GetCache() [1/2]

V *& G4CacheReference< V >::GetCache ( unsigned int id) const
inline

Definition at line 80 of file G4CacheDetails.hh.

196{
197 return *(cache()->operator[](id));
198}

◆ GetCache() [2/2]

G4double & G4CacheReference< G4double >::GetCache ( unsigned int id) const
inline

Definition at line 311 of file G4CacheDetails.hh.

312{
313 return cache()->operator[](id);
314}

◆ Initialize() [1/2]

void G4CacheReference< V >::Initialize ( unsigned int id)
inline

Definition at line 73 of file G4CacheDetails.hh.

135{
136 // Create cache container
137 if(cache() == nullptr)
138 {
139#ifdef g4cdebug
140 std::cout << "Generic template container..." << std::endl;
141#endif
142 cache() = new cache_container;
143 }
144 if(cache()->size() <= id)
145 {
146 cache()->resize(id + 1, static_cast<V*>(0));
147 }
148 if((*cache())[id] == 0)
149 {
150 (*cache())[id] = new V;
151 }
152}

◆ Initialize() [2/2]

void G4CacheReference< G4double >::Initialize ( unsigned int id)
inline

Definition at line 283 of file G4CacheDetails.hh.

284{
285 if(cache() == nullptr)
286 {
287#ifdef g4cdebug
288 std::cout << "Specialized template for G4double container..." << std::endl;
289#endif
290 cache() = new cache_container;
291 }
292 if(cache()->size() <= id)
293 {
294 cache()->resize(id + 1, static_cast<G4double>(0));
295 }
296}

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