Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
rf903_numintcache.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_roofit
3/// \notebook -js
4/// Numeric algorithm tuning: caching of slow numeric integrals and parameterization of slow numeric integrals
5///
6/// \macro_image
7/// \macro_code
8/// \macro_output
9///
10/// \date July 2008
11/// \author Wouter Verkerke
12
13#include "RooRealVar.h"
14#include "RooDataSet.h"
15#include "RooDataHist.h"
16#include "RooGaussian.h"
17#include "TCanvas.h"
18#include "TAxis.h"
19#include "RooPlot.h"
20#include "RooWorkspace.h"
22#include "TFile.h"
23#include "TH1.h"
24
25using namespace RooFit;
26
27RooWorkspace *getWorkspace(Int_t mode);
28
30{
31 // Mode = 0 : Run plain fit (slow)
32 // Mode = 1 : Generate workspace with pre-calculated integral and store it on file (prepare for accelerated running)
33 // Mode = 2 : Run fit from previously stored workspace including cached integrals (fast, requires run in mode=1
34 // first)
35
36 // C r e a t e , s a v e o r l o a d w o r k s p a c e w i t h p . d . f .
37 // -----------------------------------------------------------------------------------
38
39 // Make/load workspace, exit here in mode 1
40 RooWorkspace *w1 = getWorkspace(mode);
41 if (mode == 1) {
42
43 // Show workspace that was created
44 w1->Print();
45
46 // Show plot of cached integral values
48 if (hhcache) {
49
50 new TCanvas("rf903_numintcache", "rf903_numintcache", 600, 600);
51 hhcache->createHistogram("a")->Draw();
52
53 } else {
54 Error("rf903_numintcache", "Cached histogram is not existing in workspace");
55 }
56 return;
57 }
58
59 // U s e p . d . f . f r o m w o r k s p a c e f o r g e n e r a t i o n a n d f i t t i n g
60 // -----------------------------------------------------------------------------------
61
62 // This is always slow (need to find maximum function value empirically in 3D space)
63 std::unique_ptr<RooDataSet> d{w1->pdf("model")->generate({*w1->var("x"), *w1->var("y"), *w1->var("z")}, 1000)};
64
65 // This is slow in mode 0, but fast in mode 1
66 w1->pdf("model")->fitTo(*d, Verbose(true), Timer(true), PrintLevel(-1));
67
68 // Projection on x (always slow as 2D integral over Y,Z at fitted value of a is not cached)
69 RooPlot *framex = w1->var("x")->frame(Title("Projection of 3D model on X"));
70 d->plotOn(framex);
71 w1->pdf("model")->plotOn(framex);
72
73 // Draw x projection on canvas
74 auto canv = new TCanvas("rf903_numintcache", "rf903_numintcache", 600, 600);
75 framex->Draw();
76 canv->Draw();
77
78 // Make workspace available on command line after macro finishes
79 gDirectory->Add(w1);
80}
81
82RooWorkspace *getWorkspace(Int_t mode)
83{
84 // C r e a t e , s a v e o r l o a d w o r k s p a c e w i t h p . d . f .
85 // -----------------------------------------------------------------------------------
86 //
87 // Mode = 0 : Create workspace for plain running (no integral caching)
88 // Mode = 1 : Generate workspace with pre-calculated integral and store it on file
89 // Mode = 2 : Load previously stored workspace from file
90
91 RooWorkspace *w(0);
92
93 if (mode != 2) {
94
95 // Create empty workspace workspace
96 w = new RooWorkspace("w", 1);
97
98 // Make a difficult to normalize pdf in 3 dimensions that is integrated numerically.
99 w->factory("EXPR::model('1/((x-a)*(x-a)+0.01)+1/((y-a)*(y-a)+0.01)+1/"
100 "((z-a)*(z-a)+0.01)',x[-1,1],y[-1,1],z[-1,1],a[-5,5])");
101 }
102
103 if (mode == 1) {
104
105 // Instruct model to pre-calculate normalization integral that integrate at least
106 // two dimensions numerically. In this specific case the integral value for
107 // all values of parameter 'a' are stored in a histogram and available for use
108 // in subsequent fitting and plotting operations (interpolation is applied)
109
110 // w->pdf("model")->setNormValueCaching(3) ;
111 w->pdf("model")->setStringAttribute("CACHEPARMINT", "x:y:z");
112
113 // Evaluate pdf once to trigger filling of cache
114 RooArgSet normSet(*w->var("x"), *w->var("y"), *w->var("z"));
115 w->pdf("model")->getVal(&normSet);
116 w->writeToFile("rf903_numintcache.root");
117 }
118
119 if (mode == 2) {
120 // Load preexisting workspace from file in mode==2
121 TFile *f = new TFile("rf903_numintcache.root");
122 w = (RooWorkspace *)f->Get("w");
123 }
124
125 // Return created or loaded workspace
126 return w;
127}
#define d(i)
Definition RSha256.hxx:102
#define f(i)
Definition RSha256.hxx:104
int Int_t
Definition RtypesCore.h:45
#define gDirectory
Definition TDirectory.h:384
void Error(const char *location, const char *msgfmt,...)
Use this function in case an error occurred.
Definition TError.cxx:185
Option_t Option_t TPoint TPoint const char mode
TH1 * createHistogram(const char *name, const RooAbsRealLValue &xvar, const RooCmdArg &arg1={}, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={}, const RooCmdArg &arg6={}, const RooCmdArg &arg7={}, const RooCmdArg &arg8={}) const
Calls createHistogram(const char *name, const RooAbsRealLValue& xvar, const RooLinkedList& argList) c...
RooPlot * plotOn(RooPlot *frame, const RooCmdArg &arg1={}, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={}, const RooCmdArg &arg6={}, const RooCmdArg &arg7={}, const RooCmdArg &arg8={}, const RooCmdArg &arg9={}, const RooCmdArg &arg10={}) const override
Helper calling plotOn(RooPlot*, RooLinkedList&) const.
Definition RooAbsPdf.h:124
RooFit::OwningPtr< RooFitResult > fitTo(RooAbsData &data, CmdArgs_t const &... cmdArgs)
Fit PDF to given dataset.
Definition RooAbsPdf.h:157
RooFit::OwningPtr< RooDataSet > generate(const RooArgSet &whatVars, Int_t nEvents, const RooCmdArg &arg1, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={})
See RooAbsPdf::generate(const RooArgSet&,const RooCmdArg&,const RooCmdArg&,const RooCmdArg&,...
Definition RooAbsPdf.h:57
RooPlot * frame(const RooCmdArg &arg1, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={}, const RooCmdArg &arg6={}, const RooCmdArg &arg7={}, const RooCmdArg &arg8={}) const
Create a new RooPlot on the heap with a drawing frame initialized for this object,...
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:55
Container class to hold N-dimensional binned data.
Definition RooDataHist.h:39
const TObject * getObj(Int_t uniqueID)
Retrieve payload object of cache element with given unique ID.
Plot frame and a container for graphics objects within that frame.
Definition RooPlot.h:43
void Draw(Option_t *options=nullptr) override
Draw this plot and all of the elements it contains.
Definition RooPlot.cxx:649
Persistable container for RooFit projects.
void Print(Option_t *opts=nullptr) const override
Print contents of the workspace.
RooAbsPdf * pdf(RooStringView name) const
Retrieve p.d.f (RooAbsPdf) with given name. A null pointer is returned if not found.
RooExpensiveObjectCache & expensiveObjectCache()
RooRealVar * var(RooStringView name) const
Retrieve real-valued variable (RooRealVar) with given name. A null pointer is returned if not found.
The Canvas class.
Definition TCanvas.h:23
A ROOT file is an on-disk file, usually with extension .root, that stores objects in a file-system-li...
Definition TFile.h:53
void Draw(Option_t *option="") override
Draw this histogram with options.
Definition TH1.cxx:3066
RooCmdArg PrintLevel(Int_t code)
RooCmdArg Verbose(bool flag=true)
The namespace RooFit contains mostly switches that change the behaviour of functions of PDFs (or othe...
Definition JSONIO.h:26
const char * Title
Definition TXMLSetup.cxx:68