18x = ROOT.RooRealVar(
"x",
"x", 0, 10)
19a = ROOT.RooArgusBG(
"a",
"argus(x)", x, ROOT.RooFit.RooConst(10), ROOT.RooFit.RooConst(-1))
22data = a.generate({x}, 10000)
31xRegion = ROOT.RooThresholdCategory(
"xRegion",
"region of x", x,
"Background")
40xRegion.addThreshold(4.23,
"Background")
41xRegion.addThreshold(5.23,
"SideBand")
42xRegion.addThreshold(8.23,
"Signal")
43xRegion.addThreshold(9.23,
"SideBand")
50data.addColumn(xRegion)
53xframe = x.frame(Title=
"Demo of threshold and binning mapping functions")
57data.plotOn(xframe, Cut=
"xRegion==xRegion::SideBand", MarkerColor=
"r", LineColor=
"r")
67x.setBins(10,
"coarse")
68xBins = ROOT.RooBinningCategory(
"xBins",
"coarse bins in x", x,
"coarse")
75xbtable = data.table(xBins)
80xb = data.addColumn(xBins)
83xb.setRange(
"alt",
"x_coarse_bin1,x_coarse_bin3,x_coarse_bin5,x_coarse_bin7,x_coarse_bin9")
87dataSel = data.reduce(CutRange=
"alt", EventRange=(0, 5000))
88dataSel.plotOn(xframe, MarkerColor=
"g", LineColor=
"g")
90c = ROOT.TCanvas(
"rf405_realtocatfuncs",
"rf405_realtocatfuncs", 600, 600)
91xframe.SetMinimum(0.01)
92ROOT.gPad.SetLeftMargin(0.15)
93xframe.GetYaxis().SetTitleOffset(1.4)
96c.SaveAs(
"rf405_realtocatfuncs.png")