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

#include <G4Event.hh>

Public Member Functions

 G4Event ()=default
 
 G4Event (G4int evID)
 
 ~G4Event ()
 
 G4Event (const G4Event &)=delete
 
G4Eventoperator= (const G4Event &)=delete
 
void * operator new (std::size_t)
 
void operator delete (void *anEvent)
 
G4bool operator== (const G4Event &right) const
 
G4bool operator!= (const G4Event &right) const
 
void Print () const
 
void Draw () const
 
void SetEventID (G4int i)
 
void SetHCofThisEvent (G4HCofThisEvent *value)
 
void SetDCofThisEvent (G4DCofThisEvent *value)
 
void SetTrajectoryContainer (G4TrajectoryContainer *value)
 
void SetEventAborted ()
 
void SetRandomNumberStatus (G4String &st)
 
void SetRandomNumberStatusForProcessing (G4String &st)
 
void KeepTheEvent (G4bool vl=true) const
 
G4bool KeepTheEventFlag () const
 
G4bool ToBeKept () const
 
void KeepForPostProcessing () const
 
void PostProcessingFinished () const
 
G4int GetNumberOfGrips () const
 
G4int GetEventID () const
 
void AddPrimaryVertex (G4PrimaryVertex *aPrimaryVertex)
 
G4int GetNumberOfPrimaryVertex () const
 
G4PrimaryVertexGetPrimaryVertex (G4int i=0) const
 
G4HCofThisEventGetHCofThisEvent () const
 
G4DCofThisEventGetDCofThisEvent () const
 
G4TrajectoryContainerGetTrajectoryContainer () const
 
G4bool IsAborted () const
 
void SetUserInformation (G4VUserEventInformation *anInfo)
 
G4VUserEventInformationGetUserInformation () const
 
const G4StringGetRandomNumberStatus () const
 
const G4StringGetRandomNumberStatusForProcessing () const
 
G4SubEventPopSubEvent (G4int)
 
G4int TerminateSubEvent (G4SubEvent *)
 
G4int StoreSubEvent (G4int, G4SubEvent *)
 
G4int SpawnSubEvent (G4SubEvent *)
 
G4int GetNumberOfRemainingSubEvents () const
 
G4int GetNumberOfCompletedSubEvent () const
 
void MergeSubEventResults (const G4Event *se)
 
void FlagAsSubEvent (G4Event *me, G4int ty)
 
G4EventGetMotherEvent () const
 
G4int GetSubEventType () const
 
void ScoresRecorded () const
 
G4bool ScoresAlreadyRecorded () const
 
void EventCompleted () const
 
G4bool IsEventCompleted () const
 

Detailed Description

Definition at line 58 of file G4Event.hh.

Constructor & Destructor Documentation

◆ G4Event() [1/3]

◆ G4Event() [2/3]

G4Event::G4Event ( G4int evID)
explicit

Definition at line 50 of file G4Event.cc.

51 : eventID(evID)
52{
53}

◆ ~G4Event()

G4Event::~G4Event ( )

Definition at line 55 of file G4Event.cc.

