LCFIPlus  0.6.5
TrackNtuple.h
Go to the documentation of this file.
1 // TrackNtuple.h
2 
3 #ifndef TrackNtuple_h
4 #define TrackNtuple_h 1
5 
6 class TFile;
7 class TNtuple;
8 
9 #include "lcfiplus.h"
10 
11 namespace lcfiplus {
12 
22 class TrackNtuple : public Algorithm {
23  public:
25  virtual ~TrackNtuple() {}
26 
27  void init(Parameters* param);
28  void process();
29  void end();
30 
31  private:
32  TFile* _file;
33  TNtuple* _tree;
34 
35  string _jetcolname;
36  string _primvtxcolname;
37  int _hitcutJprob;
38 
39  ClassDef(TrackNtuple,1);
40 };
41 
42 }
43 
44 #endif
void end()
Definition: TrackNtuple.cc:71
void init(Parameters *param)
Definition: TrackNtuple.cc:17
TrackNtuple()
Definition: TrackNtuple.h:24
Definition: lcfiplus.h:269
Definition: lcfiplus.h:152
virtual ~TrackNtuple()
Definition: TrackNtuple.h:25
Making track d0/z0 ntuple needed for flavor tagging.
Definition: TrackNtuple.h:22
void process()
Definition: TrackNtuple.cc:35