79 lines
2.0 KiB
C++
79 lines
2.0 KiB
C++
// This code implementation is the intellectual property of
|
|
// the GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: G4PersistentEventMan.hh,v 1.11 2000/12/15 07:54:49 morita Exp $
|
|
// GEANT4 tag $Name: geant4-03-01 $
|
|
//
|
|
|
|
// Class Description:
|
|
// A Utility class to be used by G4PersistencyManager.
|
|
// Average users do not need to use this class.
|
|
//
|
|
// This class is not persistent-capable.
|
|
//
|
|
|
|
// Member functions:
|
|
// =================
|
|
// G4bool Store(HepDbApplication* dbApp,
|
|
// const G4Event* anEvent);
|
|
// Store anEvent and associated objects into database.
|
|
// G4bool Retrieve(HepDbApplication* dbApp,
|
|
// G4Event*& anEvent);
|
|
// Retrieve anEvent and associated objects from database.
|
|
//
|
|
// History:
|
|
// 98.10.30 Y.Morita Splited from G4PersistencyManager
|
|
|
|
#ifndef G4PERSISTENTEVENTMAN_HH
|
|
#define G4PERSISTENTEVENTMAN_HH 1
|
|
|
|
#include "globals.hh"
|
|
#include "HepODBMS/odbms/HepODBMS.h"
|
|
|
|
#include "G4VPersistentSubMan.hh"
|
|
#include "G4VPersistentSubDbMan.hh"
|
|
|
|
#include "G4PEvent.hh"
|
|
|
|
class HepDbApplication;
|
|
class G4Event;
|
|
class G4PersistentHitMan;
|
|
class G4PersistentDigitMan;
|
|
|
|
class G4PersistentEventMan
|
|
: public G4VPersistentSubMan, public G4VPersistentSubDbMan
|
|
{
|
|
friend class G4PersistencyManager;
|
|
|
|
private:
|
|
// to be used by G4PersistencyManager only
|
|
G4PersistentEventMan();
|
|
G4PersistentEventMan( G4PersistentHitMan* aPHCMan,
|
|
G4PersistentDigitMan* aPDCMan );
|
|
~G4PersistentEventMan();
|
|
|
|
private:
|
|
G4PersistentHitMan* f_PHCMan;
|
|
G4PersistentDigitMan* f_PDCMan;
|
|
G4int f_currentEventID;
|
|
HepRef(G4PEvent) f_currentPEvent;
|
|
|
|
public:
|
|
inline G4int CurrentEventID()
|
|
{ return f_currentEventID; }
|
|
|
|
private:
|
|
G4bool Store( HepDbApplication* dbApp,
|
|
const G4Event* anEvent );
|
|
G4bool Retrieve( HepDbApplication* dbApp,
|
|
G4Event*& anEvent );
|
|
|
|
};
|
|
|
|
#endif
|
|
|