47 if (
name ==
nullptr || strlen(
name) == 0) {
60 fPars->addClone(*std::unique_ptr<RooAbsCollection>(
result->GetParameters()));
62 for (
auto p : *
fPars) {
66 spaceSize *= (
v->getMax() -
v->getMin());
68 for (
int i = 0; i <
result->ArraySize(); i++) {
70 double xVal =
result->GetXValue(i);
71 double ssize = spaceSize;
72 for (
auto p : *
fPars) {
76 ssize /= (
v->getMax() -
v->getMin());
77 double remain = std::fmod(xVal, ssize);
78 v->setVal((xVal - remain) / ssize);
84 for (
auto &p : *
this) {
85 for (
auto a : *p.coords) {
86 if (!
fPars->find(
a->GetName()))
103 std::shared_ptr<xRooNode> out =
nullptr;
105 for (
auto &[_range, _pdf] :
fPdfs) {
108 bool collision =
true;
109 for (
auto &_lhs : *_range) {
110 auto _rhs = rhs.
find(*_lhs);
115 if (!(
v->getMin() <=
v2->getMax() &&
v2->getMin() <=
v->getMax())) {
120 if (!(
v->getMin() <=
c2->getVal() &&
c2->getVal() <=
v->getMax())) {
127 if (!(
c->getVal() <=
v2->getMax() &&
v2->getMin() <=
c->getVal())) {
132 if (!(
c->getVal() ==
c2->getVal())) {
141 throw std::runtime_error(
"Multiple pdf possibilities");
159 auto _idx = s.
Index(
'=');
168 _idx = _val.
Index(
',');
187 throw std::runtime_error(
"Unknown parameter");
188 _par->setAttribute(
"axis");
190 if (low < _par->getMin()) {
191 Warning(
"AddPoints",
"low edge of hypoSpace %g below lower bound of parameter: %g. Changing to lower bound", low,
193 low = _par->getMin();
195 if (high > _par->getMax()) {
196 Warning(
"AddPoints",
"high edge of hypoSpace %g above upper bound of parameter: %g. Changing to upper bound",
197 high, _par->getMax());
198 high = _par->getMax();
202 _par->setVal((high + low) * 0.5);
207 double step = (high - low) / (nPoints - 1);
209 throw std::runtime_error(
"Invalid steps");
211 for (
size_t i = 0; i < nPoints; i++) {
212 _par->setVal((i == nPoints - 1) ? high : (low + step * i));
220 if (
axes().empty()) {
223 throw std::runtime_error(
"No POI to scan");
225 poi().first()->setAttribute(
"axis");
231 poi().setAttribAll(
"poi",
false);
232 axes().setAttribAll(
"poi");
239 const std::vector<double> &nSigmas,
double relUncert)
247 throw std::runtime_error(
"scan type must be equal to one of: plr, cls, ts, pnull");
251 if (
axes().empty()) {
254 throw std::runtime_error(
"No POI to scan");
256 poi().first()->setAttribute(
"axis");
261 poi().setAttribAll(
"poi",
false);
262 axes().setAttribAll(
"poi");
270 if (empty() && relUncert == std::numeric_limits<double>::infinity()) {
272 ::Info(
"xRooHypoSpace::scan",
"Using default precision of 10%% for auto-scan");
275 for (
auto a :
axes()) {
276 if (!
a->hasRange(
"physical")) {
277 ::Info(
"xRooHypoSpace::scan",
"No physical range set for %s, setting to [0,inf]", p->GetName());
278 dynamic_cast<RooRealVar *
>(
a)->setRange(
"physical", 0, std::numeric_limits<double>::infinity());
280 if (!
a->getStringAttribute(
"altVal") || !strlen(p->getStringAttribute(
"altVal"))) {
281 ::Info(
"xRooHypoSpace::scan",
"No altVal set for %s, setting to 0",
a->GetName());
282 a->setStringAttribute(
"altVal",
"0");
285 double altVal =
TString(
a->getStringAttribute(
"altVal")).
Atof();
287 if (
v->getMin() >= altVal) {
288 ::Info(
"xRooHypoSpace::scan",
"range of POI does not straddle alt value, adjusting minimum to %g",
290 v->setMin(altVal - 1
e-5);
292 if (
v->getMax() <= altVal) {
293 ::Info(
"xRooHypoSpace::scan",
"range of POI does not straddle alt value, adjusting maximum to %g",
295 v->setMax(altVal + 1
e-5);
298 if (
auto _v =
dynamic_cast<RooRealVar *
>(nll->pars()->find(*
a))) {
299 _v->setRange(
v->getMin(),
v->getMax());
312 for (
auto a :
axes()) {
313 if (!
a->getStringAttribute(
"altVal") || !strlen(p->getStringAttribute(
"altVal"))) {
314 ::Info(
"xRooHypoSpace::scan",
"No altVal set for %s, setting to 1",
a->GetName());
315 a->setStringAttribute(
"altVal",
"1");
320 if ( (high == low && nPoints != 1)) {
323 low = p->getMin(
"scan");
324 high = p->getMax(
"scan");
326 if (!std::isnan(low) && !std::isnan(high) && !(std::isinf(low) && std::isinf(high))) {
327 p->setRange(
"scan", std::min(low, high), std::max(low, high));
331 for (
auto nSigma : nSigmas) {
332 if (std::isnan(nSigma)) {
341 relUncert = std::numeric_limits<double>::infinity();
350#if ROOT_VERSION_CODE >= ROOT_VERSION(6, 26, 00)
370 if (
auto myDb =
dynamic_cast<TMemFile *
>(fFitDb.get())) {
372 myDb->SetWritable(
true);
388 fFitDb = std::shared_ptr<TDirectory>(
389 new TMemFile(
TString::Format(
"fitDatabase_%s", TUUID().AsString()),
"RECREATE"), [](TDirectory *) {});
401 sType +=
" visualize";
406 if (p->hasRange(
"scan")) {
407 ::Info(
"xRooHypoSpace::scan",
"Using %s scan range: %g - %g", p->GetName(), p->getMin(
"scan"),
410 for (
double nSigma : nSigmas) {
412 if (std::isnan(nSigma)) {
418 findlimit(
TString::Format(
"%s exp%s%d", sType.
Data(), nSigma > 0 ?
"+" :
"",
int(nSigma)), relUncert);
420 if (std::isnan(res.first) || std::isnan(res.second)) {
422 }
else if (std::isinf(res.second)) {
429 AddPoint(
TString::Format(
"%s=%g", poi().first()->GetName(), poi().getRealValue(poi().first()->GetName())));
431 if (back().status() != 0) {
435 low = std::max(low, back().mu_hat().getVal() - back().mu_hat().getError() * 3);
436 high = std::min(high, back().mu_hat().getVal() + back().mu_hat().getError() * 3);
438 double step = (high - low) / (nPoints - 1);
439 for (
size_t i = 0; i < nPoints; i++) {
440 AddPoint(
TString::Format(
"%s=%g", poi().first()->GetName(), low + step * i));
442 if (back().status() != 0)
447 throw std::runtime_error(
TString::Format(
"Automatic scanning not yet supported for %s",
type));
452 AddPoint(
TString::Format(
"%s=%g", poi().first()->GetName(), (high + low) / 2.));
454 if (back().status() != 0)
457 double step = (high - low) / (nPoints - 1);
458 for (
size_t i = 0; i < nPoints; i++) {
459 AddPoint(
TString::Format(
"%s=%g", poi().first()->GetName(), low + step * i));
461 if (back().status() != 0)
470 if (
auto myDb =
dynamic_cast<TMemFile *
>(fFitDb.get())) {
472 myDb->SetWritable(
false);
477std::map<std::string, xRooNLLVar::xValueWithError>
484 relUncert = std::numeric_limits<double>::infinity();
487 scan(opt, nSigmas, relUncert);
489 std::map<std::string, xRooNLLVar::xValueWithError> out;
490 for (
auto nSigma : nSigmas) {
491 auto lim =
limit(opt, nSigma);
493 lim.second = -lim.second;
511 auto _idx = s.
Index(
'=');
522 _v->setVal(_val.
Atof());
529 throw std::runtime_error(
"no model at coordinates");
537 fNlls[_pdf] = std::make_shared<xRooNLLVar>(_pdf->nll(
"" , {}));
557 ->
remove(*std::unique_ptr<RooAbsCollection>(out.
coords->selectByAttrib(
"Constant",
false)),
true,
true);
560 double alt_value = out.
fAltVal();
565 if (std::isnan(alt_value)) {
567 }
else if (
value >= alt_value) {
577 for (
auto &p : *
this) {
578 if (p.nllVar != out.
nllVar)
580 if (p.fData != out.
fData)
582 if (!p.alt_poi().equals(out.
alt_poi()))
585 for (
auto c : p.alt_poi()) {
599 if (!p.coords->equals(*out.
coords))
601 for (
auto c : *p.coords) {
602 if (
c->getAttribute(
"poi")) {
606 v && std::abs(
v->getVal() - out.
coords->getRealValue(
v->GetName())) > 1
e-12) {
620 if (
auto cfit = p.cfit_alt(
true)) {
623 if (p.asimov(
true) && p.asimov(
true)->fData.first && (!out.
asimov(
true) || !out.
asimov(
true)->fData.first)) {
624 out.
asimov()->fData = p.asimov(
true)->fData;
626 if (!p.poi().equals(out.
poi()))
628 for (
auto c : p.poi()) {
641 std::string coordString;
642 for (
auto a :
axes()) {
646 coordString.erase(coordString.end() - 1);
649 auto s =
TString::Format(
"Info in <xRooHypoSpace::AddPoint>: Added new point @ %s", coordString.c_str());
655 ::Info(
"xRooHypoSpace::AddPoint",
"Added new point @ %s", coordString.c_str());
657 return emplace_back(out);
664 throw std::runtime_error(
"Not a pdf");
670 auto vpars =
toArgs(validity);
672 vpars.remove(
pars,
true,
true);
675 if (
auto existing =
pdf(
pars)) {
676 throw std::runtime_error(std::string(
"Clashing model: ") + existing->GetName());
679 auto myPars = std::shared_ptr<RooArgList>(
dynamic_cast<RooArgList *
>(
pars.snapshot()));
686 fPdfs.insert(std::make_pair(myPars, std::make_shared<xRooNode>(_pdf)));
697 out.
add(*std::unique_ptr<RooAbsCollection>(
698 fPars->selectByAttrib(
"axis",
true)));
704 std::set<std::vector<double>> coords;
705 for (
auto &p : *
this) {
706 std::vector<double> p_coords;
708 auto _v =
dynamic_cast<RooRealVar *
>(p.coords->find(o->GetName()));
710 (_v && _v->isConstant())
712 : std::numeric_limits<double>::infinity());
715 if (coords.find(p_coords) != coords.end()) {
719 coords.insert(p_coords);
724 std::map<std::string, std::unordered_set<double>> values;
725 for (
auto &par : *
pars()) {
728 for (
auto p : *
this) {
729 auto _v =
dynamic_cast<RooRealVar *
>(p.coords->find(par->GetName()));
730 values[par->GetName()].insert(
731 (_v && _v->isConstant())
733 : std::numeric_limits<double>::infinity());
742 for (
auto &[k,
v] : values) {
743 if (
v.size() > maxDiff || (
v.size() == maxDiff && !isPOI &&
pars()->find(k.c_str())->getAttribute(
"poi"))) {
745 isPOI =
pars()->find(k.c_str())->getAttribute(
"poi");
746 maxDiff = std::max(maxDiff,
v.size());
749 if (bestVar.empty()) {
753 out.
add(*
pars()->find(bestVar.c_str()));
769 out.
add(*std::unique_ptr<RooAbsCollection>(
pars()->selectByAttrib(
"poi",
true)));
780 for (
size_t i = 0; i <
size(); i++) {
781 std::cout << i <<
") ";
782 for (
auto a : _axes) {
783 if (
a != _axes.first())
785 std::cout <<
a->GetName() <<
"="
786 << at(i).coords->getRealValue(
a->GetName(), std::numeric_limits<double>::quiet_NaN());
788 std::cout <<
" status=[ufit:";
793 std::cout << ufit->status();
796 std::cout <<
",cfit_null:";
797 auto cfit =
const_cast<xRooHypoPoint &
>(at(i)).cfit_null(
true);
801 std::cout << cfit->status();
804 std::cout <<
",cfit_alt:";
805 auto afit =
const_cast<xRooHypoPoint &
>(at(i)).cfit_alt(
true);
809 std::cout << afit->status();
812 if (
auto asiPoint =
const_cast<xRooHypoPoint &
>(at(i)).asimov(
true)) {
813 std::cout <<
",asimov.ufit:";
814 auto asi_ufit = asiPoint->ufit(
true);
818 std::cout << asi_ufit->status();
821 std::cout <<
",asimov.cfit_null:";
822 auto asi_cfit = asiPoint->cfit_null(
true);
826 std::cout << asi_cfit->status();
829 auto cfit_lbound =
const_cast<xRooHypoPoint &
>(at(i)).cfit_lbound(
true);
832 std::cout <<
",cfit_lbound:" << cfit_lbound->status();
837 auto sigma_mu =
const_cast<xRooHypoPoint &
>(at(i)).sigma_mu(
true);
838 if (!std::isnan(sigma_mu.first)) {
839 std::cout <<
" sigma_mu=" << sigma_mu.first;
841 std::cout <<
" +/- " << sigma_mu.second;
843 std::cout << std::endl;
845 std::cout <<
"--------------------------" << std::endl;
846 std::cout <<
"Number of bad fits: " << badFits << std::endl;
850 const char *opt )
const
857 bool readOnly = sOpt.
Contains(
"readonly");
858 bool visualize = sOpt.
Contains(
"visualize") && !readOnly;
865 : std::numeric_limits<double>::quiet_NaN();
867 !std::isnan(nSigma) && nSigma && !(sOpt(sOpt.
Index(
"exp") + 3) ==
'+' || sOpt(sOpt.
Index(
"exp") + 3) ==
'-');
870 if (_axes.size() != 1)
873 auto out = std::make_shared<TGraphErrors>();
875 out->SetEditable(
false);
876 const char *sCL = (doCLs) ?
"CLs" :
"null";
882 : (!nSigma ?
"Expected"
884 expBand || !nSigma ?
"" : ((nSigma < 0) ?
"-" :
"+"),
int(nSigma))
886 _axes.at(0)->GetTitle(), sCL);
888 if (std::isnan(nSigma)) {
890 out->SetMarkerStyle(20);
891 out->SetMarkerSize(0.5);
893 out->SetNameTitle(
"obs_ts",
TString::Format(
"Observed;%s;%s", _axes.at(0)->GetTitle(),
894 (empty() ?
"" : front().tsTitle(
true).Data())));
897 out->SetNameTitle(
TString::Format(
"exp%d_p%s",
int(nSigma), sCL), title);
898 out->SetMarkerStyle(0);
899 out->SetMarkerSize(0);
900 out->SetLineStyle(2 +
int(nSigma));
901 if (expBand && nSigma) {
904 out->SetLineStyle(0);
905 out->SetLineWidth(0);
906 auto x = out->Clone(
"up");
910 out->GetListOfFunctions()->Add(
x,
"F");
911 x = out->Clone(
"down");
915 out->GetListOfFunctions()->Add(
x,
"F");
919 TString::Format(
"Expected;%s;%s", _axes.at(0)->GetTitle(), front().tsTitle(
true).Data()));
923 auto badPoints = [&]() {
924 auto badPoints2 =
dynamic_cast<TGraph *
>(out->GetListOfFunctions()->
FindObject(
"badPoints"));
928 badPoints2->SetName(
"badPoints");
929 badPoints2->SetMarkerStyle(5);
930 badPoints2->SetMarkerColor(std::isnan(nSigma) ?
kRed :
kBlue);
931 badPoints2->SetMarkerSize(1);
932 out->GetListOfFunctions()->Add(badPoints2,
"P");
941 for (
auto &p : *
this) {
945 auto gra =
graph(sOpt +
" readOnly");
946 if (gra && gra->GetN()) {
948 gROOT->GetSelectedPad()->cd();
951 gra->DrawClone(expBand ?
"AF" :
"ALP")->SetBit(
kCanDelete);
952#if ROOT_VERSION_CODE >= ROOT_VERSION(6, 30, 00)
953 if (
auto pad =
gROOT->GetSelectedPad()) {
954 pad->GetCanvas()->ResetUpdated();
960 ::Info(
"xRooHypoSpace::graph",
"Completed %d/%d points for %s",
int(nDone),
int(
size()), sOpt.
Data());
966 double _x = p.coords->getRealValue(_axes.at(0)->GetName(), std::numeric_limits<double>::quiet_NaN());
968 auto idx = out->GetN() - nPointsDown;
970 if (std::isnan(pval.first)) {
971 if (p.status() != 0) {
972 badPoints()->SetPoint(badPoints()->GetN(), _x, 0);
975 out->InsertPointBefore(idx, _x, pval.first);
976 out->SetPointError(idx, 0, pval.second);
979 if (expBand && nSigma) {
983 if (std::isnan(pval.first)) {
984 if (p.status() != 0) {
985 badPoints()->SetPoint(badPoints()->GetN(), _x, 0);
988 out->InsertPointBefore(idx + 1, _x, pval.first);
989 out->SetPointError(idx + 1, 0, pval.second);
991 if (out->GetPointY(idx) < pval.first)
998 if (out->GetN() == 0)
1003 if (out->GetListOfFunctions()->FindObject(
"badPoints")) {
1005 for (
int i = 0; i < badPoints()->GetN(); i++) {
1006 badPoints()->SetPointY(i, out->Eval(badPoints()->GetPointX(i)));
1011 out->Sort(&
TGraph::CompareX,
false, out->GetN() - nPointsDown, out->GetN() - 1);
1014 auto up =
dynamic_cast<TGraph *
>(out->GetListOfFunctions()->
FindObject(
"up"));
1015 auto down =
dynamic_cast<TGraph *
>(out->GetListOfFunctions()->
FindObject(
"down"));
1017 for (
int i = 0; i < out->GetN(); i++) {
1018 if (i < out->GetN() - nPointsDown) {
1019 up->SetPoint(up->GetN(), out->GetPointX(i), out->GetPointY(i) + out->GetErrorY(i) * (above ? 1. : -1.));
1024 down->SetPoint(down->GetN(), out->GetPointX(i), out->GetPointY(i) + out->GetErrorY(i) * (above ? 1. : -1.));
1028 for (
int i = out->GetN() - 1; i >= 0; i--) {
1029 if (i < out->GetN() - nPointsDown) {
1030 up->SetPoint(up->GetN(), out->GetPointX(i), out->GetPointY(i) - out->GetErrorY(i) * (above ? 1. : -1.));
1035 down->SetPoint(down->GetN(), out->GetPointX(i), out->GetPointY(i) - out->GetErrorY(i) * (above ? 1. : -1.));
1043 gROOT->GetSelectedPad()->cd();
1046 out->DrawClone(expBand ?
"AF" :
"ALP")->SetBit(
kCanDelete);
1047#if ROOT_VERSION_CODE >= ROOT_VERSION(6, 30, 00)
1048 if (
auto pad =
gROOT->GetSelectedPad()) {
1049 pad->GetCanvas()->ResetUpdated();
1062 std::shared_ptr<TMultiGraph> out;
1065 bool visualize = sOpt.
Contains(
"visualize");
1068 auto exp2 =
graph(sOpt +
" exp2");
1069 auto exp1 =
graph(sOpt +
" exp1");
1070 auto exp =
graph(sOpt +
" exp");
1073 auto obs = (doObs) ?
graph(sOpt) :
nullptr;
1076 if (exp2 && exp2->GetN() > 1)
1077 out->Add(
static_cast<TGraph *
>(exp2->Clone()),
"FP");
1078 if (exp1 && exp1->GetN() > 1)
1079 out->Add(
static_cast<TGraph *
>(exp1->Clone()),
"FP");
1080 if (exp && exp->GetN() > 1)
1081 out->Add(
static_cast<TGraph *
>(exp->Clone()),
"LP");
1082 if (obs && obs->GetN() > 1)
1083 out->Add(
static_cast<TGraph *
>(obs->Clone()),
"LP");
1085 if (!out->GetListOfGraphs()) {
1089 TGraph *testedPoints =
nullptr;
1092 line->SetName(
"alpha");
1093 line->SetLineStyle(2);
1094 line->SetEditable(
false);
1095 line->SetPoint(
line->GetN(), out->GetHistogram()->GetXaxis()->GetXmin() - 10, 0.05);
1096 testedPoints =
new TGraph;
1097 testedPoints->
SetName(
"hypoPoints");
1102 for (
int i = 0; i < exp->GetN(); i++) {
1103 testedPoints->
SetPoint(testedPoints->
GetN(), exp->GetPointX(i), 0.05);
1106 line->SetPoint(
line->GetN(), out->GetHistogram()->GetXaxis()->GetXmax() + 10, 0.05);
1108 out->GetListOfFunctions()->Add(
line,
"L");
1111 out->GetHistogram()->GetXaxis()->SetTitle(exp->GetHistogram()->GetXaxis()->GetTitle());
1112 out->GetHistogram()->GetYaxis()->SetTitle(exp->GetHistogram()->GetYaxis()->GetTitle());
1115 if (out->GetListOfGraphs()->GetEntries() > 1) {
1117 1. -
gStyle->GetPadRightMargin() - 0.05, 1. -
gStyle->GetPadTopMargin() - 0.05);
1118 leg->SetName(
"legend");
1121 out->GetListOfFunctions()->Add(
leg);
1124 for (
auto g : *out->GetListOfGraphs()) {
1126 leg->AddEntry(
g,
"",
"F");
1128 leg->AddEntry(
g,
"",
"LPE");
1133 auto addToLegend = [](
TLegend *
l,
const char *label,
const std::pair<double, double> val) {
1136 TString::Format(
"%s%s: %g #pm %g%s", std::isfinite(val.second) ?
"" :
"#color[2]{", label,
1137 val.first, val.second, std::isfinite(val.second) ?
"" :
"}"),
1144 if (exp2 && exp2->GetN() > 1) {
1146 addToLegend(
leg,
"-2#sigma",
l);
1148 if (exp1 && exp1->GetN() > 1) {
1150 addToLegend(
leg,
"-1#sigma",
l);
1152 if (exp && exp->GetN() > 1) {
1154 addToLegend(
leg,
"0#sigma",
l);
1156 if (exp1 && exp1->GetN() > 1) {
1158 addToLegend(
leg,
"+1#sigma",
l);
1160 if (exp2 && exp2->GetN() > 1) {
1162 addToLegend(
leg,
"+2#sigma",
l);
1164 if (obs && obs->GetN() > 1) {
1166 addToLegend(
leg,
"Observed",
l);
1170 out->Add(testedPoints,
"P");
1174 gROOT->GetSelectedPad()->cd();
1177 auto gra2 =
static_cast<TMultiGraph *
>(out->DrawClone(
"A"));
1180 gra2->SetMinimum(1
e-6);
1181 gra2->SetMaximum(1);
1185 gPad->GetCanvas()->Paint();
1186 gPad->GetCanvas()->Update();
1187#if ROOT_VERSION_CODE >= ROOT_VERSION(6, 30, 00)
1188 gPad->GetCanvas()->ResetUpdated();
1201 if (std::isnan(
target)) {
1202 target = 1. -
gEnv->GetValue(
"xRooHypoSpace.CL", 95.) / 100.;
1205 auto gr = std::make_shared<TGraph>(pValues);
1208 std::set<double> existingX;
1209 while (i < gr->GetN()) {
1210 if (std::isnan(
gr->GetPointY(i))) {
1212 }
else if (existingX.find(
gr->GetPointX(i)) != existingX.end()) {
1215 existingX.insert(
gr->GetPointX(i));
1217 gr->SetPointY(i, log(std::max(
gr->GetPointY(i), 1
e-10)));
1225 if (
gr->GetN() < 2) {
1226 return std::pair<double, double>(std::numeric_limits<double>::quiet_NaN(), 0);
1229 double alpha = log(
target);
1231 bool above =
gr->GetPointY(0) > alpha;
1232 for (
int ii = 1; ii <
gr->GetN(); ii++) {
1233 if ((above && (
gr->GetPointY(ii) <= alpha)) || (!above && (
gr->GetPointY(ii) >= alpha))) {
1235 double lim =
gr->GetPointX(ii - 1) + (
gr->GetPointX(ii) -
gr->GetPointX(ii - 1)) *
1236 (alpha -
gr->GetPointY(ii - 1)) /
1237 (
gr->GetPointY(ii) -
gr->GetPointY(ii - 1));
1239 double err = std::max(lim -
gr->GetPointX(ii - 1),
gr->GetPointX(ii) - lim);
1241 if ((lim -
gr->GetPointX(ii - 1)) > (
gr->GetPointX(ii) - lim))
1243 return std::pair(lim, err);
1247 if ((above &&
gr->GetPointY(
gr->GetN() - 1) <=
gr->GetPointY(0)) ||
1248 (!above &&
gr->GetPointY(
gr->GetN() - 1) >=
gr->GetPointY(0))) {
1256 double m = (
gr->GetPointY(
gr->GetN() - 1) -
y1) / (
gr->GetPointX(
gr->GetN() - 1) -
x1);
1258 return std::pair(std::numeric_limits<double>::infinity(), std::numeric_limits<double>::infinity());
1259 return std::pair((alpha -
y1) /
m +
x1, std::numeric_limits<double>::infinity());
1262 double x1 =
gr->GetPointX(0);
1263 double y1 =
gr->GetPointY(0);
1264 double m = (
gr->GetPointY(1) -
y1) / (
gr->GetPointX(1) -
x1);
1266 return std::pair(-std::numeric_limits<double>::infinity(), -std::numeric_limits<double>::infinity());
1267 return std::pair((alpha -
y1) /
m +
x1, -std::numeric_limits<double>::infinity());
1274 if (std::isnan(nSigma)) {
1277 sOpt +=
TString::Format(
"exp%s%d", nSigma > 0 ?
"+" :
"",
int(nSigma));
1286 bool visualize = sOpt.
Contains(
"visualize");
1288 std::shared_ptr<TGraphErrors>
gr =
graph(sOpt +
" readonly");
1290 auto gra =
graphs(sOpt.
Contains(
"toys") ?
"pcls readonly toys" :
"pcls readonly");
1295 auto gra2 =
static_cast<TMultiGraph *
>(gra->DrawClone(
"A"));
1297 gra2->SetMinimum(1
e-9);
1298 gra2->SetMaximum(1);
1300 gPad->GetCanvas()->Paint();
1301 gPad->GetCanvas()->Update();
1302#if ROOT_VERSION_CODE >= ROOT_VERSION(6, 30, 00)
1303 gPad->GetCanvas()->ResetUpdated();
1310 for (
auto p :
axes()) {
1312 if (
auto _v =
dynamic_cast<RooRealVar *
>(nll->pars()->find(*p))) {
1313 dynamic_cast<RooRealVar *
>(p)->setRange(_v->getMin(), _v->getMax());
1318 if (!
gr ||
gr->GetN() < 2) {
1321 return std::pair(std::numeric_limits<double>::quiet_NaN(), 0.);
1322 double muMax = std::min(std::min(
v->getMax(
"physical"),
v->getMax()),
v->getMax(
"scan"));
1323 double muMin = std::max(std::max(
v->getMin(
"physical"),
v->getMin()),
v->getMin(
"scan"));
1324 if (!
gr ||
gr->GetN() < 1) {
1327 ::Error(
"findlimit",
"Problem evaluating First Point %s @ %s=%g", sOpt.
Data(),
v->GetName(), muMin);
1328 return std::pair(std::numeric_limits<double>::quiet_NaN(), 0.);
1331 return findlimit(opt, relUncert, maxTries - 1);
1338 double nextPoint = muMin + (muMax - muMin) / 50;
1344 auto expLim =
findlimit(sOpt2, std::numeric_limits<double>::infinity(), 0);
1345 if (!std::isnan(expLim.first) && expLim.first < nextPoint)
1346 nextPoint = expLim.first;
1350 (sOpt.
Contains(
"exp")) ? back().asimov() : std::shared_ptr<xRooHypoPoint>(&back(), [](
xRooHypoPoint *) {});
1353 double rough_sigma_mu =
point->mu_hat().getError();
1356 nextPoint = another_estimate;
1357 ::Info(
"xRooHypoSpace::findlimit",
"Guessing %g based on rough sigma_mu = %g", nextPoint, rough_sigma_mu);
1363 ::Error(
"xRooHypoSpace::findlimit",
"Problem evaluating Second Point %s @ %s=%g", sOpt.
Data(),
v->GetName(),
1365 return std::pair(std::numeric_limits<double>::quiet_NaN(), 0.);
1368 return findlimit(opt, relUncert, maxTries - 1);
1373 if (std::isnan(lim.first)) {
1378 double maxMu = std::min(std::min(
v->getMax(
"physical"),
v->getMax()),
v->getMax(
"scan"));
1379 double minMu = std::max(std::max(
v->getMin(
"physical"),
v->getMin()),
v->getMin(
"scan"));
1382 if (lim.first > -std::numeric_limits<double>::infinity() && lim.first < std::numeric_limits<double>::infinity() &&
1383 (std::abs(lim.second) <= relUncert * std::abs(lim.first) ))
1388 if (lim.second == std::numeric_limits<double>::infinity()) {
1390 nextPoint = lim.first;
1391 if (nextPoint == std::numeric_limits<double>::infinity() || nextPoint > maxMu) {
1392 nextPoint =
gr->GetPointX(
gr->GetN() - 1) + (maxMu - minMu) / 50;
1398 (sOpt.
Contains(
"exp")) ? back().asimov() : std::shared_ptr<xRooHypoPoint>(&back(), [](
xRooHypoPoint *) {});
1401 double rough_sigma_mu =
point->mu_hat().getError();
1404 nextPoint = std::max(nextPoint, another_estimate);
1405 ::Info(
"xRooHypoSpace::findlimit",
"Guessing %g based on rough sigma_mu = %g", nextPoint, rough_sigma_mu);
1408 nextPoint = std::min(nextPoint + nextPoint * relUncert * 0.99, maxMu);
1410 if (nextPoint > maxMu)
1412 }
else if (lim.second == -std::numeric_limits<double>::infinity()) {
1414 nextPoint = lim.first;
1415 if (nextPoint < minMu)
1416 nextPoint =
gr->GetPointX(0) - (maxMu - minMu) / 50;
1417 if (nextPoint < minMu)
1420 nextPoint = lim.first + lim.second * relUncert * 0.99;
1426 if (maxTries == 0) {
1427 ::Warning(
"xRooHypoSpace::findlimit",
"Reached max number of point evaluations");
1431 ::Info(
"xRooHypoSpace::findlimit",
"%s -- Testing new point @ %s=%g (delta=%g)", sOpt.
Data(),
v->GetName(),
1432 nextPoint, lim.second);
1434 ::Error(
"xRooHypoSpace::findlimit",
"Problem evaluating %s @ %s=%g", sOpt.
Data(),
v->GetName(), nextPoint);
1438 return findlimit(opt, relUncert, maxTries - 1);
1447 if ((sOpt ==
"" || sOpt ==
"same") && !empty()) {
1450 for (
auto &hp : *
this) {
1451 if (!hp.nullToys.empty() || !hp.altToys.empty()) {
1462 auto _axes =
axes();
1466 if (sOpt ==
"status") {
1468 if (_axes.size() <= 2) {
1483 badPoints->
SetName(
"bad_ufit");
1489 badPoints2->
SetName(
"bad_cfit_null");
1496 (_axes.size() == 1) ?
"" : _axes.at(1)->GetTitle()));
1497 for (
auto &p : *
this) {
1498 bool _readOnly = p.nllVar ? p.nllVar->get()->getAttribute(
"readOnly") :
false;
1500 p.nllVar->get()->setAttribute(
"readOnly",
true);
1501 double x = p.coords->getRealValue(_axes.at(0)->GetName());
1502 double y = _axes.size() == 1 ? p.ts_asymp().first : p.coords->getRealValue(_axes.at(1)->GetName());
1504 if (!std::isnan(p.ts_asymp().first)) {
1505 if (_axes.size() == 1)
1508 }
else if (p.fUfit && (std::isnan(p.fUfit->minNll()) ||
1512 }
else if (p.fNull_cfit && (std::isnan(p.fNull_cfit->minNll()) ||
1517 if (!std::isnan(p.ts_asymp(0).first)) {
1519 }
else if (p.asimov() && p.asimov()->fUfit &&
1520 (std::isnan(p.asimov()->fUfit->minNll()) ||
1524 }
else if (p.asimov() && p.asimov()->fNull_cfit &&
1525 (std::isnan(p.asimov()->fNull_cfit->minNll()) ||
1530 p.nllVar->get()->setAttribute(
"readOnly", _readOnly);
1533 if (_axes.size() == 1) {
1535 for (
int i = 0; i < out->
GetN(); i++) {
1539 auto fixPoints = [&](
TGraph *
g) {
1540 for (
int i = 0; i <
g->GetN(); i++) {
1541 if (std::isnan(
g->GetPointY(i)))
1542 g->SetPointY(i, std::isnan(tmp.
Eval(
g->GetPointX(i))) ? 0. : tmp.
Eval(
g->GetPointX(i)));
1547 fixPoints(expAvail);
1548 fixPoints(badPoints);
1549 fixPoints(badPoints2);
1554 auto leg =
new TLegend(1. -
gPad->GetRightMargin() - 0.3, 1. -
gPad->GetTopMargin() - 0.35,
1555 1. -
gPad->GetRightMargin() - 0.05, 1. -
gPad->GetTopMargin() - 0.05);
1556 leg->SetName(
"legend");
1557 leg->AddEntry(out,
"Uncomputed",
"P");
1559 if (tsAvail->
GetN()) {
1561 leg->AddEntry(tsAvail,
"Computed",
"P");
1565 if (expAvail->
GetN()) {
1567 leg->AddEntry(expAvail,
"Expected computed",
"P");
1571 if (badPoints->
GetN()) {
1573 leg->AddEntry(badPoints,
"Bad ufit",
"P");
1577 if (badPoints2->
GetN()) {
1579 leg->AddEntry(badPoints2,
"Bad null cfit",
"P");
1586 gPad->SetGrid(
true, _axes.size() > 1);
1587 if (_axes.size() == 1)
1588 gPad->SetLogy(
false);
1597 auto gra =
graphs(sOpt +
" readonly");
1599 gROOT->GetSelectedPad()->cd();
1609 gra2->SetMinimum(1
e-6);
1610 gra2->SetMaximum(1);
1614 gPad->GetCanvas()->Paint();
1615 gPad->GetCanvas()->Update();
1616#if ROOT_VERSION_CODE >= ROOT_VERSION(6, 30, 00)
1617 gPad->GetCanvas()->ResetUpdated();
1643 if (!empty() &&
axes().
size() == 1) {
1644 for (
auto &p : *
this) {
1646 pllType = p.fPllType;
1650 title += front().tsTitle(
true);
1654 *
dynamic_cast<TAttFill *
>(out) = *
this;
1655 *
dynamic_cast<TAttLine *
>(out) = *
this;
1665 bool doFits =
false;
1671 auto mainPad =
gPad;
1678 gPad->SetBottomMargin(
gPad->GetBottomMargin() * 2.);
1682 mainPad = basePad->
GetPad(1);
1688 std::pair<double, double> minMax(std::numeric_limits<double>::infinity(), -std::numeric_limits<double>::infinity());
1689 for (
auto &p : *
this) {
1690 if (p.fPllType != pllType)
1692 auto val = p.pll(
true).first;
1693 if (std::isnan(val))
1695 minMax.first = std::min(minMax.first, val);
1696 minMax.second = std::max(minMax.second, val);
1698 if (minMax.first < std::numeric_limits<double>::infinity())
1700 if (minMax.second > -std::numeric_limits<double>::infinity())
1703 TGraph *badPoints =
nullptr;
1707 std::shared_ptr<const RooFitResult> ufr;
1708 for (
auto &p : *
this) {
1709 if (p.fPllType != pllType)
1711 auto val = p.pll().first;
1714 if (out->
GetN() == 0 && ufr && ufr->status() == 0) {
1716 ufr->floatParsFinal().getRealValue(
axes().first()->
GetName(),
1717 ufr->constPars().getRealValue(
axes().first()->
GetName())),
1721 if (
auto fr = p.fNull_cfit;
1727 pad->SetNumber(out->
GetN() + 1);
1734 if (std::isnan(val) && p.status() != 0) {
1738 badPoints->
SetName(
"badPoints");
1744 badPoints->
SetPoint(badPoints->
GetN(), p.fNullVal(), out->
Eval(p.fNullVal()));
1745 mainPad->Modified();
1746 }
else if (!std::isnan(val)) {
1753 for (
int i = 0; i < badPoints->
GetN(); i++)
1757 mainPad->Modified();
1770#if ROOT_VERSION_CODE >= ROOT_VERSION(6, 30, 00)
1776 if (ufr && doFits) {
1778 auto pad =
new TPad(ufr->GetName(),
"unconditional fit", 0, 0, 1., 1.);
1786 pad =
new TPad(
"selected",
"selected", 0, 0, 1, 1);
1801 gPad->GetCanvas()->Connect(
"Highlighted(TVirtualPad*,TObject*,Int_t,Int_t)",
"xRooNode::InteractiveObject",
1813 auto _axes =
axes();
1820 for (
auto &p : *
this) {
1821 double _x = p.coords->getRealValue(_axes.at(0)->GetName(), std::numeric_limits<double>::quiet_NaN());
1822 out->
Add(_x, p.result());
size_t size(const MatrixT &matrix)
retrieve the size of a square matrix
const char Option_t
Option string (const char)
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.
void Warning(const char *location, const char *msgfmt,...)
Use this function in warning situations.
Option_t Option_t SetFillStyle
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 offset
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 value
Option_t Option_t TPoint TPoint const char x1
Option_t Option_t SetFillColor
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
Option_t Option_t TPoint TPoint const char y1
R__EXTERN TStyle * gStyle
R__EXTERN TSystem * gSystem
static std::pair< double, double > matchPrecision(const std::pair< double, double > &in)
std::pair< std::shared_ptr< RooAbsData >, std::shared_ptr< const RooAbsCollection > > fData
std::shared_ptr< const RooAbsCollection > coords
std::shared_ptr< xRooNLLVar > nllVar
xRooFit::Asymptotics::PLLType fPllType
std::shared_ptr< xRooHypoPoint > asimov(bool readOnly=false)
RooArgList alt_poi() const
std::shared_ptr< const RooFitResult > fAlt_cfit
static std::set< int > allowedStatusCodes
xValueWithError limit(const char *type="cls", double nSigma=std::numeric_limits< double >::quiet_NaN()) const
std::shared_ptr< RooArgSet > pars() const
xRooFit::Asymptotics::PLLType fTestStatType
xRooHypoPoint & point(size_t i)
RooStats::HypoTestInverterResult * result()
static xValueWithError GetLimit(const TGraph &pValues, double target=std::numeric_limits< double >::quiet_NaN())
std::map< std::string, xValueWithError > limits(const char *opt="cls", const std::vector< double > &nSigmas={0, 1, 2, -1, -2, std::numeric_limits< double >::quiet_NaN()}, double relUncert=std::numeric_limits< double >::infinity())
bool AddModel(const xRooNode &pdf, const char *validity="")
std::map< std::shared_ptr< xRooNode >, std::shared_ptr< xRooNLLVar > > fNlls
std::shared_ptr< TMultiGraph > graphs(const char *opt)
static RooArgList toArgs(const char *str)
xValueWithError findlimit(const char *opt, double relUncert=std::numeric_limits< double >::infinity(), unsigned int maxTries=20)
int AddPoints(const char *parName, size_t nPoints, double low, double high)
std::shared_ptr< TGraphErrors > graph(const char *opt) const
std::shared_ptr< RooArgSet > fPars
void Print(Option_t *opt="") const override
Print TNamed name and title.
xRooHypoSpace(const char *name="", const char *title="")
xRooHypoPoint & AddPoint(double value)
int scan(const char *type, size_t nPoints, double low=std::numeric_limits< double >::quiet_NaN(), double high=std::numeric_limits< double >::quiet_NaN(), const std::vector< double > &nSigmas={0, 1, 2, -1, -2, std::numeric_limits< double >::quiet_NaN()}, double relUncert=0.1)
std::shared_ptr< xRooNode > pdf(const RooAbsCollection &parValues) const
void Draw(Option_t *opt="") override
Default Draw method for all objects.
std::set< std::pair< std::shared_ptr< RooArgList >, std::shared_ptr< xRooNode > > > fPdfs
std::shared_ptr< RooAbsPdf > pdf() const
std::shared_ptr< RooArgSet > pars(bool stripGlobalObs=true) const
The xRooNode class is designed to wrap over a TObject and provide functionality to aid with interacti...
void Draw(Option_t *opt="") override
Default Draw method for all objects.
RooArgList argList() const
static InteractiveObject * gIntObj
xRooNode pars() const
List of parameters (non-observables) of this node.
bool getAttribute(const Text_t *name) const
Check if a named attribute is set. By default, all attributes are unset.
A space to attach TBranches.
virtual value_type getCurrentIndex() const
Return index number of current state.
Abstract container object that can hold multiple RooAbsArg objects.
RooAbsCollection * selectByAttrib(const char *name, bool value) const
Create a subset of the current collection, consisting only of those elements with the specified attri...
double getRealValue(const char *name, double defVal=0.0, bool verbose=false) const
Get value of a RooAbsReal stored in set with given name.
Int_t getCatIndex(const char *name, Int_t defVal=0, bool verbose=false) const
Get index value of a RooAbsCategory stored in set with given name.
virtual bool remove(const RooAbsArg &var, bool silent=false, bool matchByNameOnly=false)
Remove the specified argument from our list.
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...
virtual RooAbsArg * addClone(const RooAbsArg &var, bool silent=false)
Add a clone of the specified argument to list.
void sort(bool reverse=false)
Sort collection using std::sort and name comparison.
void useHashMapForFind(bool flag) const
void setName(const char *name)
RooAbsArg * find(const char *name) const
Find object with given name in list.
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 ...
Abstract base class for objects that represent a real value and implements functionality common to al...
RooArgList is a container object that can hold multiple RooAbsArg objects.
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Represents a constant real-valued object.
Container class to hold unbinned data.
RooRealVar * weightVar() const
Returns a pointer to the weight variable (if set).
Variable that can be changed from the outside.
HypoTestInverterResult class holds the array of hypothesis test results and compute a confidence inte...
bool Add(const HypoTestInverterResult &otherResult)
merge with the content of another HypoTestInverterResult object
TAttFill()
AttFill default constructor.
TAttLine()
AttLine default constructor.
virtual void SetMarkerColor(Color_t mcolor=1)
Set the marker color.
virtual Size_t GetMarkerSize() const
Return the marker size.
virtual void SetMarkerStyle(Style_t mstyle=1)
Set the marker style.
TAttMarker()
TAttMarker default constructor.
virtual void SetMarkerSize(Size_t msize=1)
Set the marker size.
static TCanvas * MakeDefCanvas()
Static function to build a default canvas.
void Paint(Option_t *option="") override
Paint canvas.
void Update() override
Update canvas pad buffers.
virtual Bool_t cd()
Change current directory to "this" directory.
A TGraphErrors is a TGraph with error bars.
virtual void SetPointError(Double_t ex, Double_t ey)
Set ex and ey values for point pointed by the mouse.
A TGraph is an object made of two arrays X and Y with npoints each.
virtual Double_t GetPointX(Int_t i) const
Get x value for point i.
virtual void SetPoint(Int_t i, Double_t x, Double_t y)
Set x and y values for point number i.
virtual void SetMaximum(Double_t maximum=-1111)
Set the maximum of the graph.
static Bool_t CompareX(const TGraph *gr, Int_t left, Int_t right)
Return kTRUE if fX[left] > fX[right]. Can be used by Sort.
virtual void Sort(Bool_t(*greater)(const TGraph *, Int_t, Int_t)=&TGraph::CompareX, Bool_t ascending=kTRUE, Int_t low=0, Int_t high=-1111)
Sorts the points of this TGraph using in-place quicksort (see e.g.
TList * GetListOfFunctions() const
virtual Double_t Eval(Double_t x, TSpline *spline=nullptr, Option_t *option="") const
Interpolate points in this graph at x using a TSpline.
void SetName(const char *name="") override
Set graph name.
void Draw(Option_t *chopt="") override
Draw this graph with its current attributes.
virtual Double_t GetPointY(Int_t i) const
Get y value for point i.
void SetTitle(const char *title="") override
Change (i.e.
virtual void SetPointY(Int_t i, Double_t y)
Set y value for point i.
virtual void SetEditable(Bool_t editable=kTRUE)
if editable=kFALSE, the graph cannot be modified with the mouse by default a TGraph is editable
virtual void SetMinimum(Double_t minimum=-1111)
Set the minimum of the graph.
This class displays a legend box (TPaveText) containing several legend entries.
void Add(TObject *obj) override
A TMultiGraph is a collection of TGraph (or derived) objects.
virtual void SetTitle(const char *title="")
Set the title of the TNamed.
const char * GetName() const override
Returns name of object.
const char * GetTitle() const override
Returns title of object.
virtual void SetName(const char *name)
Set the name of the TNamed.
virtual void SetNameTitle(const char *name, const char *title)
Set all the TNamed parameters (name and title).
virtual TObject * FindObject(const char *name) const
Must be redefined in derived classes.
virtual void AppendPad(Option_t *option="")
Append graphics object to current pad.
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
TObject()
TObject constructor.
@ kCanDelete
if object in a list can be deleted
The most important graphics class in the ROOT system.
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.
void ToLower()
Change string to lower-case.
Double_t Atof() const
Return floating-point value contained in string.
Bool_t IsFloat() const
Returns kTRUE if string contains a floating point or integer number.
const char * Data() const
TString & ReplaceAll(const TString &s1, const TString &s2)
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
This class defines a UUID (Universally Unique IDentifier), also known as GUIDs (Globally Unique IDent...
TVirtualPad is an abstract base class for the Pad and Canvas classes.
virtual TVirtualPad * cd(Int_t subpadnumber=0)=0
virtual TVirtualPad * GetPad(Int_t subpadnumber) const =0
virtual TCanvas * GetCanvas() const =0
void Clear(Option_t *option="") override=0
double gaussian_quantile(double z, double sigma)
Inverse ( ) of the cumulative distribution function of the lower tail of the normal (Gaussian) distri...
void writeStdoutLine(const char *msg)
bool isPythonInitialized()
#define BEGIN_XROOFIT_NAMESPACE
#define END_XROOFIT_NAMESPACE