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

#include <G4EventManager.hh>

Public Member Functions

 G4EventManager ()
 
 ~G4EventManager ()
 
 G4EventManager (const G4EventManager &right)=delete
 
G4EventManageroperator= (const G4EventManager &right)=delete
 
void ProcessOneEvent (G4Event *anEvent)
 
void ProcessOneEvent (G4TrackVector *trackVector, G4Event *anEvent=nullptr)
 
void StackTracks (G4TrackVector *trackVector, G4bool IDhasAlreadySet=false)
 
const G4EventGetConstCurrentEvent ()
 
G4EventGetNonconstCurrentEvent ()
 
void AbortCurrentEvent ()
 
void SetUserAction (G4UserEventAction *userAction)
 
void SetUserAction (G4UserStackingAction *userAction)
 
void SetUserAction (G4UserTrackingAction *userAction)
 
void SetUserAction (G4UserSteppingAction *userAction)
 
G4UserEventActionGetUserEventAction ()
 
G4UserStackingActionGetUserStackingAction ()
 
G4UserTrackingActionGetUserTrackingAction ()
 
G4UserSteppingActionGetUserSteppingAction ()
 
void KeepTheCurrentEvent ()
 
G4StackManagerGetStackManager () const
 
G4TrackingManagerGetTrackingManager () const
 
G4int GetVerboseLevel ()
 
void SetVerboseLevel (G4int value)
 
void SetUserInformation (G4VUserEventInformation *anInfo)
 
G4VUserEventInformationGetUserInformation ()
 
G4PrimaryTransformerGetPrimaryTransformer () const
 
void SetPrimaryTransformer (G4PrimaryTransformer *tf)
 
void StoreRandomNumberStatusToG4Event (G4int vl)
 
void UseSubEventParallelism (G4bool worker=false)
 
G4SubEventPopSubEvent (G4int ty)
 
void TerminateSubEvent (const G4SubEvent *se, const G4Event *evt)
 
G4int StoreSubEvent (G4Event *, G4int &, G4SubEvent *)
 

Static Public Member Functions

static G4EventManagerGetEventManager ()
 

Detailed Description

Definition at line 56 of file G4EventManager.hh.

Constructor & Destructor Documentation

◆ G4EventManager() [1/2]

G4EventManager::G4EventManager ( )

Definition at line 62 of file G4EventManager.cc.

63{
64 if(fpEventManager != nullptr)
65 {
66 G4Exception("G4EventManager::G4EventManager", "Event0001", FatalException,
67 "G4EventManager::G4EventManager() has already been made.");
68 }
69 else
70 {
71 trackManager = new G4TrackingManager;
72 transformer = new G4PrimaryTransformer;
73 trackContainer = new G4StackManager;
74 theMessenger = new G4EvManMessenger(this);
76 stateManager = G4StateManager::GetStateManager();
77 fpEventManager = this;
78 }
79}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
static G4SDManager * GetSDMpointerIfExist()
static G4StateManager * GetStateManager()

Referenced by G4EventManager(), GetEventManager(), and operator=().

◆ ~G4EventManager()

G4EventManager::~G4EventManager ( )

Definition at line 81 of file G4EventManager.cc.

82{
83 delete trackContainer;
84 delete transformer;
85 delete trackManager;
86 delete theMessenger;
87 delete userEventAction;
88 fpEventManager = nullptr;
89}

◆ G4EventManager() [2/2]

G4EventManager::G4EventManager ( const G4EventManager & right)
delete

Member Function Documentation

◆ AbortCurrentEvent()

void G4EventManager::AbortCurrentEvent ( )

Definition at line 524 of file G4EventManager.cc.

525{
526 abortRequested = true;
527 trackContainer->clear();
528 if(tracking) trackManager->EventAborted();
529}

◆ GetConstCurrentEvent()

const G4Event * G4EventManager::GetConstCurrentEvent ( )
inline

Definition at line 92 of file G4EventManager.hh.

93 { return currentEvent; }

