Logo ROOT   6.14/05
Reference Guide
ProofPythia.h
Go to the documentation of this file.
1 /// \file
2 /// \ingroup tutorial_proofpythia
3 ///
4 /// Selector to generate Monte Carlo events with Pythia8
5 ///
6 /// \macro_code
7 ///
8 /// \author Gerardo Ganis (gerardo.ganis@cern.ch)
9 
10 #ifndef ProofPythia_h
11 #define ProofPythia_h
12 
13 #include <TSelector.h>
14 
15 class TClonesArray;
16 class TH1F;
17 class TPythia8;
18 
19 class ProofPythia : public TSelector {
20 public :
21 
22  // Specific members
23  TH1F *fTot;
24  TH1F *fHist;
25  TH1F *fPt;
26  TH1F *fEta;
27  TPythia8 *fPythia;
28  TClonesArray *fP;
29 
30  ProofPythia();
31  virtual ~ProofPythia();
32  virtual Int_t Version() const { return 2; }
33  virtual void Begin(TTree *tree);
34  virtual void SlaveBegin(TTree *tree);
35  virtual Bool_t Process(Long64_t entry);
36  virtual void SetOption(const char *option) { fOption = option; }
37  virtual void SetObject(TObject *obj) { fObject = obj; }
38  virtual void SetInputList(TList *input) { fInput = input; }
39  virtual TList *GetOutputList() const { return fOutput; }
40  virtual void SlaveTerminate();
41  virtual void Terminate();
42 
43  ClassDef(ProofPythia,0);
44 };
45 
46 #endif
TSelectorList * fOutput
! List of objects created during processing
Definition: TSelector.h:44
long long Long64_t
Definition: RtypesCore.h:69
1-D histogram with a float per channel (see TH1 documentation)}
Definition: TH1.h:567
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
virtual void SetInputList(TList *input)
Definition: TSelector.h:68
#define ClassDef(name, id)
Definition: Rtypes.h:320
virtual void Begin(TTree *)
Definition: TSelector.h:56
A doubly linked list.
Definition: TList.h:44
virtual int Version() const
Definition: TSelector.h:54
virtual void SlaveBegin(TTree *)
Definition: TSelector.h:57
virtual void Terminate()
Definition: TSelector.h:73
virtual void SlaveTerminate()
Definition: TSelector.h:72
TPythia8 is an interface class to C++ version of Pythia 8.1 event generators, written by T...
Definition: TPythia8.h:76
virtual Bool_t Process(Long64_t)
Definition: TSelector.cxx:330
virtual void SetObject(TObject *obj)
Definition: TSelector.h:67
virtual void SetOption(const char *option)
Definition: TSelector.h:66
Mother of all ROOT objects.
Definition: TObject.h:37
An array of clone (identical) objects.
Definition: TClonesArray.h:32
Definition: tree.py:1
A TTree object has a header with a name and a title.
Definition: TTree.h:70
A TSelector object is used by the TTree::Draw, TTree::Scan, TTree::Process to navigate in a TTree and...
Definition: TSelector.h:33
virtual TList * GetOutputList() const
Definition: TSelector.h:71