Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooProfileLL.cxx
Go to the documentation of this file.
1 /*****************************************************************************
2 * Project: RooFit *
3 * *
4 * Copyright (c) 2000-2005, Regents of the University of California *
5 * and Stanford University. All rights reserved. *
6 * *
7 * Redistribution and use in source and binary forms, *
8 * with or without modification, are permitted according to the terms *
9 * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
10 *****************************************************************************/
11
12/**
13\file RooProfileLL.cxx
14\class RooProfileLL
15\ingroup Roofitcore
16
17Class RooProfileLL implements the profile likelihood estimator for
18a given likelihood and set of parameters of interest. The value return by
19RooProfileLL is the input likelihood nll minimized w.r.t all nuisance parameters
20(which are all parameters except for those listed in the constructor) minus
21the -log(L) of the best fit. Note that this function is slow to evaluate
22as a MIGRAD minimization step is executed for each function evaluation
23**/
24
25#include "Riostream.h"
26
27#include "RooProfileLL.h"
28#include "RooAbsReal.h"
29#include "RooMinimizer.h"
30#include "RooMsgService.h"
31#include "RooRealVar.h"
32
33using namespace std ;
34
36
37
38////////////////////////////////////////////////////////////////////////////////
39/// Default constructor
40/// Should only be used by proof.
41
43 RooAbsReal("RooProfileLL","RooProfileLL"),
44 _nll(),
45 _obs("paramOfInterest","Parameters of interest",this),
46 _par("nuisanceParam","Nuisance parameters",this,false,false),
47 _startFromMin(true),
48 _absMinValid(false),
49 _absMin(0),
50 _neval(0)
51{
52}
53
54
55////////////////////////////////////////////////////////////////////////////////
56/// Constructor of profile likelihood given input likelihood nll w.r.t
57/// the given set of variables. The input log likelihood is minimized w.r.t
58/// to all other variables of the likelihood at each evaluation and the
59/// value of the global log likelihood minimum is always subtracted.
60
61RooProfileLL::RooProfileLL(const char *name, const char *title,
62 RooAbsReal& nllIn, const RooArgSet& observables) :
63 RooAbsReal(name,title),
64 _nll("input","-log(L) function",this,nllIn),
65 _obs("paramOfInterest","Parameters of interest",this),
66 _par("nuisanceParam","Nuisance parameters",this,false,false),
67 _startFromMin(true),
68 _absMinValid(false),
69 _absMin(0),
70 _neval(0)
71{
72 // Determine actual parameters and observables
73 nllIn.getObservables(&observables, _obs) ;
74 nllIn.getParameters(&observables, _par) ;
75}
76
77
78
79////////////////////////////////////////////////////////////////////////////////
80/// Copy constructor
81
82RooProfileLL::RooProfileLL(const RooProfileLL& other, const char* name) :
83 RooAbsReal(other,name),
84 _nll("nll",this,other._nll),
85 _obs("obs",this,other._obs),
86 _par("par",this,other._par),
87 _startFromMin(other._startFromMin),
88 _absMinValid(false),
89 _absMin(0),
90 _paramFixed(other._paramFixed),
91 _neval(0)
92{
95
96}
97
98
99////////////////////////////////////////////////////////////////////////////////
100
102{
104 return _paramAbsMin ;
105}
106
107
108////////////////////////////////////////////////////////////////////////////////
109
111{
113 return _obsAbsMin ;
114}
115
116
117
118
119////////////////////////////////////////////////////////////////////////////////
120/// Optimized implementation of createProfile for profile likelihoods.
121/// Return profile of original function in terms of stated parameters
122/// of interest rather than profiling recursively.
123
125{
126 return nll().createProfile(paramsOfInterest) ;
127}
128
129
130
131
132////////////////////////////////////////////////////////////////////////////////
133
135{
136 coutI(Minimization) << "RooProfileLL::evaluate(" << GetName() << ") Creating instance of MINUIT" << endl ;
137
138 bool smode = RooMsgService::instance().silentMode() ;
140 _minimizer = std::make_unique<RooMinimizer>(const_cast<RooAbsReal&>(_nll.arg())) ;
141 if (!smode) RooMsgService::instance().setSilentMode(false) ;
142
143}
144
145
146
147////////////////////////////////////////////////////////////////////////////////
148/// Evaluate profile likelihood by minimizing likelihood w.r.t. all
149/// parameters that are not considered observables of this profile
150/// likelihood object.
151
153{
154 // Instantiate minimizer if we haven't done that already
155 if (!_minimizer) {
157 }
158
159 // Save current value of observables
160 RooArgSet obsSetOrig;
161 _obs.snapshot(obsSetOrig) ;
162
164
165
166 // Set all observables constant in the minimization
167 const_cast<RooSetProxy&>(_obs).setAttribAll("Constant",true) ;
168 ccoutP(Eval) << "." ; ccoutP(Eval).flush() ;
169
170 // If requested set initial parameters to those corresponding to absolute minimum
171 if (_startFromMin) {
173 }
174
175 _minimizer->zeroEvalCount() ;
176
177 _minimizer->migrad() ;
178 _neval = _minimizer->evalCounter() ;
179
180 // Restore original values and constant status of observables
181 for(auto const& arg : obsSetOrig) {
182 assert(dynamic_cast<RooRealVar*>(arg));
183 auto var = static_cast<RooRealVar*>(arg);
184 auto target = static_cast<RooRealVar*>(_obs.find(var->GetName())) ;
185 target->setVal(var->getVal()) ;
186 target->setConstant(var->isConstant()) ;
187 }
188
189 return _nll - _absMin ;
190}
191
192
193
194////////////////////////////////////////////////////////////////////////////////
195/// Check that parameters and likelihood value for 'best fit' are still valid. If not,
196/// because the best fit has never been calculated, or because constant parameters have
197/// changed value or parameters have changed const/float status, the minimum is recalculated
198
200{
201 // Check if constant status of any of the parameters have changed
202 if (_absMinValid) {
203 for(auto const& par : _par) {
204 if (_paramFixed[par->GetName()] != par->isConstant()) {
205 cxcoutI(Minimization) << "RooProfileLL::evaluate(" << GetName() << ") constant status of parameter " << par->GetName() << " has changed from "
206 << (_paramFixed[par->GetName()]?"fixed":"floating") << " to " << (par->isConstant()?"fixed":"floating")
207 << ", recalculating absolute minimum" << endl ;
208 _absMinValid = false ;
209 break ;
210 }
211 }
212 }
213
214
215 // If we don't have the absolute minimum w.r.t all observables, calculate that first
216 if (!_absMinValid) {
217
218 cxcoutI(Minimization) << "RooProfileLL::evaluate(" << GetName() << ") determining minimum likelihood for current configurations w.r.t all observable" << endl ;
219
220
221 if (!_minimizer) {
223 }
224
225 // Save current values of non-marginalized parameters
226 RooArgSet obsStart;
227 _obs.snapshot(obsStart, false) ;
228
229 // Start from previous global minimum
230 if (_paramAbsMin.getSize()>0) {
231 const_cast<RooSetProxy&>(_par).assignValueOnly(_paramAbsMin) ;
232 }
233 if (_obsAbsMin.getSize()>0) {
234 const_cast<RooSetProxy&>(_obs).assignValueOnly(_obsAbsMin) ;
235 }
236
237 // Find minimum with all observables floating
238 const_cast<RooSetProxy&>(_obs).setAttribAll("Constant",false) ;
239
240 _minimizer->migrad() ;
241
242 // Save value and remember
243 _absMin = _nll ;
244 _absMinValid = true ;
245
246 // Save parameter values at abs minimum as well
248
249 // Only store non-constant parameters here!
250 _paramAbsMin.addClone(*std::unique_ptr<RooArgSet>{static_cast<RooArgSet*>(_par.selectByAttrib("Constant",false))});
251
253
254 // Save constant status of all parameters
255 for(auto const& par : _par) {
256 _paramFixed[par->GetName()] = par->isConstant() ;
257 }
258
259 if (dologI(Minimization)) {
260 cxcoutI(Minimization) << "RooProfileLL::evaluate(" << GetName() << ") minimum found at (" ;
261
262 bool first=true ;
263 for(auto const& arg : _obs) {
264 ccxcoutI(Minimization) << (first?"":", ") << arg->GetName() << "="
265 << static_cast<RooAbsReal const*>(arg)->getVal() ;
266 first=false ;
267 }
268 ccxcoutI(Minimization) << ")" << endl ;
269 }
270
271 // Restore original parameter values
272 _obs.assign(obsStart) ;
273
274 }
275}
276
277
278
279////////////////////////////////////////////////////////////////////////////////
280
281bool RooProfileLL::redirectServersHook(const RooAbsCollection& newServerList, bool mustReplaceAll,
282 bool nameChange, bool isRecursive)
283{
284 _minimizer.reset(nullptr);
285 return RooAbsReal::redirectServersHook(newServerList, mustReplaceAll, nameChange, isRecursive);
286}
287
288
#define coutI(a)
#define cxcoutI(a)
#define ccoutP(a)
#define dologI(a)
#define ccxcoutI(a)
#define ClassImp(name)
Definition Rtypes.h:377
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t target
char name[80]
Definition TGX11.cxx:110
bool isConstant() const
Check if the "Constant" attribute is set.
Definition RooAbsArg.h:359
RooFit::OwningPtr< RooArgSet > getParameters(const RooAbsData *data, bool stripDisconnected=true) const
Create a list of leaf nodes in the arg tree starting with ourself as top node that don't match any of...
RooFit::OwningPtr< RooArgSet > getObservables(const RooArgSet &set, bool valueOnly=true) const
Given a set of possible observables, return the observables that this PDF depends on.
RooAbsCollection is an abstract container object that can hold multiple RooAbsArg objects.
RooAbsCollection * selectByAttrib(const char *name, bool value) const
Create a subset of the current collection, consisting only of those elements with the specified attri...
virtual void removeAll()
Remove all arguments from our set, deleting them if we own them.
Int_t getSize() const
Return the number of elements in the collection.
void assign(const RooAbsCollection &other) const
Sets the value, cache and constant attribute of any argument in our set that also appears in the othe...
virtual RooAbsArg * addClone(const RooAbsArg &var, bool silent=false)
Add a clone of the specified argument to list.
RooAbsArg * find(const char *name) const
Find object with given name in list.
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition RooAbsReal.h:62
double getVal(const RooArgSet *normalisationSet=nullptr) const
Evaluate object.
Definition RooAbsReal.h:91
virtual RooAbsReal * createProfile(const RooArgSet &paramsOfInterest)
Create a RooProfileLL object that eliminates all nuisance parameters in the present function.
bool redirectServersHook(const RooAbsCollection &newServerList, bool mustReplaceAll, bool nameChange, bool isRecursiveStep) override
A buffer for reading values from trees.
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:55
RooArgSet * snapshot(bool deepCopy=true) const
Use RooAbsCollection::snapshot(), but return as RooArgSet.
Definition RooArgSet.h:178
static RooMsgService & instance()
Return reference to singleton instance.
void setSilentMode(bool flag)
bool silentMode() const
Class RooProfileLL implements the profile likelihood estimator for a given likelihood and set of para...
const RooArgSet & bestFitObs() const
RooArgSet _paramAbsMin
Parameter values at absolute minimum.
RooSetProxy _obs
Parameters of profile likelihood.
Int_t _neval
Number evaluations used in last minimization.
RooAbsReal * createProfile(const RooArgSet &paramsOfInterest) override
Optimized implementation of createProfile for profile likelihoods.
RooProfileLL()
Default constructor Should only be used by proof.
void initializeMinimizer() const
RooAbsReal & nll()
bool _absMinValid
flag if absmin is up-to-date
std::map< std::string, bool > _paramFixed
Parameter constant status at last time of use.
bool _startFromMin
Always start minimization for global minimum?
std::unique_ptr< RooMinimizer > _minimizer
! Internal minimizer instance
RooArgSet _obsAbsMin
Observable values at absolute minimum.
void validateAbsMin() const
Check that parameters and likelihood value for 'best fit' are still valid.
RooSetProxy _par
Marginalised parameters of likelihood.
double _absMin
absolute minimum of -log(L)
double evaluate() const override
Evaluate profile likelihood by minimizing likelihood w.r.t.
RooRealProxy _nll
Input -log(L) function.
bool redirectServersHook(const RooAbsCollection &, bool, bool, bool) override
A buffer for reading values from trees.
const RooArgSet & bestFitParams() const
RooRealVar represents a variable that can be changed from the outside.
Definition RooRealVar.h:40
const T & arg() const
Return reference to object held in proxy.
const char * GetName() const override
Returns name of object.
Definition TNamed.h:47
Definition first.py:1