56{
57 G4PrimaryVertex* nextVertex = thePrimaryVertex;
58 while(nextVertex != nullptr)
59 {
60 G4PrimaryVertex* thisVertex = nextVertex;
61 nextVertex = thisVertex->GetNext();
62 thisVertex->ClearNext();
63 delete thisVertex;
64 }
65 thePrimaryVertex = nullptr;
66 delete HC;
67 delete DC;
68 if(trajectoryContainer != nullptr)
69 {
70 trajectoryContainer->clearAndDestroy();
71 delete trajectoryContainer;
72 }
73 delete userInfo;
74 delete randomNumberStatus;
75 delete randomNumberStatusForProcessing;
76
77 // TODO (PHASE-II): count remaining subevents for scoring
78 for(auto& sem : fSubEvtStackMap)
79 {
80 if((sem.second!=nullptr)&&!(sem.second->empty()))
81 {
82 for(auto& se : *(sem.second))
83 { delete se; }
84 sem.second->clear();
85 }
86 }
87 /* TODO (PHASE-II): Handle incorrect scoring
88 if(!scoresRecorded) {
89 G4ExceptionDescription ed;
90 ed << "Deleting G4Event (id:" << eventID << ") that still has unrecorded scores -- "
91 << remainingSE << " sub-events un-processed.";
92 G4Exception("G4Event::~G4Event()","SubEvt0001",FatalException,ed);
93 } else if(remainingSE>0) {
94 G4ExceptionDescription ed;
95 ed << "Deleting G4Event (id:" << eventID << ") that still has "
96 << remainingSE << " sub-events un-processed.";
97 G4Exception("G4Event::~G4Event()","SubEvt0002",FatalException,ed);
98 }
99 */
100 if(!(fSubEvtVector.empty()))
101 {
102 for(auto& se : fSubEvtVector)
103 {
104 G4cout << "SubEvent " << se << " belongs to " << se->GetEvent()
105 << " (eventID=" << se->GetEvent()->GetEventID() << ") that has "
106 << se->GetNTrack() << " stacked tracks"<<G4endl;
107 }
109 ed << "Deleting G4Event (id:" << eventID << ") that has "
110 << fSubEvtVector.size() << " sub-events still processing.";
111 G4Exception("G4Event::~G4Event()","SubEvt0003",FatalException,ed);
112 // TODO (PHASE-II): Handle deletion of subevents correctly
113 //for(auto& se : fSubEvtVector)
114 //{ delete se; }
115 //fSubEvtVector.clear();
116 }
117
118 if(!(fSubEventGarbageBin.empty()))
119 {
120 for(auto& se : fSubEventGarbageBin)
121 { delete se; }
122 fSubEventGarbageBin.clear();
123 }
124}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
G4PrimaryVertex * GetNext() const

◆ G4Event() [3/3]

G4Event::G4Event ( const G4Event & )
delete

Member Function Documentation

◆ AddPrimaryVertex()

void G4Event::AddPrimaryVertex ( G4PrimaryVertex * aPrimaryVertex)
inline

Definition at line 129 of file G4Event.hh.

130 {
131 // This method sets a new primary vertex. This method must be invoked
132 // exclusively by G4VPrimaryGenerator concrete class.
133
134 if( thePrimaryVertex == nullptr )
135 { thePrimaryVertex = aPrimaryVertex; }
136 else
137 { thePrimaryVertex->SetNext( aPrimaryVertex ); }
138 ++numberOfPrimaryVertex;
139 }

Referenced by G4AdjointPrimaryGeneratorAction::GeneratePrimaries(), G4RTPrimaryGeneratorAction::GeneratePrimaries(), G4HEPEvtInterface::GeneratePrimaryVertex(), G4ParticleGun::GeneratePrimaryVertex(), G4SingleParticleSource::GeneratePrimaryVertex(), and G4RayShooter::Shoot().

◆ Draw()

void G4Event::Draw ( ) const

Definition at line 141 of file G4Event.cc.

142{
143 G4VVisManager* pVVisManager = G4VVisManager::GetConcreteInstance();
144 if(pVVisManager == nullptr) return;
145
146 if(trajectoryContainer != nullptr)
147 {
148 std::size_t n_traj = trajectoryContainer->entries();
149 for(std::size_t i=0; i<n_traj; ++i)
150 { (*trajectoryContainer)[i]->DrawTrajectory(); }
151 }
152
153 if(HC != nullptr)
154 {
155 std::size_t n_HC = HC->GetCapacity();
156 for(std::size_t j=0; j<n_HC; ++j)
157 {
158 G4VHitsCollection* VHC = HC->GetHC((G4int)j);
159 if(VHC != nullptr) VHC->DrawAllHits();
160 }
161 }
162
163 if(DC != nullptr)
164 {
165 std::size_t n_DC = DC->GetCapacity();
166 for(std::size_t j=0; j<n_DC; ++j)
167 {
168 G4VDigiCollection* VDC = DC->GetDC((G4int)j);
169 if(VDC != nullptr) VDC->DrawAllDigi();
170 }
171 }
172}
int G4int
Definition G4Types.hh:85
virtual void DrawAllDigi()
virtual void DrawAllHits()
static G4VVisManager * GetConcreteInstance()

