Logo ROOT   6.07/09
Reference Guide
ProofTests.h
Go to the documentation of this file.
1 /// \file
2 /// \ingroup tutorial_ProofTests
3 ///
4 /// Auxilliary selector used to test PROOF functionality
5 ///
6 /// \macro_code
7 ///
8 /// \author Gerardo Ganis (gerardo.ganis@cern.ch)
9 
10 #ifndef ProofTests_h
11 #define ProofTests_h
12 
13 #include <TSelector.h>
14 
15 class TH1I;
16 
17 class ProofTests : public TSelector {
18 private:
19  void ParseInput();
20 public :
21 
22  // Specific members
23  Int_t fTestType;
24  TH1I *fStat;
25 
26  ProofTests();
27  virtual ~ProofTests();
28  virtual Int_t Version() const { return 2; }
29  virtual void Begin(TTree *tree);
30  virtual void SlaveBegin(TTree *tree);
31  virtual Bool_t Process(Long64_t entry);
32  virtual void SetOption(const char *option) { fOption = option; }
33  virtual void SetObject(TObject *obj) { fObject = obj; }
34  virtual void SetInputList(TList *input) { fInput = input; }
35  virtual TList *GetOutputList() const { return fOutput; }
36  virtual void SlaveTerminate();
37  virtual void Terminate();
38 
39  ClassDef(ProofTests,0);
40 };
41 
42 #endif
virtual int Version() const
Definition: TSelector.h:60
TSelectorList * fOutput
! List of objects created during processing
Definition: TSelector.h:50
long long Long64_t
Definition: RtypesCore.h:69
virtual TList * GetOutputList() const
Definition: TSelector.h:76
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
virtual void SetInputList(TList *input)
Definition: TSelector.h:73
#define ClassDef(name, id)
Definition: Rtypes.h:254
virtual void Begin(TTree *)
Definition: TSelector.h:62
A doubly linked list.
Definition: TList.h:47
tomato 1-D histogram with an int per channel (see TH1 documentation)}
Definition: TH1.h:534
virtual void SlaveBegin(TTree *)
Definition: TSelector.h:63
virtual void Terminate()
Definition: TSelector.h:78
virtual void SlaveTerminate()
Definition: TSelector.h:77
virtual Bool_t Process(Long64_t)
Definition: TSelector.cxx:292
virtual void SetObject(TObject *obj)
Definition: TSelector.h:72
virtual void SetOption(const char *option)
Definition: TSelector.h:71
Mother of all ROOT objects.
Definition: TObject.h:44
Definition: tree.py:1
A TTree object has a header with a name and a title.
Definition: TTree.h:98
A TSelector object is used by the TTree::Draw, TTree::Scan, TTree::Process to navigate in a TTree and...
Definition: TSelector.h:39