Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
LikelihoodInterval.h
Go to the documentation of this file.
1// @(#)root/roostats:$Id$
2// Author: Kyle Cranmer, Lorenzo Moneta, Gregory Schott, Wouter Verkerke
3/*************************************************************************
4 * Copyright (C) 1995-2008, Rene Brun and Fons Rademakers. *
5 * All rights reserved. *
6 * *
7 * For the licensing terms see $ROOTSYS/LICENSE. *
8 * For the list of contributors see $ROOTSYS/README/CREDITS. *
9 *************************************************************************/
10
11#ifndef RooStats_LikelihoodInterval
12#define RooStats_LikelihoodInterval
13
15
16#include "RooArgSet.h"
17
18#include "RooAbsReal.h"
19
20#include "Math/IFunctionfwd.h"
21
22#include <map>
23#include <memory>
24#include <string>
25
26namespace ROOT {
27 namespace Math {
28 class Minimizer;
29 }
30}
31
32namespace RooStats {
33
35
36 public:
37
38 /// default constructor
39 explicit LikelihoodInterval(const char* name = 0);
40
41 //// construct the interval from a Profile Likelihood object, parameter of interest and optionally a snapshot of
42 //// POI with their best fit values
43 LikelihoodInterval(const char* name, RooAbsReal*, const RooArgSet*, RooArgSet * = 0);
44
45 /// destructor
46 virtual ~LikelihoodInterval();
47
48 /// check if given point is in the interval
49 virtual Bool_t IsInInterval(const RooArgSet&) const;
50
51 /// set the confidence level for the interval (e.g 0.682 for a 1-sigma interval)
53
54 /// return confidence level
55 virtual Double_t ConfidenceLevel() const {return fConfidenceLevel;}
56
57 /// return a cloned list of parameters of interest. User manages the return object
58 virtual RooArgSet* GetParameters() const;
59
60 /// check if parameters are correct (i.e. they are the POI of this interval)
61 Bool_t CheckParameters(const RooArgSet&) const ;
62
63
64 /// return the lower bound of the interval on a given parameter
65 Double_t LowerLimit(const RooRealVar& param) { bool ok; return LowerLimit(param,ok); }
66 Double_t LowerLimit(const RooRealVar& param, bool & status) ;
67
68 /// return the upper bound of the interval on a given parameter
69 Double_t UpperLimit(const RooRealVar& param) { bool ok; return UpperLimit(param,ok); }
70 Double_t UpperLimit(const RooRealVar& param, bool & status) ;
71
72 /// find both lower and upper interval boundaries for a given parameter
73 /// return false if the bounds have not been found
74 Bool_t FindLimits(const RooRealVar & param, double & lower, double &upper);
75
76 /// return the 2D-contour points for the given subset of parameters
77 /// by default make the contour using 30 points. The User has to preallocate the x and y array which will return
78 /// the set of x and y points defining the contour.
79 /// The return value of the function specify the number of contour point found.
80 /// In case of error a zero is returned
81 Int_t GetContourPoints(const RooRealVar & paramX, const RooRealVar & paramY, Double_t * x, Double_t *y, Int_t npoints = 30);
82
83 /// return the profile log-likelihood ratio function
85
86 /// return a pointer to a snapshot with best fit parameter of interest
87 const RooArgSet * GetBestFitParameters() const { return fBestFitParams; }
88
89 protected:
90
91 /// reset the cached limit values
92 void ResetLimits();
93
94 /// internal function to create the minimizer for finding the contours
95 bool CreateMinimizer();
96
97 private:
98
99 RooArgSet fParameters; /// parameters of interest for this interval
100 RooArgSet * fBestFitParams; /// snapshot of the model parameters with best fit value (managed internally)
101 RooAbsReal* fLikelihoodRatio; /// likelihood ratio function used to make contours (managed internally)
102 Double_t fConfidenceLevel; /// Requested confidence level (eg. 0.95 for 95% CL)
103 std::map<std::string, double> fLowerLimits; /// map with cached lower bound values
104 std::map<std::string, double> fUpperLimits; /// map with cached upper bound values
105 std::shared_ptr<ROOT::Math::Minimizer > fMinimizer; //! transient pointer to minimizer class used to find limits and contour
106 std::shared_ptr<RooFunctor> fFunctor; //! transient pointer to functor class used by the minimizer
107 std::shared_ptr<ROOT::Math::IMultiGenFunction> fMinFunc; //! transient pointer to the minimization function
108
109 ClassDef(LikelihoodInterval,1) /// Concrete implementation of a ConfInterval based on a likelihood ratio
110
111 };
112}
113
114#endif
double Double_t
Definition RtypesCore.h:59
#define ClassDef(name, id)
Definition Rtypes.h:325
char name[80]
Definition TGX11.cxx:110
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition RooAbsReal.h:61
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:29
RooRealVar represents a variable that can be changed from the outside.
Definition RooRealVar.h:39
ConfInterval is an interface class for a generic interval in the RooStats framework.
LikelihoodInterval is a concrete implementation of the RooStats::ConfInterval interface.
virtual RooArgSet * GetParameters() const
return a cloned list of parameters of interest. User manages the return object
Double_t LowerLimit(const RooRealVar &param)
return the lower bound of the interval on a given parameter
void ResetLimits()
reset the cached limit values
bool CreateMinimizer()
internal function to create the minimizer for finding the contours
Int_t GetContourPoints(const RooRealVar &paramX, const RooRealVar &paramY, Double_t *x, Double_t *y, Int_t npoints=30)
return the 2D-contour points for the given subset of parameters by default make the contour using 30 ...
Bool_t CheckParameters(const RooArgSet &) const
check if parameters are correct (i.e. they are the POI of this interval)
Double_t fConfidenceLevel
likelihood ratio function used to make contours (managed internally)
RooArgSet * fBestFitParams
parameters of interest for this interval
virtual Double_t ConfidenceLevel() const
return confidence level
virtual void SetConfidenceLevel(Double_t cl)
set the confidence level for the interval (e.g 0.682 for a 1-sigma interval)
std::shared_ptr< RooFunctor > fFunctor
transient pointer to minimizer class used to find limits and contour
Bool_t FindLimits(const RooRealVar &param, double &lower, double &upper)
find both lower and upper interval boundaries for a given parameter return false if the bounds have n...
RooAbsReal * GetLikelihoodRatio()
return the profile log-likelihood ratio function
Double_t UpperLimit(const RooRealVar &param)
return the upper bound of the interval on a given parameter
const RooArgSet * GetBestFitParameters() const
return a pointer to a snapshot with best fit parameter of interest
std::map< std::string, double > fLowerLimits
Requested confidence level (eg. 0.95 for 95% CL)
RooAbsReal * fLikelihoodRatio
snapshot of the model parameters with best fit value (managed internally)
std::map< std::string, double > fUpperLimits
map with cached lower bound values
std::shared_ptr< ROOT::Math::Minimizer > fMinimizer
map with cached upper bound values
virtual ~LikelihoodInterval()
destructor
virtual Bool_t IsInInterval(const RooArgSet &) const
check if given point is in the interval
std::shared_ptr< ROOT::Math::IMultiGenFunction > fMinFunc
transient pointer to functor class used by the minimizer
RooCmdArg Minimizer(const char *type, const char *alg=0)
Double_t y[n]
Definition legend1.C:17
Double_t x[n]
Definition legend1.C:17
Namespace for new Math classes and functions.
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...
Namespace for the RooStats classes.
Definition Asimov.h:19