◆ EventCompleted()

void G4Event::EventCompleted ( ) const
inline

Definition at line 303 of file G4Event.hh.

303{ eventCompleted = true; }

Referenced by G4SubEvtRunManager::CleanUpUnnecessaryEvents(), and G4SubEvtRunManager::StackPreviousEvent().

◆ FlagAsSubEvent()

void G4Event::FlagAsSubEvent ( G4Event * me,
G4int ty )
inline

Definition at line 287 of file G4Event.hh.

288 {
289 motherEvent = me;
290 subEventType = ty;
291 }

Referenced by G4WorkerSubEvtRunManager::DoWork().

◆ GetDCofThisEvent()

G4DCofThisEvent * G4Event::GetDCofThisEvent ( ) const
inline

Definition at line 166 of file G4Event.hh.

167 { return DC; }

Referenced by G4DigiManager::GetDigiCollection(), G4DigiManager::SetDigiCollection(), and G4PersistencyManager::Store().

◆ GetEventID()

◆ GetHCofThisEvent()

G4HCofThisEvent * G4Event::GetHCofThisEvent ( ) const
inline

◆ GetMotherEvent()

G4Event * G4Event::GetMotherEvent ( ) const
inline

Definition at line 292 of file G4Event.hh.

293 { return motherEvent; }

◆ GetNumberOfCompletedSubEvent()

G4int G4Event::GetNumberOfCompletedSubEvent ( ) const
inline

Definition at line 260 of file G4Event.hh.

261 { return (G4int)fSubEventGarbageBin.size(); }

Referenced by G4RunManager::ReportEventDeletion().

◆ GetNumberOfGrips()

◆ GetNumberOfPrimaryVertex()

G4int G4Event::GetNumberOfPrimaryVertex ( ) const
inline

Definition at line 141 of file G4Event.hh.

142 { return numberOfPrimaryVertex; }

◆ GetNumberOfRemainingSubEvents()

G4int G4Event::GetNumberOfRemainingSubEvents ( ) const

Definition at line 277 of file G4Event.cc.

280{
281 G4AutoLock lock(&SubEventMutex);
282 auto tot = (G4int)fSubEvtVector.size();
283 for(auto& sem : fSubEvtStackMap)
284 { tot += (G4int)sem.second->size(); }
285 return tot;
286}
G4TemplateAutoLock< G4Mutex > G4AutoLock

Referenced by G4SubEvtRunManager::CleanUpUnnecessaryEvents(), G4RunManager::ReportEventDeletion(), G4SubEvtRunManager::StackPreviousEvent(), and ToBeKept().

◆ GetPrimaryVertex()

G4PrimaryVertex * G4Event::GetPrimaryVertex ( G4int i = 0) const
inline

Definition at line 145 of file G4Event.hh.

146 {
147 if( i == 0 )
148 { return thePrimaryVertex; }
149 if( i > 0 && i < numberOfPrimaryVertex )
150 {
151 G4PrimaryVertex* primaryVertex = thePrimaryVertex;
152 for( G4int j=0; j<i; ++j )
153 {
154 if( primaryVertex == nullptr ) return nullptr;
155 primaryVertex = primaryVertex->GetNext();
156 }
157 return primaryVertex;
158 }
159
160 return nullptr;
161 }

Referenced by G4AdjointPrimaryGeneratorAction::GeneratePrimaries(), and G4PrimaryTransformer::GimmePrimaries().

◆ GetRandomNumberStatus()

const G4String & G4Event::GetRandomNumberStatus ( ) const
inline

Definition at line 185 of file G4Event.hh.

