#include <G4CacheDetails.hh>
template<class VALTYPE>
class G4CacheReference< VALTYPE >
Definition at line 70 of file G4CacheDetails.hh.
◆ Destroy()
Definition at line 155 of file G4CacheDetails.hh.
156{
157 if(cache() != nullptr)
158 {
159#ifdef g4cdebug
160 std::cout <<
"V: Destroying element " <<
id <<
" is last? " <<
last
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!";
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 }
184 {
185#ifdef g4cdebug
187#endif
188 delete cache();
189 cache() = nullptr;
190 }
191 }
192}
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
◆ GetCache()
◆ Initialize()
Definition at line 134 of file G4CacheDetails.hh.
135{
136
137 if(cache() == nullptr)
138 {
139#ifdef g4cdebug
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}
The documentation for this class was generated from the following file: