27from ROOT.Experimental import RCanvas, RText, RAttrText, RAttrFont, RPadPos, TObjectDrawable
30parser = argparse.ArgumentParser()
31parser.add_argument(
"--lumi-scale", type=float, default=0.001,
32 help=
"Run only on a fraction of the total available 10 fb^-1 (only usable together with --full-dataset)")
33parser.add_argument(
"--full-dataset", action=
"store_true", default=
False,
34 help=
"Use the full dataset (use --lumi-scale to run only on a fraction of it)")
35parser.add_argument(
"-b", action=
"store_true", default=
False, help=
"Use ROOT batch mode")
36parser.add_argument(
"-t", action=
"store_true", default=
False, help=
"Use implicit multi threading (for the full dataset only possible with --lumi-scale 1.0)")
37args = parser.parse_args()
39if args.b: ROOT.gROOT.SetBatch(
True)
42if not args.full_dataset: lumi_scale = 0.001
43else: lumi_scale = args.lumi_scale
45print(
'Run on data corresponding to {:.2f} fb^-1 ...'.
format(lumi * lumi_scale / 1000.0))
47if args.full_dataset: dataset_path =
"root://eospublic.cern.ch//eos/opendata/atlas/OutreachDatasets/2020-01-22"
48else: dataset_path =
"root://eospublic.cern.ch//eos/root-eos/reduced_atlas_opendata/w"
52files = json.load(open(os.path.join(ROOT.gROOT.GetTutorialsDir(),
"rcanvas/df105.json")))
53processes = files.keys()
66 samples.append(sample)
70 if args.full_dataset
and lumi_scale < 1.0:
71 df[sample] = df[sample].
Range(
int(num_events * lumi_scale))
76ROOT.gInterpreter.Declare(
"""
77bool GoodElectronOrMuon(int type, float pt, float eta, float phi, float e, float trackd0pv, float tracksigd0pv, float z0)
79 ROOT::Math::PtEtaPhiEVector p(pt / 1000.0, eta, phi, e / 1000.0);
80 if (abs(z0 * sin(p.theta())) > 0.5) return false;
81 if (type == 11 && abs(eta) < 2.46 && (abs(eta) < 1.37 || abs(eta) > 1.52)) {
82 if (abs(trackd0pv / tracksigd0pv) > 5) return false;
85 if (type == 13 && abs(eta) < 2.5) {
86 if (abs(trackd0pv / tracksigd0pv) > 3) return false;
95 df[s] = df[s].Filter(
"trigE || trigM")\
96 .Filter(
"met_et > 30000")
99 df[s] = df[s].Define(
"good_lep",
"lep_isTightID && lep_pt > 35000 && lep_ptcone30 / lep_pt < 0.1 && lep_etcone20 / lep_pt < 0.1")\
100 .Filter(
"ROOT::VecOps::Sum(good_lep) == 1")
103 df[s] = df[s].Define(
"idx",
"ROOT::VecOps::ArgMax(good_lep)")\
104 .Filter(
"GoodElectronOrMuon(lep_type[idx], lep_pt[idx], lep_eta[idx], lep_phi[idx], lep_E[idx], lep_trackd0pvunbiased[idx], lep_tracksigd0pvunbiased[idx], lep_z0[idx])")
109 df[s] = df[s].Define(
"weight",
"1.0")
111 df[s] = df[s].Define(
"weight",
"scaleFactor_ELE * scaleFactor_MUON * scaleFactor_LepTRIGGER * scaleFactor_PILEUP * mcWeight * {} / {} * {}".
format(xsecs[s], sumws[s], lumi))
114ROOT.gInterpreter.Declare(
"""
115float ComputeTransverseMass(float met_et, float met_phi, float lep_pt, float lep_eta, float lep_phi, float lep_e)
117 ROOT::Math::PtEtaPhiEVector met(met_et, 0, met_phi, met_et);
118 ROOT::Math::PtEtaPhiEVector lep(lep_pt, lep_eta, lep_phi, lep_e);
119 return (met + lep).Mt() / 1000.0;
125 df[s] = df[s].Define(
"mt_w",
"ComputeTransverseMass(met_et, met_phi, lep_pt[idx], lep_eta[idx], lep_phi[idx], lep_E[idx])")
126 histos[s] = df[s].Histo1D(
ROOT.RDF.TH1DModel(s,
"mt_w", 24, 60, 180),
"mt_w",
"weight")
136def merge_histos(label):
138 for i, d
in enumerate(files[label]):
139 t = histos[d[1]].GetValue()
140 if i == 0: h = t.Clone()
142 h.SetNameTitle(label, label)
145data = merge_histos(
"data")
146wjets = merge_histos(
"wjets")
147zjets = merge_histos(
"zjets")
148ttbar = merge_histos(
"ttbar")
149diboson = merge_histos(
"diboson")
150singletop = merge_histos(
"singletop")
155ROOT.gROOT.SetStyle(
"ATLAS")
158c = RCanvas.Create(
"df105_WBosonAnalysis")
160frame.margins.top = 0.05
161frame.margins.right = 0.05
162frame.margins.left = 0.16
163frame.margins.bottom = 0.16
169frame.x.title.value =
"m_{T}^{W#rightarrow l#nu} [GeV]"
170frame.x.title.size = 0.045
171frame.x.title.offset = 0.01
172frame.x.labels.size = 0.04
175frame.y.max = 1e10*args.lumi_scale
177frame.y.title.value =
"Events"
178frame.y.title.size = 0.045
179frame.y.labels.size = 0.04
185stack = ROOT.THStack()
187 [singletop, diboson, ttbar, zjets, wjets],
188 [(208, 240, 193), (195, 138, 145), (155, 152, 204), (248, 206, 104), (222, 90, 106)]):
191 h.SetFillColor(ROOT.TColor.GetColor(*color))
193c.Add[TObjectDrawable]().Set(stack,
"HIST SAME")
196data.SetMarkerStyle(20)
197data.SetMarkerSize(1.2)
199data.SetLineColor(ROOT.kBlack)
200c.Add[TObjectDrawable]().Set(data,
"E SAME")
203legend = ROOT.TLegend(0.60, 0.65, 0.92, 0.92)
204legend.SetTextFont(42)
205legend.SetFillStyle(0)
206legend.SetBorderSize(0)
207legend.SetTextSize(0.04)
208legend.SetTextAlign(32)
209legend.AddEntry(data,
"Data" ,
"lep")
210legend.AddEntry(wjets,
"W+jets",
"f")
211legend.AddEntry(zjets,
"Z+jets",
"f")
212legend.AddEntry(ttbar,
"t#bar{t}",
"f")
213legend.AddEntry(diboson,
"Diboson",
"f")
214legend.AddEntry(singletop,
"Single top",
"f")
215c.Add[TObjectDrawable]().Set(legend)
218lbl1 = c.Add[RText](RPadPos(0.05, 0.88),
"ATLAS")
220lbl1.text.font = RAttrFont.kArialBoldOblique
222lbl1.text.align = RAttrText.kLeftBottom
223lbl2 = c.Add[RText](RPadPos(0.05 + 0.20, 0.88),
"Open Data")
225lbl2.text.font = RAttrFont.kArial
227lbl2.text.align = RAttrText.kLeftBottom
228lbl3 = c.Add[RText](RPadPos(0.05, 0.82),
"#sqrt{{s}} = 13 TeV, {:.2f} fb^{{-1}}".
format(lumi * args.lumi_scale / 1000.0))
230lbl3.text.font = RAttrFont.kArial
232lbl3.text.align = RAttrText.kLeftBottom
240print(
"Saved figure to df105.png")
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t format
ROOT's RDataFrame offers a modern, high-level interface for analysis of data stored in TTree ,...
void RunGraphs(std::vector< RResultHandle > handles)
Trigger the event loop of multiple RDataFrames concurrently.
void EnableImplicitMT(UInt_t numthreads=0)
Enable ROOT's implicit multi-threading for all objects and methods that provide an internal paralleli...
A struct which stores the parameters of a TH1D.