Referenced by G4VisManager::Draw().

◆ GetEventManager()

◆ GetNonconstCurrentEvent()

G4Event * G4EventManager::GetNonconstCurrentEvent ( )
inline

Definition at line 94 of file G4EventManager.hh.

95 { return currentEvent; }

◆ GetPrimaryTransformer()

G4PrimaryTransformer * G4EventManager::GetPrimaryTransformer ( ) const
inline

Definition at line 147 of file G4EventManager.hh.

148 { return transformer; }

◆ GetStackManager()

G4StackManager * G4EventManager::GetStackManager ( ) const
inline

Definition at line 126 of file G4EventManager.hh.

127 { return trackContainer; }

◆ GetTrackingManager()

G4TrackingManager * G4EventManager::GetTrackingManager ( ) const
inline

Definition at line 128 of file G4EventManager.hh.

129 { return trackManager; }

Referenced by G4ErrorPropagator::G4ErrorPropagator(), and G4ErrorPropagatorManager::SetSteppingManagerVerboseLevel().

◆ GetUserEventAction()

G4UserEventAction * G4EventManager::GetUserEventAction ( )
inline

Definition at line 110 of file G4EventManager.hh.

111 { return userEventAction; }

◆ GetUserInformation()

G4VUserEventInformation * G4EventManager::GetUserInformation ( )

Definition at line 508 of file G4EventManager.cc.

509{
510 G4ApplicationState currentState = stateManager->GetCurrentState();
511 if(currentState != G4State_EventProc || currentEvent == nullptr)
512 {
513 return nullptr;
514 }
515
516 return currentEvent->GetUserInformation();
517}
G4ApplicationState
@ G4State_EventProc

◆ GetUserStackingAction()

G4UserStackingAction * G4EventManager::GetUserStackingAction ( )
inline

Definition at line 112 of file G4EventManager.hh.

113 { return userStackingAction; }

◆ GetUserSteppingAction()

G4UserSteppingAction * G4EventManager::GetUserSteppingAction ( )
inline

Definition at line 116 of file G4EventManager.hh.

117 { return userSteppingAction; }

◆ GetUserTrackingAction()

G4UserTrackingAction * G4EventManager::GetUserTrackingAction ( )
inline

Definition at line 114 of file G4EventManager.hh.

115 { return userTrackingAction; }

Referenced by G4ErrorPropagator::InvokePostUserTrackingAction(), and G4ErrorPropagator::InvokePreUserTrackingAction().

◆ GetVerboseLevel()

G4int G4EventManager::GetVerboseLevel ( )
inline

Definition at line 131 of file G4EventManager.hh.

132 { return verboseLevel; }

◆ KeepTheCurrentEvent()

void G4EventManager::KeepTheCurrentEvent ( )

Definition at line 519 of file G4EventManager.cc.

520{
521 if(currentEvent != nullptr) { currentEvent->KeepTheEvent(); }
522}

◆ operator=()

G4EventManager & G4EventManager::operator= ( const G4EventManager & right)
delete

◆ PopSubEvent()

G4SubEvent * G4EventManager::PopSubEvent ( G4int ty)

Definition at line 349 of file G4EventManager.cc.

350{
351 G4AutoLock lock(&EventMgrMutex);
352 if(currentEvent==nullptr) return nullptr;
353 return currentEvent->PopSubEvent(ty);
354}
G4TemplateAutoLock< G4Mutex > G4AutoLock

◆ ProcessOneEvent() [1/2]

void G4EventManager::ProcessOneEvent ( G4Event * anEvent)

Definition at line 455 of file G4EventManager.cc.

456{
457 trackIDCounter = 0;
458 DoProcessing(anEvent);
459}

◆ ProcessOneEvent() [2/2]

void G4EventManager::ProcessOneEvent ( G4TrackVector * trackVector,
G4Event * anEvent = nullptr )

Definition at line 461 of file G4EventManager.cc.

