Logo ROOT   6.10/09
Reference Guide
pythia8.C
Go to the documentation of this file.
1 /// \file
2 /// \ingroup tutorial_pythia
3 /// pythia8 basic example
4 ///
5 /// to run, do:
6 ///
7 /// ~~~{.cpp}
8 /// root > .x pythia8.C
9 /// ~~~
10 ///
11 /// Note that before executing this script,
12 ///
13 /// - the env variable PYTHIA8 must point to the pythia8100 (or newer) directory
14 /// - the env variable PYTHIA8DATA must be defined and it must point to $PYTHIA8/xmldoc
15 ///
16 /// \macro_code
17 ///
18 /// \author Andreas Morsch
19 
20 #include "TSystem.h"
21 #include "TH1F.h"
22 #include "TClonesArray.h"
23 #include "TPythia8.h"
24 #include "TParticle.h"
25 #include "TDatabasePDG.h"
26 #include "TCanvas.h"
27 
28 void pythia8(Int_t nev = 100, Int_t ndeb = 1)
29 {
30  const char *p8dataenv = gSystem->Getenv("PYTHIA8DATA");
31  if (!p8dataenv) {
32  const char *p8env = gSystem->Getenv("PYTHIA8");
33  if (!p8env) {
34  Error("pythia8.C",
35  "Environment variable PYTHIA8 must contain path to pythia directory!");
36  return;
37  }
38  TString p8d = p8env;
39  p8d += "/xmldoc";
40  gSystem->Setenv("PYTHIA8DATA", p8d);
41  }
42 
43  const char* path = gSystem->ExpandPathName("$PYTHIA8DATA");
44  if (gSystem->AccessPathName(path)) {
45  Error("pythia8.C",
46  "Environment variable PYTHIA8DATA must contain path to $PYTHIA8/xmldoc directory !");
47  return;
48  }
49 
50 // Load libraries
51 #ifndef G__WIN32 // Pythia8 is a static library on Windows
52  if (gSystem->Getenv("PYTHIA8")) {
53  gSystem->Load("$PYTHIA8/lib/libpythia8");
54  } else {
55  gSystem->Load("libpythia8");
56  }
57 #endif
58  gSystem->Load("libEG");
59  gSystem->Load("libEGPythia8");
60 // Histograms
61  TH1F* etaH = new TH1F("etaH", "Pseudorapidity", 120, -12., 12.);
62  TH1F* ptH = new TH1F("ptH", "pt", 50, 0., 10.);
63 
64 
65 // Array of particles
66  TClonesArray* particles = new TClonesArray("TParticle", 1000);
67 // Create pythia8 object
68  TPythia8* pythia8 = new TPythia8();
69 
70 // Configure
71  pythia8->ReadString("HardQCD:all = on");
72 
73 
74 // Initialize
75 
76  pythia8->Initialize(2212 /* p */, 2212 /* p */, 14000. /* TeV */);
77 
78 // Event loop
79  for (Int_t iev = 0; iev < nev; iev++) {
80  pythia8->GenerateEvent();
81  if (iev < ndeb) pythia8->EventListing();
82  pythia8->ImportParticles(particles,"All");
83  Int_t np = particles->GetEntriesFast();
84 // Particle loop
85  for (Int_t ip = 0; ip < np; ip++) {
86  TParticle* part = (TParticle*) particles->At(ip);
87  Int_t ist = part->GetStatusCode();
88  // Positive codes are final particles.
89  if (ist <= 0) continue;
90  Int_t pdg = part->GetPdgCode();
92  if (charge == 0.) continue;
93  Float_t eta = part->Eta();
94  Float_t pt = part->Pt();
95 
96  etaH->Fill(eta);
97  if (pt > 0.) ptH->Fill(pt, 1./(2. * pt));
98  }
99  }
100 
101  pythia8->PrintStatistics();
102 
103  TCanvas* c1 = new TCanvas("c1","Pythia8 test example",800,800);
104  c1->Divide(1, 2);
105  c1->cd(1);
106  etaH->Scale(5./Float_t(nev));
107  etaH->Draw();
108  etaH->SetXTitle("#eta");
109  etaH->SetYTitle("dN/d#eta");
110 
111  c1->cd(2);
112  gPad->SetLogy();
113  ptH->Scale(5./Float_t(nev));
114  ptH->Draw();
115  ptH->SetXTitle("p_{t} [GeV/c]");
116  ptH->SetYTitle("dN/dp_{t}^{2} [GeV/c]^{-2}");
117  }
virtual Bool_t AccessPathName(const char *path, EAccessMode mode=kFileExists)
Returns FALSE if one can access a file using the specified access mode.
Definition: TSystem.cxx:1272
virtual void Scale(Double_t c1=1, Option_t *option="")
Multiply this histogram by a constant c1.
Definition: TH1.cxx:5937
virtual Int_t Fill(Double_t x)
Increment bin with abscissa X by 1.
Definition: TH1.cxx:3126
virtual Int_t ImportParticles(TClonesArray *particles, Option_t *option="")
Import particles from Pythia stack.
Definition: TPythia8.cxx:193
float Float_t
Definition: RtypesCore.h:53
return c1
Definition: legend1.C:41
THist< 1, float, THistStatContent, THistStatUncertainty > TH1F
Definition: THist.hxx:311
Description of the dynamic properties of a particle.
Definition: TParticle.h:26
TVirtualPad * cd(Int_t subpadnumber=0)
Set current canvas & pad.
Definition: TCanvas.cxx:679
Bool_t Initialize(Int_t idAin, Int_t idBin, Double_t ecms)
Initialization.
Definition: TPythia8.cxx:146
void PrintStatistics() const
Print end of run statistics.
Definition: TPythia8.cxx:355
virtual int Load(const char *module, const char *entry="", Bool_t system=kFALSE)
Load a shared library.
Definition: TSystem.cxx:1825
Basic string class.
Definition: TString.h:129
tomato 1-D histogram with a float per channel (see TH1 documentation)}
Definition: TH1.h:551
int Int_t
Definition: RtypesCore.h:41
virtual void SetYTitle(const char *title)
Definition: TH1.h:390
TObject * At(Int_t idx) const
Definition: TObjArray.h:165
Int_t GetStatusCode() const
Definition: TParticle.h:82
static TDatabasePDG * Instance()
static function
virtual const char * Getenv(const char *env)
Get environment variable.
Definition: TSystem.cxx:1634
Double_t Eta() const
Definition: TParticle.h:137
void Error(const char *location, const char *msgfmt,...)
virtual void Setenv(const char *name, const char *value)
Set environment variable.
Definition: TSystem.cxx:1618
TPaveText * pt
R__EXTERN TSystem * gSystem
Definition: TSystem.h:539
virtual void Draw(Option_t *option="")
Draw this histogram with options.
Definition: TH1.cxx:2851
Int_t GetEntriesFast() const
Definition: TObjArray.h:64
Double_t Charge() const
Definition: TParticlePDG.h:68
void EventListing() const
Event listing.
Definition: TPythia8.cxx:363
void ReadString(const char *string) const
Configuration.
Definition: TPythia8.cxx:299
The Canvas class.
Definition: TCanvas.h:31
TPythia8 is an interface class to C++ version of Pythia 8.1 event generators, written by T...
Definition: TPythia8.h:76
TParticlePDG * GetParticle(Int_t pdgCode) const
Get a pointer to the particle object according to the MC code number.
Double_t Pt() const
Definition: TParticle.h:135
An array of clone (identical) objects.
Definition: TClonesArray.h:32
virtual void SetXTitle(const char *title)
Definition: TH1.h:389
virtual void Divide(Int_t nx=1, Int_t ny=1, Float_t xmargin=0.01, Float_t ymargin=0.01, Int_t color=0)
Automatic pad generation by division.
Definition: TPad.cxx:1135
#define gPad
Definition: TVirtualPad.h:284
virtual void GenerateEvent()
Generate the next event.
Definition: TPythia8.cxx:184
Int_t GetPdgCode() const
Definition: TParticle.h:83
virtual Bool_t ExpandPathName(TString &path)
Expand a pathname getting rid of special shell characters like ~.
Definition: TSystem.cxx:1250