Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
ProofNtuple.h
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_proofntuple
3///
4/// Selector to fill a simple ntuple
5///
6/// \macro_code
7///
8/// \author Gerardo Ganis (gerardo.ganis@cern.ch)
9
10#ifndef ProofNtuple_h
11#define ProofNtuple_h
12
13#include <TSelector.h>
14
15class TFile;
17class TNtuple;
18class TRandom3;
19
20class ProofNtuple : public TSelector {
21public :
22
23 // Specific members
24 TFile *fFile;
25 TProofOutputFile *fProofFile; // For optimized merging of the ntuple
26 TNtuple *fNtp;
27 TNtuple *fNtp2; // To test double TTree in the same file
28 TRandom3 *fRandom;
29 Bool_t fPlotNtuple;
30 TNtuple *fNtpRndm; // Ntuple with random numbers
31
32 ProofNtuple() : fFile(nullptr), fProofFile(nullptr), fNtp(nullptr), fNtp2(nullptr), fRandom(nullptr), fPlotNtuple(kTRUE), fNtpRndm(nullptr) { }
33 ~ProofNtuple() override;
34 Int_t Version() const override { return 2; }
35 void Begin(TTree *tree) override;
36 void SlaveBegin(TTree *tree) override;
37 Bool_t Process(Long64_t entry) override;
38 void SetOption(const char *option) override { fOption = option; }
39 void SetObject(TObject *obj) override { fObject = obj; }
40 void SetInputList(TList *input) override { fInput = input; }
41 TList *GetOutputList() const override { return fOutput; }
42 void SlaveTerminate() override;
43 void Terminate() override;
44
45 void PlotNtuple(TNtuple *, const char *);
46
47 ClassDefOverride(ProofNtuple,0);
48};
49
50#endif
bool Bool_t
Definition RtypesCore.h:63
int Int_t
Definition RtypesCore.h:45
long long Long64_t
Definition RtypesCore.h:80
constexpr Bool_t kTRUE
Definition RtypesCore.h:100
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
Option_t Option_t option
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void input
A ROOT file is an on-disk file, usually with extension .root, that stores objects in a file-system-li...
Definition TFile.h:53
A doubly linked list.
Definition TList.h:38
A simple TTree restricted to a list of float variables only.
Definition TNtuple.h:28
Mother of all ROOT objects.
Definition TObject.h:41
Class to steer the merging of files produced on the workers.
Random number generator class based on M.
Definition TRandom3.h:27
A TSelector object is used by the TTree::Draw, TTree::Scan, TTree::Process to navigate in a TTree and...
Definition TSelector.h:31
virtual void SetObject(TObject *obj)
Definition TSelector.h:65
virtual int Version() const
Definition TSelector.h:52
virtual bool Process(Long64_t)
The Process() function is called for each entry in the tree (or possibly keyed object in the case of ...
TSelectorList * fOutput
! List of objects created during processing
Definition TSelector.h:42
virtual void SlaveBegin(TTree *)
Definition TSelector.h:55
virtual void SetOption(const char *option)
Definition TSelector.h:64
virtual void SetInputList(TList *input)
Definition TSelector.h:66
virtual TList * GetOutputList() const
Definition TSelector.h:69
virtual void SlaveTerminate()
Definition TSelector.h:70
virtual void Begin(TTree *)
Definition TSelector.h:54
virtual void Terminate()
Definition TSelector.h:71
A TTree represents a columnar dataset.
Definition TTree.h:79