Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
SimpleInterval.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_SimpleInterval
12#define RooStats_SimpleInterval
13
14#include "RooArgSet.h"
16
17class RooRealVar;
18
19namespace RooStats {
21
22 public:
23 // default constructors
24 explicit SimpleInterval(const char* name = 0);
25
26 SimpleInterval(const SimpleInterval& other, const char* name);
27
29
30 // constructor from name, the Parameter of interest and lower/upper bound values
31 SimpleInterval(const char* name, const RooRealVar & var, Double_t lower, Double_t upper, Double_t cl);
32
33 // destructor
34 virtual ~SimpleInterval();
35
36 // check if parameter is in the interval
37 virtual Bool_t IsInInterval(const RooArgSet&) const;
38
39 // set the confidence level for the interval. Simple interval is defined at construction time so this function
40 // has no effect
41 virtual void SetConfidenceLevel(Double_t ) {}
42
43 // return the confidence interval
44 virtual Double_t ConfidenceLevel() const {return fConfidenceLevel;}
45
46 // return the interval lower limit
47 virtual Double_t LowerLimit() {return fLowerLimit;}
48 // return the interval upper limit
49 virtual Double_t UpperLimit() {return fUpperLimit;}
50
51 // return a cloned list with the parameter of interest
52 virtual RooArgSet* GetParameters() const;
53
54 // check if parameters are correct (i.e. they are the POI of this interval)
55 Bool_t CheckParameters(const RooArgSet&) const ;
56
57
58
59 protected:
60
61 ClassDef(SimpleInterval,1) // Concrete implementation of ConfInterval for simple 1-D intervals in the form [a,b]
62
63 RooArgSet fParameters; // set containing the parameter of interest
64 Double_t fLowerLimit; // lower interval limit
65 Double_t fUpperLimit; // upper interval limit
66 Double_t fConfidenceLevel; // confidence level
67
68 };
69}
70
71#endif
double Double_t
Definition RtypesCore.h:59
#define ClassDef(name, id)
Definition Rtypes.h:325
char name[80]
Definition TGX11.cxx:110
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.
SimpleInterval is a concrete implementation of the ConfInterval interface.
virtual Bool_t IsInInterval(const RooArgSet &) const
Method to determine if a parameter point is in the interval.
virtual Double_t ConfidenceLevel() const
return confidence level
virtual ~SimpleInterval()
Destructor.
virtual Double_t UpperLimit()
virtual RooArgSet * GetParameters() const
return cloned list of parameters
virtual Double_t LowerLimit()
Bool_t CheckParameters(const RooArgSet &) const
check if parameters are correct (i.e. they are the POI of this interval)
virtual void SetConfidenceLevel(Double_t)
used to set confidence level. Keep pure virtual
SimpleInterval & operator=(const SimpleInterval &other)
Namespace for the RooStats classes.
Definition Asimov.h:19