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

#include <G4THitsCollection.hh>

+ Inheritance diagram for G4THitsCollection< T >:

Public Member Functions

 G4THitsCollection ()
 
 G4THitsCollection (const G4String &detName, const G4String &colNam)
 
 ~G4THitsCollection () override
 
G4bool operator== (const G4THitsCollection< T > &right) const
 
void * operator new (std::size_t)
 
void operator delete (void *anHC)
 
void DrawAllHits () override
 
void PrintAllHits () override
 
T * operator[] (std::size_t i) const
 
std::vector< T * > * GetVector () const
 
std::size_t insert (T *aHit)
 
std::size_t entries () const
 
G4VHitGetHit (std::size_t i) const override
 
std::size_t GetSize () const override
 
- Public Member Functions inherited from G4HitsCollection
 ~G4HitsCollection () override=default
 
G4bool operator== (const G4HitsCollection &right) const
 
 G4VHitsCollection ()=default
 
 G4VHitsCollection (const G4String &detName, const G4String &colNam)
 
- Public Member Functions inherited from G4VHitsCollection
 G4VHitsCollection ()=default
 
 G4VHitsCollection (const G4String &detName, const G4String &colNam)
 
virtual ~G4VHitsCollection ()=default
 
G4bool operator== (const G4VHitsCollection &right) const
 
const G4StringGetName () const
 
const G4StringGetSDname () const
 
void SetColID (G4int i)
 
G4int GetColID () const
 

Additional Inherited Members

- Protected Attributes inherited from G4HitsCollection
void * theCollection = nullptr
 
- Protected Attributes inherited from G4VHitsCollection
G4String collectionName = "Unknown"
 
G4String SDname = "Unknown"
 
G4int colID = -1
 

Detailed Description

template<class T>
class G4THitsCollection< T >

Definition at line 69 of file G4THitsCollection.hh.

Constructor & Destructor Documentation

◆ G4THitsCollection() [1/2]

◆ G4THitsCollection() [2/2]

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

Definition at line 140 of file G4THitsCollection.hh.

◆ ~G4THitsCollection()

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

Definition at line 148 of file G4THitsCollection.hh.

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

Member Function Documentation

◆ DrawAllHits()

template<class T>
void G4THitsCollection< T >::DrawAllHits ( )
overridevirtual

Reimplemented from G4VHitsCollection.

Definition at line 165 of file G4THitsCollection.hh.

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

◆ entries()

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

Definition at line 106 of file G4THitsCollection.hh.

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

◆ GetHit()

template<class T>
G4VHit * G4THitsCollection< T >::GetHit ( std::size_t i) const
inlineoverridevirtual

Reimplemented from G4VHitsCollection.

Definition at line 112 of file G4THitsCollection.hh.

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

◆ GetSize()

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

Reimplemented from G4VHitsCollection.

Definition at line 114 of file G4THitsCollection.hh.

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

◆ GetVector()

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

Definition at line 94 of file G4THitsCollection.hh.

◆ insert()

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

Definition at line 98 of file G4THitsCollection.hh.

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

◆ operator delete()

template<class T>
void G4THitsCollection< T >::operator delete ( void * anHC)
inline

Definition at line 127 of file G4THitsCollection.hh.

128{
130}
G4DLLIMPORT G4Allocator< G4HitsCollection > *& anHCAllocator_G4MT_TLS_()

◆ operator new()

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

Definition at line 118 of file G4THitsCollection.hh.

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

◆ operator==()

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

Definition at line 159 of file G4THitsCollection.hh.

160{
162}

◆ operator[]()

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

Definition at line 91 of file G4THitsCollection.hh.

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

◆ PrintAllHits()

template<class T>
void G4THitsCollection< T >::PrintAllHits ( )
overridevirtual

Reimplemented from G4VHitsCollection.

Definition at line 174 of file G4THitsCollection.hh.

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

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