Logo ROOT  
Reference Guide
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Loading...
Searching...
No Matches
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
15class TH1I;
16
17class ProofTests : public TSelector {
18private:
19 void ParseInput();
20public :
21
22 // Specific members
24 TH1I *fStat;
25
26 ProofTests();
27 ~ProofTests() override;
28 Int_t Version() const override { return 2; }
29 void Begin(TTree *tree) override;
30 void SlaveBegin(TTree *tree) override;
31 Bool_t Process(Long64_t entry) override;
32 void SetOption(const char *option) override { fOption = option; }
33 void SetObject(TObject *obj) override { fObject = obj; }
34 void SetInputList(TList *input) override { fInput = input; }
35 TList *GetOutputList() const override { return fOutput; }
36 void SlaveTerminate() override;
37 void Terminate() override;
38
40};
41
42#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
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Option_t Option_t option
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void input
1-D histogram with an int per channel (see TH1 documentation)
Definition TH1.h:539
A doubly linked list.
Definition TList.h:38
Mother of all ROOT objects.
Definition TObject.h:41
A TSelector object is used by the TTree::Draw, TTree::Scan, TTree::Process to navigate in a TTree and...
Definition TSelector.h:31
A TTree represents a columnar dataset.
Definition TTree.h:79
void Begin(Int_t type)
const char * Version