-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathProofNtuple.h
50 lines (41 loc) · 1.44 KB
/
ProofNtuple.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/// \file
/// \ingroup tutorial_legacy
///
/// Selector to fill a simple ntuple
///
/// \macro_code
///
/// \author Gerardo Ganis (gerardo.ganis@cern.ch)
#ifndef ProofNtuple_h
#define ProofNtuple_h
#include <TSelector.h>
class TFile;
class TProofOutputFile;
class TNtuple;
class TRandom3;
class ProofNtuple : public TSelector {
public :
// Specific members
TFile *fFile;
TProofOutputFile *fProofFile; // For optimized merging of the ntuple
TNtuple *fNtp;
TNtuple *fNtp2; // To test double TTree in the same file
TRandom3 *fRandom;
Bool_t fPlotNtuple;
TNtuple *fNtpRndm; // Ntuple with random numbers
ProofNtuple() : fFile(nullptr), fProofFile(nullptr), fNtp(nullptr), fNtp2(nullptr), fRandom(nullptr), fPlotNtuple(kTRUE), fNtpRndm(nullptr) { }
~ProofNtuple() override;
Int_t Version() const override { return 2; }
void Begin(TTree *tree) override;
void SlaveBegin(TTree *tree) override;
Bool_t Process(Long64_t entry) override;
void SetOption(const char *option) override { fOption = option; }
void SetObject(TObject *obj) override { fObject = obj; }
void SetInputList(TList *input) override { fInput = input; }
TList *GetOutputList() const override { return fOutput; }
void SlaveTerminate() override;
void Terminate() override;
void PlotNtuple(TNtuple *, const char *);
ClassDefOverride(ProofNtuple,0);
};
#endif