Fork me on GitHub

source: git/examples/Example1.C@ adde560

ImprovedOutputFile Timing dual_readout llp
Last change on this file since adde560 was adde560, checked in by Michele Selvaggi <michele.selvaggi@…>, 6 years ago

fixed weight issue in Example1

  • Property mode set to 100644
File size: 2.2 KB
Line 
1/*
2Simple macro showing how to access branches from the delphes output root file,
3loop over events, and plot simple quantities such as the jet pt and the di-electron invariant
4mass.
5
6root -l examples/Example1.C'("delphes_output.root")'
7*/
8
9#ifdef __CLING__
10R__LOAD_LIBRARY(libDelphes)
11#include "classes/DelphesClasses.h"
12#include "external/ExRootAnalysis/ExRootTreeReader.h"
13#endif
14
15//------------------------------------------------------------------------------
16
17void Example1(const char *inputFile)
18{
19 gSystem->Load("libDelphes");
20
21 // Create chain of root trees
22 TChain chain("Delphes");
23 chain.Add(inputFile);
24
25 // Create object of class ExRootTreeReader
26 ExRootTreeReader *treeReader = new ExRootTreeReader(&chain);
27 Long64_t numberOfEntries = treeReader->GetEntries();
28
29 // Get pointers to branches used in this analysis
30 TClonesArray *branchJet = treeReader->UseBranch("Jet");
31 TClonesArray *branchElectron = treeReader->UseBranch("Electron");
32 TClonesArray *branchEvent = treeReader->UseBranch("Event");
33
34 // Book histograms
35 TH1 *histJetPT = new TH1F("jet_pt", "jet P_{T}", 100, 0.0, 100.0);
36 TH1 *histMass = new TH1F("mass", "M_{inv}(e_{1}, e_{2})", 100, 40.0, 140.0);
37
38 // Loop over all events
39 for(Int_t entry = 0; entry < numberOfEntries; ++entry)
40 {
41 // Load selected branches with data from specified event
42 treeReader->ReadEntry(entry);
43
44
45 //HepMCEvent *event = (HepMCEvent*) branchEvent -> At(0);
46 //LHEFEvent *event = (LHEFEvent*) branchEvent -> At(0);
47 //Float_t weight = event->Weight;
48
49 // If event contains at least 1 jet
50 if(branchJet->GetEntries() > 0)
51 {
52 // Take first jet
53 Jet *jet = (Jet*) branchJet->At(0);
54
55 // Plot jet transverse momentum
56 histJetPT->Fill(jet->PT);
57
58 // Print jet transverse momentum
59 cout << "Jet pt: "<<jet->PT << endl;
60 }
61
62 Electron *elec1, *elec2;
63
64 // If event contains at least 2 electrons
65 if(branchElectron->GetEntries() > 1)
66 {
67 // Take first two electrons
68 elec1 = (Electron *) branchElectron->At(0);
69 elec2 = (Electron *) branchElectron->At(1);
70
71 // Plot their invariant mass
72 histMass->Fill(((elec1->P4()) + (elec2->P4())).M());
73 }
74 }
75
76 // Show resulting histograms
77 histJetPT->Draw();
78 histMass->Draw();
79}
80
Note: See TracBrowser for help on using the repository browser.