Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4HCofThisEvent Class Reference

#include <G4HCofThisEvent.hh>

Public Member Functions

 G4HCofThisEvent ()
 
 G4HCofThisEvent (G4int cap)
 
 ~G4HCofThisEvent ()
 
 G4HCofThisEvent (const G4HCofThisEvent &)
 
G4HCofThisEventoperator= (const G4HCofThisEvent &)
 
void * operator new (std::size_t)
 
void operator delete (void *anHCoTE)
 
void AddHitsCollection (G4int HCID, G4VHitsCollection *aHC)
 
G4VHitsCollectionGetHC (G4int i)
 
G4int GetNumberOfCollections ()
 
std::size_t GetCapacity ()
 

Detailed Description

Definition at line 50 of file G4HCofThisEvent.hh.

Constructor & Destructor Documentation

◆ G4HCofThisEvent() [1/3]

G4HCofThisEvent::G4HCofThisEvent ( )

Definition at line 37 of file G4HCofThisEvent.cc.

37{ HC = new std::vector<G4VHitsCollection*>; }

Referenced by G4HCofThisEvent(), operator delete(), and operator=().

◆ G4HCofThisEvent() [2/3]

G4HCofThisEvent::G4HCofThisEvent ( G4int cap)
explicit

Definition at line 39 of file G4HCofThisEvent.cc.

40{
41 HC = new std::vector<G4VHitsCollection*>(cap, nullptr);
42}

◆ ~G4HCofThisEvent()

G4HCofThisEvent::~G4HCofThisEvent ( )

Definition at line 44 of file G4HCofThisEvent.cc.

45{
46 for (const G4VHitsCollection* h : *HC) {
47 delete h;
48 }
49 delete HC;
50}

◆ G4HCofThisEvent() [3/3]

G4HCofThisEvent::G4HCofThisEvent ( const G4HCofThisEvent & rhs)

Definition at line 60 of file G4HCofThisEvent.cc.

61{
62 HC = new std::vector<G4VHitsCollection*>(rhs.HC->size());
63 for (unsigned int i = 0; i < rhs.HC->size(); ++i)
64 *(HC->at(i)) = *(rhs.HC->at(i));
65}

Member Function Documentation

◆ AddHitsCollection()

◆ GetCapacity()

std::size_t G4HCofThisEvent::GetCapacity ( )
inline

◆ GetHC()

G4VHitsCollection * G4HCofThisEvent::GetHC ( G4int i)
inline

◆ GetNumberOfCollections()

G4int G4HCofThisEvent::GetNumberOfCollections ( )
inline

Definition at line 74 of file G4HCofThisEvent.hh.

75 {
76 G4int n = 0;
77 for (const G4VHitsCollection* h : *HC) {
78 if (h != nullptr) ++n;
79 }
80 return n;
81 }

◆ operator delete()

void G4HCofThisEvent::operator delete ( void * anHCoTE)
inline

Definition at line 104 of file G4HCofThisEvent.hh.

105{
106 anHCoTHAllocator_G4MT_TLS_()->FreeSingle((G4HCofThisEvent*)anHCoTH);
107}
G4DLLIMPORT G4Allocator< G4HCofThisEvent > *& anHCoTHAllocator_G4MT_TLS_()

◆ operator new()

void * G4HCofThisEvent::operator new ( std::size_t )
inline

Definition at line 96 of file G4HCofThisEvent.hh.

97{
98 if (anHCoTHAllocator_G4MT_TLS_() == nullptr) {
99 anHCoTHAllocator_G4MT_TLS_() = new G4Allocator<G4HCofThisEvent>;
100 }
101 return (void*)anHCoTHAllocator_G4MT_TLS_()->MallocSingle();
102}

◆ operator=()

G4HCofThisEvent & G4HCofThisEvent::operator= ( const G4HCofThisEvent & rhs)

Definition at line 67 of file G4HCofThisEvent.cc.

68{
69 if (this == &rhs) return *this;
70
71 for (const G4VHitsCollection* it : *HC) {
72 delete it;
73 }
74 HC->resize(rhs.HC->size());
75 for (unsigned int i = 0; i < rhs.HC->size(); ++i)
76 *(HC->at(i)) = *(rhs.HC->at(i));
77 return *this;
78}

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