22#if ROOT_VERSION_CODE < ROOT_VERSION(6, 27, 00)
23#define protected public
56#if ROOT_VERSION_CODE < ROOT_VERSION(6, 27, 00)
58#define GETWS(a) a->_myws
59#define GETWSSETS(w) w->_namedSets
61#define GETWS(a) a->workspace()
62#define GETWSSETS(w) w->sets()
69#if ROOT_VERSION_CODE < ROOT_VERSION(6, 27, 00)
70#define protected public
98std::set<int> xRooNLLVar::xRooHypoPoint::allowedStatusCodes = {0};
109 fOldTitle =
fNll->get()->getStringAttribute(
"fitresultTitle");
134 std::unique_ptr<RooAbsCollection>
fSnap;
137 std::pair<std::shared_ptr<RooAbsData>, std::shared_ptr<const RooAbsCollection>>
fOldData;
141xRooNLLVar::~xRooNLLVar() {}
143xRooNLLVar::xRooNLLVar(
RooAbsPdf &pdf,
const std::pair<RooAbsData *, const RooAbsCollection *> &
data,
146 std::make_pair(std::shared_ptr<RooAbsData>(
data.first, [](
RooAbsData *) {}),
153 const std::pair<std::shared_ptr<RooAbsData>, std::shared_ptr<const RooAbsCollection>> &
data,
155 : fPdf(pdf), fData(
data.first), fGlobs(
data.second)
172 for (
int i = 0; i <
opts.GetSize(); i++) {
175 if (
strcmp(
opts.At(i)->GetName(),
"GlobalObservables") == 0) {
180 throw std::runtime_error(
"GlobalObservables mismatch");
182 }
else if (
strcmp(
opts.At(i)->GetName(),
"Hesse") == 0) {
184 }
else if (
strcmp(
opts.At(i)->GetName(),
"Strategy") == 0) {
186 }
else if (
strcmp(
opts.At(i)->GetName(),
"StrategySequence") == 0) {
188 }
else if (
strcmp(
opts.At(i)->GetName(),
"Tolerance") == 0) {
190 }
else if (
strcmp(
opts.At(i)->GetName(),
"PrintLevel") == 0) {
193 if (
strcmp(
opts.At(i)->GetName(),
"Optimize") == 0) {
204 auto _vars = std::unique_ptr<RooArgSet>(
fPdf->getVariables());
207 _vars->add(*std::unique_ptr<RooArgSet>(
con->getVariables()));
230 bool hasRange(
false);
254 std::make_shared<RooSimultaneous>(
TString::Format(
"%s_reduced", s->GetName()),
"Reduced model", _cat);
255 for (
auto &
c : _cat) {
256 auto _pdf = s->getPdf(
c.first.c_str());
259 _cat.setIndex(
c.second);
262 if (_cat.hasRange(
p) && _cat.inRange(
p)) {
268 newPdf->addPdf(*_pdf,
c.first.c_str());
303 (
opts.find(
"GlobalObservables"))
312 std::cout <<
"PDF: ";
316 std::cout <<
"<null>" << std::endl;
318 std::cout <<
"Data: ";
322 std::cout <<
"<null>" << std::endl;
324 std::cout <<
"NLL Options: " << std::endl;
325 for (
int i = 0; i <
fOpts->GetSize(); i++) {
329 std::cout <<
" " <<
c->
GetName() <<
" : ";
330 if (
c->getString(0)) {
331 std::cout <<
c->getString(0);
332 }
else if (
c->getSet(0) && !
c->getSet(0)->empty()) {
333 std::cout << (
c->getSet(0)->contentsString());
335 std::cout <<
c->getInt(0);
337 std::cout << std::endl;
340 std::cout <<
"Fit Config: " << std::endl;
341 std::cout <<
" UseParabErrors: " << (
fFitConfig->ParabErrors() ?
"True" :
"False")
342 <<
" [toggles HESSE algorithm]" << std::endl;
343 std::cout <<
" MinimizerOptions: " << std::endl;
352 if (std::shared_ptr<RooAbsReal>::get())
353 oldName = std::shared_ptr<RooAbsReal>::get()->GetName();
358 fPdf->treeNodeServerList(&s,
nullptr,
true,
false);
369 if (
a->InheritsFrom(
"RooRealSumPdf")) {
374 std::unique_ptr<RooArgSet> obs(
a->getObservables(
fData->get()));
375 if (obs->size() == 1) {
376 auto *var =
static_cast<RooRealVar *
>(obs->first());
377 std::unique_ptr<std::list<double>> boundaries{
dynamic_cast<RooAbsReal *
>(
a)->binBoundaries(
378 *var, -std::numeric_limits<double>::infinity(), std::numeric_limits<double>::infinity())};
380 if (!std::shared_ptr<RooAbsReal>::get()) {
381 Info(
"xRooNLLVar",
"%s will be evaluated as a Binned PDF (%d bins)",
a->GetName(),
382 int(boundaries->size() - 1));
389 a->setAttribute(
"BinnedLikelihood",
setBinned);
406 if (std::shared_ptr<RooAbsReal>::get())
407 attribs = std::shared_ptr<RooAbsReal>::get()->attributes();
408 this->reset(std::unique_ptr<RooAbsReal>{
fPdf->createNLL(*
fData, *
fOpts)}.release());
415 std::shared_ptr<RooAbsReal>::get()->setAttribute(
a.c_str());
421 std::shared_ptr<RooAbsReal>::get()->SetName(
oldName);
424 std::shared_ptr<RooAbsReal>::get()->getVal();
426 o->setAttribute(
"BinnedLikelihood",
v);
430 fFuncVars = std::unique_ptr<RooArgSet>{std::shared_ptr<RooAbsReal>::get()->getVariables()};
438std::pair<std::shared_ptr<RooAbsData>, std::shared_ptr<const RooAbsCollection>>
442 return std::pair(
nullptr,
nullptr);
443 auto fr = std::make_shared<RooFitResult>(
TUUID().AsString());
447 fr->setConstParList(
l);
448 const_cast<RooArgList &
>(fr->constPars()).setAttribAll(
"global",
false);
450 std::unique_ptr<RooAbsCollection>(fr->constPars().selectCommon(*
fGlobs))->
setAttribAll(
"global",
true);
482 throw std::runtime_error(
"xRooFitResult::cfit: Cannot create cfit without nll");
486 if (
auto res = fCfits->find(
alias); res != fCfits->end()) {
490 if (
auto res = fCfits->find(
poiValues); res != fCfits->end()) {
495 *fNll->fFuncVars =
get()->floatParsFinal();
496 fNll->fFuncVars->assignValueOnly(
get()->constPars());
497 std::unique_ptr<RooAbsCollection>(fNll->fFuncVars->selectCommon(
get()->floatParsFinal()))
498 ->setAttribAll(
"Constant",
false);
499 std::unique_ptr<RooAbsCollection>(fNll->fFuncVars->selectCommon(
get()->constPars()))->setAttribAll(
"Constant",
true);
511 throw std::runtime_error(
"xRooFitResult::ifit: par not found");
520 throw std::runtime_error(
"xRooFitResult::impact: poi not found");
523 throw std::runtime_error(
"xRooFitResult::impact: null ifit");
524 if (
_ifit->status() != 0)
525 fNode->Warning(
"impact",
"ifit status code is %d",
_ifit->status());
526 return _ifit->floatParsFinal().getRealValue(poi) -
poiHat->getVal();
529 int iPoi =
get()->floatParsFinal().index(poi);
530 int iNp =
get()->floatParsFinal().index(
np);
532 throw std::runtime_error(
"xRooFitResult::impact: poi not found");
534 throw std::runtime_error(
"xRooFitResult::impact: np not found");
539 return std::numeric_limits<double>::quiet_NaN();
549 for (
auto p :
get()->floatParsFinal()) {
550 if (
strcmp(
p->GetName(), poi) == 0) {
556 bool matches =
false;
559 if ((
p->getStringAttribute(
"group") && s ==
p->getStringAttribute(
"group")) ||
574 throw std::runtime_error(
TString::Format(
"Could not find poi: %s", poi));
577 fNode->Warning(
"conditionalError",
"No parameters selected by: %s",
nps);
582 int idx = vars.
index(poi);
583 return sqrt(
get()->conditionalCovarianceMatrix(vars)(idx, idx));
588 auto _poi =
_cfit->floatParsFinal().find(poi);
590 return (
up) ?
static_cast<RooRealVar *
>(_poi)->getErrorHi() :
static_cast<RooRealVar *
>(_poi)->getErrorLo();
598 throw std::runtime_error(
"xRooFitResult::ranknp: poi not found");
600 std::vector<std::pair<std::string, double>>
ranks;
602 for (
auto par :
get()->floatParsFinal()) {
605 ranks.emplace_back(std::pair(par->GetName(), impact(poi, par->GetName(),
up,
prefit,
true)));
609 if (std::isnan(left.second) && !std::isnan(right.second))
611 if (!std::isnan(left.second) && std::isnan(right.second))
613 return fabs(left.second) > fabs(right.second);
622 v = std::numeric_limits<double>::quiet_NaN();
629 if (std::isnan(left.second) && !std::isnan(right.second))
631 if (!std::isnan(left.second) && std::isnan(right.second))
633 return fabs(left.second) > fabs(right.second);
637 out.setName(
"rankings");
639 out.addClone(*
get()->floatParsFinal().find(
n.c_str()));
640 auto vv =
static_cast<RooRealVar *
>(out.at(out.size() - 1));
659 const_cast<RooArgList &
>(out->constPars()).setAttribAll(
"global",
false);
661 std::unique_ptr<RooAbsCollection>(out->constPars().selectCommon(*
fGlobs))->
setAttribAll(
"global",
true);
663 return xRooFitResult(std::make_shared<xRooNode>(out,
fPdf), std::make_shared<xRooNLLVar>(*
this));
696 std::set<std::string> out;
707 c->
get<
RooAbsArg>()->treeNodeServerList(&nodes,
nullptr,
true,
false);
709 for (
auto a : nodes) {
710 if (
a->InheritsFrom(
"RooRealSumPdf") &&
728 pdf()->treeNodeServerList(&nodes,
nullptr,
true,
false);
729 for (
auto a : nodes) {
730 if (
a->InheritsFrom(
"RooRealSumPdf") &&
748 auto _pdf =
pdf().get();
749 std::unique_ptr<RooAbsCollection>
_robs(_pdf->getObservables(
_data->
get()));
752 _pdf = s->getPdf(s->indexCat().getCurrentLabel());
755 for (
auto o : *
_robs) {
759 std::unique_ptr<std::list<double>> bins(
760 _pdf->binBoundaries(*
a, -std::numeric_limits<double>::infinity(), std::numeric_limits<double>::infinity()));
762 double lowEdge = -std::numeric_limits<double>::infinity();
763 for (
auto b : *bins) {
764 if (
b >
a->getVal()) {
791 for (
auto c :
cTerm->list()) {
792 if (std::string(
c->ClassName()) ==
"RooAbsPdf") {
801 gaus->getMean().GetName()));
820 std::unique_ptr<RooAbsCollection>(
pars()->selectByAttrib(
"Constant",
false))->
size();
834 std::unique_ptr<RooAbsCollection>
_floats(
pars()->selectByAttrib(
"Constant",
false));
869 return std::numeric_limits<double>::quiet_NaN();
887 out -=
w * std::log(
w);
889 out += std::lgamma(
w + 1);
895 out += std::lgamma(
w + 1);
900 throw std::runtime_error(
"Cannot determine category of RooSimultaneous pdf");
911 auto out = std::shared_ptr<RooArgSet>(
get()->getVariables());
913 out->remove(*
fGlobs,
true,
true);
938 std::unique_ptr<RooAbsCollection>
funcVars(
get()->getVariables());
941 for (
auto &
coord : coords) {
943 throw std::runtime_error(
"Invalid coordinate");
945 for (
size_t i = 0; i <
coord.size(); i++) {
968 if (
sOpt ==
"sensitivity") {
973 if (
sOpt ==
"floating") {
975 auto floats = std::unique_ptr<RooAbsCollection>(
_pars->selectByAttrib(
"Constant",
false));
998 if (
auto a =
_pars->find(s);
a)
1002 if (vars.
size() == 1) {
1008 bad->SetMarkerStyle(5);
1010 bool normRange =
false;
1018 out->SetName(
get()->GetName());
1024 double step = (
v->getMax() -
v->getMin()) / 100;
1025 double init =
v->getVal();
1028 auto currTime = std::chrono::steady_clock::now();
1029 while (out->GetN() < 100 && (low >
v->getMin() ||
high < v->getMax())) {
1030 if (out->GetN() == 0) {
1031 out->SetPoint(out->GetN(), low, 0);
1040 if (low >
v->getMin()) {
1042 auto _v =
func()->getVal();
1043 if (std::isnan(
_v) || std::isinf(
_v)) {
1044 if (
bad->GetN() == 0)
1046 bad->SetPoint(
bad->GetN(), low, out->GetPointY(0));
1048 out->SetPoint(out->GetN(), low,
_v -
initVal);
1054 auto _v =
func()->getVal();
1055 if (std::isnan(
_v) || std::isinf(
_v)) {
1056 if (
bad->GetN() == 0)
1058 bad->SetPoint(
bad->GetN(), high, out->GetPointY(0));
1060 out->SetPoint(out->GetN(), high,
_v -
initVal);
1067 if (std::chrono::steady_clock::now() -
currTime > std::chrono::seconds(1)) {
1068 currTime = std::chrono::steady_clock::now();
1077#if ROOT_VERSION_CODE >= ROOT_VERSION(6, 30, 00)
1078 gPad->GetCanvas()->ResetUpdated();
1083 Error(
"Draw",
"Name a parameter to scan over: Draw(<name>) , choose from: %s",
1084 _pars->empty() ?
"" :
_pars->contentsString().c_str());
1098 return setData(std::dynamic_pointer_cast<RooAbsData>(
data.fComp),
1099 std::shared_ptr<const RooAbsCollection>(
data.globs().argList().snapshot()));
1118 throw std::runtime_error(
"Missing globs");
1129 rC.remove(*std::unique_ptr<RooAbsCollection>(
rC.selectCommon(*
_actualGlobs)));
1135 throw std::runtime_error(
TString::Format(
"globs mismatch: adding %s removing %s",
r.Data(),
l.Data()));
1140 if (!std::shared_ptr<RooAbsReal>::get()) {
1151 fFuncVars->setAttribAll(
"Constant",
false);
1173 }
catch (std::runtime_error &) {
1178 fFuncVars->setAttribAll(
"Constant",
false);
1186 throw std::runtime_error(
"Unable to setData");
1193 }
else if (
auto f = std::unique_ptr<RooAbsCollection>(
fConstVars->selectByAttrib(
"Constant",
false)); !
f->empty()) {
1216 if (std::shared_ptr<RooAbsReal>::get()) {
1255 return fData->sumEntries() * log(1.0 * (s->servers().size() - 1));
1267 for (
int i = 0; i <
fData->numEntries(); i++) {
1284 for (
auto s2 : s->servers()) {
1311 : std::numeric_limits<double>::quiet_NaN();
1324 if (getVal(
sWhat +
" readonly").second != 0) {
1325 if (
sWhat.Contains(
"toys=")) {
1332 if (nullToys.size() <
nToys) {
1333 addNullToys(
nToys - nullToys.size());
1336 addAltToys(
nToysAlt - altToys.size());
1340 addCLsToys(100, 0, 0.05,
nSigma);
1348 if (
rr && var && var->get()) {
1349 _readOnly = var->get()->getAttribute(
"readOnly");
1350 var->get()->setAttribute(
"readOnly",
rr);
1358 var->get()->setAttribute(
"readOnly",
_readOnly);
1364 std::shared_ptr<xRooNLLVar> &var;
1378 throw std::runtime_error(std::string(
"Unknown: ") +
what);
1385 out.add(*std::unique_ptr<RooAbsCollection>(coords->selectByAttrib(
"poi",
true)));
1392 out.setName(
"alt_poi");
1393 out.addClone(*std::unique_ptr<RooAbsCollection>(coords->selectByAttrib(
"poi",
true)));
1394 for (
auto a : out) {
1398 if (
auto s =
a->getStringAttribute(
"altVal"); s &&
strlen(s)) {
1401 v->setVal(std::numeric_limits<double>::quiet_NaN());
1411 if (me.ufit(
true) && !allowedStatusCodes.count(me.ufit(
true)->status()))
1413 if (me.cfit_null(
true) && !allowedStatusCodes.count(me.cfit_null(
true)->status()))
1415 if (me.cfit_alt(
true) && !allowedStatusCodes.count(me.cfit_alt(
true)->status()))
1417 if (me.asimov(
true))
1418 out += me.asimov(
true)->status() << 3;
1424 std::cout <<
"POI: " <<
const_cast<xRooHypoPoint *
>(
this)->poi().contentsString()
1428 std::cout <<
" , pllType: " << fPllType << std::endl;
1430 std::cout <<
" - ufit: ";
1432 std::cout << fUfit->
GetName() <<
" " << fUfit->minNll() <<
" (status=" << fUfit->status() <<
") ("
1435 <<
const_cast<xRooHypoPoint *
>(
this)->mu_hat().getError() <<
")" << std::endl;
1437 std::cout <<
"Not calculated" << std::endl;
1439 std::cout <<
" - null cfit: ";
1441 std::cout << fNull_cfit->
GetName() <<
" " << fNull_cfit->minNll() <<
" (status=" << fNull_cfit->status() <<
")";
1443 std::cout <<
"Not calculated";
1446 std::cout << std::endl <<
" - alt cfit: ";
1448 std::cout << fAlt_cfit->GetName() <<
" " << fAlt_cfit->minNll() <<
" (status=" << fAlt_cfit->status() <<
")"
1451 std::cout <<
"Not calculated" << std::endl;
1453 std::cout <<
" sigma_mu: ";
1455 if (!fAsimov || !fAsimov->fUfit || !fAsimov->fNull_cfit) {
1456 std::cout <<
"Not calculated";
1458 std::cout << const_cast<xRooHypoPoint *>(
this)->
sigma_mu().first <<
" +/- "
1462 std::cout << std::endl;
1463 std::cout <<
" - asimov ufit: ";
1464 if (fAsimov->fUfit) {
1465 std::cout << fAsimov->
fUfit->GetName() <<
" " << fAsimov->fUfit->minNll()
1466 <<
" (status=" << fAsimov->fUfit->status() <<
")";
1468 std::cout <<
"Not calculated";
1470 std::cout << std::endl <<
" - asimov null cfit: ";
1471 if (fAsimov->fNull_cfit) {
1472 std::cout << fAsimov->fNull_cfit->GetName() <<
" " << fAsimov->fNull_cfit->minNll()
1473 <<
" (status=" << fAsimov->fNull_cfit->status() <<
")";
1475 std::cout <<
"Not calculated";
1478 std::cout << std::endl;
1480 std::cout << std::endl;
1483 std::cout <<
" - genFit: " << fGenFit->GetName() << std::endl;
1484 if (!nullToys.empty() || !altToys.empty()) {
1485 std::cout <<
" * null toys: " << nullToys.size();
1487 while (
firstToy < nullToys.size() && std::isnan(std::get<1>(nullToys[
firstToy])))
1490 std::cout <<
" [ of which " <<
firstToy <<
" are bad]";
1491 std::cout <<
" , alt toys: " << altToys.size();
1493 while (
firstToy < altToys.size() && std::isnan(std::get<1>(altToys[
firstToy])))
1496 std::cout <<
" [ of which " <<
firstToy <<
" are bad]";
1497 std::cout << std::endl;
1505 auto var =
dynamic_cast<RooRealVar *
>(ufit()->floatParsFinal().find(fPOIName()));
1509 throw std::runtime_error(
TString::Format(
"Cannot find POI: %s", fPOIName()));
1512 throw std::runtime_error(
"Unconditional fit unavailable");
1519 if (fGenFit && isExpected) {
1527 : hypoTestResult(
htr)
1539 if (
toys->getGlobalObservables()) {
1540 coords = std::shared_ptr<RooAbsCollection>(
toys->getGlobalObservables()->snapshot());
1542 for (
int i = 0; i <
toys->numEntries(); i++) {
1545 std::make_tuple(
int(
toy->getRealValue(
"seed")),
toy->getRealValue(
"ts"),
toys->weight()));
1550 for (
int i = 0; i <
toys->numEntries(); i++) {
1553 std::make_tuple(
int(
toy->getRealValue(
"seed")),
toy->getRealValue(
"ts"),
toys->weight()));
1564 if (!fAsimov && (nllVar || hypoTestResult)) {
1565 auto theFit = (!
fData.first && fGenFit && !isExpected)
1570 if (!
theFit || allowedStatusCodes.find(
theFit->status()) == allowedStatusCodes.
end())
1572 fAsimov = std::make_shared<xRooHypoPoint>(*
this);
1573 fAsimov->coords.reset(fAsimov->coords->snapshot());
1574 fAsimov->hypoTestResult.reset();
1576 for (
auto p : fAsimov->poi()) {
1579 v->deleteSharedProperties();
1583 fAsimov->nullToys.clear();
1584 fAsimov->altToys.clear();
1585 fAsimov->fUfit = retrieveFit(3);
1586 fAsimov->fNull_cfit = retrieveFit(4);
1587 fAsimov->fAlt_cfit.reset();
1589 std::make_pair(
nullptr,
nullptr);
1590 fAsimov->fGenFit =
theFit;
1591 fAsimov->isExpected =
true;
1600 return std::pair<double, double>(1, 0);
1603 return std::pair<double, double>(std::numeric_limits<double>::quiet_NaN(), 0);
1613 return std::pair(
nom, std::max(std::abs(
up -
nom), std::abs(
down -
nom)));
1619 return std::pair<double, double>(1, 0);
1622 return std::pair<double, double>(std::numeric_limits<double>::quiet_NaN(), 0);
1633 return std::pair(
nom, std::max(std::abs(
up -
nom), std::abs(
down -
nom)));
1638 if (fNullVal() == fAltVal())
1639 return std::pair<double, double>(1, 0);
1642 return std::pair<double, double>(1, 0);
1645 return std::pair<double, double>(std::numeric_limits<double>::quiet_NaN(), 0);
1670 return std::pair(
nom, std::max(std::abs(
up -
nom), std::abs(
down -
nom)));
1680 return std::pair<double, double>(std::numeric_limits<double>::quiet_NaN(), 0);
1689 return std::pair<double, double>(
nom, std::max(std::abs(
nom -
up), std::abs(
nom -
down)));
1698 while (
firstToy < altToys.size() && std::isnan(std::get<1>(altToys[
firstToy])))
1701 return std::pair(std::numeric_limits<double>::quiet_NaN(), std::numeric_limits<double>::quiet_NaN());
1704 return std::pair(std::get<1>(altToys[
targetIdx]), (std::get<1>(altToys[std::min(
int(altToys.size()),
targetIdx)]) -
1705 std::get<1>(altToys[std::max(0,
targetIdx)])) /
1714 return std::pair<double, double>(hypoTestResult->GetTestStatisticData(), 0);
1715 return std::pair<double, double>(std::numeric_limits<double>::quiet_NaN(), 0);
1717 if (allowedStatusCodes.find(
_ufit->status()) == allowedStatusCodes.end()) {
1718 return std::pair<double, double>(std::numeric_limits<double>::quiet_NaN(), 0);
1722 mu_hat().getVal() <
_first_poi->getMin(
"physical")) {
1726 return std::pair<double, double>(std::numeric_limits<double>::quiet_NaN(), 0);
1733 return std::pair<double, double>(0, 0);
1734 if (!cfit_null(
readOnly) || allowedStatusCodes.find(cfit_null(
readOnly)->status()) == allowedStatusCodes.end())
1735 return std::pair<double, double>(std::numeric_limits<double>::quiet_NaN(), 0);
1737 return std::pair<double, double>(2. *
cFactor * (cfit_null(
readOnly)->minNll() -
_ufit->minNll()),
1744 if (!hypoTestResult)
1747 if (
auto fits = hypoTestResult->GetFitInfo()) {
1748 for (
int i = 0; i <
fits->numEntries(); i++) {
1749 auto fit =
fits->get(i);
1750 if (fit->getCatIndex(
"type") !=
type)
1754 fits->getGlobalObservables()->getStringValue(
TString::Format(
"%s.name", fit->getCatLabel(
"type")));
1757 for (
auto file : *
gROOT->GetListOfFiles()) {
1761 k->GetMotherDir()->GetList()
1775 rfit->setStatus(fit->getRealValue(
"status"));
1776 rfit->setMinNLL(fit->getRealValue(
"minNll"));
1777 rfit->setEDM(fit->getRealValue(
"edm"));
1778 rfit->setCovQual(fit->getRealValue(
"covQual"));
1780 std::unique_ptr<RooAbsCollection>
par_hats(
1781 hypoTestResult->GetFitInfo()->getGlobalObservables()->selectByName(coords->contentsString().c_str()));
1782 par_hats->setName(
"floatParsFinal");
1790 rfit->setCovarianceMatrix(
cov);
1801 if (
auto rfit = retrieveFit(0)) {
1802 return fUfit =
rfit;
1804 if (!nllVar || (
readOnly && nllVar->get() && !nllVar->get()->getAttribute(
"readOnly")))
1806 if (!nllVar->fFuncVars)
1807 nllVar->reinitialize();
1810 if (!
readOnly && isExpected && fGenFit) {
1812 bool tmp = nllVar->get()->getAttribute(
"readOnly");
1813 nllVar->get()->setAttribute(
"readOnly");
1814 auto out = ufit(
true);
1815 nllVar->get()->setAttribute(
"readOnly", tmp);
1820 nllVar->setData(
data());
1823 }
else if (!nllVar->get()->getAttribute(
"readOnly")) {
1824 nllVar->setData(
fData);
1826 nllVar->fFuncVars->setAttribAll(
"Constant",
false);
1827 *nllVar->fFuncVars = *coords;
1828 if (nllVar->fFuncGlobs)
1829 nllVar->fFuncGlobs->setAttribAll(
"Constant",
true);
1830 std::unique_ptr<RooAbsCollection>(nllVar->fFuncVars->selectCommon(poi()))
1831 ->setAttribAll(
"Constant",
false);
1834 nllVar->fFuncVars->assignValueOnly(fGenFit->constPars());
1835 nllVar->fFuncVars->assignValueOnly(fGenFit->floatParsFinal());
1837 nllVar->get()->SetName(
1838 TString::Format(
"%s/%s_%s", nllVar->get()->GetName(), fGenFit->GetName(), (isExpected) ?
"asimov" :
"toys"));
1840 nllVar->get()->SetName(
TString::Format(
"%s/%s", nllVar->get()->GetName(),
fData.first->GetName()));
1842 }
else if (!std::isnan(fAltVal())) {
1847 _poi->
setVal(_poi->getStringAttribute(
"initVal") ?
TString(_poi->getStringAttribute(
"initVal")).
Atof()
1852 return (fUfit = nllVar->minimize());
1858 for (
auto &
c :
coll) {
1861 out +=
c->GetName();
1877 if (
auto rfit = retrieveFit(1)) {
1878 return fNull_cfit =
rfit;
1880 if (!nllVar || (
readOnly && nllVar->get() && !nllVar->get()->getAttribute(
"readOnly")))
1882 if (!nllVar->fFuncVars)
1883 nllVar->reinitialize();
1886 if (!
readOnly && isExpected && fGenFit) {
1888 bool tmp = nllVar->get()->getAttribute(
"readOnly");
1889 nllVar->get()->setAttribute(
"readOnly");
1890 auto out = cfit_null(
true);
1891 nllVar->get()->setAttribute(
"readOnly", tmp);
1896 nllVar->setData(
data());
1899 }
else if (!nllVar->get()->getAttribute(
"readOnly")) {
1900 nllVar->setData(
fData);
1904 *nllVar->fFuncVars = fUfit->floatParsFinal();
1906 nllVar->fFuncVars->setAttribAll(
"Constant",
false);
1907 *nllVar->fFuncVars = *coords;
1908 if (nllVar->fFuncGlobs)
1909 nllVar->fFuncGlobs->setAttribAll(
"Constant",
true);
1911 nllVar->fFuncVars->find(fPOIName())
1912 ->setStringAttribute(
"altVal", (!std::isnan(fAltVal())) ?
TString::Format(
"%g", fAltVal()) :
nullptr);
1915 nllVar->get()->SetName(
1916 TString::Format(
"%s/%s_%s", nllVar->get()->GetName(), fGenFit->GetName(), (isExpected) ?
"asimov" :
"toys"));
1918 nllVar->get()->SetName(
TString::Format(
"%s/%s", nllVar->get()->GetName(),
fData.first->GetName()));
1920 nllVar->get()->setStringAttribute(
"fitresultTitle",
collectionContents(poi()).c_str());
1921 return (fNull_cfit = nllVar->minimize());
1932 return fLbound_cfit;
1933 if (
auto rfit = retrieveFit(6)) {
1934 return fLbound_cfit =
rfit;
1936 if (!nllVar || (
readOnly && nllVar->get() && !nllVar->get()->getAttribute(
"readOnly")))
1938 if (!nllVar->fFuncVars)
1939 nllVar->reinitialize();
1942 if (!
readOnly && isExpected && fGenFit) {
1944 bool tmp = nllVar->get()->getAttribute(
"readOnly");
1945 nllVar->get()->setAttribute(
"readOnly");
1946 auto out = cfit_lbound(
true);
1947 nllVar->get()->setAttribute(
"readOnly", tmp);
1952 nllVar->setData(
data());
1955 }
else if (!nllVar->get()->getAttribute(
"readOnly")) {
1956 nllVar->setData(
fData);
1960 *nllVar->fFuncVars = fUfit->floatParsFinal();
1962 nllVar->fFuncVars->setAttribAll(
"Constant",
false);
1963 *nllVar->fFuncVars = *coords;
1965 if (nllVar->fFuncGlobs)
1966 nllVar->fFuncGlobs->setAttribAll(
"Constant",
true);
1968 nllVar->fFuncVars->find(fPOIName())
1969 ->setStringAttribute(
"altVal", (!std::isnan(fAltVal())) ?
TString::Format(
"%g", fAltVal()) :
nullptr);
1972 nllVar->get()->SetName(
1973 TString::Format(
"%s/%s_%s", nllVar->get()->GetName(), fGenFit->GetName(), (isExpected) ?
"asimov" :
"toys"));
1975 nllVar->get()->SetName(
TString::Format(
"%s/%s", nllVar->get()->GetName(),
fData.first->GetName()));
1977 nllVar->get()->setStringAttribute(
1979 collectionContents(*std::unique_ptr<RooAbsCollection>(nllVar->fFuncVars->selectCommon(poi()))).c_str());
1980 return (fLbound_cfit = nllVar->minimize());
1985 if (std::isnan(fAltVal()))
1989 if (
auto rfit = retrieveFit(2)) {
1990 return fAlt_cfit =
rfit;
1992 if (!nllVar || (
readOnly && nllVar->get() && !nllVar->get()->getAttribute(
"readOnly")))
1994 if (!nllVar->fFuncVars)
1995 nllVar->reinitialize();
1998 if (!
readOnly && isExpected && fGenFit) {
2000 bool tmp = nllVar->get()->getAttribute(
"readOnly");
2001 nllVar->get()->setAttribute(
"readOnly");
2002 auto out = cfit_alt(
true);
2003 nllVar->get()->setAttribute(
"readOnly", tmp);
2008 nllVar->setData(
data());
2011 }
else if (!nllVar->get()->getAttribute(
"readOnly")) {
2012 nllVar->setData(
fData);
2016 *nllVar->fFuncVars = fUfit->floatParsFinal();
2018 nllVar->fFuncVars->setAttribAll(
"Constant",
false);
2019 *nllVar->fFuncVars = *coords;
2020 if (nllVar->fFuncGlobs)
2021 nllVar->fFuncGlobs->setAttribAll(
"Constant",
true);
2022 *nllVar->fFuncVars = alt_poi();
2024 nllVar->get()->SetName(
2025 TString::Format(
"%s/%s_%s", nllVar->get()->GetName(), fGenFit->GetName(), (isExpected) ?
"asimov" :
"toys"));
2027 nllVar->get()->SetName(
TString::Format(
"%s/%s", nllVar->get()->GetName(),
fData.first->GetName()));
2029 nllVar->get()->setStringAttribute(
"fitresultTitle",
collectionContents(alt_poi()).c_str());
2030 return (fAlt_cfit = nllVar->minimize());
2039 return std::pair<double, double>(std::numeric_limits<double>::quiet_NaN(), 0);
2043 return std::pair<double, double>(std::abs(fNullVal() - fAltVal()) / sqrt(out.first),
2044 out.second * 0.5 * std::abs(fNullVal() - fAltVal()) /
2045 (out.first * sqrt(out.first)));
2051 if (std::isnan(
_ts.first))
2054 return std::pair<double, double>(1, 0);
2061 return std::pair(0.5, std::numeric_limits<double>::infinity());
2071 if (std::isnan(std::get<1>(
toy))) {
2074 bool res = std::get<1>(
toy) >=
_ts.first;
2075 if (std::get<2>(
toy) != 1) {
2076 eff.FillWeighted(res, 0.5, std::get<2>(
toy));
2082 if (std::get<1>(
toy) >=
_ts.first -
_ts.second)
2084 if (std::get<1>(
toy) >=
_ts.first -
_ts.second)
2106 return pX_toys(
false,
nSigma);
2111 if (!std::isnan(
nSigma)) {
2114 return pX_toys(
true,
nSigma);
2120 out.coords = coords;
2121 out.fPllType = fPllType;
2122 out.nllVar = nllVar;
2125 auto _cfit = cfit_null();
2128 if (!nllVar->fFuncVars)
2129 nllVar->reinitialize();
2133 out.fGenFit =
_cfit;
2140 out.coords = coords;
2141 out.fPllType = fPllType;
2142 out.nllVar = nllVar;
2147 if (!nllVar->fFuncVars)
2148 nllVar->reinitialize();
2153 out.fGenFit = cfit_alt();
2160 if ((
alt && !cfit_alt()) || (!
alt && !cfit_null())) {
2161 throw std::runtime_error(
"Cannot add toys, invalid conditional fit");
2168 if (!std::isnan(obs.first)) {
2170 double err = obs.second;
2191 throw std::runtime_error(
"Cannot target obs p-value because ts value unavailable");
2199 Info(
"addToys",
"First generating 100 alt toys in order to determine expected ts value");
2203 throw std::runtime_error(
"Unable to determine expected ts value");
2228 auto &
toys = (
alt) ? altToys : nullToys;
2242 for (
size_t i = 0; i <
nnToys; i++) {
2244 auto toy = ((
alt) ? generateAlt(seed) : generateNull(seed));
2247 toys.push_back(std::make_tuple(seed,
toy.pll().first, 1.));
2250 if (std::isnan(std::get<1>(
toys.back())))
2256 <<
TString::Format(
"Generated %d/%d %s hypothesis toys [%.2f toys/s]",
2259 if (!std::isnan(
target)) {
2263 std::cout <<
"..." << std::flush;
2279 for (
auto &t :
toys) {
2280 if (std::isnan(std::get<1>(t)))
2281 std::get<1>(t) = -std::numeric_limits<double>::infinity();
2284 [](
const decltype(nullToys)::value_type &
a,
const decltype(nullToys)::value_type &
b) ->
bool {
2285 if (std::isnan(std::get<1>(a)))
2287 if (std::isnan(std::get<1>(b)))
2289 return std::get<1>(a) < std::get<1>(b);
2291 for (
auto &t :
toys) {
2292 if (std::isinf(std::get<1>(t)))
2293 std::get<1>(t) = std::numeric_limits<double>::quiet_NaN();
2295 if (std::isnan(
target)) {
2305 <<
"Finished Generating ";
2317#if ROOT_VERSION_CODE >= ROOT_VERSION(6, 30, 00)
2318 gPad->GetCanvas()->ResetUpdated();
2325 std::cout <<
"Warning: " <<
nans <<
" toys were bad" << std::endl;
2402 out.nllVar = std::make_shared<xRooNLLVar>(*
this);
2407 while (pattern.NextToken()) {
2410 double val = std::numeric_limits<double>::quiet_NaN();
2411 auto i = s.
Index(
"=");
2415 if (!
cVal.IsFloat())
2416 throw std::runtime_error(
"poiValues must contain value");
2421 throw std::runtime_error(
"Cannot find poi");
2422 if (!std::isnan(val))
2431 throw std::runtime_error(
"No poi");
2436 if (!
static_cast<RooRealVar *
>(
b)->hasRange(
"physical")) {
2437 static_cast<RooRealVar *
>(
b)->setRange(
"physical", 0, std::numeric_limits<double>::infinity());
2441 auto _snap = std::unique_ptr<RooAbsCollection>(
fFuncVars->selectByAttrib(
"Constant",
true))->snapshot();
2442 _snap->setAttribAll(
"poi",
false);
2443 std::unique_ptr<RooAbsCollection> _poi(
_snap->selectByName(
poiNames));
2444 _poi->setAttribAll(
"poi",
true);
2446 for (
auto a : *_poi)
2447 a->setStringAttribute(
"altVal", nullptr);
2449 for (
auto a : *_poi)
2468 out.fPllType = _type;
2473xRooNLLVar::xRooHypoPoint
2479 std::unique_ptr<RooAbsCollection> _poi(
fFuncVars->selectByAttrib(
"poi",
true));
2480 if (_poi->empty()) {
2481 throw std::runtime_error(
"No POI specified in model");
2482 }
else if (_poi->size() != 1) {
2483 throw std::runtime_error(
"Multiple POI specified in model");
2497 if (!nllVar && !hypoTestResult)
2503 sOpt.ReplaceAll(
"same",
"");
2511 if (
gPad->GetNumber() == 0) {
2527 hAxis =
dynamic_cast<TH1 *
>(
pad->GetPrimitive(
".axis"));
2529 for (
auto o : *
pad->GetListOfPrimitives()) {
2537 double _min = std::numeric_limits<double>::quiet_NaN();
2538 double _max = -std::numeric_limits<double>::quiet_NaN();
2540 for (
auto &
p : nullToys) {
2541 if (std::get<2>(
p) == 0)
2543 if (std::isnan(std::get<1>(
p)))
2546 _max = std::max(std::get<1>(
p), _max);
2548 for (
auto &
p : altToys) {
2549 if (std::get<2>(
p) == 0)
2551 if (std::isnan(std::get<1>(
p)))
2554 _max = std::max(std::get<1>(
p), _max);
2558 if (!std::isnan(obs.first)) {
2559 _min = std::min(obs.first - std::abs(obs.first) * 0.1,
_min);
2560 _max = std::max(obs.first + std::abs(obs.first) * 0.1, _max);
2563 auto pNull = pNull_toys();
2564 auto pAlt = pAlt_toys();
2565 auto pNullA = pNull_asymp();
2566 auto pAltA = pAlt_asymp();
2568 auto asi = (fAsimov && fAsimov->fUfit && fAsimov->fNull_cfit) ? fAsimov->pll().first
2569 : std::numeric_limits<double>::quiet_NaN();
2573 _max = std::max(
asi + std::abs(
asi), _max);
2578 auto _poi =
dynamic_cast<RooRealVar *
>(poi().first());
2582 auto h =
new TH1D((
isAlt) ?
"alt_toys" :
"null_toys",
"", 100,
_min, _max + (_max -
_min) * 0.01);
2583 h->SetDirectory(
nullptr);
2585 for (
auto &
p : (
isAlt) ? altToys : nullToys) {
2586 double w = std::isnan(std::get<1>(
p)) ? 0 : std::get<2>(
p);
2589 if (!std::isnan(std::get<1>(
p)))
2590 h->Fill(std::get<1>(
p),
w);
2592 if (
h->GetEntries() > 0)
2593 h->Scale(1. /
h->Integral(0,
h->GetNbinsX() + 1));
2617 h->SetMarkerSize(0);
2629 auto axis =
static_cast<TH1 *
>(
h->Clone(
".axis"));
2631 axis->SetStats(
false);
2632 axis->Reset(
"ICES");
2634 axis->SetLineWidth(0);
2636 axis->SetMinimum(1
e-7);
2637 axis->GetYaxis()->SetRangeUser(1
e-7, 10);
2638 axis->SetMaximum(
h->GetMaximum());
2640 l =
new TLegend(0.4, 0.7, 1. -
gPad->GetRightMargin(), 1. -
gPad->GetTopMargin());
2641 l->SetName(
"legend");
2643 l->SetBorderSize(0);
2647 for (
auto o : *
gPad->GetListOfPrimitives()) {
2654 if (
h->GetEntries() > 0) {
2657 h->Draw(
"axissame");
2660 if (
h->GetEntries() > 0) {
2663 h->Draw(
"axissame");
2671 if (fAsimov && fAsimov->fUfit && fAsimov->fNull_cfit && !std::isnan(sigma_mu().first) && !std::isnan(fAltVal())) {
2672 auto hh =
static_cast<TH1 *
>(
nullHist->Clone(
"null_asymp"));
2674 hh->SetStats(
false);
2675 hh->SetLineStyle(2);
2677 for (
int i = 1; i <=
hh->GetNbinsX(); i++) {
2680 _poi->getMin(
"physical"), _poi->getMax(
"physical")) -
2682 sigma_mu().first, _poi->getMin(
"physical"), _poi->getMax(
"physical")));
2687 hh->SetStats(
false);
2688 hh->SetLineStyle(2);
2690 for (
int i = 1; i <=
hh->GetNbinsX(); i++) {
2693 _poi->getMin(
"physical"), _poi->getMax(
"physical")) -
2695 sigma_mu().first, _poi->getMin(
"physical"), _poi->getMax(
"physical")));
2705 auto tl = ll.
DrawLine(obs.first,
hAxis->GetMinimum(), obs.first, 0.1);
2710 l->AddEntry(
tl, label,
"l");
2712 if (!std::isnan(
pNull.first) || !std::isnan(
pAlt.first)) {
2713 auto pCLs = pCLs_toys();
2714 label +=
" p_{toy}=(";
2719 if (label.Length() > 0)
2720 l->AddEntry(
"", label,
"");
2722 if (!std::isnan(
pNullA.first) || !std::isnan(
pAltA.first)) {
2723 auto pCLs = pCLs_asymp();
2724 label +=
" p_{asymp}=(";
2729 if (label.Length() > 0)
2730 l->AddEntry(
"", label,
"");
2732 if (
auto ax =
dynamic_cast<TH1 *
>(
gPad->GetPrimitive(
".axis")))
2733 ax->GetYaxis()->SetRangeUser(1
e-7, 1);
2738 auto v =
dynamic_cast<RooRealVar *
>(poi().empty() ? nullptr : poi().first());
2740 if (
v &&
v->hasRange(
"physical") &&
v->getMin(
"physical") != -std::numeric_limits<double>::infinity()) {
2750 if (
v &&
v->hasRange(
"physical") &&
v->getMin(
"physical") != -std::numeric_limits<double>::infinity()) {
2760 if (
v &&
v->hasRange(
"physical") &&
v->getMin(
"physical") != -std::numeric_limits<double>::infinity()) {
2770 if (
v &&
v->hasRange(
"physical") &&
v->getMin(
"physical") != -std::numeric_limits<double>::infinity()) {
2779 return "Test Statistic";
2785 return (poi().empty()) ? nullptr : (poi().first())->GetName();
2790 return (
first_poi ==
nullptr) ? std::numeric_limits<double>::quiet_NaN() :
first_poi->getVal();
2796 return (
first_poi ==
nullptr) ? std::numeric_limits<double>::quiet_NaN() :
first_poi->getVal();
2805 double alt_val = std::numeric_limits<double>::quiet_NaN();
2818 for (
auto p : out.poi()) {
2820 dynamic_cast<RooRealVar *
>(
p)->setRange(
"physical", 0, std::numeric_limits<double>::infinity());
2821 Info(
"xRooNLLVar::hypoSpace",
"Setting physical range of %s to [0,inf]",
p->GetName());
2822 }
else if (
dynamic_cast<RooRealVar *
>(
p)->hasRange(
"physical")) {
2823 dynamic_cast<RooRealVar *
>(
p)->removeRange(
"physical");
2824 Info(
"xRooNLLVar::hypoSpace",
"Setting physical range of %s to [-inf,inf] (i.e. removed range)",
2839 if (
int(low + 0.5) > 0) {
2842 if (!std::isnan(high) && !std::isnan(
alt_value) && !(std::isinf(high) && std::isinf(
alt_value))) {
2843 for (
auto p : out.poi()) {
2855 if (!std::isnan(low) && !std::isnan(high) && !(std::isinf(low) && std::isinf(high))) {
2856 for (
auto p :
hs.poi()) {
2857 dynamic_cast<RooRealVar *
>(
p)->setRange(
"scan", low, high);
2867 auto _poi = std::unique_ptr<RooAbsCollection>(
2868 std::unique_ptr<RooAbsCollection>(
pdf()->getVariables())->selectByAttrib(
"poi",
true));
2870 throw std::runtime_error(
"You must specify a POI for the hypoSpace");
2881 std::unique_ptr<RooAbsCollection> axes(s.
pars()->selectByName(
parName));
2883 throw std::runtime_error(
"parameter not found");
2884 axes->setAttribAll(
"axis",
true);
2889 s.
fNlls[s.
fPdfs.begin()->second] = std::make_shared<xRooNLLVar>(*
this);
2892 for (
auto poi : s.
poi()) {
2901 if (hypoTestResult) {
2902 return *hypoTestResult;
2905 out.SetBackgroundAsAlt(
true);
2906 out.SetName(
TUUID().AsString());
2910 if (nllVar && !nllVar->get()->getAttribute(
"readOnly")) {
2912 nllVar->get()->setAttribute(
"readOnly");
2915 auto ts_obs = ts_asymp();
2917 out.SetTestStatisticData(
ts_obs.first);
2924 "pllType",
"test statistic type",
2925 {{
"TwoSided", 0}, {
"OneSidedPositive", 1}, {
"OneSidedNegative", 2}, {
"Uncapped", 3}, {
"Unknown", 4}}));
2927 fitMeta.addClone(ufit()->floatParsFinal());
2929 fitMeta.setCatIndex(
"pllType",
int(fPllType));
2936 {
"asimov_cfit_null", 4},
2938 {
"cfit_lbound", 6}}));
2945 fitDS->convertToTreeStore();
2947 for (
int i = 0; i < 7; i++) {
2948 std::shared_ptr<const RooFitResult> fit;
2950 case 0: fit = ufit();
break;
2951 case 1: fit = cfit_null();
break;
2952 case 2: fit = cfit_alt();
break;
2953 case 3: fit = asimov() ? asimov()->ufit(
true) :
nullptr;
break;
2954 case 4: fit = asimov() ? asimov()->cfit_null(
true) :
nullptr;
break;
2955 case 5: fit = fGenFit;
break;
2956 case 6: fit = cfit_lbound();
break;
2961 fitDetails.getCatLabel(
"type"), fit->GetName()));
2963 fitDetails.setRealValue(
"status", fit->status());
2964 fitDetails.setRealValue(
"minNll", fit->minNll());
2966 fitDetails.setRealValue(
"covQual", fit->covQual());
2972 out.SetFitInfo(
fitDS);
2982 if (!nullToys.empty()) {
2984 std::vector<double> values;
2985 std::vector<double> weights;
2986 values.reserve(nullToys.size());
2987 weights.reserve(nullToys.size());
2989 for (
auto &t : nullToys) {
2990 values.push_back(std::get<1>(t));
2991 weights.push_back(std::get<2>(t));
2997#if ROOT_VERSION_CODE < ROOT_VERSION(6, 27, 00)
2998 out.fNullPValue = pNull_toys().first;
2999 out.fNullPValueError =
3000 pNull_toys().second;
3002 out.SetNullPValue(pNull_toys().first);
3003 out.SetNullPValueError(
3004 pNull_toys().second);
3007#if ROOT_VERSION_CODE < ROOT_VERSION(6, 27, 00)
3008 out.fNullPValue = pNull_asymp().first;
3009 out.fNullPValueError = pNull_asymp().second;
3011 out.SetNullPValue(pNull_asymp().first);
3012 out.SetNullPValueError(pNull_asymp().second);
3017 if (!altToys.empty()) {
3018 std::vector<double> values;
3019 std::vector<double> weights;
3020 values.reserve(altToys.size());
3021 weights.reserve(altToys.size());
3029 for (
auto &t : altToys) {
3030 values.push_back(std::get<1>(t));
3031 weights.push_back(std::get<2>(t));
3032 altDetails.setRealValue(
"seed", std::get<0>(t));
3033 altDetails.setRealValue(
"ts", std::get<1>(t));
3037 out.SetAltDetailedOutput(
altToyDS);
3038#if ROOT_VERSION_CODE < ROOT_VERSION(6, 27, 00)
3039 out.fAlternatePValue = pAlt_toys().first;
3040 out.fAlternatePValueError =
3043 out.SetAltPValue(pAlt_toys().first);
3044 out.SetAltPValueError(
3045 pAlt_toys().second);
3049#if ROOT_VERSION_CODE < ROOT_VERSION(6, 27, 00)
3050 out.fAlternatePValue = pAlt_asymp().first;
3051 out.fAlternatePValueError = pAlt_asymp().second;
3053 out.SetAltPValue(pAlt_asymp().first);
3054 out.SetAltPValueError(pAlt_asymp().second);
3059 nllVar->get()->setAttribute(
"readOnly",
false);
3068 return "xValueWithError: nullptr\n";
3069 return Form(
"%f +/- %f",
v->first,
v->second);
3071std::string cling::printValue(
const std::map<std::string, xRooNLLVar::xValueWithError> *
m)
3075 std::string out =
"{\n";
3076 for (
auto [k,
v] : *
m) {
3077 out +=
"\"" + k +
"\" => " + printValue(&
v) +
"\n";
GOFOpMode operMode() const
RooAbsData * _data
Pointer to original input dataset.
RooAbsReal * _func
Pointer to original input function.
size_t size(const MatrixT &matrix)
retrieve the size of a square matrix
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
void Info(const char *location, const char *msgfmt,...)
Use this function for informational messages.
void Error(const char *location, const char *msgfmt,...)
Use this function in case an error occurred.
winID h TVirtualViewer3D TVirtualGLPainter p
winID h TVirtualViewer3D vv
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t target
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t np
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void data
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t r
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t result
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void value
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t type
static char * Format(const char *format, va_list ap)
Format a string in a circular formatting buffer (using a printf style format descriptor).
char * Form(const char *fmt,...)
Formats a string in a circular formatting buffer.
R__EXTERN TStyle * gStyle
R__EXTERN TSystem * gSystem
AutoRestorer(const RooAbsCollection &s, xRooNLLVar *nll=nullptr)
std::pair< std::shared_ptr< RooAbsData >, std::shared_ptr< const RooAbsCollection > > fOldData
std::unique_ptr< RooAbsCollection > fSnap
static double k(const IncompatFunc &compatRegions, double pValue, double poiVal, double poiPrimeVal, double sigma_mu=0, double mu_low=-std::numeric_limits< double >::infinity(), double mu_high=std::numeric_limits< double >::infinity())
static int CompatFactor(const IncompatFunc &func, double mu_hat)
static double PValue(const IncompatFunc &compatRegions, double k, double mu, double mu_prime, double sigma_mu=0, double mu_low=-std::numeric_limits< double >::infinity(), double mu_high=std::numeric_limits< double >::infinity())
static std::shared_ptr< const RooFitResult > minimize(RooAbsReal &nll, const std::shared_ptr< ROOT::Fit::FitConfig > &fitConfig=nullptr, const std::shared_ptr< RooLinkedList > &nllOpts=nullptr)
static std::pair< std::shared_ptr< RooAbsData >, std::shared_ptr< const RooAbsCollection > > generateFrom(RooAbsPdf &pdf, const RooFitResult &fr, bool expected=false, int seed=0)
static std::shared_ptr< ROOT::Fit::FitConfig > createFitConfig()
double impact(const char *poi, const char *np, bool up=true, bool prefit=false, bool approx=false)
const RooFitResult * operator->() const
void Draw(Option_t *opt="")
xRooFitResult ifit(const char *np, bool up, bool prefit=false)
double conditionalError(const char *poi, const char *nps, bool up=true, bool approx=false)
RooArgList ranknp(const char *poi, bool up=true, bool prefit=false, double approxThreshold=std::numeric_limits< double >::infinity())
xRooFitResult(const std::shared_ptr< xRooNode > &in, const std::shared_ptr< xRooNLLVar > &nll=nullptr)
xRooFitResult cfit(const char *poiValues, const char *alias=nullptr)
xValueWithError pll(bool readOnly=false)
std::shared_ptr< RooStats::HypoTestResult > hypoTestResult
RooStats::HypoTestResult result()
std::shared_ptr< const RooFitResult > retrieveFit(int type)
std::vector< std::tuple< int, double, double > > altToys
std::shared_ptr< const RooAbsCollection > coords
std::shared_ptr< const RooFitResult > cfit_lbound(bool readOnly=false)
void Draw(Option_t *opt="") override
Default Draw method for all objects.
TString tsTitle(bool inWords=false) const
xValueWithError ts_toys(double nSigma=std::numeric_limits< double >::quiet_NaN())
std::shared_ptr< const RooFitResult > fUfit
xRooHypoPoint(std::shared_ptr< RooStats::HypoTestResult > htr=nullptr, const RooAbsCollection *_coords=nullptr)
xRooFit::Asymptotics::PLLType fPllType
xValueWithError sigma_mu(bool readOnly=false)
xValueWithError pAlt_asymp(double nSigma=std::numeric_limits< double >::quiet_NaN())
std::vector< std::tuple< int, double, double > > nullToys
std::shared_ptr< xRooHypoPoint > asimov(bool readOnly=false)
xValueWithError pAlt_toys(double nSigma=std::numeric_limits< double >::quiet_NaN())
std::shared_ptr< const RooFitResult > ufit(bool readOnly=false)
void Print(Option_t *opt="") const override
Print TNamed name and title.
std::shared_ptr< const RooFitResult > cfit_null(bool readOnly=false)
std::pair< std::shared_ptr< RooAbsData >, std::shared_ptr< const RooAbsCollection > > data()
xRooHypoPoint generateNull(int seed=0)
RooArgList alt_poi() const
xValueWithError pCLs_asymp(double nSigma=std::numeric_limits< double >::quiet_NaN())
std::shared_ptr< const RooFitResult > cfit_alt(bool readOnly=false)
size_t addToys(bool alt, int nToys, int initialSeed=0, double target=std::numeric_limits< double >::quiet_NaN(), double target_nSigma=std::numeric_limits< double >::quiet_NaN(), bool targetCLs=false, double relErrThreshold=2., size_t maxToys=10000)
void addAltToys(int nToys=1, int seed=0, double target=std::numeric_limits< double >::quiet_NaN(), double target_nSigma=std::numeric_limits< double >::quiet_NaN())
void addCLsToys(int nToys=1, int seed=0, double target=std::numeric_limits< double >::quiet_NaN(), double target_nSigma=std::numeric_limits< double >::quiet_NaN())
xRooHypoPoint generateAlt(int seed=0)
xValueWithError pX_toys(bool alt, double nSigma=std::numeric_limits< double >::quiet_NaN())
void addNullToys(int nToys=1, int seed=0, double target=std::numeric_limits< double >::quiet_NaN(), double target_nSigma=std::numeric_limits< double >::quiet_NaN())
xValueWithError ts_asymp(double nSigma=std::numeric_limits< double >::quiet_NaN())
xValueWithError getVal(const char *what)
xValueWithError pNull_asymp(double nSigma=std::numeric_limits< double >::quiet_NaN())
xValueWithError pNull_toys(double nSigma=std::numeric_limits< double >::quiet_NaN())
std::shared_ptr< RooArgSet > pars() const
xRooFit::Asymptotics::PLLType fTestStatType
bool AddModel(const xRooNode &pdf, const char *validity="")
std::map< std::shared_ptr< xRooNode >, std::shared_ptr< xRooNLLVar > > fNlls
std::set< std::pair< std::shared_ptr< RooArgList >, std::shared_ptr< xRooNode > > > fPdfs
This xRooNLLVar object has several special methods, e.g.
std::shared_ptr< RooAbsCollection > fFuncGlobs
void AddOption(const RooCmdArg &opt)
std::shared_ptr< const RooAbsCollection > fGlobs
std::shared_ptr< RooLinkedList > fOpts
std::shared_ptr< RooAbsReal > func() const
RooAbsData * data() const
std::set< std::string > binnedChannels() const
double binnedDataTerm() const
ROOT::Math::IOptions * fitConfigOptions()
RooConstraintSum * constraintTerm() const
std::shared_ptr< ROOT::Fit::FitConfig > fFitConfig
double saturatedConstraintTerm() const
double extendedTerm() const
xRooHypoSpace hypoSpace(const char *parName, int nPoints, double low, double high, double alt_value=std::numeric_limits< double >::quiet_NaN(), const xRooFit::Asymptotics::PLLType &pllType=xRooFit::Asymptotics::Unknown)
TObject * Scan(const RooArgList &scanPars, const std::vector< std::vector< double > > &coords, const RooArgList &profilePars=RooArgList())
std::shared_ptr< RooAbsCollection > fConstVars
xRooNLLVar(RooAbsPdf &pdf, const std::pair< RooAbsData *, const RooAbsCollection * > &data, const RooLinkedList &nllOpts=RooLinkedList())
std::shared_ptr< RooAbsPdf > pdf() const
double mainTermPgof() const
double saturatedMainTerm() const
void Print(Option_t *opt="")
std::string fFuncCreationLog
void Draw(Option_t *opt="")
std::pair< std::shared_ptr< RooAbsData >, std::shared_ptr< const RooAbsCollection > > generate(bool expected=false, int seed=0)
RooNLLVar * mainTerm() const
std::pair< std::shared_ptr< RooAbsData >, std::shared_ptr< const RooAbsCollection > > getData() const
double getEntryVal(size_t entry) const
double saturatedVal() const
std::shared_ptr< RooAbsCollection > fFuncVars
double getEntryBinWidth(size_t entry) const
std::shared_ptr< ROOT::Fit::FitConfig > fitConfig()
std::shared_ptr< RooArgSet > pars(bool stripGlobalObs=true) const
std::shared_ptr< RooAbsData > fData
double mainTermNdof() const
std::shared_ptr< RooAbsPdf > fPdf
bool setData(const std::pair< std::shared_ptr< RooAbsData >, std::shared_ptr< const RooAbsCollection > > &_data)
xRooHypoPoint hypoPoint(const char *parName, double value, double alt_value=std::numeric_limits< double >::quiet_NaN(), const xRooFit::Asymptotics::PLLType &pllType=xRooFit::Asymptotics::Unknown)
xRooFitResult minimize(const std::shared_ptr< ROOT::Fit::FitConfig > &=nullptr)
The xRooNode class is designed to wrap over a TObject and provide functionality to aid with interacti...
Generic interface for defining configuration options of a numerical algorithm.
void SetValue(const char *name, double val)
generic methods for retrieving options
virtual void SetNamedValue(const char *, const char *)
const_iterator begin() const
const_iterator end() const
Common abstract base class for objects that represent a value and a "shape" in RooFit.
TIterator Use servers() and begin()
bool dependsOn(const RooAbsCollection &serverList, const RooAbsArg *ignoreArg=nullptr, bool valueOnly=false) const
Test whether we depend on (ie, are served by) any object in the specified collection.
Abstract base class for objects that represent a discrete value that can be set from the outside,...
A space to attach TBranches.
Abstract container object that can hold multiple RooAbsArg objects.
Storage_t const & get() const
Const access to the underlying stl container.
virtual bool add(const RooAbsArg &var, bool silent=false)
Add the specified argument to list.
void setAttribAll(const Text_t *name, bool value=true)
Set given attribute in each element of the collection by calling each elements setAttribute() functio...
Int_t index(const RooAbsArg *arg) const
Returns index of given arg, or -1 if arg is not in the collection.
Storage_t::size_type size() const
RooAbsArg * first() const
Abstract base class for binned and unbinned datasets.
virtual double weight() const =0
virtual double sumEntries() const =0
Return effective number of entries in dataset, i.e., sum all weights.
virtual const RooArgSet * get() const
virtual Int_t numEntries() const
Return number of entries in dataset, i.e., count unweighted entries.
RooArgSet const * getGlobalObservables() const
Returns snapshot of global observables stored in this data.
Abstract interface for all probability density functions.
Abstract base class for objects that represent a real value that may appear on the left hand side of ...
virtual void setVal(double value)=0
Set the current value of the object. Needs to be overridden by implementations.
Abstract base class for objects that represent a real value and implements functionality common to al...
double getVal(const RooArgSet *normalisationSet=nullptr) const
Evaluate object.
virtual bool setData(RooAbsData &, bool=true)
bool setData(RooAbsData &data, bool cloneData=true) override
Change dataset that is used to given one.
RooArgList is a container object that can hold multiple RooAbsArg objects.
RooAbsArg * at(Int_t idx) const
Return object at given index, or nullptr if index is out of range.
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Object to represent discrete states.
Named container for two doubles, two integers two object points and three string pointers that can be...
Int_t getInt(Int_t idx) const
TObject * Clone(const char *newName=nullptr) const override
Make a clone of an object using the Streamer facility.
const char * getString(Int_t idx) const
Return string stored in slot idx.
Calculates the sum of the -(log) likelihoods of a set of RooAbsPfs that represent constraint function...
Container class to hold unbinned data.
RooFitResult is a container class to hold the input and output of a PDF fit to a dataset.
Collection class for internal use, storing a collection of RooAbsArg pointers in a doubly linked list...
static RooMsgService & instance()
Return reference to singleton instance.
Implements a -log(likelihood) calculation from a dataset and a PDF.
static TRandom * randomGenerator()
Return a pointer to a singleton random-number generator implementation.
Variable that can be changed from the outside.
void setVal(double value) override
Set value of variable to 'value'.
Facilitates simultaneous fitting of multiple PDFs to subsets of a given dataset.
HypoTestResult is a base class for results from hypothesis tests.
This class simply holds a sampling distribution of some test statistic.
A RooAbsArg implementing string values.
Draw all kinds of Arrows.
virtual TArrow * DrawArrow(Double_t x1, Double_t y1, Double_t x2, Double_t y2, Float_t arrowsize=0, Option_t *option="")
Draw this arrow with new coordinates.
virtual void SetLineStyle(Style_t lstyle)
Set the line style.
virtual void SetLineWidth(Width_t lwidth)
Set the line width.
static TCanvas * MakeDefCanvas()
Static function to build a default canvas.
const char * AsString() const
Return the date & time as a string (ctime() format).
Describe directory structure in memory.
virtual TKey * FindKeyAny(const char *) const
Class to handle efficiency histograms.
Graphics object made of three arrays X, Y and Z with the same number of points each.
A TGraph is an object made of two arrays X and Y with npoints each.
void SetName(const char *name="") override
Set graph name.
void Draw(Option_t *chopt="") override
Draw this graph with its current attributes.
void SetTitle(const char *title="") override
Change (i.e.
void SetNameTitle(const char *name="", const char *title="") override
Set graph name and title.
1-D histogram with a double per channel (see TH1 documentation)
TH1 is the base class of all histogram classes in ROOT.
This class displays a legend box (TPaveText) containing several legend entries.
void Draw(Option_t *option="") override
Draw this legend with its current attributes.
Use the TLine constructor to create a simple line.
virtual TLine * DrawLine(Double_t x1, Double_t y1, Double_t x2, Double_t y2)
Draw this line with new coordinates.
A TMultiGraph is a collection of TGraph (or derived) objects.
The TNamed class is the base class for all named ROOT classes.
const char * GetName() const override
Returns name of object.
const char * GetTitle() const override
Returns title of object.
Mother of all ROOT objects.
virtual void Delete(Option_t *option="")
Delete this object.
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
virtual void Draw(Option_t *option="")
Default Draw method for all objects.
Regular expression class.
Double_t RealTime()
Stop the stopwatch (if it is running) and return the realtime (in seconds) passed between the start a...
void Start(Bool_t reset=kTRUE)
Start the stopwatch.
void Continue()
Resume a stopped stopwatch.
Provides iteration through tokens of a given string.
Bool_t NextToken()
Get the next token, it is stored in this TString.
Int_t Atoi() const
Return integer value of string.
Double_t Atof() const
Return floating-point value contained in string.
const char * Data() const
Bool_t BeginsWith(const char *s, ECaseCompare cmp=kExact) const
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString.
Bool_t Contains(const char *pat, ECaseCompare cmp=kExact) const
Ssiz_t Index(const char *pat, Ssiz_t i=0, ECaseCompare cmp=kExact) const
Float_t GetPadRightMargin() const
Float_t GetPadLeftMargin() const
Float_t GetPadBottomMargin() const
Float_t GetPadTopMargin() const
virtual Bool_t ProcessEvents()
Process pending events (GUI, timers, sockets).
This class defines a UUID (Universally Unique IDentifier), also known as GUIDs (Globally Unique IDent...
TDatime GetTime() const
Get time from UUID.
TVirtualPad is an abstract base class for the Pad and Canvas classes.
RooCmdArg WeightVar(const char *name="weight", bool reinterpretAsWeight=false)
RooCmdArg GlobalObservables(Args_t &&... argsOrArgSet)
RooCmdArg GlobalObservablesSource(const char *sourceName)
double gaussian_pdf(double x, double sigma=1, double x0=0)
Probability density function of the normal (Gaussian) distribution.
double gaussian_cdf(double x, double sigma=1, double x0=0)
Alternative name for same function.
Double_t Prob(Double_t chi2, Int_t ndf)
Computation of the probability for a certain Chi-squared (chi2) and number of degrees of freedom (ndf...
Double_t Poisson(Double_t x, Double_t par)
Computes the Poisson distribution function for (x,par).
#define BEGIN_XROOFIT_NAMESPACE
#define END_XROOFIT_NAMESPACE
std::string collectionContents(const RooAbsCollection &coll)