LCFIPlus  0.6.5
MakeNtuple.h
Go to the documentation of this file.
1 // MakeNtuple.h
2 
3 #ifndef MakeNtuple_h
4 #define MakeNtuple_h 1
5 
6 class TFile;
7 class TTree;
8 
9 #include "lcfiplus.h"
10 
11 namespace lcfiplus {
12 
18 class MakeNtuple : public Algorithm {
19  public:
21  virtual ~MakeNtuple() {}
22 
23  void init(Parameters* param);
24  void process() {}
25  void end();
26 
27  private:
28 
29  ClassDef(MakeNtuple,1);
30 };
31 
32 }
33 
34 #endif
MakeNtuple()
Definition: MakeNtuple.h:20
void init(Parameters *param)
Definition: MakeNtuple.cc:15
void end()
Definition: MakeNtuple.cc:24
Definition: lcfiplus.h:269
Definition: lcfiplus.h:152
void process()
Definition: MakeNtuple.h:24
virtual ~MakeNtuple()
Definition: MakeNtuple.h:21
Lcfiplus algorithm for computing variables, to be used in multivariate analysis.
Definition: MakeNtuple.h:18