Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4TDigiCollection.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// G4TDigiCollection & G4DigiCollection
27//
28// Class description:
29//
30// This is a template class of digi collection and parametrised by
31// The concrete class of G4VDigi. This is a uniform collection for
32// a particular concrete digi class objects.
33// An intermediate layer class G4DigiCollection appeared in this
34// header file is used just for G4Allocator, because G4Allocator
35// cannot be instantiated with a template class. Thus G4DigiCollection
36// class MUST NOT be directly used by the user.
37//
38// Author: Makoto Asai
39// --------------------------------------------------------------------
40#ifndef G4TDigiCollection_h
41#define G4TDigiCollection_h 1
42
43#include "G4Allocator.hh"
44#include "G4VDigiCollection.hh"
45#include "globals.hh"
46
47#include <vector>
48
50{
51 public:
52
54 ~G4DigiCollection() override = default;
55
56 G4bool operator==(const G4DigiCollection& right) const { return (this == &right); }
57
58 protected:
59
60 void* theCollection = nullptr;
61};
62
63#if defined G4DIGI_ALLOC_EXPORT
65#else
67#endif
68
69template <class T>
71{
72 public:
73
75 G4TDigiCollection(const G4String& detName, const G4String& colNam);
76 ~G4TDigiCollection() override;
77
78 G4bool operator==(const G4TDigiCollection& right) const;
79
80 inline void* operator new(std::size_t);
81 inline void operator delete(void* aDC);
82
83 // Invoke Draw() method on all stored digit objects in collection
84 void DrawAllDigi() override;
85
86 // Invoke Print() method on all stored digit objects in collection
87 void PrintAllDigi() override;
88
89 // Returns pointer to the concrete digi object at index i
90 // Not bounds checked
91 inline T* operator[](std::size_t i) const { return (*((std::vector<T*>*)theCollection))[i]; }
92
93 // Returns pointer to stored collection vector.
94 inline std::vector<T*>* GetVector() const { return (std::vector<T*>*)theCollection; }
95
96 // Insert a digit object in the collection, taking ownership
97 // Returns the total number of digi objects stored after insertion
98 inline std::size_t insert(T* aHit)
99 {
100 auto theDigiCollection = (std::vector<T*>*)theCollection;
101 theDigiCollection->push_back(aHit);
102 return theDigiCollection->size();
103 }
104
105 // Returns the number of digi objects stored in this collection.
106 inline std::size_t entries() const
107 {
108 auto theDigiCollection = (std::vector<T*>*)theCollection;
109 return theDigiCollection->size();
110 }
111
112 G4VDigi* GetDigi(std::size_t i) const override { return (*((std::vector<T*>*)theCollection))[i]; }
113
114 std::size_t GetSize() const override { return ((std::vector<T*>*)theCollection)->size(); }
115};
116
117template <class T>
118inline void* G4TDigiCollection<T>::operator new(std::size_t)
119{
120 if (aDCAllocator_G4MT_TLS_() == nullptr) {
122 }
123 return (void*)aDCAllocator_G4MT_TLS_()->MallocSingle();
124}
125
126template <class T>
127inline void G4TDigiCollection<T>::operator delete(void* aDC)
128{
129 aDCAllocator_G4MT_TLS_()->FreeSingle((G4DigiCollection*)aDC);
130}
131
132template <class T>
134{
135 auto theDigiCollection = new std::vector<T*>;
136 theCollection = (void*)theDigiCollection;
137}
138
139template <class T>
141 : G4DigiCollection(detName, colNam)
142{
143 auto theDigiCollection = new std::vector<T*>;
144 theCollection = (void*)theDigiCollection;
145}
146
147template <class T>
149{
150 auto theDigiCollection = (std::vector<T*>*)theCollection;
151 for (const auto* digi : *theDigiCollection) {
152 delete digi;
153 }
154 theDigiCollection->clear();
155 delete theDigiCollection;
156}
157
158template <class T>
163
164template <class T>
166{
167 auto theDigiCollection = (std::vector<T*>*)theCollection;
168 for (auto* digi : *theDigiCollection) {
169 digi->Draw();
170 }
171}
172
173template <class T>
175{
176 auto theDigiCollection = (std::vector<T*>*)theCollection;
177 for (auto* digi : *theDigiCollection) {
178 digi->Print();
179 }
180}
181
182#endif
G4DLLIMPORT G4Allocator< G4DigiCollection > *& aDCAllocator_G4MT_TLS_()
#define G4DLLIMPORT
Definition G4Types.hh:69
#define G4DLLEXPORT
Definition G4Types.hh:68
bool G4bool
Definition G4Types.hh:86
~G4DigiCollection() override=default
G4VDigiCollection()=default
G4bool operator==(const G4DigiCollection &right) const
void DrawAllDigi() override
G4VDigi * GetDigi(std::size_t i) const override
std::size_t entries() const
G4bool operator==(const G4TDigiCollection &right) const
std::size_t GetSize() const override
void PrintAllDigi() override
std::vector< T * > * GetVector() const
std::size_t insert(T *aHit)
T * operator[](std::size_t i) const
G4VDigiCollection()=default