76 fInterpolMethod(
PDF::kSpline2 ),
83 fHistAvgEvtPerBin ( 0 ),
84 fHistDefinedNBins ( 0 ),
87 fBorderMethodString( 0 ),
88 fInterpolateString ( 0 ),
116 fMinNsmooth ( minnsmooth ),
117 fMaxNsmooth ( maxnsmooth ),
119 fInterpolMethod( method ),
126 fHistAvgEvtPerBin ( 0 ),
127 fHistDefinedNBins ( 0 ),
128 fKDEtypeString ( 0 ),
129 fKDEiterString ( 0 ),
130 fBorderMethodString( 0 ),
131 fInterpolateString ( 0 ),
136 fReadingVersion( 0 ),
137 fCheckHist ( checkHist ),
163 fInterpolMethod(
PDF::kKDE ),
170 fHistAvgEvtPerBin ( 0 ),
171 fHistDefinedNBins ( 0 ),
172 fKDEtypeString ( 0 ),
173 fKDEiterString ( 0 ),
174 fBorderMethodString( 0 ),
175 fInterpolateString ( 0 ),
178 fKDEborder ( kborder ),
179 fFineFactor ( FineFactor),
180 fReadingVersion( 0 ),
204 fInterpolMethod(
PDF::kSpline0 ),
211 fHistAvgEvtPerBin ( 50 ),
212 fHistDefinedNBins ( 0 ),
213 fKDEtypeString (
"Gauss" ),
214 fKDEiterString (
"Nonadaptive" ),
215 fBorderMethodString(
"None" ),
216 fInterpolateString (
"Spline2" ),
221 fReadingVersion( 0 ),
228 if (defaultPDF != 0) {
248 if (fSpline != NULL)
delete fSpline;
249 if (fHist != NULL)
delete fHist;
250 if (fPDFHist != NULL)
delete fPDFHist;
251 if (fHistOriginal != NULL)
delete fHistOriginal;
252 if (fIGetVal != NULL)
delete fIGetVal;
253 if (fGraph != NULL)
delete fGraph;
261 GetThisPdfThreadLocal() =
this;
263 if (hist == NULL)
Log() << kFATAL <<
"Called without valid histogram pointer!" <<
Endl;
267 Log() << kFATAL <<
"Number of entries <= 0 (" << hist->
GetEntries() <<
" in histogram: " << hist->
GetTitle() <<
")" <<
Endl;
270 Log()<< kDEBUG <<
"Create "
274 <<
"type KDE kernel for histogram: \"" << hist->
GetName() <<
"\""
280 Log() << kFATAL <<
"PDF construction called with minnsmooth<0" <<
Endl;
281 else if (fMaxNsmooth<=0)
282 fMaxNsmooth = fMinNsmooth;
283 else if (fMaxNsmooth<fMinNsmooth)
284 Log() << kFATAL <<
"PDF construction called with maxnsmooth<minnsmooth" <<
Endl;
289 fHistOriginal->SetTitle( fHistOriginal->GetName() );
290 fHist ->SetTitle( fHist->GetName() );
293 fHistOriginal->SetDirectory(0);
294 fHist ->SetDirectory(0);
297 if (fInterpolMethod ==
PDF::kKDE) BuildKDEPDF();
298 else BuildSplinePDF();
306 if (evtNum == 0 && fHistDefinedNBins == 0)
307 Log() << kFATAL <<
"No number of bins set for PDF" <<
Endl;
308 else if (fHistDefinedNBins > 0)
309 return fHistDefinedNBins * ResolutionFactor;
310 else if ( evtNum > 0 && fHistAvgEvtPerBin > 0 )
311 return evtNum / fHistAvgEvtPerBin * ResolutionFactor;
313 Log() << kFATAL <<
"No number of bins or average event per bin set for PDF" << fHistAvgEvtPerBin <<
Endl;
323 if (fInterpolMethod !=
PDF::kSpline0 && fCheckHist) CheckHist();
326 if (fMaxNsmooth > 0 && fMinNsmooth >=0 ) SmoothHistogram();
332 switch (fInterpolMethod) {
337 fUseHistogram =
kTRUE;
357 Log() << kWARNING <<
"No valid interpolation method given! Use Spline2" <<
Endl;
359 Log() << kFATAL <<
" Well.. .thinking about it, I better quit so you notice you are forced to fix the mistake " <<
Endl;
365 if (!UseHistogram()) {
366 fSpline->SetTitle( (
TString)fHist->GetTitle() + fSpline->GetTitle() );
367 fSpline->SetName ( (
TString)fHist->GetName() + fSpline->GetName() );
373 if (integral < 0)
Log() << kFATAL <<
"Integral: " << integral <<
" <= 0" <<
Endl;
377 if (integral>0) fPDFHist->Scale( 1.0/integral );
379 fPDFHist->SetDirectory(0);
388 fPDFHist =
new TH1F(
"",
"", fgNbin_PdfHist, GetXmin(), GetXmax() );
389 fPDFHist->SetTitle( (
TString)fHist->GetTitle() +
"_hist from_KDE" );
390 fPDFHist->SetName ( (
TString)fHist->GetName() +
"_hist_from_KDE" );
393 Float_t histoLowEdge = fHist->GetBinLowEdge(1);
394 Float_t histoUpperEdge = fPDFHist->GetBinLowEdge(fPDFHist->GetNbinsX()) + fPDFHist->GetBinWidth(fPDFHist->GetNbinsX());
396 fHist, histoLowEdge, histoUpperEdge,
397 fKDEborder, fFineFactor );
400 for (
Int_t i=1;i<fHist->GetNbinsX();i++) {
402 for (
Int_t j=1;j<fPDFHist->GetNbinsX();j++) {
404 fPDFHist->AddBinContent(j,fHist->GetBinContent(i)*
406 fPDFHist->GetBinLowEdge(j+1),
407 fHist->GetBinCenter(i),
411 if (fKDEborder == 3) {
415 if (i < fHist->GetNbinsX()/5 ) {
416 for (
Int_t j=1;j<fPDFHist->GetNbinsX();j++) {
418 fPDFHist->AddBinContent(j,fHist->GetBinContent(i)*
420 fPDFHist->GetBinLowEdge(j+1),
421 2*histoLowEdge-fHist->GetBinCenter(i),
426 if (i > 4*fHist->GetNbinsX()/5) {
427 for (
Int_t j=1;j<fPDFHist->GetNbinsX();j++) {
429 fPDFHist->AddBinContent( j,fHist->GetBinContent(i)*
431 fPDFHist->GetBinLowEdge(j+1),
432 2*histoUpperEdge-fHist->GetBinCenter(i), i) );
438 fPDFHist->SetEntries(fHist->GetEntries());
444 if (integral < 0)
Log() << kFATAL <<
"Integral: " << integral <<
" <= 0" <<
Endl;
448 if (integral>0) fPDFHist->Scale( 1.0/integral );
449 fPDFHist->SetDirectory(0);
456 if(fHist->GetNbinsX()==1)
return;
457 if (fMaxNsmooth == fMinNsmooth) {
458 fHist->Smooth( fMinNsmooth );
464 Float_t Err=0, ErrAvg=0, ErrRMS=0 ;
Int_t num=0, smooth;
465 for (
Int_t bin=0; bin<fHist->GetNbinsX(); bin++) {
466 if (fHist->GetBinContent(bin+1) <= fHist->GetBinError(bin+1))
continue;
467 Err = fHist->GetBinError(bin+1) / fHist->GetBinContent(bin+1);
468 ErrAvg += Err; ErrRMS += Err*Err; num++;
474 Float_t MaxErr=ErrAvg+ErrRMS, MinErr=ErrAvg-ErrRMS;
475 fNSmoothHist =
new TH1I(
"",
"",fHist->GetNbinsX(),0,fHist->GetNbinsX());
476 fNSmoothHist->SetTitle( (
TString)fHist->GetTitle() +
"_Nsmooth" );
477 fNSmoothHist->SetName ( (
TString)fHist->GetName() +
"_Nsmooth" );
478 for (
Int_t bin=0; bin<fHist->GetNbinsX(); bin++) {
479 if (fHist->GetBinContent(bin+1) <= fHist->GetBinError(bin+1))
482 Err = fHist->GetBinError(bin+1) / fHist->GetBinContent(bin+1);
483 smooth=(
Int_t)((Err-MinErr) /(MaxErr-MinErr) * (fMaxNsmooth-fMinNsmooth)) + fMinNsmooth;
486 fNSmoothHist->SetBinContent(bin+1,smooth);
491 for (
Int_t n=fMaxNsmooth;
n>=0;
n--) {
493 if (
n <= fMinNsmooth) { fHist->Smooth();
continue; }
494 Int_t MinBin=-1,MaxBin =-1;
495 for (
Int_t bin=0; bin < fHist->GetNbinsX(); bin++) {
496 if (fNSmoothHist->GetBinContent(bin+1) >=
n) {
497 if (MinBin==-1) MinBin = bin;
500 else if (MaxBin >= 0) {
501 fHist->Smooth(1,
"R");
524 if (UseHistogram()) {
526 fPDFHist = (
TH1*)fHist->Clone();
527 fPDFHist->SetTitle( (
TString)fHist->GetTitle() +
"_hist from_spline0" );
528 fPDFHist->SetName ( (
TString)fHist->GetName() +
"_hist_from_spline0" );
532 fPDFHist =
new TH1F(
"",
"", fgNbin_PdfHist, GetXmin(), GetXmax() );
533 fPDFHist->SetTitle( (
TString)fHist->GetTitle() +
"_hist from_" + fSpline->GetTitle() );
534 fPDFHist->SetName ( (
TString)fHist->GetName() +
"_hist_from_" + fSpline->GetTitle() );
536 for (
Int_t bin=1; bin <= fgNbin_PdfHist; bin++) {
537 Double_t x = fPDFHist->GetBinCenter( bin );
542 if (
y <= fgEpsilon)
y = fHist->GetBinContent( fHist->FindBin(
x ) );
543 fPDFHist->SetBinContent( bin,
TMath::Max(
y, fgEpsilon) );
546 fPDFHist->SetDirectory(0);
555 Log() << kFATAL <<
"<CheckHist> Called without valid histogram pointer!" <<
Endl;
558 Int_t nbins = fHist->GetNbinsX();
562 for (
Int_t bin=1; bin<=nbins; bin++)
563 if (fHist->GetBinContent(bin) == 0) emptyBins++;
566 Log() << kWARNING <<
"More than 50% (" << (((
Float_t)emptyBins/(
Float_t)nbins)*100)
567 <<
"%) of the bins in hist '"
568 << fHist->GetName() <<
"' are empty!" <<
Endl;
569 Log() << kWARNING <<
"X_min=" << GetXmin()
570 <<
" mean=" << fHist->GetMean() <<
" X_max= " << GetXmax() <<
Endl;
580 if (!originalHist) originalHist = fHistOriginal;
595 for (
Int_t bin=1; bin<=nbins; bin++) {
600 Int_t binPdfHist = fPDFHist->FindBin(
x );
601 if (binPdfHist<0)
continue;
605 originalHist->
GetBinWidth( bin )/fPDFHist->GetBinWidth( binPdfHist ) );
613 if (
d > 1) { nc1++;
if (
d > 2) { nc2++;
if (
d > 3) { nc3++;
if (
d > 6) nc6++; } } }
617 Log() << kDEBUG <<
"Validation result for PDF \"" << originalHist->
GetTitle() <<
"\"" <<
": " <<
Endl;
618 Log() << kDEBUG <<
Form(
" chi2/ndof(!=0) = %.1f/%i = %.2f (Prob = %.2f)",
620 if ((1.0 -
TMath::Prob( chi2, ndof )) > 0.9999994) {
621 Log() << kDEBUG <<
"Comparison of the original histogram \"" << originalHist->
GetTitle() <<
"\"" <<
Endl;
622 Log() << kDEBUG <<
"with the corresponding PDF gave a chi2/ndof of " << chi2/ndof <<
"," <<
Endl;
623 Log() << kDEBUG <<
"which corresponds to a deviation of more than 5 sigma! Please check!" <<
Endl;
625 Log() << kDEBUG <<
Form(
" #bins-found(#expected-bins) deviating > [1,2,3,6] sigmas: " \
626 "[%i(%i),%i(%i),%i(%i),%i(%i)]",
636 Double_t integral = fPDFHist->GetSumOfWeights();
637 integral *= GetPdfHistBinWidth();
647 return ThisPDF()->GetVal(
x[0] );
657 if (fgManualIntegration) {
662 if (imin < 1) imin = 1;
663 if (imax > fPDFHist->GetNbinsX()) imax = fPDFHist->GetNbinsX();
665 for (
Int_t bini = imin; bini <= imax; bini++) {
666 Float_t dx = fPDFHist->GetBinWidth(bini);
668 if (bini == imin) dx = fPDFHist->GetBinLowEdge(bini+1) -
xmin;
669 else if (bini == imax) dx =
xmax - fPDFHist->GetBinLowEdge(bini);
670 if (dx < 0 && dx > -1.0e-8) dx = 0;
673 <<
"dx = " << dx << std::endl
674 <<
"bini = " << bini << std::endl
675 <<
"xmin = " <<
xmin << std::endl
676 <<
"xmax = " <<
xmax << std::endl
677 <<
"imin = " << imin << std::endl
678 <<
"imax = " << imax << std::endl
679 <<
"low edge of imin" << fPDFHist->GetBinLowEdge(imin) << std::endl
680 <<
"low edge of imin+1" << fPDFHist->GetBinLowEdge(imin+1) <<
Endl;
681 Log() << kFATAL <<
"<GetIntegral> dx = " << dx <<
" < 0" <<
Endl;
683 integral += fPDFHist->GetBinContent(bini)*dx;
690 if (fIGetVal == 0) fIGetVal =
new TF1(
"IGetVal",
PDF::IGetVal, GetXmin(), GetXmax(), 0 );
691 integral = fIGetVal->Integral(
xmin,
xmax );
703 Int_t bin = fPDFHist->FindBin(
x);
709 if (UseHistogram()) {
711 retval = fPDFHist->GetBinContent( bin );
716 if ((
x > fPDFHist->GetBinCenter(bin) && bin != fPDFHist->GetNbinsX()) || bin == 1)
722 Double_t dx = fPDFHist->GetBinCenter( bin ) - fPDFHist->GetBinCenter( nextbin );
723 Double_t dy = fPDFHist->GetBinContent( bin ) - fPDFHist->GetBinContent( nextbin );
724 retval = fPDFHist->GetBinContent( bin ) + (
x - fPDFHist->GetBinCenter( bin ))*dy/dx;
735 Int_t lowerBin=0, higherBin=0;
736 Double_t lowerBinValue=0, higherBinValue=0;
737 FindBinInverse(fPDFHist,lowerBin,higherBin,lowerBinValue,higherBinValue,
y,isMonotonouslyIncreasingFunction);
739 Double_t xValueLowerBin =fPDFHist->GetBinCenter (lowerBin);
740 Double_t xValueHigherBin=fPDFHist->GetBinCenter (higherBin);
742 Double_t length =(higherBinValue-lowerBinValue);
745 fraction=(
y-lowerBinValue)/length;
747 Double_t lengthX =xValueHigherBin-xValueLowerBin;
748 Double_t x =xValueLowerBin+lengthX*fraction;
763 if (isMonotonouslyIncreasingFunction) {
767 Int_t bin=higherBin/2;
769 while (bin>lowerBin && bin<higherBin) {
774 higherBinValue=binContent;
776 else if (
y>=binContent){
778 lowerBinValue =binContent;
780 bin=lowerBin+(higherBin-lowerBin)/2;
785 for (
Int_t bin=0, binEnd=histogram->
GetNbinsX(); bin<binEnd; ++bin) {
790 lowerBinValue =binContent;
791 higherBinValue=binContent;
795 higherBinValue=binContent;
821 DeclareOptionRef( fNsmooth,
Form(
"NSmooth%s",fSuffix.Data()),
822 "Number of smoothing iterations for the input histograms" );
823 DeclareOptionRef( fMinNsmooth,
Form(
"MinNSmooth%s",fSuffix.Data()),
824 "Min number of smoothing iterations, for bins with most data" );
826 DeclareOptionRef( fMaxNsmooth,
Form(
"MaxNSmooth%s",fSuffix.Data()),
827 "Max number of smoothing iterations, for bins with least data" );
829 DeclareOptionRef( fHistAvgEvtPerBin,
Form(
"NAvEvtPerBin%s",fSuffix.Data()),
830 "Average number of events per PDF bin" );
832 DeclareOptionRef( fHistDefinedNBins,
Form(
"Nbins%s",fSuffix.Data()),
833 "Defined number of bins for the histogram from which the PDF is created" );
835 DeclareOptionRef( fCheckHist,
Form(
"CheckHist%s",fSuffix.Data()),
836 "Whether or not to check the source histogram of the PDF" );
838 DeclareOptionRef( fInterpolateString,
Form(
"PDFInterpol%s",fSuffix.Data()),
839 "Interpolation method for reference histograms (e.g. Spline2 or KDE)" );
840 AddPreDefVal(
TString(
"Spline0"));
841 AddPreDefVal(
TString(
"Spline1"));
842 AddPreDefVal(
TString(
"Spline2"));
843 AddPreDefVal(
TString(
"Spline3"));
844 AddPreDefVal(
TString(
"Spline5"));
847 DeclareOptionRef( fKDEtypeString,
Form(
"KDEtype%s",fSuffix.Data()),
"KDE kernel type (1=Gauss)" );
848 AddPreDefVal(
TString(
"Gauss"));
850 DeclareOptionRef( fKDEiterString,
Form(
"KDEiter%s",fSuffix.Data()),
"Number of iterations (1=non-adaptive, 2=adaptive)" );
851 AddPreDefVal(
TString(
"Nonadaptive"));
852 AddPreDefVal(
TString(
"Adaptive"));
854 DeclareOptionRef( fFineFactor ,
Form(
"KDEFineFactor%s",fSuffix.Data()),
855 "Fine tuning factor for Adaptive KDE: Factor to multiply the width of the kernel");
857 DeclareOptionRef( fBorderMethodString,
Form(
"KDEborder%s",fSuffix.Data()),
858 "Border effects treatment (1=no treatment , 2=kernel renormalization, 3=sample mirroring)" );
860 AddPreDefVal(
TString(
"Renorm"));
861 AddPreDefVal(
TString(
"Mirror"));
864 SetConfigDescription(
"Configuration options for the PDF class" );
871 if (fNsmooth < 0) fNsmooth = 0;
873 if (fMaxNsmooth < 0 || fMinNsmooth < 0) {
874 fMinNsmooth = fMaxNsmooth = fNsmooth;
877 if (fMaxNsmooth < fMinNsmooth && fMinNsmooth >= 0) {
878 Log() << kFATAL <<
"ERROR: MaxNsmooth = "
879 << fMaxNsmooth <<
" < MinNsmooth = " << fMinNsmooth <<
Endl;
882 if (fMaxNsmooth < 0 || fMinNsmooth < 0) {
883 Log() << kFATAL <<
"ERROR: MaxNsmooth = "
884 << fMaxNsmooth <<
" or MinNsmooth = " << fMinNsmooth <<
" smaller than zero" <<
Endl;
893 else if (fInterpolateString ==
"KDE" ) fInterpolMethod =
TMVA::PDF::kKDE;
894 else if (fInterpolateString !=
"" ) {
895 Log() << kFATAL <<
"unknown setting for option 'InterpolateMethod': " << fKDEtypeString << ((fSuffix==
"")?
"":
Form(
" for pdf with suffix %s",fSuffix.Data())) <<
Endl;
900 else if (fKDEtypeString !=
"" )
901 Log() << kFATAL <<
"unknown setting for option 'KDEtype': " << fKDEtypeString << ((fSuffix==
"")?
"":
Form(
" for pdf with suffix %s",fSuffix.Data())) <<
Endl;
904 else if (fKDEiterString !=
"" )
905 Log() << kFATAL <<
"unknown setting for option 'KDEiter': " << fKDEtypeString << ((fSuffix==
"")?
"":
Form(
" for pdf with suffix %s",fSuffix.Data())) <<
Endl;
910 else if ( fKDEiterString !=
"" ) {
911 Log() << kFATAL <<
"unknown setting for option 'KDEBorder': " << fKDEtypeString << ((fSuffix==
"")?
"":
Form(
" for pdf with suffix %s",fSuffix.Data())) <<
Endl;
924 gTools().
AddAttr(pdfxml,
"InterpolMethod", fInterpolMethod );
930 TH1* histToWrite = GetOriginalHist();
936 gTools().
AddAttr(pdfhist,
"HasEquidistantBins", hasEquidistantBinning );
945 if (!hasEquidistantBinning) {
946 void* pdfhistbins =
gTools().
AddChild(pdfxml,
"HistogramBinning" );
975 Bool_t hasEquidistantBinning;
982 gTools().
ReadAttr( histch,
"HasEquidistantBins", hasEquidistantBinning );
986 if (hasEquidistantBinning) {
990 std::stringstream
s(content);
992 for (
UInt_t i=0; i<nbins; i++) {
999 std::stringstream
s(content);
1005 if (nbinning != nbins) {
1006 Log() << kFATAL <<
"Number of bins in content and binning array differs"<<
Endl;
1009 std::stringstream sb(binString);
1010 for (
UInt_t i=0; i<=nbins; i++) sb >> binns[i];
1013 for (
UInt_t i=0; i<nbins; i++) {
1020 hnameSmooth.
ReplaceAll(
"_original",
"_smoothed" );
1022 if (fHistOriginal != 0)
delete fHistOriginal;
1023 fHistOriginal = newhist;
1024 fHist = (
TH1F*)fHistOriginal->
Clone( hnameSmooth );
1025 fHist->SetTitle( hnameSmooth );
1026 fHist->SetDirectory(0);
1028 if (fInterpolMethod ==
PDF::kKDE) BuildKDEPDF();
1029 else BuildSplinePDF();
1037 Int_t dp = os.precision();
1038 os <<
"MinNSmooth " << pdf.
fMinNsmooth << std::endl;
1039 os <<
"MaxNSmooth " << pdf.
fMaxNsmooth << std::endl;
1041 os <<
"KDE_type " << pdf.
fKDEtype << std::endl;
1042 os <<
"KDE_iter " << pdf.
fKDEiter << std::endl;
1043 os <<
"KDE_border " << pdf.
fKDEborder << std::endl;
1044 os <<
"KDE_finefactor " << pdf.
fFineFactor << std::endl;
1059 os <<
"Weights " << std::endl;
1060 os << std::setprecision(8);
1061 for (
Int_t i=0; i<nBins; i++) {
1062 os << std::setw(15) << std::left << histToWrite->
GetBinContent(i+1) << std::right <<
" ";
1063 if ((i+1)%5==0) os << std::endl;
1066 os << std::setprecision(dp);
1081 while (!doneReading) {
1083 if (devnullS==
"NSmooth")
1084 {istr >> pdf.fMinNsmooth; pdf.fMaxNsmooth=pdf.fMinNsmooth;}
1085 else if (devnullS==
"MinNSmooth") istr >> pdf.fMinNsmooth;
1086 else if (devnullS==
"MaxNSmooth") istr >> pdf.fMaxNsmooth;
1092 else if (devnullS ==
"KDE_finefactor") {
1093 istr >> pdf.fFineFactor;
1094 if (pdf.GetReadingVersion() != 0 && pdf.GetReadingVersion() <
TMVA_VERSION(3,7,3)) {
1097 doneReading =
kTRUE;
1100 else if (devnullS ==
"Histogram") { istr >> hname >> nbins >>
xmin >>
xmax; }
1101 else if (devnullS ==
"Weights") { doneReading =
kTRUE; }
1105 hnameSmooth.
ReplaceAll(
"_original",
"_smoothed" );
1109 std::cout <<
"PDF, trying to create a histogram without defined binning"<< std::endl;
1115 for (
Int_t i=0; i<nbins; i++) {
1120 if (pdf.fHistOriginal != 0)
delete pdf.fHistOriginal;
1121 pdf.fHistOriginal = newhist;
1122 pdf.fHist = (
TH1F*)pdf.fHistOriginal->
Clone( hnameSmooth );
1123 pdf.fHist->SetTitle( hnameSmooth );
1124 pdf.fHist->SetDirectory(0);
1126 if (pdf.fMinNsmooth>=0) pdf.BuildSplinePDF();
1138 return GetThisPdfThreadLocal();
char * Form(const char *fmt,...)
#define TMVA_VERSION(a, b, c)
virtual Double_t GetBinLowEdge(Int_t bin) const
Return low edge of bin.
A Graph is a graphics object made of two arrays X and Y with npoints each.
1-D histogram with a float per channel (see TH1 documentation)}
1-D histogram with an int per channel (see TH1 documentation)}
virtual void SetDirectory(TDirectory *dir)
By default when an histogram is created, it is added to the list of histogram objects in the current ...
virtual Double_t GetBinCenter(Int_t bin) const
Return bin center for 1D histogram.
virtual Double_t GetBinError(Int_t bin) const
Return value of error associated to bin number bin.
TAxis * GetXaxis()
Get the behaviour adopted by the object about the statoverflows. See EStatOverflows for more informat...
TObject * Clone(const char *newname=0) const
Make a complete copy of the underlying object.
virtual Int_t GetNbinsX() const
virtual void SetBinContent(Int_t bin, Double_t content)
Set bin content see convention for numbering bins in TH1::GetBin In case the bin number is greater th...
virtual Double_t GetEntries() const
Return the current number of entries.
virtual Double_t GetBinContent(Int_t bin) const
Return content of bin number bin.
virtual TArrayD * GetSumw2()
virtual Double_t GetBinWidth(Int_t bin) const
Return bin width for 1D histogram.
virtual Double_t GetSumOfWeights() const
Return the sum of weights excluding under/overflows.
virtual void Sumw2(Bool_t flag=kTRUE)
Create structure to store sum of squares of weights.
KDE Kernel for "smoothing" the PDFs.
void SetKernelType(EKernelType ktype=kGauss)
fIter == 1 —> nonadaptive KDE fIter == 2 —> adaptive KDE
Float_t GetBinKernelIntegral(Float_t lowr, Float_t highr, Float_t mean, Int_t binnum)
calculates the integral of the Kernel
ostringstream derivative to redirect and format output
PDF wrapper for histograms; uses user-defined spline interpolation.
static const Bool_t fgManualIntegration
KDEKernel::EKernelType fKDEtype
void FillHistToGraph()
Simple conversion.
void BuildPDF(const TH1 *theHist)
KDEKernel::EKernelBorder fKDEborder
static Double_t IGetVal(Double_t *, Double_t *)
static external auxiliary function (integrand)
TString fBorderMethodString
TMVA::PDF::EInterpolateMethod fInterpolMethod
Double_t GetValInverse(Double_t y, Bool_t isMonotonouslyIncreasingFunction=kFALSE) const
returns value
void CheckHist() const
sanity check: compare PDF with original histogram
void FindBinInverse(const TH1 *histogram, Int_t &lowerBin, Int_t &higherBin, Double_t &lowerBinValue, Double_t &higherBinValue, Double_t y, Bool_t isMonotonouslyIncreasingFunction=kFALSE) const
find bin from value on ordinate
void ReadXML(void *pdfnode)
XML file reading.
TString fInterpolateString
void DeclareOptions()
define the options (their key words) that can be set in the option string
void AddXMLTo(void *parent)
XML file writing.
void BuildSplinePDF()
build the PDF from the original histograms
void FillSplineToHist()
creates high-binned reference histogram to be used instead of the PDF for speed reasons
void BuildKDEPDF()
creates high-binned reference histogram to be used instead of the PDF for speed reasons
Int_t GetHistNBins(Int_t evtNum=0)
static const Double_t fgEpsilon
TH1 * GetOriginalHist() const
static PDF *& GetThisPdfThreadLocal()
void ValidatePDF(TH1 *original=0) const
comparison of original histogram with reference PDF
Double_t GetVal(Double_t x) const
returns value PDF(x)
Double_t GetIntegral() const
computes normalisation
MsgLogger * fLogger
the suffix for options
static const Int_t fgNbin_PdfHist
PDF(const TString &name, Bool_t norm=kTRUE)
default constructor needed for ROOT I/O
KDEKernel::EKernelIter fKDEiter
static PDF * ThisPDF(void)
Linear interpolation of TGraph.
Quadratic interpolation of TGraph.
virtual const char * GetTitle() const
Returns title of object.
virtual const char * GetName() const
Returns name of object.
Class to create third splines to interpolate knots Arbitrary conditions can be introduced for first a...
Class to create quintic natural splines to interpolate knots Arbitrary conditions can be introduced f...
TString & ReplaceAll(const TString &s1, const TString &s2)
Element * GetMatrixArray()
std::string GetName(const std::string &scope_name)
static constexpr double s
std::istream & operator>>(std::istream &istr, BinaryTree &tree)
std::ostream & operator<<(std::ostream &os, const BinaryTree &tree)
MsgLogger & Endl(MsgLogger &ml)
Short_t Max(Short_t a, Short_t b)
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 Sqrt(Double_t x)
Short_t Min(Short_t a, Short_t b)