Logo ROOT  
Reference Guide
rf706_histpdf.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_roofit
3/// \notebook -js
4/// Special p.d.f.'s: histogram-based p.d.f.s and functions
5///
6/// \macro_image
7/// \macro_output
8/// \macro_code
9/// \author 07/2008 - Wouter Verkerke
10
11#include "RooRealVar.h"
12#include "RooDataSet.h"
13#include "RooGaussian.h"
14#include "RooConstVar.h"
15#include "RooPolynomial.h"
16#include "RooHistPdf.h"
17#include "TCanvas.h"
18#include "TAxis.h"
19#include "RooPlot.h"
20using namespace RooFit;
21
22void rf706_histpdf()
23{
24 // C r e a t e p d f f o r s a m p l i n g
25 // ---------------------------------------------
26
27 RooRealVar x("x", "x", 0, 20);
28 RooPolynomial p("p", "p", x, RooArgList(RooConst(0.01), RooConst(-0.01), RooConst(0.0004)));
29
30 // C r e a t e l o w s t a t s h i s t o g r a m
31 // ---------------------------------------------------
32
33 // Sample 500 events from p
34 x.setBins(20);
35 RooDataSet *data1 = p.generate(x, 500);
36
37 // Create a binned dataset with 20 bins and 500 events
38 RooDataHist *hist1 = data1->binnedClone();
39
40 // Represent data in dh as pdf in x
41 RooHistPdf histpdf1("histpdf1", "histpdf1", x, *hist1, 0);
42
43 // Plot unbinned data and histogram pdf overlaid
44 RooPlot *frame1 = x.frame(Title("Low statistics histogram pdf"), Bins(100));
45 data1->plotOn(frame1);
46 histpdf1.plotOn(frame1);
47
48 // C r e a t e h i g h s t a t s h i s t o g r a m
49 // -----------------------------------------------------
50
51 // Sample 100000 events from p
52 x.setBins(10);
53 RooDataSet *data2 = p.generate(x, 100000);
54
55 // Create a binned dataset with 10 bins and 100K events
56 RooDataHist *hist2 = data2->binnedClone();
57
58 // Represent data in dh as pdf in x, apply 2nd order interpolation
59 RooHistPdf histpdf2("histpdf2", "histpdf2", x, *hist2, 2);
60
61 // Plot unbinned data and histogram pdf overlaid
62 RooPlot *frame2 = x.frame(Title("High stats histogram pdf with interpolation"), Bins(100));
63 data2->plotOn(frame2);
64 histpdf2.plotOn(frame2);
65
66 TCanvas *c = new TCanvas("rf706_histpdf", "rf706_histpdf", 800, 400);
67 c->Divide(2);
68 c->cd(1);
69 gPad->SetLeftMargin(0.15);
70 frame1->GetYaxis()->SetTitleOffset(1.4);
71 frame1->Draw();
72 c->cd(2);
73 gPad->SetLeftMargin(0.15);
74 frame2->GetYaxis()->SetTitleOffset(1.8);
75 frame2->Draw();
76}
#define c(i)
Definition: RSha256.hxx:101
#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:550
RooArgList is a container object that can hold multiple RooAbsArg objects.
Definition: RooArgList.h:21
The RooDataHist is a container class to hold N-dimensional binned data.
Definition: RooDataHist.h:40
RooDataSet is a container class to hold unbinned data.
Definition: RooDataSet.h:31
RooDataHist * binnedClone(const char *newName=0, const char *newTitle=0) const
Return binned clone of this dataset.
Definition: RooDataSet.cxx:957
RooHistPdf implements a probablity density function sampled from a multidimensional histogram.
Definition: RooHistPdf.h:28
A RooPlot is a plot frame and a container for graphics objects within that frame.
Definition: RooPlot.h:44
TAxis * GetYaxis() const
Definition: RooPlot.cxx:1277
virtual void Draw(Option_t *options=0)
Draw this plot and all of the elements it contains.
Definition: RooPlot.cxx:712
RooPolynomial implements a polynomial p.d.f of the form.
Definition: RooPolynomial.h:28
RooRealVar represents a variable that can be changed from the outside.
Definition: RooRealVar.h:35
virtual void SetTitleOffset(Float_t offset=1)
Set distance between the axis and the axis title.
Definition: TAttAxis.cxx:294
The Canvas class.
Definition: TCanvas.h:31
Double_t x[n]
Definition: legend1.C:17
The namespace RooFit contains mostly switches that change the behaviour of functions of PDFs (or othe...
RooConstVar & RooConst(Double_t val)
RooCmdArg Bins(Int_t nbin)
const char * Title
Definition: TXMLSetup.cxx:67