11 """Fit peak for every row in 2D histogram."""
12 mean = inputs[0][1][0].ProjectionY().Clone()
14 sigma = inputs[0][1][0].ProjectionY().Clone()
16 name = inputs[0][1][0].GetName()
17 n_bins_y = inputs[0][1][0].GetNbinsY()
18 for i
in range(n_bins_y):
19 tmp = inputs[0][1][0].ProjectionX(name, i,i).Clone()
20 if tmp.GetEntries() == 0:
21 print(
"zero entries in Projection")
23 mean.SetBinContent(i, tmp.GetMean(1))
24 mean.SetBinError(i, tmp.GetMeanError(1))
25 sigma.SetBinContent(i, tmp.GetRMS(1))
26 sigma.SetBinError(i, tmp.GetRMSError(1))
27 mean.SetTitle(inputs[0][1][0].GetTitle()+
"projection mean")
28 mean.GetXaxis().SetTitle(
"#eta regions")
29 mean.GetYaxis().SetTitle(
"entries")
30 sigma.SetTitle(inputs[0][1][0].GetTitle()+
"projection sigma")
31 sigma.GetXaxis().SetTitle(
"#eta regions")
32 sigma.GetYaxis().SetTitle(
"entries")
36 """Returns 2D efficiencies from two 2D input histograms, the first the selective and the second the inclusive histogram."""
37 selective = inputs[0][1][0].Clone()
38 inclusive = inputs[0][1][1].Clone()
39 efficiency = selective.Clone()
42 n_bins_x = selective.GetNbinsX()
43 n_bins_y = selective.GetNbinsY()
44 for i
in range(n_bins_x):
45 for j
in range(n_bins_y):
46 bin1 = selective.GetBinContent(i, j)
47 bin2 = inclusive.GetBinContent(i, j)
48 eff = float(bin1)/float(bin2)
if bin2!=0
else 0
49 efficiency.SetBinContent(i, j, eff)
51 efficiency.SetTitle(selective.GetTitle())
52 efficiency.GetXaxis().SetTitle(
"eta")
53 efficiency.GetYaxis().SetTitle(
"phi")
59 Normalize each row (Y-bin) of a TH2F to a maximum of 1.
60 Rows with zero entries are skipped.
62 hist2d = inputs[0][1][0]
63 name = hist2d.GetName()
65 print(
"normalize rows for this hist:", hist2d)
68 norm_hist = hist2d.Clone(name +
"_row_normalized")
71 n_bins_x = hist2d.GetNbinsX()
72 n_bins_y = hist2d.GetNbinsY()
74 for iy
in range(1, n_bins_y + 1):
76 proj = hist2d.ProjectionX(f
"{name}_proj_{iy}", iy, iy)
78 if proj.GetEntries() == 0:
79 print(f
"Row {iy}: zero entries, skipping")
82 max_val = proj.GetMaximum()
85 print(f
"Row {iy}: max is zero, skipping")
89 for ix
in range(1, n_bins_x + 1):
90 val = hist2d.GetBinContent(ix, iy)
91 err = hist2d.GetBinError(ix, iy)
93 norm_hist.SetBinContent(ix, iy, val / max_val)
94 norm_hist.SetBinError(ix, iy, err / max_val)
96 norm_hist.SetTitle(hist2d.GetTitle() +
" (row-normalized)")
97 norm_hist.GetXaxis().SetTitle(hist2d.GetXaxis().GetTitle())
98 norm_hist.GetYaxis().SetTitle(hist2d.GetYaxis().GetTitle())