HARPO  5.1.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
HarpoDccAnalyse.h
Go to the documentation of this file.
1 #ifndef HARPODCCANALYSE_H
2 #define HARPODCCANALYSE_H
3 
5 //
6 // HarpoDccAnalyse
7 //
8 // Description of the run
9 //
10 
11 #include "TObject.h"
12 #include "HarpoDccEvent.h"
13 
14 
15 class HarpoDccAnalyse : public TObject {
16 
17 protected:
19 
20 public:
22  virtual ~HarpoDccAnalyse() { }
23  void Set(HarpoDccEvent *event);
24 
25  virtual void process();
26 
27  virtual void Init();
28  virtual void ProcessEvent(HarpoDccEvent *event);
29  virtual void print();
30  virtual void Save(char *mode=NULL);
31 
32  ClassDef(HarpoDccAnalyse,1) //Run Analyse
33 };
34 
35 #endif
virtual void print()
virtual void Init()
virtual void Save(char *mode=NULL)
void Set(HarpoDccEvent *event)
HarpoDccEvent * anaEvt
A virtual class which define intrafece between HARPO Reader and Event Analysis code.
virtual void ProcessEvent(HarpoDccEvent *event)
virtual void process()
A class store HARPO EVENT : header and row data. Its provide also the methods for access to this data...
Definition: HarpoDccEvent.h:22
virtual ~HarpoDccAnalyse()