ROOT  6.07/01
Reference Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
rf510_wsnamedsets.C
Go to the documentation of this file.
1 /// \file
2 /// \ingroup tutorial_roofit
3 /// 'ORGANIZATION AND SIMULTANEOUS FITS' RooFit tutorial macro #510
4 ///
5 /// Working with named parameter sets and parameter snapshots in
6 /// workspaces
7 ///
8 /// \macro_code
9 /// \author 04/2009 - Wouter Verkerke
10 
11 
12 #ifndef __CINT__
13 #include "RooGlobalFunc.h"
14 #endif
15 #include "RooRealVar.h"
16 #include "RooDataSet.h"
17 #include "RooGaussian.h"
18 #include "RooConstVar.h"
19 #include "RooChebychev.h"
20 #include "RooAddPdf.h"
21 #include "RooWorkspace.h"
22 #include "RooPlot.h"
23 #include "TCanvas.h"
24 #include "TAxis.h"
25 #include "TFile.h"
26 #include "TH1.h"
27 using namespace RooFit ;
28 
29 
30 void fillWorkspace(RooWorkspace& w) ;
31 
32 void rf510_wsnamedsets()
33 {
34  // C r e a t e m o d e l a n d d a t a s e t
35  // -----------------------------------------------
36 
37  RooWorkspace* w = new RooWorkspace("w") ;
38  fillWorkspace(*w) ;
39 
40  // Exploit convention encoded in named set "parameters" and "observables"
41  // to use workspace contents w/o need for introspected
42  RooAbsPdf* model = w->pdf("model") ;
43 
44  // Generate data from p.d.f. in given observables
45  RooDataSet* data = model->generate(*w->set("observables"),1000) ;
46 
47  // Fit model to data
48  model->fitTo(*data) ;
49 
50  // Plot fitted model and data on frame of first (only) observable
51  RooPlot* frame = ((RooRealVar*)w->set("observables")->first())->frame() ;
52  data->plotOn(frame) ;
53  model->plotOn(frame) ;
54 
55  // Overlay plot with model with reference parameters as stored in snapshots
56  w->loadSnapshot("reference_fit") ;
57  model->plotOn(frame,LineColor(kRed)) ;
58  w->loadSnapshot("reference_fit_bkgonly") ;
59  model->plotOn(frame,LineColor(kRed),LineStyle(kDashed)) ;
60 
61 
62  // Draw the frame on the canvas
63  new TCanvas("rf510_wsnamedsets","rf503_wsnamedsets",600,600) ;
64  gPad->SetLeftMargin(0.15) ; frame->GetYaxis()->SetTitleOffset(1.4) ; frame->Draw() ;
65 
66 
67  // Print workspace contents
68  w->Print() ;
69 
70 
71  // Workspace will remain in memory after macro finishes
72  gDirectory->Add(w) ;
73 
74 }
75 
76 
77 
78 void fillWorkspace(RooWorkspace& w)
79 {
80  // C r e a t e m o d e l
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  // Import model into p.d.f.
108  w.import(model) ;
109 
110 
111  // E n c o d e d e f i n i t i o n o f p a r a m e t e r s i n w o r k s p a c e
112  // ---------------------------------------------------------------------------------------
113 
114 
115  // Define named sets "parameters" and "observables", which list which variables should be considered
116  // parameters and observables by the users convention
117  //
118  // Variables appearing in sets _must_ live in the workspace already, or the autoImport flag
119  // of defineSet must be set to import them on the fly. Named sets contain only references
120  // to the original variables, therefore the value of observables in named sets already
121  // reflect their 'current' value
122  RooArgSet* params = (RooArgSet*) model.getParameters(x) ;
123  w.defineSet("parameters",*params) ;
124  w.defineSet("observables",x) ;
125 
126 
127  // E n c o d e r e f e r e n c e v a l u e f o r p a r a m e t e r s i n w o r k s p a c e
128  // ---------------------------------------------------------------------------------------------------
129 
130 
131  // Define a parameter 'snapshot' in the p.d.f.
132  // Unlike a named set, a parameter snapshot stores an independent set of values for
133  // a given set of variables in the workspace. The values can be stored and reloaded
134  // into the workspace variable objects using the loadSnapshot() and saveSnapshot()
135  // methods. A snapshot saves the value of each variable, any errors that are stored
136  // with it as well as the 'Constant' flag that is used in fits to determine if a
137  // parameter is kept fixed or not.
138 
139  // Do a dummy fit to a (supposedly) reference dataset here and store the results
140  // of that fit into a snapshot
141  RooDataSet* refData = model.generate(x,10000) ;
142  model.fitTo(*refData,PrintLevel(-1)) ;
143 
144  // The kTRUE flag imports the values of the objects in (*params) into the workspace
145  // If not set, the present values of the workspace parameters objects are stored
146  w.saveSnapshot("reference_fit",*params,kTRUE) ;
147 
148  // Make another fit with the signal componentforced to zero
149  // and save those parameters too
150 
151  bkgfrac.setVal(1) ;
152  bkgfrac.setConstant(kTRUE) ;
153  bkgfrac.removeError() ;
154  model.fitTo(*refData,PrintLevel(-1)) ;
155 
156  w.saveSnapshot("reference_fit_bkgonly",*params,kTRUE) ;
157 
158 
159 }
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
Bool_t saveSnapshot(const char *name, const char *paramNames)
Save snapshot of values and attributes (including "Constant") of parameters 'params' If importValue...
RooCmdArg LineColor(Color_t color)
Definition: Rtypes.h:61
RooCmdArg PrintLevel(Int_t code)
friend class RooWorkspace
Definition: RooAbsArg.h:472
TAxis * GetYaxis() const
Definition: RooPlot.cxx:1118
RooAbsArg * first() const
Double_t x[n]
Definition: legend1.C:17
RooAbsPdf * pdf(const char *name) const
Retrieve p.d.f (RooAbsPdf) with given name. A null pointer is returned if not found.
RooCmdArg LineStyle(Style_t style)
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
RooArgSet * getParameters(const RooAbsData *data, Bool_t stripDisconnected=kTRUE) const
Create a list of leaf nodes in the arg tree starting with ourself as top node that don't match any of...
Definition: RooAbsArg.cxx:560
RooRealVar represents a fundamental (non-derived) real valued object.
Definition: RooRealVar.h:37
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
Bool_t defineSet(const char *name, const RooArgSet &aset, Bool_t importMissing=kFALSE)
Define a named RooArgSet with given constituents.
Bool_t loadSnapshot(const char *name)
Load the values and attributes of the parameters in the snapshot saved with the given name...
RooDataSet is a container class to hold unbinned data.
Definition: RooDataSet.h:29
A RooPlot is a plot frame and a container for graphics objects within that frame. ...
Definition: RooPlot.h:41
RooAbsPdf is the abstract interface for all probability density functions The class provides hybrid a...
Definition: RooAbsPdf.h:41
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.
void Print(Option_t *opts=0) const
Print contents of the workspace.
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())
Generate a new dataset containing the specified variables with events sampled from our distribution...
Definition: RooAbsPdf.cxx:1702
const RooArgSet * set(const char *name)
Return pointer to previously defined named set with given nmame If no such set is found a null pointe...
#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
#define gDirectory
Definition: TDirectory.h:221
Chebychev polynomial p.d.f.
Definition: RooChebychev.h:25
const Bool_t kTRUE
Definition: Rtypes.h:91
RooAbsMoment * mean(RooRealVar &obs)
Definition: RooAbsReal.h:297
The RooWorkspace is a persistable container for RooFit projects.
Definition: RooWorkspace.h:42
virtual void Draw(Option_t *options=0)
Draw this plot and all of the elements it contains.
Definition: RooPlot.cxx:559