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

#include <G4SubEvent.hh>

+ Inheritance diagram for G4SubEvent:

Public Member Functions

 G4SubEvent ()=default
 
 G4SubEvent (G4int ty, std::size_t maxEnt)
 
 ~G4SubEvent ()
 
G4SubEventoperator= (const G4SubEvent &)=delete
 
void * operator new (std::size_t)
 
void operator delete (void *anEvent)
 
G4bool operator== (const G4SubEvent &) const =delete
 
G4bool operator!= (const G4SubEvent &) const =delete
 
void PushToStack (const G4StackedTrack &aStackedTrack)
 
G4StackedTrack PopFromStack ()
 
void clearAndDestroy ()
 
G4int GetSubEventType () const
 
std::size_t GetNTrack () const
 
std::size_t GetMaxNTrack () const
 
G4double getTotalEnergy () const
 
void SetEvent (G4Event *evt)
 
G4EventGetEvent () const
 

Detailed Description

Definition at line 45 of file G4SubEvent.hh.

Constructor & Destructor Documentation

◆ G4SubEvent() [1/2]

G4SubEvent::G4SubEvent ( )
default

◆ G4SubEvent() [2/2]

G4SubEvent::G4SubEvent ( G4int ty,
std::size_t maxEnt )
inlineexplicit

Definition at line 50 of file G4SubEvent.hh.

51 : fSubEventType(ty), fMaxEnt(maxEnt) {;}

◆ ~G4SubEvent()

G4SubEvent::~G4SubEvent ( )

Definition at line 41 of file G4SubEvent.cc.

42{
44}
void clearAndDestroy()
Definition G4SubEvent.cc:46

Member Function Documentation

◆ clearAndDestroy()

void G4SubEvent::clearAndDestroy ( )

Definition at line 46 of file G4SubEvent.cc.

47{
48 for(auto & i : *this)
49 {
50 delete i.GetTrack();
51 delete i.GetTrajectory();
52 }
53 clear();
54}

Referenced by ~G4SubEvent().

◆ GetEvent()

◆ GetMaxNTrack()

std::size_t G4SubEvent::GetMaxNTrack ( ) const
inline

Definition at line 70 of file G4SubEvent.hh.

70{ return fMaxEnt; }

◆ GetNTrack()

std::size_t G4SubEvent::GetNTrack ( ) const
inline

Definition at line 69 of file G4SubEvent.hh.

69{ return size(); }

Referenced by G4Event::SpawnSubEvent(), and G4Event::TerminateSubEvent().

◆ GetSubEventType()

G4int G4SubEvent::GetSubEventType ( ) const
inline

Definition at line 68 of file G4SubEvent.hh.

68{ return fSubEventType; }

Referenced by G4Event::SpawnSubEvent(), G4Event::TerminateSubEvent(), and G4EventManager::TerminateSubEvent().

◆ getTotalEnergy()

G4double G4SubEvent::getTotalEnergy ( ) const

Definition at line 63 of file G4SubEvent.cc.

64{
65 G4double totalEnergy = 0.0;
66 for (const auto & i : *this)
67 {
68 totalEnergy += i.GetTrack()->GetDynamicParticle()->GetTotalEnergy();
69 }
70 return totalEnergy;
71}
double G4double
Definition G4Types.hh:83

◆ operator delete()

void G4SubEvent::operator delete ( void * anEvent)
inline

Definition at line 97 of file G4SubEvent.hh.

98{
99 aSubEventAllocator()->FreeSingle((G4SubEvent*)aSubEvent);
100}
G4EVENT_DLL G4Allocator< G4SubEvent > *& aSubEventAllocator()
Definition G4SubEvent.cc:35
G4SubEvent()=default

◆ operator new()

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

Definition at line 88 of file G4SubEvent.hh.

89{
90 if (aSubEventAllocator() == nullptr)
91 {
92 aSubEventAllocator() = new G4Allocator<G4SubEvent>;
93 }
94 return (void*)aSubEventAllocator()->MallocSingle();
95}

◆ operator!=()

G4bool G4SubEvent::operator!= ( const G4SubEvent & ) const
delete

◆ operator=()

G4SubEvent & G4SubEvent::operator= ( const G4SubEvent & )
delete

◆ operator==()

G4bool G4SubEvent::operator== ( const G4SubEvent & ) const
delete

◆ PopFromStack()

G4StackedTrack G4SubEvent::PopFromStack ( )

Definition at line 56 of file G4SubEvent.cc.

57{
58 G4Exception("G4SubEvent::PopFromStack","EventStack0001",
59 FatalException,"This method must not be invoked.");
60 return G4StackedTrack(nullptr);
61}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)

◆ PushToStack()

void G4SubEvent::PushToStack ( const G4StackedTrack & aStackedTrack)
inline

Definition at line 62 of file G4SubEvent.hh.

63 { push_back(aStackedTrack); }

◆ SetEvent()

void G4SubEvent::SetEvent ( G4Event * evt)
inline

Definition at line 75 of file G4SubEvent.hh.

75{ fpEvent = evt; }

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