Logo ROOT   6.18/05
Reference Guide
rf701_efficiencyfit.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_roofit
3/// \notebook -js
4/// Speecial p.d.f.'s: unbinned maximum likelihood fit of an efficiency eff(x) function
5///
6/// to a dataset D(x,cut), where cut is a category encoding a selection, of which the efficiency as function of x should
7/// be described by eff(x)
8///
9/// \macro_image
10/// \macro_output
11/// \macro_code
12/// \author 07/2008 - Wouter Verkerke
13
14#include "RooRealVar.h"
15#include "RooDataSet.h"
16#include "RooGaussian.h"
17#include "RooConstVar.h"
18#include "RooFormulaVar.h"
19#include "RooProdPdf.h"
20#include "RooEfficiency.h"
21#include "RooPolynomial.h"
22#include "RooCategory.h"
23#include "TCanvas.h"
24#include "TAxis.h"
25#include "RooPlot.h"
26using namespace RooFit;
27
29{
30 // C o n s t r u c t e f f i c i e n c y f u n c t i o n e ( x )
31 // -------------------------------------------------------------------
32
33 // Declare variables x,mean,sigma with associated name, title, initial value and allowed range
34 RooRealVar x("x", "x", -10, 10);
35
36 // Efficiency function eff(x;a,b)
37 RooRealVar a("a", "a", 0.4, 0, 1);
38 RooRealVar b("b", "b", 5);
39 RooRealVar c("c", "c", -1, -10, 10);
40 RooFormulaVar effFunc("effFunc", "(1-a)+a*cos((x-c)/b)", RooArgList(a, b, c, x));
41
42 // C o n s t r u c t c o n d i t i o n a l e f f i c i e n c y p d f E ( c u t | x )
43 // ------------------------------------------------------------------------------------------
44
45 // Acceptance state cut (1 or 0)
46 RooCategory cut("cut", "cutr");
47 cut.defineType("accept", 1);
48 cut.defineType("reject", 0);
49
50 // Construct efficiency p.d.f eff(cut|x)
51 RooEfficiency effPdf("effPdf", "effPdf", effFunc, cut, "accept");
52
53 // G e n e r a t e d a t a ( x , c u t ) f r o m a t o y m o d e l
54 // -----------------------------------------------------------------------------
55
56 // Construct global shape p.d.f shape(x) and product model(x,cut) = eff(cut|x)*shape(x)
57 // (These are _only_ needed to generate some toy MC here to be used later)
58 RooPolynomial shapePdf("shapePdf", "shapePdf", x, RooConst(-0.095));
59 RooProdPdf model("model", "model", shapePdf, Conditional(effPdf, cut));
60
61 // Generate some toy data from model
62 RooDataSet *data = model.generate(RooArgSet(x, cut), 10000);
63
64 // F i t c o n d i t i o n a l e f f i c i e n c y p d f t o d a t a
65 // --------------------------------------------------------------------------
66
67 // Fit conditional efficiency p.d.f to data
68 effPdf.fitTo(*data, ConditionalObservables(x));
69
70 // P l o t f i t t e d , d a t a e f f i c i e n c y
71 // --------------------------------------------------------
72
73 // Plot distribution of all events and accepted fraction of events on frame
74 RooPlot *frame1 = x.frame(Bins(20), Title("Data (all, accepted)"));
75 data->plotOn(frame1);
76 data->plotOn(frame1, Cut("cut==cut::accept"), MarkerColor(kRed), LineColor(kRed));
77
78 // Plot accept/reject efficiency on data overlay fitted efficiency curve
79 RooPlot *frame2 = x.frame(Bins(20), Title("Fitted efficiency"));
80 data->plotOn(frame2, Efficiency(cut)); // needs ROOT version >= 5.21
81 effFunc.plotOn(frame2, LineColor(kRed));
82
83 // Draw all frames on a canvas
84 TCanvas *ca = new TCanvas("rf701_efficiency", "rf701_efficiency", 800, 400);
85 ca->Divide(2);
86 ca->cd(1);
87 gPad->SetLeftMargin(0.15);
88 frame1->GetYaxis()->SetTitleOffset(1.6);
89 frame1->Draw();
90 ca->cd(2);
91 gPad->SetLeftMargin(0.15);
92 frame2->GetYaxis()->SetTitleOffset(1.4);
93 frame2->Draw();
94}
#define b(i)
Definition: RSha256.hxx:100
#define c(i)
Definition: RSha256.hxx:101
@ kRed
Definition: Rtypes.h:64
#define gPad
Definition: TVirtualPad.h:286
virtual RooPlot * plotOn(RooPlot *frame, const RooCmdArg &arg1=RooCmdArg::none(), const RooCmdArg &arg2=RooCmdArg::none(), const RooCmdArg &arg3=RooCmdArg::none(), const RooCmdArg &arg4=RooCmdArg::none(), const RooCmdArg &arg5=RooCmdArg::none(), const RooCmdArg &arg6=RooCmdArg::none(), const RooCmdArg &arg7=RooCmdArg::none(), const RooCmdArg &arg8=RooCmdArg::none()) const
Calls RooPlot* plotOn(RooPlot* frame, const RooLinkedList& cmdList) const ;.
Definition: RooAbsData.cxx:552
RooArgList is a container object that can hold multiple RooAbsArg objects.
Definition: RooArgList.h:21
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition: RooArgSet.h:28
RooCategory represents a fundamental (non-derived) discrete value object.
Definition: RooCategory.h:24
RooDataSet is a container class to hold unbinned data.
Definition: RooDataSet.h:31
RooEfficiency is a PDF helper class to fit efficiencies parameterized by a supplied function F.
Definition: RooEfficiency.h:27
A RooFormulaVar is a generic implementation of a real-valued object, which takes a RooArgList of serv...
Definition: RooFormulaVar.h:27
A RooPlot is a plot frame and a container for graphics objects within that frame.
Definition: RooPlot.h:41
TAxis * GetYaxis() const
Definition: RooPlot.cxx:1123
virtual void Draw(Option_t *options=0)
Draw this plot and all of the elements it contains.
Definition: RooPlot.cxx:558
RooPolynomial implements a polynomial p.d.f of the form.
Definition: RooPolynomial.h:28
RooProdPdf is an efficient implementation of a product of PDFs of the form.
Definition: RooProdPdf.h:31
RooRealVar represents a fundamental (non-derived) real valued object.
Definition: RooRealVar.h:36
virtual void SetTitleOffset(Float_t offset=1)
Set distance between the axis and the axis title Offset is a correction factor with respect to the "s...
Definition: TAttAxis.cxx:294
The Canvas class.
Definition: TCanvas.h:31
TVirtualPad * cd(Int_t subpadnumber=0)
Set current canvas & pad.
Definition: TCanvas.cxx:693
virtual void Divide(Int_t nx=1, Int_t ny=1, Float_t xmargin=0.01, Float_t ymargin=0.01, Int_t color=0)
Automatic pad generation by division.
Definition: TPad.cxx:1166
Double_t x[n]
Definition: legend1.C:17
Template specialisation used in RooAbsArg:
RooCmdArg MarkerColor(Color_t color)
RooConstVar & RooConst(Double_t val)
RooCmdArg Cut(const char *cutSpec)
RooCmdArg ConditionalObservables(const RooArgSet &set)
RooCmdArg LineColor(Color_t color)
RooCmdArg Efficiency(const RooCategory &cat)
RooCmdArg Conditional(const RooArgSet &pdfSet, const RooArgSet &depSet, Bool_t depsAreCond=kFALSE)
RooCmdArg Bins(Int_t nbin)
const char * Title
Definition: TXMLSetup.cxx:67
auto * a
Definition: textangle.C:12