er  dev
ERRawEvent.h
1 // -------------------------------------------------------------------------
2 // ----- ERRawEvent header file -----
3 // ----- Created 04/17 by V. Schetinin -----
4 // -------------------------------------------------------------------------
5 
6 #ifndef ERRawEvent_H
7 #define ERRawEvent_H
8 
9 #include "TNamed.h"
10 #include "TTree.h"
11 #include "TString.h"
12 
13 class ERRawEvent: public TNamed {
14 
15 public:
16  ERRawEvent();
17  virtual ~ERRawEvent();
18 
19  virtual Bool_t Register(TTree* tree, TString branchName) = 0;
20 
21  virtual Int_t Process() = 0;
22 
23  ClassDef(ERRawEvent,1);
24 };
25 
26 #endif