#include <G4VPEventIO.hh>
Public Member Functions | |
G4VPEventIO () | |
virtual | ~G4VPEventIO () |
void | SetVerboseLevel (int v) |
G4int | CurrentEventID () |
virtual G4bool | Store (const G4Event *anEvent)=0 |
virtual G4bool | Retrieve (G4Pevent *&anEvent)=0 |
virtual G4bool | Retrieve (G4Event *&anEvent)=0 |
Protected Attributes | |
G4int | m_verbose |
G4int | m_currentEvtID |
Definition at line 40 of file G4VPEventIO.hh.
G4VPEventIO::G4VPEventIO | ( | ) |
Definition at line 34 of file G4VPEventIO.cc.
00035 : m_verbose(0), m_currentEvtID(0) 00036 { 00037 }
virtual G4VPEventIO::~G4VPEventIO | ( | ) | [inline, virtual] |
G4int G4VPEventIO::CurrentEventID | ( | ) | [inline] |
Definition at line 53 of file G4VPEventIO.hh.
References m_currentEvtID.
00053 { return m_currentEvtID; };
Referenced by G4PersistencyManager::Retrieve().
void G4VPEventIO::SetVerboseLevel | ( | int | v | ) | [inline] |
Definition at line 50 of file G4VPEventIO.hh.
References m_verbose.
Referenced by G4PersistencyManager::SetVerboseLevel().
00050 { m_verbose = v; };
Referenced by G4PersistencyManager::Store().
G4int G4VPEventIO::m_currentEvtID [protected] |
G4int G4VPEventIO::m_verbose [protected] |