47#include <unordered_map>
50template <
typename T,
typename Map_t = std::map<G4
int, T*>>
55 using mmap_t = std::multimap<G4int, T *>;
56 using pair_t = std::pair<G4int, T *>;
57 using uommap_t = std::unordered_multimap<G4int, T *>;
59#define is_same_t(_Tp, _Up) std::is_same<_Tp, _Up>::value
60#define is_multimap_t(_Mp) std::is_same<_Mp, mmap_t>::value
61#define is_uommap_t(_Mp) std::is_same<_Mp, uommap_t>::value
62#define is_mmap_t(_Mp) (is_multimap_t(_Mp) || is_uommap_t(_Mp))
63#define is_fundamental_t(_Tp) std::is_fundamental<_Tp>::value
65 template <
bool _Bp,
typename _Tp =
void>
66 using enable_if_t =
typename std::enable_if<_Bp, _Tp>::type;
69 template <
typename U = T, enable_if_t<is_fundamental_t(U), G4
int> = 0>
77 template <
typename U = T, enable_if_t<! is_fundamental_t(U), G4
int> = 0>
103 template <
typename U,
typename MapU_t>
106 MapU_t* aHitsMap = right.
GetMap();
107 for (
auto itr = aHitsMap->begin(); itr != aHitsMap->end(); ++itr)
127 template <
typename MapU_t = Map_t, enable_if_t<! is_mmap_t(MapU_t), G4
int> = 0>
133 template <
typename MapU_t = Map_t, enable_if_t<is_mmap_t(MapU_t), G4
int> = 0>
169 template <
typename U = T,
typename MapU_t = Map_t,
174 if (theHitsMap->find(key) == theHitsMap->end())
175 theHitsMap->insert(pair_t(key,
new T(*aHit)));
177 *theHitsMap->find(key)->second += *aHit;
178 return theHitsMap->size();
183 template <
typename U = T,
typename MapU_t = Map_t,
188 theHitsMap->insert(pair_t(key, aHit));
189 return theHitsMap->size();
195 template <
typename U = T,
typename MapU_t = Map_t,
202 theHitsMap->insert(pair_t(key, hit));
203 return theHitsMap->size();
212 template <
typename U = T,
typename MapU_t = Map_t,
217 if (theHitsMap->find(key) == theHitsMap->end())
218 theHitsMap->insert(pair_t(key,
new T(aHit)));
220 *theHitsMap->find(key)->second += aHit;
221 return theHitsMap->size();
227 template <
typename U = T,
typename MapU_t = Map_t,
232 if (theHitsMap->find(key) == theHitsMap->end()) theHitsMap->insert(pair_t(key, allocate()));
233 *theHitsMap->find(key)->second += aHit;
234 return theHitsMap->size();
239 template <
typename U = T,
typename MapU_t = Map_t,
244 theHitsMap->insert(pair_t(key,
new T(aHit)));
245 return theHitsMap->size();
251 template <
typename U = T,
typename MapU_t = Map_t,
258 theHitsMap->insert(pair_t(key, hit));
259 return theHitsMap->size();
268 template <
typename U = T,
typename MapU_t = Map_t,
270 inline std::size_t
set(
const G4int& key, U*& aHit)
const
273 if (theHitsMap->find(key) != theHitsMap->end())
delete theHitsMap->find(key)->second;
274 theHitsMap->find(key)->second = aHit;
275 return theHitsMap->size();
280 template <
typename U = T,
typename MapU_t = Map_t,
282 inline std::size_t
set(
const G4int& key, U*& aHit)
const
285 if (theHitsMap->find(key) != theHitsMap->end())
286 theHitsMap->insert(pair_t(key, aHit));
288 delete theHitsMap->find(key)->second;
289 theHitsMap->find(key)->second = aHit;
291 return theHitsMap->size();
296 template <
typename U = T,
typename MapU_t = Map_t,
298 inline std::size_t
set(
const G4int& key, U*& aHit)
const
302 if (theHitsMap->find(key) == theHitsMap->end())
303 theHitsMap->insert(std::make_pair(key, hit = allocate()));
305 hit = theHitsMap->find(key)->second;
307 return theHitsMap->size();
312 template <
typename U = T,
typename MapU_t = Map_t,
314 inline std::size_t
set(
const G4int& key, U*& aHit)
const
319 if (theHitsMap->find(key) != theHitsMap->end())
320 theHitsMap->insert(pair_t(key, hit));
322 delete theHitsMap->find(key)->second;
323 theHitsMap->find(key)->second = hit;
325 return theHitsMap->size();
334 template <
typename U = T,
typename MapU_t = Map_t,
336 inline std::size_t
set(
const G4int& key, U& aHit)
const
340 if (theHitsMap->find(key) != theHitsMap->end())
341 hit = theHitsMap->find(key)->second;
343 theHitsMap->insert(pair_t(key, hit = allocate()));
345 return theHitsMap->size();
350 template <
typename U = T,
typename MapU_t = Map_t,
352 inline std::size_t
set(
const G4int& key, U& aHit)
const
355 if (theHitsMap->find(key) != theHitsMap->end())
356 *theHitsMap->find(key)->second = aHit;
358 theHitsMap->insert(pair_t(key,
new T(aHit)));
359 return theHitsMap->size();
364 template <
typename U = T,
typename MapU_t = Map_t,
366 inline std::size_t
set(
const G4int& key, U& aHit)
const
370 if (theHitsMap->find(key) == theHitsMap->end())
371 theHitsMap->insert(std::make_pair(key, hit = allocate()));
373 hit = theHitsMap->find(key)->second;
375 return theHitsMap->size();
380 template <
typename U = T,
typename MapU_t = Map_t,
382 inline std::size_t
set(
const G4int& key, U& aHit)
const
387 if (theHitsMap->find(key) != theHitsMap->end())
388 *theHitsMap->find(key)->second = *hit;
390 theHitsMap->insert(pair_t(key, hit));
391 return theHitsMap->size();
399 template <
typename MapU_t = Map_t, enable_if_t<! is_mmap_t(MapU_t), G4
int> = 0>
403 if (theHitsMap->find(key) != theHitsMap->end())
return theHitsMap->find(key)->second;
407 template <
typename MapU_t = Map_t, enable_if_t<is_mmap_t(MapU_t), G4
int> = 0>
411 static G4bool _first =
true;
415 "Returning the last matching entry");
419 iterator itr = theHitsMap->find(key);
420 if (itr != theHitsMap->end()) {
421 std::advance(itr, theHitsMap->count(key) - 1);
432#undef is_fundamental_t
437template <
typename T,
typename Map_t>
445template <
typename T,
typename Map_t>
454template <
typename T,
typename Map_t>
458 for (
auto itr = theHitsMap->begin(); itr != theHitsMap->end(); ++itr)
465template <
typename T,
typename Map_t>
473template <
typename T,
typename Map_t>
481template <
typename T,
typename Map_t>
502template <
typename T,
typename Map_t>
505 Map_t* theHitsMap =
GetMap();
506 for (
iterator itr = theHitsMap->begin(); itr != theHitsMap->end(); ++itr)
519template <
typename _Tp>
529 using parent_type::operator+=;
530 using parent_type::operator==;
531 using parent_type::operator[];
549template <
typename _Tp>
560 using parent_type::operator+=;
561 using parent_type::operator==;
562 using parent_type::operator[];
580template <
typename _Tp>
591 using parent_type::operator+=;
592 using parent_type::operator==;
593 using parent_type::operator[];
611template <
typename _Tp>
622 using parent_type::operator+=;
623 using parent_type::operator==;
624 using parent_type::operator[];
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
#define is_same_t(_Tp, _Up)
G4GLOB_DLL std::ostream G4cout
G4THitsMap(G4String detName, G4String colName)
G4VTHitsMap< _Tp, std::map< G4int, _Tp * > > parent_type
G4VTHitsMap< _Tp, std::multimap< G4int, _Tp * > > parent_type
G4THitsMultiMap(const G4String &detName, const G4String &colName)
G4VTHitsMap< _Tp, std::unordered_map< G4int, _Tp * > > parent_type
G4THitsUnorderedMap(const G4String &detName, const G4String &colName)
G4THitsUnorderedMultiMap(const G4String &detName, const G4String &colName)
G4THitsUnorderedMultiMap()
G4VTHitsMap< _Tp, std::unordered_multimap< G4int, _Tp * > > parent_type
G4VTHitsMap< T, Map_t > this_type
G4VHit * GetHit(std::size_t) const override
const_iterator cbegin() const
this_type & operator+=(const G4VTHitsMap< U, MapU_t > &right) const
typename map_type::iterator iterator
std::size_t set(const G4int &key, U *&aHit) const
const T * GetObject(const_iterator itr) const
std::size_t add(const G4int &key, U *&aHit) const
G4bool operator==(const G4VTHitsMap< T, Map_t > &right) const
Map_t * GetContainer() const
Map_t::size_type GetIndex(iterator itr)
const_iterator end() const
std::size_t GetSize() const override
void DrawAllHits() override
const_iterator begin() const
T * operator[](G4int key) const
const_iterator cend() const
void PrintAllHits() override
T * GetObject(iterator itr) const
std::size_t entries() const
std::size_t add(const G4int &key, U &aHit) const
Map_t::size_type GetIndex(const_iterator itr) const
typename map_type::const_iterator const_iterator
std::size_t set(const G4int &key, U &aHit) const
T * GetObject(G4int idx) const
G4VTHitsMap(const G4String &detName, const G4String &colNam)