Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef EV_DATA_H
00017 #define EV_DATA_H
00018
00019
00020
00021 #include "TObject.h"
00022
00023
00024
00025 using namespace std;
00026
00027
00028
00029 class EV_Data : public TObject {
00030
00031 public:
00032
00033
00034
00035 EV_Data();
00036
00037
00038
00039 ~EV_Data();
00040
00041
00042
00043
00044
00045 void Reset();
00046
00047 private:
00048
00049 friend class EventAction;
00050
00051 int nEV;
00052
00053 ClassDef( EV_Data, 1 )
00054 };
00055
00056 #endif