Fork me on GitHub

source: git/examples/Example1.C@ acf622f

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

Merge branch 'master' into TestFastJet310b1

Conflicts:

Makefile
examples/Example1.C
examples/Example2.C
examples/Example3.C

  • Property mode set to 100644
File size: 1.9 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//------------------------------------------------------------------------------
10
11void Example1(const char *inputFile)
12{
13 gSystem->Load("libDelphes");
14
15 // Create chain of root trees
16 TChain chain("Delphes");
17 chain.Add(inputFile);
18
19 // Create object of class ExRootTreeReader
20 ExRootTreeReader *treeReader = new ExRootTreeReader(&chain);
21 Long64_t numberOfEntries = treeReader->GetEntries();
22
23 // Get pointers to branches used in this analysis
24 TClonesArray *branchJet = treeReader->UseBranch("Jet");
25 TClonesArray *branchElectron = treeReader->UseBranch("Electron");
26
27 // Book histograms
28 TH1 *histJetPT = new TH1F("jet_pt", "jet P_{T}", 100, 0.0, 100.0);
29 TH1 *histMass = new TH1F("mass", "M_{inv}(e_{1}, e_{2})", 100, 40.0, 140.0);
30
31 // Loop over all events
32 for(Int_t entry = 0; entry < numberOfEntries; ++entry)
33 {
34 // Load selected branches with data from specified event
35 treeReader->ReadEntry(entry);
36
37 // If event contains at least 1 jet
38 if(branchJet->GetEntries() > 0)
39 {
40 // Take first jet
41 Jet *jet = (Jet*) branchJet->At(0);
42
43 // Plot jet transverse momentum
44 histJetPT->Fill(jet->PT);
45
46 // Print jet transverse momentum
47 cout << "Jet pt: "<<jet->PT << endl;
48 }
49
50 Electron *elec1, *elec2;
51
52 // If event contains at least 2 electrons
53 if(branchElectron->GetEntries() > 1)
54 {
55 // Take first two electrons
56 elec1 = (Electron *) branchElectron->At(0);
57 elec2 = (Electron *) branchElectron->At(1);
58
59 // Plot their invariant mass
60 histMass->Fill(((elec1->P4()) + (elec2->P4())).M());
61 }
62 }
63
64 // Show resulting histograms
65 histJetPT->Draw();
66 histMass->Draw();
67}
68
Note: See TracBrowser for help on using the repository browser.