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
17Implements 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
33
34
35////////////////////////////////////////////////////////////////////////////////
36/// Constructor of profile likelihood given input likelihood nll w.r.t
37/// the given set of variables. The input log likelihood is minimized w.r.t
38/// to all other variables of the likelihood at each evaluation and the
39/// value of the global log likelihood minimum is always subtracted.
40
41RooProfileLL::RooProfileLL(const char *name, const char *title,
42 RooAbsReal& nllIn, const RooArgSet& observables) :
43 RooAbsReal(name,title),
44 _nll("input","-log(L) function",this,nllIn),
45 _obs("paramOfInterest","Parameters of interest",this),
46 _par("nuisanceParam","Nuisance parameters",this,false,false)
47{
48 // Determine actual parameters and observables
49 nllIn.getObservables(&observables, _obs) ;
50 nllIn.getParameters(&observables, _par) ;
51}
52
53
54
55////////////////////////////////////////////////////////////////////////////////
56/// Copy constructor
57
60 _nll("nll", this, other._nll),
61 _obs("obs", this, other._obs),
62 _par("par", this, other._par),
63 _startFromMin(other._startFromMin),
64 _paramFixed(other._paramFixed)
65{
66 _paramAbsMin.addClone(other._paramAbsMin) ;
67 _obsAbsMin.addClone(other._obsAbsMin) ;
68
69}
70
71
72////////////////////////////////////////////////////////////////////////////////
73
75{
77 return _paramAbsMin ;
78}
79
80
81////////////////////////////////////////////////////////////////////////////////
82
84{
86 return _obsAbsMin ;
87}
88
89
90
91
92////////////////////////////////////////////////////////////////////////////////
93/// Optimized implementation of createProfile for profile likelihoods.
94/// Return profile of original function in terms of stated parameters
95/// of interest rather than profiling recursively.
96
101
102
103
104
105////////////////////////////////////////////////////////////////////////////////
106
108{
109 coutI(Minimization) << "RooProfileLL::evaluate(" << GetName() << ") Creating instance of MINUIT" << std::endl;
110
111 bool smode = RooMsgService::instance().silentMode() ;
112 RooMsgService::instance().setSilentMode(true) ;
113 _minimizer = std::make_unique<RooMinimizer>(const_cast<RooAbsReal&>(_nll.arg())) ;
114 if (!smode) RooMsgService::instance().setSilentMode(false) ;
115
116}
117
118
119
120////////////////////////////////////////////////////////////////////////////////
121/// Evaluate profile likelihood by minimizing likelihood w.r.t. all
122/// parameters that are not considered observables of this profile
123/// likelihood object.
124
126{
127 // Instantiate minimizer if we haven't done that already
128 if (!_minimizer) {
130 }
131
132 // Save current value of observables
135
137
138
139 // Set all observables constant in the minimization
140 const_cast<RooSetProxy&>(_obs).setAttribAll("Constant",true) ;
141 ccoutP(Eval) << "." ; ccoutP(Eval).flush() ;
142
143 // If requested set initial parameters to those corresponding to absolute minimum
144 if (_startFromMin) {
146 }
147
148 _minimizer->zeroEvalCount() ;
149
150 _minimizer->migrad() ;
151 _neval = _minimizer->evalCounter() ;
152
153 // Restore original values and constant status of observables
154 for(auto const& arg : obsSetOrig) {
155 assert(dynamic_cast<RooRealVar*>(arg));
156 auto var = static_cast<RooRealVar*>(arg);
157 auto target = static_cast<RooRealVar*>(_obs.find(var->GetName())) ;
158 target->setVal(var->getVal()) ;
159 target->setConstant(var->isConstant()) ;
160 }
161
162 return _nll - _absMin ;
163}
164
165
166
167////////////////////////////////////////////////////////////////////////////////
168/// Check that parameters and likelihood value for 'best fit' are still valid. If not,
169/// because the best fit has never been calculated, or because constant parameters have
170/// changed value or parameters have changed const/float status, the minimum is recalculated
171
173{
174 // Check if constant status of any of the parameters have changed
175 if (_absMinValid) {
176 for(auto const& par : _par) {
177 if (_paramFixed[par->GetName()] != par->isConstant()) {
178 cxcoutI(Minimization) << "RooProfileLL::evaluate(" << GetName() << ") constant status of parameter " << par->GetName() << " has changed from "
179 << (_paramFixed[par->GetName()]?"fixed":"floating") << " to " << (par->isConstant()?"fixed":"floating")
180 << ", recalculating absolute minimum" << std::endl;
182 break ;
183 }
184 }
185 }
186
187
188 // If we don't have the absolute minimum w.r.t all observables, calculate that first
189 if (!_absMinValid) {
190
191 cxcoutI(Minimization) << "RooProfileLL::evaluate(" << GetName() << ") determining minimum likelihood for current configurations w.r.t all observable" << std::endl;
192
193
194 if (!_minimizer) {
196 }
197
198 // Save current values of non-marginalized parameters
200 _obs.snapshot(obsStart, false) ;
201
202 // Start from previous global minimum
203 if (!_paramAbsMin.empty()) {
204 const_cast<RooSetProxy&>(_par).assignValueOnly(_paramAbsMin) ;
205 }
206 if (!_obsAbsMin.empty()) {
207 const_cast<RooSetProxy&>(_obs).assignValueOnly(_obsAbsMin) ;
208 }
209
210 // Find minimum with all observables floating
211 const_cast<RooSetProxy&>(_obs).setAttribAll("Constant",false) ;
212
213 _minimizer->migrad() ;
214
215 // Save value and remember
216 _absMin = _nll ;
218
219 // Save parameter values at abs minimum as well
221
222 // Only store non-constant parameters here!
223 _paramAbsMin.addClone(*std::unique_ptr<RooArgSet>{_par.selectByAttrib("Constant", false)});
224
226
227 // Save constant status of all parameters
228 for(auto const& par : _par) {
229 _paramFixed[par->GetName()] = par->isConstant() ;
230 }
231
232 if (dologI(Minimization)) {
233 cxcoutI(Minimization) << "RooProfileLL::evaluate(" << GetName() << ") minimum found at (" ;
234
235 bool first=true ;
236 for(auto const& arg : _obs) {
237 ccxcoutI(Minimization) << (first?"":", ") << arg->GetName() << "="
238 << static_cast<RooAbsReal const*>(arg)->getVal() ;
239 first=false ;
240 }
241 ccxcoutI(Minimization) << ")" << std::endl;
242 }
243
244 // Restore original parameter values
246
247 }
248}
249
250
251
252////////////////////////////////////////////////////////////////////////////////
253
#define coutI(a)
#define cxcoutI(a)
#define ccoutP(a)
#define dologI(a)
#define ccxcoutI(a)
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
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
Abstract container object that can hold multiple RooAbsArg objects.
virtual void removeAll()
Remove all arguments from our set, deleting them if we own them.
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.
Abstract base class for objects that represent a real value and implements functionality common to al...
Definition RooAbsReal.h:59
double getVal(const RooArgSet *normalisationSet=nullptr) const
Evaluate object.
Definition RooAbsReal.h:103
bool redirectServersHook(const RooAbsCollection &newServerList, bool mustReplaceAll, bool nameChange, bool isRecursiveStep) override
Function that is called at the end of redirectServers().
virtual RooFit::OwningPtr< RooAbsReal > createProfile(const RooArgSet &paramsOfInterest)
Create a RooProfileLL object that eliminates all nuisance parameters in the present function.
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:24
RooArgSet * snapshot(bool deepCopy=true) const
Use RooAbsCollection::snapshot(), but return as RooArgSet.
Definition RooArgSet.h:159
RooArgSet * selectByAttrib(const char *name, bool value) const
Use RooAbsCollection::selectByAttrib(), but return as RooArgSet.
Definition RooArgSet.h:144
static RooMsgService & instance()
Return reference to singleton instance.
Implements the profile likelihood estimator for a given likelihood and set of parameters of interest.
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.
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)
RooProfileLL(const char *name, const char *title, RooAbsReal &nll, const RooArgSet &observables)
Constructor of profile likelihood given input likelihood nll w.r.t the given set of variables.
double evaluate() const override
Evaluate profile likelihood by minimizing likelihood w.r.t.
RooFit::OwningPtr< RooAbsReal > createProfile(const RooArgSet &paramsOfInterest) override
Optimized implementation of createProfile for profile likelihoods.
RooRealProxy _nll
Input -log(L) function.
bool redirectServersHook(const RooAbsCollection &, bool, bool, bool) override
Function that is called at the end of redirectServers().
const RooArgSet & bestFitParams() const
Variable that can be changed from the outside.
Definition RooRealVar.h:37
const T & arg() const
Return reference to object held in proxy.
const char * GetName() const override
Returns name of object.
Definition TNamed.h:49
T * OwningPtr
An alias for raw pointers for indicating that the return type of a RooFit function is an owning point...
Definition Config.h:35