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

#include <G4OpenInventorQtExaminerViewer.hh>

+ Inheritance diagram for HookEventProcState:

Public Member Functions

 HookEventProcState (G4OpenInventorQtExaminerViewer *)
 
 ~HookEventProcState ()
 
virtual G4bool Notify (G4ApplicationState requestedState)
 
 HookEventProcState (G4OpenInventorXtExaminerViewer *)
 
 ~HookEventProcState ()
 
virtual G4bool Notify (G4ApplicationState requiredState)
 
- Public Member Functions inherited from G4VStateDependent
 G4VStateDependent (G4bool bottom=false)
 
virtual ~G4VStateDependent ()
 
G4bool operator== (const G4VStateDependent &right) const
 
G4bool operator!= (const G4VStateDependent &right) const
 
virtual void NotifyDeletion (const G4Event *)
 
virtual void NotifyDeletion (const G4Run *)
 

Detailed Description

Definition at line 39 of file G4OpenInventorQtExaminerViewer.hh.

Constructor & Destructor Documentation

◆ HookEventProcState() [1/2]

HookEventProcState::HookEventProcState ( G4OpenInventorQtExaminerViewer * vwr)

Definition at line 4242 of file G4OpenInventorQtExaminerViewer.cc.

4243{
4244 viewer = vwr;
4245}

◆ ~HookEventProcState() [1/2]

HookEventProcState::~HookEventProcState ( )

Definition at line 4247 of file G4OpenInventorQtExaminerViewer.cc.

4248{;}

◆ HookEventProcState() [2/2]

HookEventProcState::HookEventProcState ( G4OpenInventorXtExaminerViewer * vwr)

Definition at line 4924 of file G4OpenInventorXtExaminerViewer.cc.

4925{
4926 this->viewer = vwr;
4927}

◆ ~HookEventProcState() [2/2]

HookEventProcState::~HookEventProcState ( )

Member Function Documentation

◆ Notify() [1/2]

G4bool HookEventProcState::Notify ( G4ApplicationState requestedState)
virtual

Implements G4VStateDependent.

Definition at line 4250 of file G4OpenInventorQtExaminerViewer.cc.

4251{
4252#if QT_VERSION < 0x060000
4253 if (requestedState == G4State_EventProc) viewer->newEvents = true;
4254#else
4255#ifdef G4MULTITHREADED
4256 //G.Barrand: on the master thread, we are not notified of end of events,
4257 // we raise the newEvents flag on the end of run.
4258 G4StateManager* stateManager = G4StateManager::GetStateManager();
4259 G4ApplicationState previousState = stateManager->GetPreviousState();
4260 //if (previousState == G4State_Idle && requestedState == G4State_GeomClosed) //BeginOfRun
4261 //if (previousState == G4State_GeomClosed && requestedState == G4State_EventProc) //BeginOfEvent
4262 //if (previousState == G4State_EventProc && requestedState == G4State_GeomClosed) //EndOfEvent
4263 if (previousState == G4State_GeomClosed && requestedState == G4State_Idle) { //EndOfRun
4264 viewer->newEvents = true;
4265 }
4266#else
4267 if (requestedState == G4State_EventProc) viewer->newEvents = true;
4268#endif
4269#endif
4270 return true;
4271}
G4ApplicationState
@ G4State_EventProc
@ G4State_Idle
@ G4State_GeomClosed
static G4StateManager * GetStateManager()
const G4ApplicationState & GetPreviousState() const

◆ Notify() [2/2]

virtual G4bool HookEventProcState::Notify ( G4ApplicationState requiredState)
virtual

Implements G4VStateDependent.


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