186 {
187 if(!validRandomNumberStatus)
188 { G4Exception(
189 "G4Event::GetRandomNumberStatus","Event0701",JustWarning,
190 "Random number status is not available for this event."); }
191 return *randomNumberStatus;
192 }
@ JustWarning

◆ GetRandomNumberStatusForProcessing()

const G4String & G4Event::GetRandomNumberStatusForProcessing ( ) const
inline

Definition at line 193 of file G4Event.hh.

194 {
195 if(!validRandomNumberStatusForProcessing)
196 { G4Exception(
197 "G4Event::GetRandomNumberStatusForProcessing","Event0702",
199 "Random number status is not available for this event."); }
200 return *randomNumberStatusForProcessing;
201 }

◆ GetSubEventType()

G4int G4Event::GetSubEventType ( ) const
inline

Definition at line 294 of file G4Event.hh.

295 { return subEventType; }

◆ GetTrajectoryContainer()

G4TrajectoryContainer * G4Event::GetTrajectoryContainer ( ) const
inline

Definition at line 168 of file G4Event.hh.

169 { return trajectoryContainer; }

Referenced by G4TheRayTracer::GenerateColour(), G4SubEvtRunManager::MergeTrajectories(), and G4RTRun::RecordEvent().

◆ GetUserInformation()

G4VUserEventInformation * G4Event::GetUserInformation ( ) const
inline

Definition at line 181 of file G4Event.hh.

182 { return userInfo; }

◆ IsAborted()

G4bool G4Event::IsAborted ( ) const
inline

Definition at line 175 of file G4Event.hh.

175{ return eventAborted; }

◆ IsEventCompleted()

G4bool G4Event::IsEventCompleted ( ) const
inline

Definition at line 304 of file G4Event.hh.

304{ return eventCompleted; }

Referenced by G4SubEvtRunManager::CleanUpUnnecessaryEvents(), and G4SubEvtRunManager::StackPreviousEvent().

◆ KeepForPostProcessing()

void G4Event::KeepForPostProcessing ( ) const
inline

Definition at line 112 of file G4Event.hh.

113 { ++grips; }

◆ KeepTheEvent()

void G4Event::KeepTheEvent ( G4bool vl = true) const
inline

Definition at line 101 of file G4Event.hh.

102 { keepTheEvent = vl; }

◆ KeepTheEventFlag()

G4bool G4Event::KeepTheEventFlag ( ) const
inline

Definition at line 103 of file G4Event.hh.

104 { return keepTheEvent; }

Referenced by G4RunManager::ReportEventDeletion().

◆ MergeSubEventResults()

void G4Event::MergeSubEventResults ( const G4Event * se)

Definition at line 225 of file G4Event.cc.

226{
227 // TODO (PHASE-II): Handle merging of subevent trajectories
228 // Note:
229 // - scores are merged directly to the scoring manager
230 // - hits collections should be merged by the user event action
231 /*
232#ifdef G4_STORE_TRAJECTORY
233 if(se->trajectoryContainer!=nullptr && se->trajectoryContainer->size()>0)
234 {
235 if(trajectoryContainer==nullptr) trajectoryContainer = new G4TrajectoryContainer;
236 for(auto& trj : *(se->trajectoryContainer->GetVector()))
237 { trajectoryContainer->push_back(trj); }
238 }
239#endif
240*/
241}

Referenced by G4EventManager::TerminateSubEvent().

◆ operator delete()

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

Definition at line 318 of file G4Event.hh.

319{
320 anEventAllocator()->FreeSingle((G4Event*)anEvent);
321}
G4EVENT_DLL G4Allocator< G4Event > *& anEventAllocator()
Definition G4Event.cc:44
G4Event()=default

◆ operator new()

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

Definition at line 309 of file G4Event.hh.

310{
311 if (anEventAllocator() == nullptr)
312 {
313 anEventAllocator() = new G4Allocator<G4Event>;
314 }
315 return (void*)anEventAllocator()->MallocSingle();
316}

