forked from root-project/root
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProofSimpleFile.h
More file actions
52 lines (44 loc) · 1.36 KB
/
ProofSimpleFile.h
File metadata and controls
52 lines (44 loc) · 1.36 KB
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
51
52
/// \file
/// \ingroup tutorial_ProofSimpleFile
///
/// Selector to fill a set of histograms and merging via file
///
/// \macro_code
///
/// \author Gerardo Ganis (gerardo.ganis@cern.ch)
#ifndef ProofSimpleFile_h
#define ProofSimpleFile_h
#include <TSelector.h>
class TH1F;
class TRandom3;
class TFile;
class TProofOutputFile;
class TDirectory;
class ProofSimpleFile : public TSelector {
private:
Int_t CreateHistoArrays();
void PlotHistos(Int_t opt = 0);
public :
// Specific members
Int_t fNhist;
TH1F **fHistTop;//[fNhist]
TH1F **fHistDir;//[fNhist]
TRandom3 *fRandom;
TFile *fFile;
TProofOutputFile *fProofFile; // For merging via file
TDirectory *fFileDir; // Subdirectory for some histos
ProofSimpleFile();
virtual ~ProofSimpleFile();
virtual Int_t Version() const { return 2; }
virtual void Begin(TTree *tree);
virtual void SlaveBegin(TTree *tree);
virtual Bool_t Process(Long64_t entry);
virtual void SetOption(const char *option) { fOption = option; }
virtual void SetObject(TObject *obj) { fObject = obj; }
virtual void SetInputList(TList *input) { fInput = input; }
virtual TList *GetOutputList() const { return fOutput; }
virtual void SlaveTerminate();
virtual void Terminate();
ClassDef(ProofSimpleFile,0);
};
#endif