Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4TDigiCollection< T > Class Template Reference

#include <G4TDigiCollection.hh>

+ Inheritance diagram for G4TDigiCollection< T >:

Public Member Functions

 G4TDigiCollection ()
 
 G4TDigiCollection (const G4String &detName, const G4String &colNam)
 
 ~G4TDigiCollection () override
 
G4bool operator== (const G4TDigiCollection &right) const
 
void * operator new (std::size_t)
 
void operator delete (void *aDC)
 
void DrawAllDigi () override
 
void PrintAllDigi () override
 
T * operator[] (std::size_t i) const
 
std::vector< T * > * GetVector () const
 
std::size_t insert (T *aHit)
 
std::size_t entries () const
 
G4VDigiGetDigi (std::size_t i) const override
 
std::size_t GetSize () const override
 
- Public Member Functions inherited from G4DigiCollection
 ~G4DigiCollection () override=default
 
G4bool operator== (const G4DigiCollection &right) const
 
 G4VDigiCollection ()=default
 
 G4VDigiCollection (const G4String &DMnam, const G4String &colNam)
 
- Public Member Functions inherited from G4VDigiCollection
 G4VDigiCollection ()=default
 
 G4VDigiCollection (const G4String &DMnam, const G4String &colNam)
 
virtual ~G4VDigiCollection ()=default
 
G4bool operator== (const G4VDigiCollection &right) const
 
const G4StringGetName () const
 
const G4StringGetDMname () const
 

Additional Inherited Members

- Protected Attributes inherited from G4DigiCollection
void * theCollection = nullptr
 
- Protected Attributes inherited from G4VDigiCollection
G4String collectionName = "Unknown"
 
G4String DMname = "Unknown"
 

Detailed Description

template<class T>
class G4TDigiCollection< T >

Definition at line 70 of file G4TDigiCollection.hh.

Constructor & Destructor Documentation

◆ G4TDigiCollection() [1/2]

◆ G4TDigiCollection() [2/2]

template<class T>
G4TDigiCollection< T >::G4TDigiCollection ( const G4String & detName,
const G4String & colNam )

Definition at line 140 of file G4TDigiCollection.hh.

◆ ~G4TDigiCollection()

template<class T>
G4TDigiCollection< T >::~G4TDigiCollection ( )
override

Definition at line 148 of file G4TDigiCollection.hh.

149{
151 for (const auto* digi : *theDigiCollection) {
152 delete digi;
153 }
154 theDigiCollection->clear();
155 delete theDigiCollection;
156}

Member Function Documentation

◆ DrawAllDigi()

template<class T>
void G4TDigiCollection< T >::DrawAllDigi ( )
overridevirtual

Reimplemented from G4VDigiCollection.

Definition at line 165 of file G4TDigiCollection.hh.

166{
168 for (auto* digi : *theDigiCollection) {
169 digi->Draw();
170 }
171}

◆ entries()

template<class T>
std::size_t G4TDigiCollection< T >::entries ( ) const
inline

Definition at line 106 of file G4TDigiCollection.hh.

107 {
109 return theDigiCollection->size();
110 }

◆ GetDigi()

template<class T>
G4VDigi * G4TDigiCollection< T >::GetDigi ( std::size_t i) const
inlineoverridevirtual

Reimplemented from G4VDigiCollection.

Definition at line 112 of file G4TDigiCollection.hh.

112{ return (*((std::vector<T*>*)theCollection))[i]; }

◆ GetSize()

template<class T>
std::size_t G4TDigiCollection< T >::GetSize ( ) const
inlineoverridevirtual

Reimplemented from G4VDigiCollection.

Definition at line 114 of file G4TDigiCollection.hh.

114{ return ((std::vector<T*>*)theCollection)->size(); }

◆ GetVector()

template<class T>
std::vector< T * > * G4TDigiCollection< T >::GetVector ( ) const
inline

Definition at line 94 of file G4TDigiCollection.hh.

◆ insert()

template<class T>
std::size_t G4TDigiCollection< T >::insert ( T * aHit)
inline

Definition at line 98 of file G4TDigiCollection.hh.

99 {
101 theDigiCollection->push_back(aHit);
102 return theDigiCollection->size();
103 }

◆ operator delete()

template<class T>
void G4TDigiCollection< T >::operator delete ( void * aDC)
inline

Definition at line 127 of file G4TDigiCollection.hh.

128{
130}
G4DLLIMPORT G4Allocator< G4DigiCollection > *& aDCAllocator_G4MT_TLS_()

◆ operator new()

template<class T>
void * G4TDigiCollection< T >::operator new ( std::size_t )
inline

Definition at line 118 of file G4TDigiCollection.hh.

119{
120 if (aDCAllocator_G4MT_TLS_() == nullptr) {
122 }
123 return (void*)aDCAllocator_G4MT_TLS_()->MallocSingle();
124}

◆ operator==()

template<class T>
G4bool G4TDigiCollection< T >::operator== ( const G4TDigiCollection< T > & right) const

Definition at line 159 of file G4TDigiCollection.hh.

160{
162}

◆ operator[]()

template<class T>
T * G4TDigiCollection< T >::operator[] ( std::size_t i) const
inline

Definition at line 91 of file G4TDigiCollection.hh.

91{ return (*((std::vector<T*>*)theCollection))[i]; }

◆ PrintAllDigi()

template<class T>
void G4TDigiCollection< T >::PrintAllDigi ( )
overridevirtual

Reimplemented from G4VDigiCollection.

Definition at line 174 of file G4TDigiCollection.hh.

175{
177 for (auto* digi : *theDigiCollection) {
178 digi->Print();
179 }
180}

The documentation for this class was generated from the following file: