ROOT  6.07/01
Reference Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
rf315_projectpdf.C
Go to the documentation of this file.
1 /// \file
2 /// \ingroup tutorial_roofit
3 /// 'MULTIDIMENSIONAL MODELS' RooFit tutorial macro #315
4 ///
5 /// Marginizalization of multi-dimensional p.d.f.s through integration
6 ///
7 ///
8 ///
9 /// \macro_code
10 /// \author 07/2008 - Wouter Verkerke
11 
12 
13 #ifndef __CINT__
14 #include "RooGlobalFunc.h"
15 #endif
16 #include "RooRealVar.h"
17 #include "RooDataHist.h"
18 #include "RooGaussian.h"
19 #include "RooProdPdf.h"
20 #include "RooPolyVar.h"
21 #include "TH1.h"
22 #include "TCanvas.h"
23 #include "TAxis.h"
24 #include "RooPlot.h"
25 #include "RooNumIntConfig.h"
26 #include "RooConstVar.h"
27 using namespace RooFit ;
28 
29 
30 void rf315_projectpdf()
31 {
32  // C r e a t e p d f m ( x , y ) = g x ( x | y ) * g ( y )
33  // --------------------------------------------------------------
34 
35  // Increase default precision of numeric integration
36  // as this exercise has high sensitivity to numeric integration precision
39 
40  // Create observables
41  RooRealVar x("x","x",-5,5) ;
42  RooRealVar y("y","y",-2,2) ;
43 
44  // Create function f(y) = a0 + a1*y
45  RooRealVar a0("a0","a0",0) ;
46  RooRealVar a1("a1","a1",-1.5,-3,1) ;
47  RooPolyVar fy("fy","fy",y,RooArgSet(a0,a1)) ;
48 
49  // Create gaussx(x,f(y),sx)
50  RooRealVar sigmax("sigmax","width of gaussian",0.5) ;
51  RooGaussian gaussx("gaussx","Gaussian in x with shifting mean in y",x,fy,sigmax) ;
52 
53  // Create gaussy(y,0,2)
54  RooGaussian gaussy("gaussy","Gaussian in y",y,RooConst(0),RooConst(2)) ;
55 
56  // Create gaussx(x,sx|y) * gaussy(y)
57  RooProdPdf model("model","gaussx(x|y)*gaussy(y)",gaussy,Conditional(gaussx,x)) ;
58 
59 
60 
61  // M a r g i n a l i z e m ( x , y ) t o m ( x )
62  // ----------------------------------------------------
63 
64  // modelx(x) = Int model(x,y) dy
65  RooAbsPdf* modelx = model.createProjection(y) ;
66 
67 
68 
69  // U s e m a r g i n a l i z e d p . d . f . a s r e g u l a r 1 - D p . d . f .
70  // ------------------------------------------------------------------------------------------
71 
72  // Sample 1000 events from modelx
73  RooAbsData* data = modelx->generateBinned(x,1000) ;
74 
75  // Fit modelx to toy data
76  modelx->fitTo(*data,Verbose()) ;
77 
78  // Plot modelx over data
79  RooPlot* frame = x.frame(40) ;
80  data->plotOn(frame) ;
81  modelx->plotOn(frame) ;
82 
83  // Make 2D histogram of model(x,y)
84  TH1* hh = model.createHistogram("x,y") ;
85  hh->SetLineColor(kBlue) ;
86 
87 
88  TCanvas* c = new TCanvas("rf315_projectpdf","rf315_projectpdf",800,400) ;
89  c->Divide(2) ;
90  c->cd(1) ; gPad->SetLeftMargin(0.15) ; frame->GetYaxis()->SetTitleOffset(1.4) ; frame->Draw() ;
91  c->cd(2) ; gPad->SetLeftMargin(0.20) ; hh->GetZaxis()->SetTitleOffset(2.5) ; hh->Draw("surf") ;
92 
93 }
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:245
static RooNumIntConfig * defaultIntegratorConfig()
Returns the default numeric integration configuration for all RooAbsReals.
virtual RooDataHist * generateBinned(const RooArgSet &whatVars, Double_t nEvents, const RooCmdArg &arg1, const RooCmdArg &arg2=RooCmdArg::none(), const RooCmdArg &arg3=RooCmdArg::none(), const RooCmdArg &arg4=RooCmdArg::none(), const RooCmdArg &arg5=RooCmdArg::none())
Generate a new dataset containing the specified variables with events sampled from our distribution...
Definition: RooAbsPdf.cxx:2175
RooProdPdf is an efficient implementation of a product of PDFs of the form.
Definition: RooProdPdf.h:31
TAxis * GetYaxis() const
Definition: RooPlot.cxx:1118
RooCmdArg Conditional(const RooArgSet &pdfSet, const RooArgSet &depSet, Bool_t depsAreCond=kFALSE)
Double_t x[n]
Definition: legend1.C:17
Plain Gaussian p.d.f.
Definition: RooGaussian.h:25
friend class RooArgSet
Definition: RooAbsArg.h:469
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
Plot dataset on specified frame.
Definition: RooAbsData.cxx:626
virtual RooAbsPdf * createProjection(const RooArgSet &iset)
Return a p.d.f that represent a projection of this p.d.f integrated over given observables.
Definition: RooAbsPdf.cxx:2989
Class RooPolyVar is a RooAbsReal implementing a polynomial in terms of a list of RooAbsReal coefficie...
Definition: RooPolyVar.h:28
RooRealVar represents a fundamental (non-derived) real valued object.
Definition: RooRealVar.h:37
virtual void SetLineColor(Color_t lcolor)
Definition: TAttLine.h:54
virtual void Draw(Option_t *option="")
Draw this histogram with options.
Definition: TH1.cxx:2878
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 RooCmdArg &arg9=RooCmdArg::none(), const RooCmdArg &arg10=RooCmdArg::none()) const
Plot (project) PDF on specified frame.
Definition: RooAbsPdf.h:105
RooAbsData is the common abstract base class for binned and unbinned datasets.
Definition: RooAbsData.h:37
A RooPlot is a plot frame and a container for graphics objects within that frame. ...
Definition: RooPlot.h:41
Double_t y[n]
Definition: legend1.C:17
The TH1 histogram class.
Definition: TH1.h:80
RooCmdArg Verbose(Bool_t flag=kTRUE)
TAxis * GetZaxis()
Definition: TH1.h:321
RooConstVar & RooConst(Double_t val)
RooAbsPdf is the abstract interface for all probability density functions The class provides hybrid a...
Definition: RooAbsPdf.h:41
#define gPad
Definition: TVirtualPad.h:288
virtual RooFitResult * fitTo(RooAbsData &data, 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())
Fit PDF to given dataset.
Definition: RooAbsPdf.cxx:1056
Definition: Rtypes.h:61
void setEpsAbs(Double_t newEpsAbs)
Set absolute convergence criteria (convergence if abs(Err)<newEpsAbs)
void setEpsRel(Double_t newEpsRel)
Set relative convergence criteria (convergence if abs(Err)/abs(Int)<newEpsRel)
virtual void Draw(Option_t *options=0)
Draw this plot and all of the elements it contains.
Definition: RooPlot.cxx:559