Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
ProofEvent.h
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_ProofEvent
3///
4/// Selector for generic processing with Event
5///
6/// \macro_code
7///
8/// \author Gerardo Ganis (gerardo.ganis@cern.ch)
9
10#ifndef ProofEvent_h
11#define ProofEvent_h
12
13#include <TSelector.h>
14#include "Event.h"
15
16class TH1F;
17class TRandom3;
18
19class ProofEvent : public TSelector {
20public :
21
22 // Specific members
23 TRandom3 *fRandom;
24 Event *fEvent;
25 Int_t fNtrack;
26 TH1F *fHisto;
27
28 ProofEvent();
29 virtual ~ProofEvent();
30 virtual Int_t Version() const { return 2; }
31 virtual void Begin(TTree *tree);
32 virtual void SlaveBegin(TTree *tree);
33 virtual Bool_t Process(Long64_t entry);
34 virtual void SetOption(const char *option) { fOption = option; }
35 virtual void SetObject(TObject *obj) { fObject = obj; }
36 virtual void SetInputList(TList *input) { fInput = input; }
37 virtual TList *GetOutputList() const { return fOutput; }
38 virtual void SlaveTerminate();
39 virtual void Terminate();
40
42};
43
44#endif
bool Bool_t
Definition RtypesCore.h:63
int Int_t
Definition RtypesCore.h:45
long long Long64_t
Definition RtypesCore.h:69
#define ClassDef(name, id)
Definition Rtypes.h:342
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 a float per channel (see TH1 documentation)
Definition TH1.h:622
A doubly linked list.
Definition TList.h:38
Mother of all ROOT objects.
Definition TObject.h:41
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
A TTree represents a columnar dataset.
Definition TTree.h:79
void Begin(Int_t type)
const char * Version