◆ operator!=()

G4bool G4Event::operator!= ( const G4Event & right) const

Definition at line 131 of file G4Event.cc.

132{
133 return ( eventID != right.eventID );
134}

◆ operator=()

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

◆ operator==()

G4bool G4Event::operator== ( const G4Event & right) const

Definition at line 126 of file G4Event.cc.

127{
128 return ( eventID == right.eventID );
129}

◆ PopSubEvent()

G4SubEvent * G4Event::PopSubEvent ( G4int ty)

Definition at line 190 of file G4Event.cc.

191{
192 G4AutoLock lock(&SubEventMutex);
193 G4SubEvent* se = nullptr;
194 auto ses = fSubEvtStackMap.find(ty);
195 if(ses!=fSubEvtStackMap.end())
196 {
197 auto sev = ses->second;
198 if(!(sev->empty()))
199 {
200 se = sev->extract(sev->begin()).value();
201 SpawnSubEvent(se);
202 }
203 }
204 return se;
205}
G4int SpawnSubEvent(G4SubEvent *)
Definition G4Event.cc:207

◆ PostProcessingFinished()

void G4Event::PostProcessingFinished ( ) const
inline

Definition at line 114 of file G4Event.hh.

115 {
116 --grips;
117 if (grips<0)
118 {
119 G4Exception("G4Event::Release()", "EVENT91001", JustWarning,
120 "Number of grips is negative. This cannot be correct.");
121 }
122 }

◆ Print()

void G4Event::Print ( ) const

Definition at line 136 of file G4Event.cc.

137{
138 G4cout << "G4Event " << eventID << G4endl;
139}

◆ ScoresAlreadyRecorded()

G4bool G4Event::ScoresAlreadyRecorded ( ) const
inline

Definition at line 302 of file G4Event.hh.

302{ return scoresRecorded; }

Referenced by G4RunManager::UpdateScoring().

◆ ScoresRecorded()

void G4Event::ScoresRecorded ( ) const
inline

Definition at line 301 of file G4Event.hh.

301{ scoresRecorded = true; }

Referenced by G4SubEvtRunManager::SubEventFinished(), and G4RunManager::UpdateScoring().

◆ SetDCofThisEvent()

void G4Event::SetDCofThisEvent ( G4DCofThisEvent * value)
inline

Definition at line 85 of file G4Event.hh.

86 { DC = value; }

Referenced by G4DigiManager::SetDigiCollection().

◆ SetEventAborted()

void G4Event::SetEventAborted ( )
inline

Definition at line 89 of file G4Event.hh.

90 { eventAborted = true; }

◆ SetEventID()

void G4Event::SetEventID ( G4int i)
inline

◆ SetHCofThisEvent()

void G4Event::SetHCofThisEvent ( G4HCofThisEvent * value)
inline

Definition at line 83 of file G4Event.hh.

84 { HC = value; }

◆ SetRandomNumberStatus()

void G4Event::SetRandomNumberStatus ( G4String & st)
inline

Definition at line 91 of file G4Event.hh.

92 {
93 randomNumberStatus = new G4String(st);
94 validRandomNumberStatus = true;
95 }

Referenced by G4EventManager::ProcessOneEvent().

◆ SetRandomNumberStatusForProcessing()

void G4Event::SetRandomNumberStatusForProcessing ( G4String & st)
inline

Definition at line 96 of file G4Event.hh.

97 {
98 randomNumberStatusForProcessing = new G4String(st);
99 validRandomNumberStatusForProcessing = true;
100 }

◆ SetTrajectoryContainer()

void G4Event::SetTrajectoryContainer ( G4TrajectoryContainer * value)
inline

Definition at line 87 of file G4Event.hh.

88 { trajectoryContainer = value; }

◆ SetUserInformation()

void G4Event::SetUserInformation ( G4VUserEventInformation * anInfo)
inline

Definition at line 179 of file G4Event.hh.

180 { userInfo = anInfo; }