463{
464 static G4ThreadLocal G4String* randStat = nullptr;
465 if (randStat == nullptr) randStat = new G4String;
466 G4bool tempEvent = false;
467 G4bool newEvent = false;
468 if(anEvent == nullptr)
469 {
470 anEvent = new G4Event();
471 tempEvent = true;
472 newEvent = true;
473 } else {
474 if(evID_inSubEv != anEvent->GetEventID()) {
475 evID_inSubEv = anEvent->GetEventID();
476 newEvent = true;
477 }
478 }
479 if(newEvent) trackIDCounter = 0;
480
481 if (storetRandomNumberStatusToG4Event==1
482 || storetRandomNumberStatusToG4Event==3)
483 {
484 std::ostringstream oss;
486 (*randStat) = oss.str();
487 anEvent->SetRandomNumberStatus(*randStat);
488 }
489 DoProcessing(anEvent,trackVector,false);
490 if(tempEvent) { delete anEvent; }
491}
bool G4bool
Definition G4Types.hh:86
static std::ostream & saveFullState(std::ostream &os)
Definition Random.cc:288
void SetRandomNumberStatus(G4String &st)
Definition G4Event.hh:91
G4int GetEventID() const
Definition G4Event.hh:126
#define G4ThreadLocal
Definition tls.hh:77

◆ SetPrimaryTransformer()

void G4EventManager::SetPrimaryTransformer ( G4PrimaryTransformer * tf)
inline

Definition at line 149 of file G4EventManager.hh.

150 { transformer = tf; }

◆ SetUserAction() [1/4]

void G4EventManager::SetUserAction ( G4UserEventAction * userAction)

Definition at line 428 of file G4EventManager.cc.

429{
430 userEventAction = userAction;
431 if(userEventAction != nullptr)
432 {
433 userEventAction->SetEventManager(this);
434 }
435}

Referenced by G4ErrorPropagatorManager::SetUserAction(), G4ErrorPropagatorManager::SetUserAction(), G4ErrorRunManagerHelper::SetUserAction(), and G4ErrorRunManagerHelper::SetUserAction().

◆ SetUserAction() [2/4]

void G4EventManager::SetUserAction ( G4UserStackingAction * userAction)

Definition at line 437 of file G4EventManager.cc.

438{
439 userStackingAction = userAction;
440 trackContainer->SetUserStackingAction(userAction);
441}

◆ SetUserAction() [3/4]

void G4EventManager::SetUserAction ( G4UserSteppingAction * userAction)

Definition at line 449 of file G4EventManager.cc.

450{
451 userSteppingAction = userAction;
452 trackManager->SetUserAction(userAction);
453}

◆ SetUserAction() [4/4]

void G4EventManager::SetUserAction ( G4UserTrackingAction * userAction)

Definition at line 443 of file G4EventManager.cc.

444{
445 userTrackingAction = userAction;
446 trackManager->SetUserAction(userAction);
447}

◆ SetUserInformation()

void G4EventManager::SetUserInformation ( G4VUserEventInformation * anInfo)

Definition at line 493 of file G4EventManager.cc.

494{
495 G4ApplicationState currentState = stateManager->GetCurrentState();
496 if(currentState != G4State_EventProc || currentEvent == nullptr)
497 {
498 G4Exception("G4EventManager::SetUserInformation",
499 "Event0003", JustWarning,
500 "G4VUserEventInformation cannot be set because of absence "\
501 "of G4Event.");
502 return;
503 }
504
505 currentEvent->SetUserInformation(anInfo);
506}
@ JustWarning

◆ SetVerboseLevel()

void G4EventManager::SetVerboseLevel ( G4int value)
inline

Definition at line 133 of file G4EventManager.hh.

134 {
135 verboseLevel = value;
136 trackContainer->SetVerboseLevel( value );
137 transformer->SetVerboseLevel( value );
138 }

◆ StackTracks()

void G4EventManager::StackTracks ( G4TrackVector * trackVector,
G4bool IDhasAlreadySet = false )

Definition at line 393 of file G4EventManager.cc.

