Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
MetropolisHastings.h
Go to the documentation of this file.
1 // @(#)root/roostats:$Id$
2 // Authors: Kevin Belasco 17/06/2009
3 // Authors: Kyle Cranmer 17/06/2009
4 /*************************************************************************
5  * Copyright (C) 1995-2008, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOSTATS_MetropolisHastings
13 #define ROOSTATS_MetropolisHastings
14 
15 #include "RooStats/RooStatsUtils.h"
16 #include "Rtypes.h"
17 #include "TObject.h"
18 #include "RooArgSet.h"
20 #include "RooStats/MarkovChain.h"
21 
22 namespace RooStats {
23 
24  class MetropolisHastings : public TObject {
25 
26 
27  public:
28  enum FunctionSign {kNegative, kPositive, kSignUnset};
29  enum FunctionType {kRegular, kLog, kTypeUnset};
30 
31  // default constructor
32  MetropolisHastings();
33 
34  // alternate constructor
35  MetropolisHastings(RooAbsReal& function, const RooArgSet& paramsOfInterest,
36  ProposalFunction& proposalFunction, Int_t numIters);
37 
38  virtual ~MetropolisHastings() {}
39 
40  // main purpose of MetropolisHastings - run Metropolis-Hastings
41  // algorithm to generate Markov Chain of points in the parameter space
42  virtual MarkovChain* ConstructChain();
43 
44  // specify the parameters to store in the chain
45  // if not specified all of them will be stored
46  virtual void SetChainParameters(const RooArgSet& set)
47  { fChainParams.removeAll(); fChainParams.add(set); RemoveConstantParameters(&fChainParams); }
48  // specify all the parameters of interest in the interval
49  virtual void SetParameters(const RooArgSet& set)
50  { fParameters.removeAll(); fParameters.add(set); RemoveConstantParameters(&fParameters); }
51  // set the proposal function for suggesting new points for the MCMC
52  virtual void SetProposalFunction(ProposalFunction& proposalFunction)
53  { fPropFunc = &proposalFunction; }
54  // set the number of iterations to run the metropolis algorithm
55  virtual void SetNumIters(Int_t numIters)
56  { fNumIters = numIters; }
57  // set the number of steps in the chain to discard as burn-in,
58  // starting from the first
59  virtual void SetNumBurnInSteps(Int_t numBurnInSteps)
60  { fNumBurnInSteps = numBurnInSteps; }
61  // set the (likelihood) function
62  virtual void SetFunction(RooAbsReal& function) { fFunction = &function; }
63  // set the sign of the function
64  virtual void SetSign(enum FunctionSign sign) { fSign = sign; }
65  // set the type of the function
66  virtual void SetType(enum FunctionType type) { fType = type; }
67 
68 
69  protected:
70  RooAbsReal* fFunction; // function that will generate likelihood values
71  RooArgSet fParameters; // RooRealVars that define all parameter space
72  RooArgSet fChainParams; // RooRealVars that are stored in the chain
73  ProposalFunction* fPropFunc; // Proposal function for MCMC integration
74  Int_t fNumIters; // number of iterations to run metropolis algorithm
75  Int_t fNumBurnInSteps; // number of iterations to discard as burn-in, starting from the first
76  enum FunctionSign fSign; // whether the likelihood is negative (like NLL) or positive
77  enum FunctionType fType; // whether the likelihood is on a regular, log, (or other) scale
78 
79  // whether we should take the step, based on the value of d, fSign, fType
80  virtual Bool_t ShouldTakeStep(Double_t d);
81  virtual Double_t CalcNLL(Double_t xL);
82 
83  ClassDef(MetropolisHastings,2) // Markov Chain Monte Carlo calculator for Bayesian credible intervals
84  };
85 }
86 
87 
88 #endif