Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
ProofSimpleFile.h
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_ProofSimpleFile
3///
4/// Selector to fill a set of histograms and merging via file
5///
6/// \macro_code
7///
8/// \author Gerardo Ganis (gerardo.ganis@cern.ch)
9
10#ifndef ProofSimpleFile_h
11#define ProofSimpleFile_h
12
13#include <TSelector.h>
14
15class TH1F;
16class TRandom3;
17class TFile;
19class TDirectory;
20
21class ProofSimpleFile : public TSelector {
22private:
23 Int_t CreateHistoArrays();
24 void PlotHistos(Int_t opt = 0);
25public :
26
27 // Specific members
28 Int_t fNhist;
29 TH1F **fHistTop;//[fNhist]
30 TH1F **fHistDir;//[fNhist]
31 TRandom3 *fRandom;
32 TFile *fFile;
33 TProofOutputFile *fProofFile; // For merging via file
34 TDirectory *fFileDir; // Subdirectory for some histos
35
36 ProofSimpleFile();
37 ~ProofSimpleFile() override;
38 Int_t Version() const override { return 2; }
39 void Begin(TTree *tree) override;
40 void SlaveBegin(TTree *tree) override;
41 Bool_t Process(Long64_t entry) override;
42 void SetOption(const char *option) override { fOption = option; }
43 void SetObject(TObject *obj) override { fObject = obj; }
44 void SetInputList(TList *input) override { fInput = input; }
45 TList *GetOutputList() const override { return fOutput; }
46 void SlaveTerminate() override;
47 void Terminate() override;
48
49 ClassDefOverride(ProofSimpleFile,0);
50};
51
52#endif
bool Bool_t
Definition RtypesCore.h:63
int Int_t
Definition RtypesCore.h:45
long long Long64_t
Definition RtypesCore.h:80
#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
Describe directory structure in memory.
Definition TDirectory.h:45
A ROOT file is an on-disk file, usually with extension .root, that stores objects in a file-system-li...
Definition TFile.h:53
1-D histogram with a float per channel (see TH1 documentation)
Definition TH1.h:621
A doubly linked list.
Definition TList.h:38
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