Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
PdfProposal.cxx
Go to the documentation of this file.
1 // @(#)root/roostats:$Id$
2 // Authors: Kevin Belasco 17/06/2009
3 // Authors: Kyle Cranmer 17/06/2009
4 /*************************************************************************
5  * Copyright (C) 1995-2008, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 ////////////////////////////////////////////////////////////////////////////////
13 
14 /** \class RooStats::PdfProposal
15  \ingroup Roostats
16 
17 PdfProposal is a concrete implementation of the ProposalFunction interface.
18 It proposes points across the parameter space in the distribution of the
19 given PDF.
20 
21 To make Propose(xPrime, x) dependent on x, configure with
22 PdfProposal::AddMapping(varToUpdate, valueToUse). For example, suppose we have:
23 
24 ~~~{.cpp}
25 // our parameter
26 RooRealVar p("p", "p", 5, 0, 10);
27 
28 // create mean and sigma for gaussian proposal function
29 RooRealVar meanP("meanP", "meanP", 0, 10);
30 RooRealVar sigma("sigma", "sigma", 1, 0, 5);
31 RooGaussian pGaussian("pGaussian", "pGaussian", p, meanP, sigma);
32 
33 // configure proposal function
34 PdfProposal pdfProposal(pGaussian);
35 pdfProposal.AddMapping(meanP, p); // each call of Propose(xPrime, x), meanP in
36  // the proposal function will be updated to
37  // the value of p in x. this will center the
38  // proposal function about x's p when
39  // proposing for xPrime
40 
41 // To improve performance, PdfProposal has the ability to cache a specified
42 // number of proposals. If you don't call this function, the default cache size
43 // is 1, which can be slow.
44 pdfProposal.SetCacheSize(desiredCacheSize);
45 ~~~
46 
47 PdfProposal currently uses a fixed cache size. Adaptive caching methods are in the works
48 for future versions.
49 */
50 
51 
52 #include "Rtypes.h"
53 
54 #include "RooStats/PdfProposal.h"
55 #include "RooStats/RooStatsUtils.h"
56 #include "RooArgSet.h"
57 #include "RooDataSet.h"
58 #include "RooAbsPdf.h"
59 #include "RooMsgService.h"
60 #include "RooRealVar.h"
61 #include "TIterator.h"
62 
63 #include <map>
64 
65 ClassImp(RooStats::PdfProposal);
66 
67 using namespace RooFit;
68 using namespace RooStats;
69 using namespace std;
70 
71 ////////////////////////////////////////////////////////////////////////////////
72 /// By default, PdfProposal does NOT own the PDF that serves as the
73 /// proposal density function
74 
75 PdfProposal::PdfProposal() : ProposalFunction()
76 {
77  fPdf = NULL;
78  fOwnsPdf = kFALSE;
79  fCacheSize = 1;
80  fCachePosition = 0;
81  fCache = NULL;
82 }
83 
84 ////////////////////////////////////////////////////////////////////////////////
85 /// By default, PdfProposal does NOT own the PDF that serves as the
86 /// proposal density function
87 
88 PdfProposal::PdfProposal(RooAbsPdf& pdf) : ProposalFunction()
89 {
90  fPdf = &pdf;
91  fOwnsPdf = kFALSE;
92  fCacheSize = 1;
93  fCachePosition = 0;
94  fCache = NULL;
95 }
96 
97 ////////////////////////////////////////////////////////////////////////////////
98 /// determine whether these two RooArgSets represent the same point
99 
100 Bool_t PdfProposal::Equals(RooArgSet& x1, RooArgSet& x2)
101 {
102  if (x1.equals(x2)) {
103  TIterator* it = x1.createIterator();
104  RooRealVar* r;
105  while ((r = (RooRealVar*)it->Next()) != NULL)
106  if (r->getVal() != x2.getRealValue(r->GetName())) {
107  delete it;
108  return kFALSE;
109  }
110  delete it;
111  return kTRUE;
112  }
113  return kFALSE;
114 }
115 
116 ////////////////////////////////////////////////////////////////////////////////
117 /// Populate xPrime with a new proposed point
118 
119 void PdfProposal::Propose(RooArgSet& xPrime, RooArgSet& x)
120 {
121  if (fLastX.getSize() == 0) {
122  // fLastX not yet initialized
123  fLastX.addClone(x);
124  // generate initial cache
125  RooStats::SetParameters(&x, &fMaster);
126  if (fMap.size() > 0) {
127  for (fIt = fMap.begin(); fIt != fMap.end(); fIt++)
128  fIt->first->setVal(fIt->second->getVal(&x));
129  }
130  fCache = fPdf->generate(xPrime, fCacheSize);
131  }
132 
133  Bool_t moved = false;
134  if (fMap.size() > 0) {
135  moved = !Equals(fLastX, x);
136 
137  // if we've moved, set the values of the variables in the PDF to the
138  // corresponding values of the variables in x, according to the
139  // mappings (i.e. let the variables in x set the given values for the
140  // PDF that will generate xPrime)
141  if (moved) {
142  // update the pdf parameters
143  RooStats::SetParameters(&x, &fMaster);
144 
145  for (fIt = fMap.begin(); fIt != fMap.end(); fIt++)
146  fIt->first->setVal(fIt->second->getVal(&x));
147 
148  // save the new x in fLastX
149  RooStats::SetParameters(&x, &fLastX);
150  }
151  }
152 
153  // generate new cache if necessary
154  if (moved || fCachePosition >= fCacheSize) {
155  delete fCache;
156  fCache = fPdf->generate(xPrime, fCacheSize);
157  fCachePosition = 0;
158  }
159 
160  const RooArgSet* proposal = fCache->get(fCachePosition);
161  fCachePosition++;
162  RooStats::SetParameters(proposal, &xPrime);
163 }
164 
165 ////////////////////////////////////////////////////////////////////////////////
166 /// Determine whether or not the proposal density is symmetric for
167 /// points x1 and x2 - that is, whether the probabilty of reaching x2
168 /// from x1 is equal to the probability of reaching x1 from x2
169 
170 Bool_t PdfProposal::IsSymmetric(RooArgSet& /* x1 */, RooArgSet& /* x2 */)
171 {
172  // kbelasco: is there a better way to do this?
173  return false;
174 }
175 
176 ////////////////////////////////////////////////////////////////////////////////
177 /// Return the probability of proposing the point x1 given the starting
178 /// point x2
179 
180 Double_t PdfProposal::GetProposalDensity(RooArgSet& x1, RooArgSet& x2)
181 {
182  RooStats::SetParameters(&x2, &fMaster);
183  for (fIt = fMap.begin(); fIt != fMap.end(); fIt++)
184  fIt->first->setVal(fIt->second->getVal(&x2));
185  RooArgSet* temp = fPdf->getObservables(x1);
186  RooStats::SetParameters(&x1, temp);
187  delete temp;
188  return fPdf->getVal(&x1); // could just as well use x2
189 }
190 
191 ////////////////////////////////////////////////////////////////////////////////
192 /// specify a mapping between a parameter of the proposal function and
193 /// a parameter of interest. this mapping is used to set the value of
194 /// proposalParam equal to the value of update to determine the
195 /// proposal function.
196 /// proposalParam is a parameter of the proposal function that must
197 /// be set to the value of update (from the current point) in order to
198 /// propose a new point.
199 
200 void PdfProposal::AddMapping(RooRealVar& proposalParam, RooAbsReal& update)
201 {
202  fMaster.add(*update.getParameters((RooAbsData*)NULL));
203  if (update.getParameters((RooAbsData*)NULL)->getSize() == 0)
204  fMaster.add(update);
205  fMap.insert(pair<RooRealVar*, RooAbsReal*>(&proposalParam, &update));
206 }