/usr/include/root/RooStats/MaxLikelihoodEstimateTestStat.h is in libroot-roofit-dev 5.34.30-0ubuntu8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 | // @(#)root/roostats:$Id$
// Author: Kyle Cranmer June 2010
/*************************************************************************
* Copyright (C) 1995-2008, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#ifndef ROOSTATS_MaxLikelihoodEstimateTestStat
#define ROOSTATS_MaxLikelihoodEstimateTestStat
//_________________________________________________
/*
BEGIN_HTML
<p>
MaxLikelihoodEstimateTestStat: TestStatistic that returns maximum likelihood estimate of a specified parameter.
</p>
END_HTML
*/
//
#ifndef ROOT_Rtypes
#include "Rtypes.h"
#endif
#ifndef ROO_NLL_VAR
#include "RooNLLVar.h"
#endif
#include "RooFitResult.h"
#include "RooStats/TestStatistic.h"
#include "RooAbsPdf.h"
#include "RooRealVar.h"
#include "RooMinimizer.h"
#include "Math/MinimizerOptions.h"
#include "RooStats/RooStatsUtils.h"
namespace RooStats {
class MaxLikelihoodEstimateTestStat: public TestStatistic {
public:
//__________________________________
MaxLikelihoodEstimateTestStat() :
fPdf(NULL),fParameter(NULL), fUpperLimit(true)
{
// constructor
// fPdf = pdf;
// fParameter = parameter;
fMinimizer=::ROOT::Math::MinimizerOptions::DefaultMinimizerType().c_str();
fStrategy=::ROOT::Math::MinimizerOptions::DefaultStrategy();
fPrintLevel=::ROOT::Math::MinimizerOptions::DefaultPrintLevel();
}
//__________________________________
MaxLikelihoodEstimateTestStat(RooAbsPdf& pdf, RooRealVar& parameter) :
fPdf(&pdf),fParameter(¶meter), fUpperLimit(true)
{
// constructor
// fPdf = pdf;
// fParameter = parameter;
fMinimizer=::ROOT::Math::MinimizerOptions::DefaultMinimizerType().c_str();
fStrategy=::ROOT::Math::MinimizerOptions::DefaultStrategy();
fPrintLevel=::ROOT::Math::MinimizerOptions::DefaultPrintLevel();
}
//______________________________
virtual Double_t Evaluate(RooAbsData& data, RooArgSet& /*nullPOI*/) {
RooFit::MsgLevel msglevel = RooMsgService::instance().globalKillBelow();
RooMsgService::instance().setGlobalKillBelow(RooFit::FATAL);
/*
// this is more straight forward, but produces a lot of messages
RooFitResult* res = fPdf.fitTo(data, RooFit::CloneData(kFALSE),RooFit::Minos(0),RooFit::Hesse(false), RooFit::Save(1),RooFit::PrintLevel(-1),RooFit::PrintEvalErrors(0));
RooRealVar* mle = (RooRealVar*) res->floatParsFinal().find(fParameter.GetName());
double ret = mle->getVal();
delete res;
return ret;
*/
RooArgSet* allParams = fPdf->getParameters(data);
RooStats::RemoveConstantParameters(allParams);
// need to call constrain for RooSimultaneous until stripDisconnected problem fixed
RooAbsReal* nll = fPdf->createNLL(data, RooFit::CloneData(kFALSE),RooFit::Constrain(*allParams),RooFit::ConditionalObservables(fConditionalObs));
//RooAbsReal* nll = fPdf->createNLL(data, RooFit::CloneData(false));
// RooAbsReal* profile = nll->createProfile(RooArgSet());
// profile->getVal();
// RooArgSet* vars = profile->getVariables();
// RooMsgService::instance().setGlobalKillBelow(msglevel);
// double ret = vars->getRealValue(fParameter->GetName());
// delete vars;
// delete nll;
// delete profile;
// return ret;
RooMinimizer minim(*nll);
minim.setStrategy(fStrategy);
//LM: RooMinimizer.setPrintLevel has +1 offset - so subtruct here -1
minim.setPrintLevel(fPrintLevel-1);
int status = -1;
// minim.optimizeConst(true);
for (int tries = 0, maxtries = 4; tries <= maxtries; ++tries) {
// status = minim.minimize(fMinimizer, ROOT::Math::MinimizerOptions::DefaultMinimizerAlgo().c_str());
status = minim.minimize(fMinimizer, "Minimize");
if (status == 0) {
break;
} else {
if (tries > 1) {
printf(" ----> Doing a re-scan first\n");
minim.minimize(fMinimizer,"Scan");
}
if (tries > 2) {
printf(" ----> trying with strategy = 1\n");
minim.setStrategy(1);
}
}
}
//std::cout << "BEST FIT values " << std::endl;
//allParams->Print("V");
RooMsgService::instance().setGlobalKillBelow(msglevel);
delete nll;
if (status != 0) return -1;
return fParameter->getVal();
}
virtual const TString GetVarName() const {
TString varName = Form("Maximum Likelihood Estimate of %s",fParameter->GetName());
return varName;
}
virtual void PValueIsRightTail(bool isright) { fUpperLimit = isright; }
virtual bool PValueIsRightTail(void) const { return fUpperLimit; }
// set the conditional observables which will be used when creating the NLL
// so the pdf's will not be normalized on the conditional observables when computing the NLL
virtual void SetConditionalObservables(const RooArgSet& set) {fConditionalObs.removeAll(); fConditionalObs.add(set);}
private:
RooAbsPdf *fPdf;
RooRealVar *fParameter;
RooArgSet fConditionalObs;
bool fUpperLimit;
TString fMinimizer;
Int_t fStrategy;
Int_t fPrintLevel;
protected:
ClassDef(MaxLikelihoodEstimateTestStat,2)
};
}
#endif
|