//  
// 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

 HepEvent.h:1
 HepEvent.h:2
 HepEvent.h:3
 HepEvent.h:4
 HepEvent.h:5
 HepEvent.h:6
 HepEvent.h:7
 HepEvent.h:8
 HepEvent.h:9
 HepEvent.h:10
 HepEvent.h:11
 HepEvent.h:12
 HepEvent.h:13
 HepEvent.h:14
 HepEvent.h:15
 HepEvent.h:16
 HepEvent.h:17
 HepEvent.h:18
 HepEvent.h:19
 HepEvent.h:20
 HepEvent.h:21
 HepEvent.h:22
 HepEvent.h:23