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 = nullptr);
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 * = nullptr);
44
45 /// destructor
46 ~LikelihoodInterval() override;
47
48 /// check if given point is in the interval
49 bool IsInInterval(const RooArgSet&) const override;
50
51 /// set the confidence level for the interval (e.g 0.682 for a 1-sigma interval)
52 void SetConfidenceLevel(double cl) override {fConfidenceLevel = cl; ResetLimits(); }
53
54 /// return confidence level
55 double ConfidenceLevel() const override {return fConfidenceLevel;}
56
57 /// return a cloned list of parameters of interest. User manages the return object
58 RooArgSet* GetParameters() const override;
59
60 /// check if parameters are correct (i.e. they are the POI of this interval)
61 bool CheckParameters(const RooArgSet&) const override ;
62
63
64 /// return the lower bound of the interval on a given parameter
65 double LowerLimit(const RooRealVar& param) { bool ok; return LowerLimit(param,ok); }
66 double LowerLimit(const RooRealVar& param, bool & status) ;
67
68 /// return the upper bound of the interval on a given parameter
69 double UpperLimit(const RooRealVar& param) { bool ok; return UpperLimit(param,ok); }
70 double 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 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 * x, double *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 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 ClassDefOverride(LikelihoodInterval,1) // Concrete implementation of a ConfInterval based on a likelihood ratio
110
111 };
112}
113
114#endif
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
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:62
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:55
RooRealVar represents a variable that can be changed from the outside.
Definition RooRealVar.h:40
ConfInterval is an interface class for a generic interval in the RooStats framework.
LikelihoodInterval is a concrete implementation of the RooStats::ConfInterval interface.
double ConfidenceLevel() const override
return confidence level
double UpperLimit(const RooRealVar &param)
return the upper bound of the interval on a given parameter
Int_t GetContourPoints(const RooRealVar &paramX, const RooRealVar &paramY, double *x, double *y, Int_t npoints=30)
return the 2D-contour points for the given subset of parameters by default make the contour using 30 ...
void ResetLimits()
reset the cached limit values
bool CreateMinimizer()
internal function to create the minimizer for finding the contours
RooArgSet * GetParameters() const override
return a cloned list of parameters of interest. User manages the return object
void SetConfidenceLevel(double cl) override
set the confidence level for the interval (e.g 0.682 for a 1-sigma interval)
RooArgSet * fBestFitParams
snapshot of the model parameters with best fit value (managed internally)
RooArgSet fParameters
parameters of interest for this interval
~LikelihoodInterval() override
destructor
double LowerLimit(const RooRealVar &param)
return the lower bound of the interval on a given parameter
std::shared_ptr< RooFunctor > fFunctor
! transient pointer to functor class used by the minimizer
bool 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 fConfidenceLevel
Requested confidence level (eg. 0.95 for 95% CL)
const RooArgSet * GetBestFitParameters() const
return a pointer to a snapshot with best fit parameter of interest
std::map< std::string, double > fLowerLimits
map with cached lower bound values
bool IsInInterval(const RooArgSet &) const override
check if given point is in the interval
bool CheckParameters(const RooArgSet &) const override
check if parameters are correct (i.e. they are the POI of this interval)
RooAbsReal * fLikelihoodRatio
likelihood ratio function used to make contours (managed internally)
std::map< std::string, double > fUpperLimits
map with cached upper bound values
std::shared_ptr< ROOT::Math::Minimizer > fMinimizer
! transient pointer to minimizer class used to find limits and contour
std::shared_ptr< ROOT::Math::IMultiGenFunction > fMinFunc
! transient pointer to the minimization function
RooCmdArg Minimizer(const char *type, const char *alg=nullptr)
Double_t y[n]
Definition legend1.C:17
Double_t x[n]
Definition legend1.C:17
Namespace for new Math classes and functions.
This file contains a specialised ROOT message handler to test for diagnostic in unit tests.
Namespace for the RooStats classes.
Definition Asimov.h:19