60 using iterator =
typename vector_type::iterator;
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>;
71#define is_same_t(_Tp, _Up) std::is_same<_Tp, _Up>::value
72#define is_fundamental_t(_Tp) std::is_fundamental<_Tp>::value
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>
83 template <G4
bool _Bp,
typename _Tp =
void>
84 using enable_if_t =
typename std::enable_if<_Bp, _Tp>::type;
111 return std::distance(
begin(), itr);
114 template <
typename U = store_type, enable_if_t<(is_po
inter_t(U)), G4
int> = 0>
120 template <
typename U = store_type, enable_if_t<(is_po
inter_t(U)), G4
int> = 0>
126 template <
typename U = store_type, enable_if_t<(is_po
inter_t(U)), G4
int> = 0>
132 template <
typename U = store_type, enable_if_t<(! is_po
inter_t(U)), G4
int> = 0>
138 template <
typename U = store_type, enable_if_t<(! is_po
inter_t(U)), G4
int> = 0>
144 template <
typename U = store_type, enable_if_t<(! is_po
inter_t(U)), G4
int> = 0>
176 template <
typename U = T,
typename V =
store_type,
185 template <
typename U = T,
typename V =
store_type,
193 template <
typename U = store_type, enable_if_t<(is_po
inter_t(U)), G4
int> = 0>
203 template <
typename U = T,
typename V =
store_type,
211 template <
typename U = T,
typename V =
store_type,
219 template <
typename U = store_type, enable_if_t<(! is_po
inter_t(U)), G4
int> = 0>
229 template <
typename U,
typename VectorU_t,
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);
241 template <
typename U,
typename VectorU_t,
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);
253 template <
typename U,
typename MapU_t,
257 MapU_t* aHitsMap = right.
GetMap();
258 for (
auto itr = aHitsMap->begin(); itr != aHitsMap->end(); ++itr)
259 add<U>(itr->first, *(itr->second));
263 template <
typename U,
typename MapU_t,
267 MapU_t* aHitsMap = right.
GetMap();
268 for (
auto itr = aHitsMap->begin(); itr != aHitsMap->end(); ++itr)
269 add<U>(itr->first, itr->second);
281 template <
typename U = T, enable_if_t<is_same_t(U, T), G4
int> = 0>
285 _add(theHitsVector, key, *aHit);
286 return theHitsVector->size();
291 template <
typename U = T, enable_if_t<! is_same_t(U, T), G4
int> = 0>
297 _add(theHitsVector, key, *hit);
298 return theHitsVector->size();
303 template <
typename U = T, enable_if_t<is_same_t(U, T), G4
int> = 0>
307 _add(theHitsVector, key, aHit);
308 return theHitsVector->size();
313 template <
typename U = T, enable_if_t<! is_same_t(U, T), G4
int> = 0>
317 _add(theHitsVector, key, aHit);
318 return theHitsVector->size();
328 template <
typename U = T, enable_if_t<is_same_t(U, T), G4
int> = 0>
329 inline std::size_t
set(
const G4int& key, U*& aHit)
const
332 _assign(theHitsVector, key, aHit);
333 return theHitsVector->size();
338 template <
typename U = T, enable_if_t<! is_same_t(U, T), G4
int> = 0>
339 inline std::size_t
set(
const G4int& key, U*& aHit)
const
344 _assign(theHitsVector, key, hit);
345 return theHitsVector->size();
355 template <
typename U = T, enable_if_t<is_same_t(U, T), G4
int> = 0>
356 inline std::size_t
set(
const G4int& key, U& aHit)
const
359 _assign(theHitsVector, key, &aHit);
360 return theHitsVector->size();
365 template <
typename U = T, enable_if_t<! is_same_t(U, T), G4
int> = 0>
366 inline std::size_t
set(
const G4int& key, U& aHit)
const
371 _assign(theHitsVector, key, &aHit);
372 return theHitsVector->size();
379 resize(theHitsVector, key);
386 resize(theHitsVector, key);
393 template <
typename U = store_type, enable_if_t<(is_po
inter_t(U)), G4
int> = 0>
397 if (key >= (
G4int)theHitsVector->size()) theHitsVector->resize(key + 1,
null());
400 if (! theHitsVector->at(key)) {
402 _assign(theHitsVector, key, init);
406 template <
typename U = store_type, enable_if_t<(! is_po
inter_t(U)), G4
int> = 0>
410 if (key >= (
G4int)theHitsVector->size()) theHitsVector->resize(key + 1,
null());
416 resize(theHitsVector, key);
417 return theHitsVector;
424 template <
typename U = store_type, enable_if_t<is_po
inter_t(U), G4
int> = 0>
427 delete (*theHitsVector)[key];
428 *(*theHitsVector)[key] = val;
431 template <
typename U = store_type, enable_if_t<is_po
inter_t(U), G4
int> = 0>
434 delete (*theHitsVector)[key];
435 (*theHitsVector)[key] = val;
438 template <
typename U = store_type, enable_if_t<is_po
inter_t(U), G4
int> = 0>
441 *(*theHitsVector)[key] += val;
444 template <
typename U = store_type, enable_if_t<is_po
inter_t(U), G4
int> = 0>
447 *(*theHitsVector)[key] += *val;
450 template <
typename V,
typename U = store_type, enable_if_t<is_po
inter_t(U), G4
int> = 0>
453 *(*theHitsVector)[key] += val;
456 template <
typename V,
typename U = store_type, enable_if_t<is_po
inter_t(U), G4
int> = 0>
459 *(*theHitsVector)[key] += *val;
462 template <
typename U = store_type, enable_if_t<is_po
inter_t(U), G4
int> = 0>
468 template <
typename U = store_type, enable_if_t<is_po
inter_t(U), G4
int> = 0>
471 for (
auto itr = theHitsVector->begin(); itr != theHitsVector->end(); ++itr)
475 template <
typename U = store_type, enable_if_t<is_po
inter_t(U), G4
int> = 0>
485 template <
typename U = store_type, enable_if_t<! is_po
inter_t(U), G4
int> = 0>
488 (*theHitsVector)[key] = val;
491 template <
typename U = store_type, enable_if_t<! is_po
inter_t(U), G4
int> = 0>
494 delete (*theHitsVector)[key];
495 (*theHitsVector)[key] = *val;
498 template <
typename U = store_type, enable_if_t<! is_po
inter_t(U), G4
int> = 0>
501 (*theHitsVector)[key] += val;
504 template <
typename U = store_type, enable_if_t<! is_po
inter_t(U), G4
int> = 0>
507 (*theHitsVector)[key] += *val;
510 template <
typename V,
typename U = store_type, enable_if_t<! is_po
inter_t(U), G4
int> = 0>
513 (*theHitsVector)[key] += val;
516 template <
typename V,
typename U = store_type, enable_if_t<! is_po
inter_t(U), G4
int> = 0>
519 (*theHitsVector)[key] += *val;
522 template <
typename U = store_type, enable_if_t<! is_po
inter_t(U), G4
int> = 0>
526 template <
typename U = store_type, enable_if_t<! is_po
inter_t(U), G4
int> = 0>
533#undef is_fundamental_t
537#undef is_std_uommap_t