// ExR05PersistentRootEvent.hh // Convert a G4Event into a ExR05RootEvent // 20-Oct-2000 Bill Seligman #ifndef _EXR05PERSISTENTROOTEVENT_H_ #define _EXR05PERSISTENTROOTEVENT_H_ #include "ExR05RootEvent.hh" class G4Event; class ExR05PersistentRootEvent: public ExR05RootEvent { // This class is a "wrapper" for an example ROOT event class. It's // needed because if ExR05RootEvent had any reference to G4 classes, // we would not be able to use rootcint and other ROOT tools on that // class. public: ExR05PersistentRootEvent(const G4Event*); virtual ~ExR05PersistentRootEvent(); }; #endif // _EXR05PERSISTENTROOTEVENT_H_