395{
396 if( trackVector != nullptr )
397 {
398 if( trackVector->empty() ) return;
399 for( auto newTrack : *trackVector )
400 {
401 ++trackIDCounter;
402 if(!IDhasAlreadySet)
403 {
404 newTrack->SetTrackID( trackIDCounter );
405 if(newTrack->GetDynamicParticle()->GetPrimaryParticle() != nullptr)
406 {
407 auto* pp
408 = (G4PrimaryParticle*)(newTrack->GetDynamicParticle()->GetPrimaryParticle());
409 pp->SetTrackID(trackIDCounter);
410 }
411 }
412 newTrack->SetOriginTouchableHandle(newTrack->GetTouchableHandle());
413 trackContainer->PushOneTrack( newTrack );
414#ifdef G4VERBOSE
415 if ( verboseLevel > 1 )
416 {
417 G4cout << "A new track " << newTrack
418 << " (trackID " << newTrack->GetTrackID()
419 << ", parentID " << newTrack->GetParentID()
420 << ") is passed to G4StackManager." << G4endl;
421 }
422#endif
423 }
424 trackVector->clear();
425 }
426}
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout

◆ StoreRandomNumberStatusToG4Event()

void G4EventManager::StoreRandomNumberStatusToG4Event ( G4int vl)
inline

Definition at line 151 of file G4EventManager.hh.

152 { storetRandomNumberStatusToG4Event = vl; }

◆ StoreSubEvent()

G4int G4EventManager::StoreSubEvent ( G4Event * evt,
G4int & subEvtType,
G4SubEvent * se )

Definition at line 383 of file G4EventManager.cc.

384{
385 G4AutoLock lock(&EventMgrMutex);
386 if(evt != currentEvent) {
387 G4Exception("G4EventManager::StoreSubEvent","SubEvt1011", FatalException,
388 "StoreSubEvent is invoked with a G4Event that is not the current event. PANIC!");
389 }
390 return evt->StoreSubEvent(subEvtType,se);
391}
G4int StoreSubEvent(G4int, G4SubEvent *)
Definition G4Event.cc:174

Referenced by G4SubEventTrackStack::PushToStack(), and G4SubEventTrackStack::ReleaseSubEvent().

◆ TerminateSubEvent()

void G4EventManager::TerminateSubEvent ( const G4SubEvent * se,
const G4Event * evt )

Definition at line 356 of file G4EventManager.cc.

357{
358 G4AutoLock lock(&EventMgrMutex);
359 auto ev = se->GetEvent();
360 ev->MergeSubEventResults(evt);
361 if(!subEventParaWorker && userEventAction!=nullptr) userEventAction->MergeSubEvent(ev,evt);
362#ifdef G4VERBOSE
363 // Capture this here because termination will delete subevent...
364 G4int seType = se->GetSubEventType();
365#endif
366 ev->TerminateSubEvent(const_cast<G4SubEvent*>(se));
367#ifdef G4VERBOSE
368 if ( verboseLevel > 1 )
369 {
370 G4cout << "A sub-event of type " << seType
371 << " is merged to the event " << ev->GetEventID() << G4endl;
372 if(ev->GetNumberOfRemainingSubEvents()>0)
373 {
374 G4cout << " ---- This event still has " << ev->GetNumberOfRemainingSubEvents()
375 << " sub-events to be processed." << G4endl;
376 }
377 else
378 { G4cout << " ---- This event has no more sub-event remaining." << G4endl; }
379 }
380#endif
381}
int G4int
Definition G4Types.hh:85
void MergeSubEventResults(const G4Event *se)
Definition G4Event.cc:225
G4int GetSubEventType() const
Definition G4SubEvent.hh:68
G4Event * GetEvent() const
Definition G4SubEvent.hh:76

◆ UseSubEventParallelism()

void G4EventManager::UseSubEventParallelism ( G4bool worker = false)
inline

Definition at line 154 of file G4EventManager.hh.

155 {
156 subEventPara = true;
157 subEventParaWorker = worker;
158 }

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