// // Author: Oliver Maria Kind <mailto: kind@mail.desy.de> // Update: $Id: HepEvent.h,v 1.4 2013/06/10 16:54:10 kind Exp $ // Copyright: 2008 (C) Oliver Maria Kind // #ifndef HEP_HepEvent #define HEP_HepEvent #ifndef ROOT_TObject #include <TObject.h> #endif class HepEvent : public TObject { private: public: HepEvent(); virtual ~HepEvent(); ClassDef(HepEvent,2) // Abstract HEP event class }; #endif