Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4THitsVector.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// G4VTHitsVector, G4THitsVector & G4THitsDeque
27//
28// Class description:
29//
30// This is a template class of hits Vector and parametrised by
31// The concrete class of G4VHit. This is a uniform collection for
32// a particular concrete hit class objects.
33// An intermediate layer class G4HitsVector appeared in this
34// header file is used just for G4Allocator, because G4Allocator
35// cannot be instantiated with a template class. Thus G4HitsVector
36// class MUST NOT be directly used by the user.
37//
38// Author: Makoto Asai, Jonathan Madsen
39// --------------------------------------------------------------------
40#ifndef G4THitsVector_h
41#define G4THitsVector_h 1
42
43#include "G4THitsCollection.hh"
44#include "G4THitsMap.hh"
45#include "globals.hh"
46
47#include <deque>
48#include <map>
49#include <unordered_map>
50#include <vector>
51
52template <typename T, typename Vector_t = std::deque<T*>>
54{
55 public:
56
58 using value_type = T;
59 using vector_type = Vector_t;
60 using iterator = typename vector_type::iterator;
61 using const_iterator = typename vector_type::const_iterator;
62
63 using store_type = typename Vector_t::value_type;
64 using pair_t = std::pair<G4int, store_type>;
65 using map_t = std::map<G4int, store_type>;
66 using uomap_t = std::unordered_map<G4int, store_type>;
67 using mmap_t = std::multimap<G4int, store_type>;
68 using uommap_t = std::unordered_multimap<G4int, store_type>;
69
70 private:
71#define is_same_t(_Tp, _Up) std::is_same<_Tp, _Up>::value
72#define is_fundamental_t(_Tp) std::is_fundamental<_Tp>::value
73
74#define is_std_map_t(_Mp) std::is_same<_Mp, map_t>::value
75#define is_std_uomap_t(_Mp) std::is_same<_Mp, uomap_t>::value
76#define is_std_mmap_t(_Mp) std::is_same<_Mp, mmap_t>::value
77#define is_std_uommap_t(_Mp) std::is_same<_Mp, uommap_t>::value
78#define is_map_t(_Mp) \
79 (is_std_map_t(_Mp) ||\ is_std_mmap_t(_Mp) || \ is_std_uomap_t(_Mp) || \ is_std_uommap_t(_Mp))
80#define is_pointer_t(_Tp) std::is_pointer<_Tp>::value
81#define scast(_Tp) static_cast<_Tp>
82
83 template <G4bool _Bp, typename _Tp = void>
84 using enable_if_t = typename std::enable_if<_Bp, _Tp>::type;
85
86 public:
87
88 // generic constructor
89 G4VTHitsVector(G4int init_size = 0);
90 // det + collection description constructor
91 G4VTHitsVector(const G4String& detName, const G4String& colNam, G4int init_size = 0);
92 // destructor
93 ~G4VTHitsVector() override;
94 // equivalence operator
95 G4bool operator==(const this_type& rhs) const;
96
97 void DrawAllHits() override;
98 void PrintAllHits() override;
99 // These two methods invokes Draw() and Print() methods of all of
100 // hit objects stored in this map, respectively.
101
102 // Generic iteration
103 inline Vector_t* GetContainer() const { return scast(Vector_t*)(theCollection); }
104
105 inline typename Vector_t::size_type size() { return GetContainer()->size(); }
106
107 inline typename Vector_t::size_type GetIndex(iterator itr) { return std::distance(begin(), itr); }
108
109 inline typename Vector_t::size_type GetIndex(const_iterator itr) const
110 {
111 return std::distance(begin(), itr);
112 }
113
114 template <typename U = store_type, enable_if_t<(is_pointer_t(U)), G4int> = 0>
115 inline T* GetObject(G4int idx) const
116 {
117 return (idx < (G4int)GetContainer()->size()) ? (*GetContainer())[idx] : nullptr;
118 }
119
120 template <typename U = store_type, enable_if_t<(is_pointer_t(U)), G4int> = 0>
121 inline T* GetObject(iterator itr) const
122 {
123 return (*itr);
124 }
125
126 template <typename U = store_type, enable_if_t<(is_pointer_t(U)), G4int> = 0>
127 inline const T* GetObject(const_iterator itr) const
128 {
129 return (*itr);
130 }
131
132 template <typename U = store_type, enable_if_t<(! is_pointer_t(U)), G4int> = 0>
133 inline T* GetObject(G4int idx) const
134 {
135 return (idx < (G4int)GetContainer()->size()) ? &(*GetContainer())[idx] : nullptr;
136 }
137
138 template <typename U = store_type, enable_if_t<(! is_pointer_t(U)), G4int> = 0>
139 inline T* GetObject(iterator itr) const
140 {
141 return &(*itr);
142 }
143
144 template <typename U = store_type, enable_if_t<(! is_pointer_t(U)), G4int> = 0>
145 inline const T* GetObject(const_iterator itr) const
146 {
147 return &(*itr);
148 }
149
150 iterator begin() { return GetContainer()->begin(); }
151 iterator end() { return GetContainer()->end(); }
152 const_iterator begin() const { return GetContainer()->begin(); }
153 const_iterator end() const { return GetContainer()->end(); }
154 const_iterator cbegin() const { return GetContainer()->cbegin(); }
155 const_iterator cend() const { return GetContainer()->cend(); }
156
157 // Returns a pointer to a concrete hit object.
158 inline Vector_t* GetVector() const { return scast(Vector_t*)(theCollection); }
159
160 // Overwrite a hit object. Total number of hit objects stored in this
161 // map is returned.
162 inline std::size_t entries() const { return (scast(Vector_t*)(theCollection))->size(); }
163
164 // Returns the number of hit objects stored in this map
165 inline void clear();
166
167 G4VHit* GetHit(std::size_t) const override { return nullptr; }
168 std::size_t GetSize() const override { return (scast(Vector_t*)(theCollection))->size(); }
169
170 inline map_t* GetMap() const;
171
172 //------------------------------------------------------------------------//
173 // POINTER TYPE
174 //------------------------------------------------------------------------//
175 // ensure fundamental types are initialized to zero
176 template <typename U = T, typename V = store_type,
177 enable_if_t<(is_fundamental_t(U) && is_pointer_t(V)), G4int> = 0>
179 {
180 return new T(0.);
181 }
182
183 // non-fundamental types should set values to appropriate values
184 // and G4StatDouble stat(0.); stat += 1.0; gives n == 2;
185 template <typename U = T, typename V = store_type,
186 enable_if_t<(! is_fundamental_t(U) && is_pointer_t(V)), G4int> = 0>
188 {
189 return new T();
190 }
191
192 // ensure fundamental types are initialized to zero
193 template <typename U = store_type, enable_if_t<(is_pointer_t(U)), G4int> = 0>
195 {
196 return nullptr;
197 }
198
199 //------------------------------------------------------------------------//
200 // NON-POINTER TYPE
201 //------------------------------------------------------------------------//
202 // ensure fundamental types are initialized to zero
203 template <typename U = T, typename V = store_type,
204 enable_if_t<(is_fundamental_t(U) && ! is_pointer_t(V)), G4int> = 0>
206 {
207 return T(0.);
208 }
209 // non-fundamental types should set values to appropriate values
210 // and G4StatDouble stat(0.); stat += 1.0; gives n == 2;
211 template <typename U = T, typename V = store_type,
212 enable_if_t<(! is_fundamental_t(U) && ! is_pointer_t(V)), G4int> = 0>
214 {
215 return T();
216 }
217
218 // ensure fundamental types are initialized to zero
219 template <typename U = store_type, enable_if_t<(! is_pointer_t(U)), G4int> = 0>
221 {
222 return store_type();
223 }
224
225 //------------------------------------------------------------------------//
226 // Generic operator += where add(...) overloads handle various
227 // U and VectorU_t types
228 //------------------------------------------------------------------------//
229 template <typename U, typename VectorU_t,
230 enable_if_t<(is_pointer_t(typename VectorU_t::value_type)), G4int> = 0>
231 this_type& operator+=(const G4VTHitsVector<U, VectorU_t>& right) const
232 {
233 VectorU_t* aHitsVector = right.GetVector();
234 for (auto itr = aHitsVector->begin(); itr != aHitsVector->end(); ++itr) {
235 auto _ptr = (*itr) ? (*itr) : null();
236 if (_ptr) add<U>(std::distance(aHitsVector->begin(), itr), *_ptr);
237 }
238 return static_cast<this_type&>(*(const_cast<this_type*>(this)));
239 }
240 //------------------------------------------------------------------------//
241 template <typename U, typename VectorU_t,
242 enable_if_t<(! is_pointer_t(typename VectorU_t::value_type)), G4int> = 0>
243 this_type& operator+=(const G4VTHitsVector<U, VectorU_t>& right) const
244 {
245 VectorU_t* aHitsVector = right.GetVector();
246 for (auto itr = aHitsVector->begin(); itr != aHitsVector->end(); ++itr) {
247 auto _ptr = (*itr) ? (*itr) : allocate();
248 add<U>(std::distance(aHitsVector->begin(), itr), _ptr);
249 }
250 return static_cast<this_type&>(*(const_cast<this_type*>(this)));
251 }
252 //------------------------------------------------------------------------//
253 template <typename U, typename MapU_t,
254 enable_if_t<(is_pointer_t(typename MapU_t::mapped_type)), G4int> = 0>
255 this_type& operator+=(const G4VTHitsMap<U, MapU_t>& right) const
256 {
257 MapU_t* aHitsMap = right.GetMap();
258 for (auto itr = aHitsMap->begin(); itr != aHitsMap->end(); ++itr)
259 add<U>(itr->first, *(itr->second));
260 return static_cast<this_type&>(*(const_cast<this_type*>(this)));
261 }
262 //------------------------------------------------------------------------//
263 template <typename U, typename MapU_t,
264 enable_if_t<! (is_pointer_t(typename MapU_t::mapped_type)), G4int> = 0>
265 this_type& operator+=(const G4VTHitsMap<U, MapU_t>& right) const
266 {
267 MapU_t* aHitsMap = right.GetMap();
268 for (auto itr = aHitsMap->begin(); itr != aHitsMap->end(); ++itr)
269 add<U>(itr->first, itr->second);
270 return static_cast<this_type&>(*(const_cast<this_type*>(this)));
271 }
272 //------------------------------------------------------------------------//
273
274 //------------------------------------------------------------------------//
275 // Insert a hit object. Total number of hit objects stored in this
276 // map is returned.
277 //------------------------------------------------------------------------//
278 // Standard vector overload for any type
279 // assumes type T has overload of += operator for U
280 //------------------------------------------------------------------------//
281 template <typename U = T, enable_if_t<is_same_t(U, T), G4int> = 0>
282 std::size_t add(const G4int& key, U*& aHit) const
283 {
284 vector_type* theHitsVector = GetVector(key);
285 _add(theHitsVector, key, *aHit);
286 return theHitsVector->size();
287 }
288 //------------------------------------------------------------------------//
289 // Overload for different types
290 //------------------------------------------------------------------------//
291 template <typename U = T, enable_if_t<! is_same_t(U, T), G4int> = 0>
292 std::size_t add(const G4int& key, U*& aHit) const
293 {
294 vector_type* theHitsVector = GetVector(key);
295 store_type hit = allocate();
296 get_reference(hit) += *aHit;
297 _add(theHitsVector, key, *hit);
298 return theHitsVector->size();
299 }
300 //------------------------------------------------------------------------//
301 // Overload for same type
302 //------------------------------------------------------------------------//
303 template <typename U = T, enable_if_t<is_same_t(U, T), G4int> = 0>
304 std::size_t add(const G4int& key, U& aHit) const
305 {
306 vector_type* theHitsVector = GetVector(key);
307 _add(theHitsVector, key, aHit);
308 return theHitsVector->size();
309 }
310 //------------------------------------------------------------------------//
311 // Overload for different types
312 //------------------------------------------------------------------------//
313 template <typename U = T, enable_if_t<! is_same_t(U, T), G4int> = 0>
314 std::size_t add(const G4int& key, U& aHit) const
315 {
316 vector_type* theHitsVector = GetVector(key);
317 _add(theHitsVector, key, aHit);
318 return theHitsVector->size();
319 }
320 //------------------------------------------------------------------------//
321
322 //------------------------------------------------------------------------//
323 // Set a hit object. Total number of hit objects stored in this
324 // map is returned.
325 //------------------------------------------------------------------------//
326 // Overload for same type T
327 //------------------------------------------------------------------------//
328 template <typename U = T, enable_if_t<is_same_t(U, T), G4int> = 0>
329 inline std::size_t set(const G4int& key, U*& aHit) const
330 {
331 vector_type* theHitsVector = GetVector(key);
332 _assign(theHitsVector, key, aHit);
333 return theHitsVector->size();
334 }
335 //------------------------------------------------------------------------//
336 // Overload for different types
337 //------------------------------------------------------------------------//
338 template <typename U = T, enable_if_t<! is_same_t(U, T), G4int> = 0>
339 inline std::size_t set(const G4int& key, U*& aHit) const
340 {
341 vector_type* theHitsVector = GetVector(key);
342 store_type hit = allocate();
343 get_reference(hit) += *aHit;
344 _assign(theHitsVector, key, hit);
345 return theHitsVector->size();
346 }
347 //------------------------------------------------------------------------//
348
349 //------------------------------------------------------------------------//
350 // Set a hit object. Total number of hit objects stored in this
351 // map is returned.
352 //------------------------------------------------------------------------//
353 // Overload for same type T
354 //------------------------------------------------------------------------//
355 template <typename U = T, enable_if_t<is_same_t(U, T), G4int> = 0>
356 inline std::size_t set(const G4int& key, U& aHit) const
357 {
358 vector_type* theHitsVector = GetVector(key);
359 _assign(theHitsVector, key, &aHit);
360 return theHitsVector->size();
361 }
362 //------------------------------------------------------------------------//
363 // Overload for different types
364 //------------------------------------------------------------------------//
365 template <typename U = T, enable_if_t<! is_same_t(U, T), G4int> = 0>
366 inline std::size_t set(const G4int& key, U& aHit) const
367 {
368 vector_type* theHitsVector = GetVector(key);
369 store_type hit = allocate();
370 get_reference(hit) += aHit;
371 _assign(theHitsVector, key, &aHit);
372 return theHitsVector->size();
373 }
374
375 //------------------------------------------------------------------------//
376 T* at(G4int key) const
377 {
378 vector_type* theHitsVector = GetVector();
379 resize(theHitsVector, key);
380 return &get_reference((*theHitsVector)[key]);
381 }
382 //------------------------------------------------------------------------//
383 T* operator[](G4int key) const
384 {
385 vector_type* theHitsVector = GetVector();
386 resize(theHitsVector, key);
387 return &get_reference((*theHitsVector)[key]);
388 }
389 //------------------------------------------------------------------------//
390
391 protected:
392
393 template <typename U = store_type, enable_if_t<(is_pointer_t(U)), G4int> = 0>
394 void resize(vector_type*& theHitsVector, const G4int& key) const
395 {
396 // ensure the proper size
397 if (key >= (G4int)theHitsVector->size()) theHitsVector->resize(key + 1, null());
398
399 // if null pointer for vector entry: allocate
400 if (! theHitsVector->at(key)) {
401 store_type init = allocate();
402 _assign(theHitsVector, key, init);
403 }
404 }
405
406 template <typename U = store_type, enable_if_t<(! is_pointer_t(U)), G4int> = 0>
407 void resize(vector_type*& theHitsVector, const G4int& key) const
408 {
409 // ensure the proper size
410 if (key >= (G4int)theHitsVector->size()) theHitsVector->resize(key + 1, null());
411 }
412
413 vector_type* GetVector(const G4int& key) const
414 {
415 vector_type* theHitsVector = GetVector();
416 resize(theHitsVector, key);
417 return theHitsVector;
418 }
419
420 //------------------------------------------------------------------------//
421 // Assign/Add when the storage type is pointer
422 // assumes type T has overload of += operator for U
423 //------------------------------------------------------------------------//
424 template <typename U = store_type, enable_if_t<is_pointer_t(U), G4int> = 0>
425 void _assign(vector_type*& theHitsVector, const G4int& key, T& val) const
426 {
427 delete (*theHitsVector)[key];
428 *(*theHitsVector)[key] = val;
429 }
430
431 template <typename U = store_type, enable_if_t<is_pointer_t(U), G4int> = 0>
432 void _assign(vector_type*& theHitsVector, const G4int& key, T*& val) const
433 {
434 delete (*theHitsVector)[key];
435 (*theHitsVector)[key] = val;
436 }
437
438 template <typename U = store_type, enable_if_t<is_pointer_t(U), G4int> = 0>
439 void _add(vector_type*& theHitsVector, const G4int& key, T& val) const
440 {
441 *(*theHitsVector)[key] += val;
442 }
443
444 template <typename U = store_type, enable_if_t<is_pointer_t(U), G4int> = 0>
445 void _add(vector_type*& theHitsVector, const G4int& key, T*& val) const
446 {
447 *(*theHitsVector)[key] += *val;
448 }
449
450 template <typename V, typename U = store_type, enable_if_t<is_pointer_t(U), G4int> = 0>
451 void _add(vector_type*& theHitsVector, const G4int& key, V& val) const
452 {
453 *(*theHitsVector)[key] += val;
454 }
455
456 template <typename V, typename U = store_type, enable_if_t<is_pointer_t(U), G4int> = 0>
457 void _add(vector_type*& theHitsVector, const G4int& key, V*& val) const
458 {
459 *(*theHitsVector)[key] += *val;
460 }
461
462 template <typename U = store_type, enable_if_t<is_pointer_t(U), G4int> = 0>
463 T& get(U& val) const
464 {
465 return *val;
466 }
467
468 template <typename U = store_type, enable_if_t<is_pointer_t(U), G4int> = 0>
469 void delete_contents(vector_type*& theHitsVector) const
470 {
471 for (auto itr = theHitsVector->begin(); itr != theHitsVector->end(); ++itr)
472 delete *itr;
473 }
474
475 template <typename U = store_type, enable_if_t<is_pointer_t(U), G4int> = 0>
476 T& get_reference(U& val) const
477 {
478 return *val;
479 }
480
481 //------------------------------------------------------------------------//
482 // Assign/Add when the storage type is pointer
483 // assumes type T has overload of += operator for U
484 //------------------------------------------------------------------------//
485 template <typename U = store_type, enable_if_t<! is_pointer_t(U), G4int> = 0>
486 void _assign(vector_type*& theHitsVector, const G4int& key, T& val) const
487 {
488 (*theHitsVector)[key] = val;
489 }
490
491 template <typename U = store_type, enable_if_t<! is_pointer_t(U), G4int> = 0>
492 void _assign(vector_type*& theHitsVector, const G4int& key, T*& val) const
493 {
494 delete (*theHitsVector)[key];
495 (*theHitsVector)[key] = *val;
496 }
497
498 template <typename U = store_type, enable_if_t<! is_pointer_t(U), G4int> = 0>
499 void _add(vector_type*& theHitsVector, const G4int& key, T& val) const
500 {
501 (*theHitsVector)[key] += val;
502 }
503
504 template <typename U = store_type, enable_if_t<! is_pointer_t(U), G4int> = 0>
505 void _add(vector_type*& theHitsVector, const G4int& key, T*& val) const
506 {
507 (*theHitsVector)[key] += *val;
508 }
509
510 template <typename V, typename U = store_type, enable_if_t<! is_pointer_t(U), G4int> = 0>
511 void _add(vector_type*& theHitsVector, const G4int& key, V& val) const
512 {
513 (*theHitsVector)[key] += val;
514 }
515
516 template <typename V, typename U = store_type, enable_if_t<! is_pointer_t(U), G4int> = 0>
517 void _add(vector_type*& theHitsVector, const G4int& key, V*& val) const
518 {
519 (*theHitsVector)[key] += *val;
520 }
521
522 template <typename U = store_type, enable_if_t<! is_pointer_t(U), G4int> = 0>
524 {}
525
526 template <typename U = store_type, enable_if_t<! is_pointer_t(U), G4int> = 0>
527 T& get_reference(U& val) const
528 {
529 return val;
530 }
531
532#undef is_same_t
533#undef is_fundamental_t
534#undef is_std_map_t
535#undef is_std_mmap_t
536#undef is_std_uomap_t
537#undef is_std_uommap_t
538#undef is_map_t
539#undef is_pointer_t
540#undef scast
541};
542
543//============================================================================//
544
545template <typename T, typename Vector_t>
547{
548 theCollection = static_cast<void*>(new Vector_t);
549 if (init_size > 0) {
550 vector_type* theHitsVector = GetVector();
551 resize(theHitsVector, init_size - 1);
552 }
553}
554
555//============================================================================//
556
557template <typename T, typename Vector_t>
559 : G4HitsCollection(detName, colNam)
560{
561 theCollection = static_cast<void*>(new Vector_t);
562 if (init_size > 0) {
563 vector_type* theHitsVector = GetVector();
564 resize(theHitsVector, init_size - 1);
565 }
566}
567
568//============================================================================//
569
570template <typename T, typename Vector_t>
572{
573 vector_type* theHitsVector = GetVector();
574 delete_contents(theHitsVector);
575 delete theHitsVector;
576}
577
578//============================================================================//
579
580template <typename T, typename Vector_t>
585
586//============================================================================//
587
588template <typename T, typename Vector_t>
590{
591 G4ThreadLocalStatic auto theHitsMap = new map_t();
592 theHitsMap->clear();
593 vector_type* theHitsVector = GetVector();
594 for (std::size_t i = 0; i < theHitsVector->size(); ++i) {
595 store_type& _obj = (*theHitsVector)[i];
596 if (_obj) (*theHitsMap)[i] = _obj;
597 }
598 return theHitsMap;
599}
600//============================================================================//
601
602template <typename T, typename Vector_t>
607
608//============================================================================//
609
610template <typename T, typename Vector_t>
612{
613 G4cout << "G4THitsVector " << SDname << " / " << collectionName << " --- " << entries()
614 << " entries" << G4endl;
615 /*----- commented out for the use-case where <T> cannot be initialized
616 to be zero or does not support += operator.
617 Vector_t * theHitsVector = GetVector();
618 typename Vector_t::iterator itr = theHitsVector->begin();
619 T sum = 0.;
620 for(; itr != theHitsVector->end(); ++itr) {
621 G4cout << " " << itr->first << " : "
622 << *(itr->second) << G4endl;
623 sum += *(itr->second);
624 }
625 G4cout << " Total : " << sum << G4endl;
626 ----------------------------------------------------------------------*/
627}
628
629//============================================================================//
630
631template <typename T, typename Vector_t>
633{
634 vector_type* theHitsVector = GetVector();
635 delete_contents(theHitsVector);
636 theHitsVector->clear();
637}
638
639//============================================================================//
640// //
641// //
642// Helpers for different map types //
643// //
644// //
645//============================================================================//
646
647template <typename _Tp>
649{
650 public:
652
653 public:
654 G4THitsVector(G4int init_size = 0) : parent_type(init_size) {}
655 G4THitsVector(const G4String& detName, const G4String& colName, G4int init_size = 0)
656 : parent_type(detName, colName, init_size)
657 {}
658
659 using parent_type::operator+=;
660 using parent_type::operator==;
661 using parent_type::operator[];
662 using parent_type::add;
663 using parent_type::begin;
664 using parent_type::cbegin;
665 using parent_type::cend;
666 using parent_type::clear;
667 using parent_type::DrawAllHits;
668 using parent_type::end;
669 using parent_type::entries;
670 using parent_type::GetHit;
671 using parent_type::GetMap;
672 using parent_type::GetSize;
673 using parent_type::GetVector;
674 using parent_type::PrintAllHits;
675 using parent_type::set;
676};
677
678//============================================================================//
679
680template <typename _Tp>
681class G4THitsDeque : public G4VTHitsVector<_Tp, std::deque<_Tp*>>
682{
683 public:
685
686 public:
687 G4THitsDeque(G4int init_size = 0) : parent_type(init_size) {}
688 G4THitsDeque(const G4String& detName, const G4String& colName, G4int init_size = 0)
689 : parent_type(detName, colName, init_size)
690 {}
691
692 using parent_type::operator+=;
693 using parent_type::operator==;
694 using parent_type::operator[];
695 using parent_type::add;
696 using parent_type::begin;
698 using parent_type::cend;
699 using parent_type::clear;
701 using parent_type::end;
708 using parent_type::set;
709};
710
711//============================================================================//
712
713#endif
#define is_fundamental_t(_Tp)
#define scast(_Tp)
#define is_pointer_t(_Tp)
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
G4THitsDeque(const G4String &detName, const G4String &colName, G4int init_size=0)
G4THitsDeque(G4int init_size=0)
G4VTHitsVector< _Tp, std::deque< _Tp * > > parent_type
G4VTHitsVector< _Tp, std::vector< _Tp * > > parent_type
G4THitsVector(G4int init_size=0)
G4THitsVector(const G4String &detName, const G4String &colName, G4int init_size=0)
Map_t * GetMap() const
void _assign(vector_type *&theHitsVector, const G4int &key, T &val) const
typename vector_type::iterator iterator
std::size_t GetSize() const override
T * GetObject(G4int idx) const
const_iterator cend() const
void delete_contents(vector_type *&theHitsVector) const
std::multimap< G4int, store_type > mmap_t
void _add(vector_type *&theHitsVector, const G4int &key, V *&val) const
G4VTHitsVector< T, Vector_t > this_type
map_t * GetMap() const
G4bool operator==(const this_type &rhs) const
G4VHit * GetHit(std::size_t) const override
void _add(vector_type *&theHitsVector, const G4int &key, V &val) const
std::pair< G4int, store_type > pair_t
~G4VTHitsVector() override
void _add(vector_type *&theHitsVector, const G4int &key, T &val) const
Vector_t::size_type GetIndex(iterator itr)
std::size_t set(const G4int &key, U &aHit) const
void _add(vector_type *&theHitsVector, const G4int &key, T *&val) const
Vector_t::size_type size()
store_type null() const
Vector_t::size_type GetIndex(const_iterator itr) const
T * at(G4int key) const
void delete_contents(vector_type *&) const
const_iterator cbegin() const
std::map< G4int, store_type > map_t
typename Vector_t::value_type store_type
typename vector_type::const_iterator const_iterator
Vector_t * GetVector() const
std::unordered_map< G4int, store_type > uomap_t
const_iterator begin() const
G4VTHitsVector(G4int init_size=0)
std::size_t set(const G4int &key, U *&aHit) const
void _assign(vector_type *&theHitsVector, const G4int &key, T *&val) const
T & get(U &val) const
void resize(vector_type *&theHitsVector, const G4int &key) const
void DrawAllHits() override
std::size_t add(const G4int &key, U *&aHit) const
void PrintAllHits() override
G4VTHitsVector(const G4String &detName, const G4String &colNam, G4int init_size=0)
const T * GetObject(const_iterator itr) const
T * GetObject(iterator itr) const
std::unordered_multimap< G4int, store_type > uommap_t
T * operator[](G4int key) const
vector_type * GetVector(const G4int &key) const
Vector_t * GetContainer() const
store_type allocate() const
std::size_t add(const G4int &key, U &aHit) const
std::size_t entries() const
const_iterator end() const
T & get_reference(U &val) const
#define G4ThreadLocalStatic
Definition tls.hh:76