Logo ROOT   6.18/05
Reference Guide
rf509_wsinteractive.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_roofit
3/// \notebook -js
4/// Organization and simultaneous fits: easy interactive access to workspace contents - CINT to CLING code migration
5///
6/// \macro_image
7/// \macro_output
8/// \macro_code
9/// \author 04/2009 - Wouter Verkerke
10
11using namespace RooFit;
12
13void fillWorkspace(RooWorkspace &w);
14
16{
17 // C r e a t e a n d f i l l w o r k s p a c e
18 // ------------------------------------------------
19
20 // Create a workspace named 'w'
21 // With CINT w could exports its contents to
22 // a same-name C++ namespace in CINT 'namespace w'.
23 // but this does not work anymore in CLING.
24 // so this tutorial is an example on how to
25 // change the code
26 RooWorkspace *w1 = new RooWorkspace("w", kTRUE);
27
28 // Fill workspace with p.d.f. and data in a separate function
29 fillWorkspace(*w1);
30
31 // Print workspace contents
32 w1->Print();
33
34 // this does not work anymore with CLING
35 // use normal workspace functionality
36
37 // U s e w o r k s p a c e c o n t e n t s
38 // ----------------------------------------------
39
40 // Old syntax to use the name space prefix operator to access the workspace contents
41 //
42 // RooDataSet* d = w::model.generate(w::x,1000) ;
43 // RooFitResult* r = w::model.fitTo(*d) ;
44
45 // use normal workspace methods
46 RooAbsPdf *model = w1->pdf("model");
47 RooRealVar *x = w1->var("x");
48
49 RooDataSet *d = model->generate(*x, 1000);
50 RooFitResult *r = model->fitTo(*d);
51
52 // old syntax to access the variable x
53 // RooPlot* frame = w::x.frame() ;
54
55 RooPlot *frame = x->frame();
56 d->plotOn(frame);
57
58 // OLD syntax to omit x::
59 // NB: The 'w::' prefix can be omitted if namespace w is imported in local namespace
60 // in the usual C++ way
61 //
62 // using namespace w;
63 // model.plotOn(frame) ;
64 // model.plotOn(frame,Components(bkg),LineStyle(kDashed)) ;
65
66 // new correct syntax
67 RooAbsPdf *bkg = w1->pdf("bkg");
68 model->plotOn(frame);
69 model->plotOn(frame, Components(*bkg), LineStyle(kDashed));
70
71 // Draw the frame on the canvas
72 new TCanvas("rf509_wsinteractive", "rf509_wsinteractive", 600, 600);
73 gPad->SetLeftMargin(0.15);
74 frame->GetYaxis()->SetTitleOffset(1.4);
75 frame->Draw();
76}
77
78void fillWorkspace(RooWorkspace &w)
79{
80 // C r e a t e p d f a n d f i l l w o r k s p a c e
81 // --------------------------------------------------------
82
83 // Declare observable x
84 RooRealVar x("x", "x", 0, 10);
85
86 // Create two Gaussian PDFs g1(x,mean1,sigma) anf g2(x,mean2,sigma) and their parameters
87 RooRealVar mean("mean", "mean of gaussians", 5, 0, 10);
88 RooRealVar sigma1("sigma1", "width of gaussians", 0.5);
89 RooRealVar sigma2("sigma2", "width of gaussians", 1);
90
91 RooGaussian sig1("sig1", "Signal component 1", x, mean, sigma1);
92 RooGaussian sig2("sig2", "Signal component 2", x, mean, sigma2);
93
94 // Build Chebychev polynomial p.d.f.
95 RooRealVar a0("a0", "a0", 0.5, 0., 1.);
96 RooRealVar a1("a1", "a1", 0.2, 0., 1.);
97 RooChebychev bkg("bkg", "Background", x, RooArgSet(a0, a1));
98
99 // Sum the signal components into a composite signal p.d.f.
100 RooRealVar sig1frac("sig1frac", "fraction of component 1 in signal", 0.8, 0., 1.);
101 RooAddPdf sig("sig", "Signal", RooArgList(sig1, sig2), sig1frac);
102
103 // Sum the composite signal and background
104 RooRealVar bkgfrac("bkgfrac", "fraction of background", 0.5, 0., 1.);
105 RooAddPdf model("model", "g1+g2+a", RooArgList(bkg, sig), bkgfrac);
106
107 w.import(model);
108}
ROOT::R::TRInterface & r
Definition: Object.C:4
#define d(i)
Definition: RSha256.hxx:102
const Bool_t kTRUE
Definition: RtypesCore.h:87
@ kDashed
Definition: TAttLine.h:48
#define gPad
Definition: TVirtualPad.h:286
RooDataSet * generate(const RooArgSet &whatVars, Int_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())
See RooAbsPdf::generate(const RooArgSet&,const RooCmdArg&,const RooCmdArg&,const RooCmdArg&,...
Definition: RooAbsPdf.h:56
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:1119
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
Helper calling plotOn(RooPlot*, RooLinkedList&) const.
Definition: RooAbsPdf.h:119
RooAddPdf is an efficient implementation of a sum of PDFs of the form.
Definition: RooAddPdf.h:29
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
Chebychev polynomial p.d.f.
Definition: RooChebychev.h:25
RooDataSet is a container class to hold unbinned data.
Definition: RooDataSet.h:31
RooFitResult is a container class to hold the input and output of a PDF fit to a dataset.
Definition: RooFitResult.h:40
Plain Gaussian p.d.f.
Definition: RooGaussian.h:25
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
RooRealVar represents a fundamental (non-derived) real valued object.
Definition: RooRealVar.h:36
The RooWorkspace is a persistable container for RooFit projects.
Definition: RooWorkspace.h:43
void Print(Option_t *opts=0) const
Print contents of the workspace.
RooRealVar * var(const char *name) const
Retrieve real-valued variable (RooRealVar) with given name. A null pointer is returned if not found.
Bool_t import(const RooAbsArg &arg, const RooCmdArg &arg1=RooCmdArg(), const RooCmdArg &arg2=RooCmdArg(), const RooCmdArg &arg3=RooCmdArg(), const RooCmdArg &arg4=RooCmdArg(), const RooCmdArg &arg5=RooCmdArg(), const RooCmdArg &arg6=RooCmdArg(), const RooCmdArg &arg7=RooCmdArg(), const RooCmdArg &arg8=RooCmdArg(), const RooCmdArg &arg9=RooCmdArg())
Import a RooAbsArg object, e.g.
RooAbsPdf * pdf(const char *name) const
Retrieve p.d.f (RooAbsPdf) with given name. A null pointer is returned if not found.
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
Double_t x[n]
Definition: legend1.C:17
Template specialisation used in RooAbsArg:
RooCmdArg Components(const RooArgSet &compSet)
RooCmdArg LineStyle(Style_t style)