◆ SpawnSubEvent()

G4int G4Event::SpawnSubEvent ( G4SubEvent * se)

Definition at line 207 of file G4Event.cc.

208{
209 // Can't use same mutex here as call by PopSubEvent but seems o.k. as only
210 // caller is PopSubEvent
211 //G4AutoLock lock(&SubEventMutex);
212 auto ss = fSubEvtVector.find(se);
213 if(ss!=fSubEvtVector.end())
214 {
216 ed << "Sub-event " << se << " of type " << se->GetSubEventType()
217 << " with " << se->GetNTrack() << " tracks has already spawned.";
218 G4Exception("G4Event::SpawnSubEvent","SubEvent9001",
219 FatalException,ed);
220 }
221 fSubEvtVector.insert(se);
222 return (G4int)fSubEvtVector.size();
223}
G4int GetSubEventType() const
Definition G4SubEvent.hh:68
std::size_t GetNTrack() const
Definition G4SubEvent.hh:69

Referenced by PopSubEvent().

◆ StoreSubEvent()

G4int G4Event::StoreSubEvent ( G4int ty,
G4SubEvent * se )

Definition at line 174 of file G4Event.cc.

175{
176 G4AutoLock lock(&SubEventMutex);
177 std::set<G4SubEvent*>* sev = nullptr;
178 auto ses = fSubEvtStackMap.find(ty);
179 if(ses==fSubEvtStackMap.end())
180 {
181 sev = new std::set<G4SubEvent*>;
182 fSubEvtStackMap[ty] = sev;
183 }
184 else
185 { sev = ses->second; }
186 sev->insert(se);
187 return (G4int)sev->size();
188}

Referenced by G4EventManager::StoreSubEvent().

◆ TerminateSubEvent()

G4int G4Event::TerminateSubEvent ( G4SubEvent * se)

Definition at line 243 of file G4Event.cc.

244{
245 G4AutoLock lock(&SubEventMutex);
246
247 auto ss = fSubEvtVector.find(se);
248 if(ss==fSubEvtVector.end())
249 {
251 ed << "Sub-event " << se << " of type " << se->GetSubEventType()
252 << " with " << se->GetNTrack() << " tracks of event " << se->GetEvent()->GetEventID()
253 << " in event " << se->GetEvent()
254 << " has never been spawned.";
255 G4Exception("G4Event::TerminateSubEvent","SubEvent9002",
256 FatalException,ed);
257 }
258
259 fSubEvtVector.erase(ss);
260
261 ss = fSubEvtVector.find(se);
262 if(ss!=fSubEvtVector.end())
263 {
265 ed << "Sub-event " << se << " of type " << se->GetSubEventType()
266 << " with " << se->GetNTrack() << " appears more than once. PANIC!";
267 G4Exception("G4Event::TerminateSubEvent","SubEvent9003",
268 FatalException,ed);
269 }
270
271 //se->clearAndDestroy();
272 //delete se;
273 fSubEventGarbageBin.insert(se);
274 return (G4int)fSubEvtVector.size();
275}
G4int GetEventID() const
Definition G4Event.hh:126
G4Event * GetEvent() const
Definition G4SubEvent.hh:76

◆ ToBeKept()

G4bool G4Event::ToBeKept ( ) const
inline

Definition at line 105 of file G4Event.hh.

106 {
107 /* TODO (PHASE-II): consider grips for subevents
108 { return keepTheEvent || grips>0 || GetNumberOfRemainingSubEvents()>0; }
109 */
110 return keepTheEvent || GetNumberOfRemainingSubEvents()>0;
111 }
G4int GetNumberOfRemainingSubEvents() const
Definition G4Event.cc:277

Referenced by G4RunManager::CleanUpPreviousEvents(), G4RunManager::CleanUpUnnecessaryEvents(), G4SubEvtRunManager::CleanUpUnnecessaryEvents(), G4RunManager::StackPreviousEvent(), and G4SubEvtRunManager::StackPreviousEvent().


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