Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
df102_NanoAODDimuonAnalysis.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_dataframe
3/// \notebook -js
4/// Show how NanoAOD files can be processed with RDataFrame.
5///
6/// This tutorial illustrates how NanoAOD files can be processed with ROOT
7/// dataframes. The NanoAOD-like input files are filled with 66 mio. events
8/// from CMS OpenData containing muon candidates part of 2012 dataset
9/// ([DOI: 10.7483/OPENDATA.CMS.YLIC.86ZZ](http://opendata.cern.ch/record/6004)
10/// and [DOI: 10.7483/OPENDATA.CMS.M5AD.Y3V3](http://opendata.cern.ch/record/6030)).
11/// The macro matches muon pairs and produces an histogram of the dimuon mass
12/// spectrum showing resonances up to the Z mass.
13/// Note that the bump at 30 GeV is not a resonance but a trigger effect.
14///
15/// More details about the dataset can be found on [the CERN Open Data portal](http://opendata.web.cern.ch/record/12341).
16///
17/// \macro_image
18/// \macro_code
19/// \macro_output
20///
21/// \date August 2018
22/// \author Stefan Wunsch (KIT, CERN)
23
24#include "ROOT/RDataFrame.hxx"
25#include "ROOT/RVec.hxx"
26#include "TCanvas.h"
27#include "TH1D.h"
28#include "TLatex.h"
29#include "Math/Vector4D.h"
30#include "TStyle.h"
31
32using namespace ROOT::VecOps;
33
35{
36 // Enable multi-threading
38
39 // Create dataframe from NanoAOD files
40 ROOT::RDataFrame df("Events", "root://eospublic.cern.ch//eos/opendata/cms/derived-data/AOD2NanoAODOutreachTool/Run2012BC_DoubleMuParked_Muons.root");
41
42 // For simplicity, select only events with exactly two muons and require opposite charge
43 auto df_2mu = df.Filter("nMuon == 2", "Events with exactly two muons");
44 auto df_os = df_2mu.Filter("Muon_charge[0] != Muon_charge[1]", "Muons with opposite charge");
45
46 // Compute invariant mass of the dimuon system
47 auto df_mass = df_os.Define("Dimuon_mass", InvariantMass<float>, {"Muon_pt", "Muon_eta", "Muon_phi", "Muon_mass"});
48
49 // Make histogram of dimuon mass spectrum
50 auto h = df_mass.Histo1D({"Dimuon_mass", "Dimuon_mass", 30000, 0.25, 300}, "Dimuon_mass");
51
52 // Request cut-flow report
53 auto report = df_mass.Report();
54
55 // Produce plot
57 auto c = new TCanvas("c", "", 800, 700);
58 c->SetLogx(); c->SetLogy();
59
60 h->SetTitle("");
61 h->GetXaxis()->SetTitle("m_{#mu#mu} (GeV)"); h->GetXaxis()->SetTitleSize(0.04);
62 h->GetYaxis()->SetTitle("N_{Events}"); h->GetYaxis()->SetTitleSize(0.04);
63 h->DrawClone();
64
65 TLatex label; label.SetNDC(true);
66 label.DrawLatex(0.175, 0.740, "#eta");
67 label.DrawLatex(0.205, 0.775, "#rho,#omega");
68 label.DrawLatex(0.270, 0.740, "#phi");
69 label.DrawLatex(0.400, 0.800, "J/#psi");
70 label.DrawLatex(0.415, 0.670, "#psi'");
71 label.DrawLatex(0.485, 0.700, "Y(1,2,3S)");
72 label.DrawLatex(0.755, 0.680, "Z");
73 label.SetTextSize(0.040); label.DrawLatex(0.100, 0.920, "#bf{CMS Open Data}");
74 label.SetTextSize(0.030); label.DrawLatex(0.630, 0.920, "#sqrt{s} = 8 TeV, L_{int} = 11.6 fb^{-1}");
75
76 c->SaveAs("dimuon_spectrum.pdf");
77
78 // Print cut-flow report
79 report->Print();
80}
81
82int main()
83{
85}
#define c(i)
Definition RSha256.hxx:101
#define h(i)
Definition RSha256.hxx:106
R__EXTERN TStyle * gStyle
Definition TStyle.h:412
ROOT's RDataFrame offers a high level interface for analyses of data stored in TTrees,...
virtual void SetTextFont(Font_t tfont=62)
Set the text font.
Definition TAttText.h:45
virtual void SetTextSize(Float_t tsize=1)
Set the text size.
Definition TAttText.h:46
The Canvas class.
Definition TCanvas.h:23
To draw Mathematical Formula.
Definition TLatex.h:18
TLatex * DrawLatex(Double_t x, Double_t y, const char *text)
Make a copy of this object with the new parameters And copy object attributes.
Definition TLatex.cxx:1927
virtual void SaveAs(const char *filename="", Option_t *option="") const
Save this object in the file specified by filename.
Definition TObject.cxx:601
void SetOptStat(Int_t stat=1)
The type of information printed in the histogram statistics box can be selected via the parameter mod...
Definition TStyle.cxx:1589
virtual void SetNDC(Bool_t isNDC=kTRUE)
Set NDC mode on if isNDC = kTRUE, off otherwise.
Definition TText.cxx:813
int main()
void EnableImplicitMT(UInt_t numthreads=0)
Enable ROOT's implicit multi-threading for all objects and methods that provide an internal paralleli...
Definition TROOT.cxx:525