95using std::numeric_limits, std::nothrow, std::map;
116 fFoamType(kSeparate),
123 fFillFoamWithOrigWeights(
kFALSE),
124 fDTSeparation(kFoam),
155 fFoamType(kSeparate),
162 fFillFoamWithOrigWeights(
kFALSE),
163 fDTSeparation(kFoam),
171 Log() << kFATAL <<
"Name too long " <<
name.Data() <<
Endl;
183 delete fVariableNames;
185 if (fDistr)
delete fDistr;
186 if (fPseRan)
delete fPseRan;
187 if (fXmin) {
delete [] fXmin; fXmin=0; }
188 if (fXmax) {
delete [] fXmax; fXmax=0; }
192 for(
Int_t i=0; i<fNCells; i++)
delete fCells[i];
222 , fFoamType(kSeparate)
229 , fFillFoamWithOrigWeights(
kFALSE)
230 , fDTSeparation(kFoam)
237 Log() << kFATAL <<
"COPY CONSTRUCTOR NOT IMPLEMENTED" <<
Endl;
250 Log() << kFATAL <<
"<SetDim>: Dimension is zero or negative!" <<
Endl;
253 if (fXmin)
delete [] fXmin;
254 if (fXmax)
delete [] fXmax;
265 Log() << kFATAL <<
"<SetXmin>: Dimension out of bounds!" <<
Endl;
276 Log() << kFATAL <<
"<SetXmax>: Dimension out of bounds!" <<
Endl;
293 if(fPseRan==0) Log() << kFATAL <<
"Random number generator not set" <<
Endl;
294 if(fDistr==0) Log() << kFATAL <<
"Distribution function not set" <<
Endl;
295 if(fDim==0) Log() << kFATAL <<
"Zero dimension not allowed" <<
Endl;
302 if(fRvec==0) Log() << kFATAL <<
"Cannot initialize buffer fRvec" <<
Endl;
306 if(fAlpha==0) Log() << kFATAL <<
"Cannot initialize buffer fAlpha" <<
Endl;
311 fInhiDiv =
new Int_t[fDim];
312 for(
Int_t i=0; i<fDim; i++) fInhiDiv[i]=0;
316 fMaskDiv =
new Int_t[fDim];
317 for(
Int_t i=0; i<fDim; i++) fMaskDiv[i]=1;
321 for(
Int_t i=0; i<fDim; i++){
328 ((
TH1D*)(*fHistEdg)[i])->Sumw2();
354 for(
Int_t i=0; i<fNCells; i++)
delete fCells[i];
360 Log() << kFATAL <<
"not enough memory to create " << fNCells
363 for(
Int_t i=0; i<fNCells; i++){
365 fCells[i]->SetSerial(i);
375 Explore( fCells[
iCell] );
386 if (fLastCe==fNCells){
387 Log() << kFATAL <<
"Too many cells" <<
Endl;
391 cell = fCells[fLastCe];
393 cell->Fill(status, parent, 0, 0);
474 for (i=0;i<fDim;i++) ((
TH1D *)(*fHistEdg)[i])->Reset();
488 for (k=0; k<fDim; k++) {
503 if (
nevEff >= fNBin*fEvPerBin)
break;
513 Log() << kFATAL <<
"No events were found during exploration of "
514 <<
"root cell. Please check PDEFoam parameters nSampl "
515 <<
"and VolFrac." <<
Endl;
517 Log() << kWARNING <<
"Negative number of events found during "
518 <<
"exploration of root cell" <<
Endl;
523 for (k=0; k<fDim;k++){
525 if ( fInhiDiv[k]==1) fMaskDiv[k] =0;
547 for (parent =
cell->GetPare(); parent!=0; parent = parent->
GetPare()){
578 if( fMaskDiv[
kProj]) {
595 if ( (
xUp-
xLo) < std::numeric_limits<double>::epsilon())
sswIn=0.;
597 if ( (1.0-
xUp+
xLo) < std::numeric_limits<double>::epsilon())
sswOut=0.;
625 Log() << kFATAL <<
"Something wrong with kBest" <<
Endl;
635 fPseRan->RndmArray(fDim,fRvec);
636 for(
Int_t k=0; k<fDim; k++) fAlpha[k] = fRvec[k];
656 for(i=0; i<=fLastCe; i++) {
657 if( fCells[i]->GetStat() == 1 ) {
659 driv = fCells[i]->GetDriv();
660 if (
driv < std::numeric_limits<float>::epsilon())
665 if (
xDiv <= std::numeric_limits<Double_t>::epsilon() ||
666 xDiv >= 1.0 - std::numeric_limits<Double_t>::epsilon())
670 if (GetMaxDepth() > 0)
675 bCutNmin = GetCellElement(fCells[i], 0) > GetNmin();
687 Log() << kVERBOSE <<
"Warning: No cell with more than "
688 << GetNmin() <<
" events found!" <<
Endl;
690 Log() << kVERBOSE <<
"Warning: Maximum depth reached: "
691 << GetMaxDepth() <<
Endl;
693 Log() << kWARNING <<
"<PDEFoam::PeekMax>: no more candidate cells (drivMax>0) found for further splitting." <<
Endl;
714 if(fLastCe+1 >= fNCells) Log() << kFATAL <<
"Buffer limit is reached, fLastCe=fnBuf" <<
Endl;
729 cell->SetDau0((fCells[
d1]));
730 cell->SetDau1((fCells[
d2]));
732 Explore( (fCells[
d1]) );
733 Explore( (fCells[
d2]) );
748 std::vector<Double_t> xvec;
749 xvec.reserve(GetTotDim());
764 fTimer->Init(fNCells);
769 while ( (fLastCe+2) < fNCells ) {
773 Log() << kVERBOSE <<
"Break: "<< fLastCe+1 <<
" cells created" <<
Endl;
776 delete fCells[
jCell];
784 if ( Divide(
newCell )==0)
break;
789 Log() << kVERBOSE << GetNActiveCells() <<
" active cells created" <<
Endl;
799 if(fDim==0) Log() << kFATAL <<
"SetInhiDiv: fDim=0" <<
Endl;
801 fInhiDiv =
new Int_t[ fDim ];
802 for(
Int_t i=0; i<fDim; i++) fInhiDiv[i]=0;
808 Log() << kFATAL <<
"Wrong iDim" <<
Endl;
824 if (level==1) Log() << kVERBOSE <<
"Performing consistency checks for created foam" <<
Endl;
828 if( ((
cell->GetDau0()==0) && (
cell->GetDau1()!=0) ) ||
829 ((
cell->GetDau1()==0) && (
cell->GetDau0()!=0) ) ) {
831 if (level==1) Log() << kFATAL <<
"ERROR: Cell's no %d has only one daughter " <<
iCell <<
Endl;
833 if( (
cell->GetDau0()==0) && (
cell->GetDau1()==0) && (
cell->GetStat()==0) ) {
835 if (level==1) Log() << kFATAL <<
"ERROR: Cell's no %d has no daughter and is inactive " <<
iCell <<
Endl;
837 if( (
cell->GetDau0()!=0) && (
cell->GetDau1()!=0) && (
cell->GetStat()==1) ) {
839 if (level==1) Log() << kFATAL <<
"ERROR: Cell's no %d has two daughters and is active " <<
iCell <<
Endl;
843 if( (
cell->GetPare())!=fCells[0] ) {
844 if ( (
cell !=
cell->GetPare()->GetDau0()) && (
cell !=
cell->GetPare()->GetDau1()) ) {
846 if (level==1) Log() << kFATAL <<
"ERROR: Cell's no %d parent not pointing to this cell " <<
iCell <<
Endl;
851 if(
cell->GetDau0()!=0) {
852 if(
cell != (
cell->GetDau0())->GetPare()) {
854 if (level==1) Log() << kFATAL <<
"ERROR: Cell's no %d daughter 0 not pointing to this cell " <<
iCell <<
Endl;
857 if(
cell->GetDau1()!=0) {
858 if(
cell != (
cell->GetDau1())->GetPare()) {
860 if (level==1) Log() << kFATAL <<
"ERROR: Cell's no %d daughter 1 not pointing to this cell " <<
iCell <<
Endl;
863 if(
cell->GetVolume()<1E-50) {
865 if(level==1) Log() << kFATAL <<
"ERROR: Cell no. " <<
iCell <<
" has Volume of <1E-50" <<
Endl;
872 if( (
cell->GetStat()==1) && (
cell->GetVolume()<1E-11) ) {
874 if(level==1) Log() << kFATAL <<
"ERROR: Cell no. " <<
iCell <<
" is active but Volume is 0 " <<
Endl;
879 Log() << kVERBOSE <<
"Check has found " <<
errors <<
" errors and " <<
warnings <<
" warnings." <<
Endl;
882 Info(
"CheckAll",
"Check - found total %d errors \n",
errors);
893 Log() << kWARNING <<
"<PrintCell(iCell=" <<
iCell
894 <<
")>: cell number " <<
iCell <<
" out of bounds!"
904 Log() <<
"Cell[" <<
iCell <<
"]={ ";
905 Log() <<
" " << fCells[
iCell] <<
" " <<
Endl;
906 Log() <<
" Xdiv[abs. coord.]="
909 Log() <<
" Abs. coord. = (";
911 Log() <<
"dim[" <<
idim <<
"]={"
918 Log() <<
")" <<
Endl;
921 Log() <<
"Elements: [";
924 for (
Int_t i=0; i<
vec->GetNrows(); i++){
925 if (i>0) Log() <<
", ";
926 Log() << GetCellElement(fCells[
iCell], i);
930 Log() <<
"]" <<
Endl;
953 std::vector<Float_t> values =
ev->GetValues();
954 std::vector<Float_t>
tvalues = VarTransform(values);
959 SetCellElement(
cell, 0, GetCellElement(
cell, 0) +
wt);
960 SetCellElement(
cell, 1, GetCellElement(
cell, 1) +
wt*
wt);
970 Log() << kVERBOSE <<
"Delete cell elements" <<
Endl;
1013 std::vector<Float_t>
txvec(VarTransform(xvec));
1015 return GetCellValue(FindCell(
txvec),
cv);
1041 std::map<Int_t,Float_t>
txvec;
1042 for (std::map<Int_t,Float_t>::const_iterator it=xvec.begin(); it!=xvec.end(); ++it)
1043 txvec.insert(std::pair<Int_t, Float_t>(it->first, VarTransform(it->first, it->second)));
1046 std::vector<PDEFoamCell*>
cells = FindCells(
txvec);
1082 while (
cell->GetStat()!=1) {
1119 while (
cell->GetStat()!=1) {
1123 map<Int_t, Float_t>::const_iterator it =
txvec.find(
idim);
1168 std::vector<PDEFoamCell*>
cells(0);
1194 std::vector<PDEFoamCell*>
cells(0);
1216 if ( GetTotDim()!=1 )
1217 Log() << kFATAL <<
"<Draw1Dim>: function can only be used for 1-dimensional foams!"
1225 if (!
h1) Log() << kFATAL <<
"ERROR: Can not create histo" <<
hname <<
Endl;
1230 std::vector<Float_t>
txvec;
1237 val = GetCellValue(FindCell(
txvec), cell_value);
1271 Log() << kFATAL <<
"<Project2>: wrong dimensions given: "
1278 Log() << kWARNING <<
"Warning: number of bins too big: " <<
nbin
1279 <<
" Using 1000 bins for each dimension instead." <<
Endl;
1281 }
else if (
nbin<1) {
1282 Log() << kWARNING <<
"Wrong bin number: " <<
nbin
1283 <<
"; set nbin=50" <<
Endl;
1295 if (!
h1) Log() << kFATAL <<
"ERROR: Can not create histo" <<
hname <<
Endl;
1303 std::map<Int_t, Float_t>
txvec;
1309 std::vector<TMVA::PDEFoamCell*>
cells = FindCells(
txvec);
1314 for (std::vector<TMVA::PDEFoamCell*>::const_iterator it =
cells.
begin();
1321 std::vector<Float_t>
tvec;
1322 for (
Int_t i=0; i<GetTotDim(); ++i) {
1332 sum_cv += GetCellValue(FindCell(
tvec), cell_value);
1357 return GetCellElement(
cell, 0);
1360 return GetCellElement(
cell, 1);
1362 case kValueDensity: {
1365 if (volume > numeric_limits<double>::epsilon()) {
1366 return GetCellValue(
cell, kValue)/volume;
1370 Log() << kWARNING <<
"<GetCellDensity(cell)>: ERROR: cell volume"
1371 <<
" negative or zero!"
1372 <<
" ==> return cell density 0!"
1373 <<
" cell volume=" << volume
1374 <<
" cell entries=" << GetCellValue(
cell, kValue) <<
Endl;
1376 Log() << kWARNING <<
"<GetCellDensity(cell)>: WARNING: cell volume"
1377 <<
" close to zero!"
1378 <<
" cell volume: " << volume <<
Endl;
1385 return cell->GetIntg();
1388 return cell->GetDriv();
1391 if (
cell->GetIntg() != 0)
1392 return cell->GetDriv()/
cell->GetIntg();
1397 return cell->GetVolume();
1400 Log() << kFATAL <<
"<GetCellValue>: unknown cell value" <<
Endl;
1442 Log() << kFATAL <<
"<SetCellElement> ERROR: cell element is not a TVectorD*" <<
Endl;
1458 Log() << kINFO <<
"Elapsed time: " + fTimer->GetElapsedTime()
1466 if (fLastCe%
modulo == 0) fTimer->DrawProgressBar( fLastCe );
1509 if (GetTotDim() != 2)
1510 Log() << kFATAL <<
"RootPlot2dim() can only be used with "
1511 <<
"two-dimensional foams!" <<
Endl;
1514 ECellValue cell_value = kValue;
1518 cell_value = kValue;
1519 }
else if (opt.
Contains(
"rms_ov_mean")){
1520 cell_value = kRmsOvMean;
1537 outfile <<
"TColor *graycolors[100];" << std::endl;
1538 outfile <<
"for (Int_t i=0.; i<100; i++)" << std::endl;
1539 outfile <<
" graycolors[i]=new TColor(1000+i, 1-(Float_t)i/100.,1-(Float_t)i/100.,1-(Float_t)i/100.);"<< std::endl;
1542 outfile <<
"cMap = new TCanvas(\"" << fName <<
"\",\"Cell Map for "
1543 << fName <<
"\",600,600);" << std::endl;
1545 outfile<<
"TBox*a=new TBox();"<<std::endl;
1546 outfile<<
"a->SetFillStyle(0);"<<std::endl;
1547 outfile<<
"a->SetLineWidth(4);"<<std::endl;
1548 outfile<<
"TBox *b1=new TBox();"<<std::endl;
1549 outfile<<
"TText*t=new TText();"<<std::endl;
1551 outfile << (
colors ?
"gStyle->SetPalette(1, 0);" :
"gStyle->SetPalette(0);")
1553 outfile <<
"b1->SetFillStyle(1001);"<<std::endl;
1554 outfile<<
"TBox *b2=new TBox();"<<std::endl;
1555 outfile <<
"b2->SetFillStyle(0);"<<std::endl;
1558 outfile <<
"b1->SetFillStyle(0);"<<std::endl;
1571 if ( fCells[
iCell]->GetStat() == 1) {
1579 outfile <<
"// observed minimum and maximum of distribution: " << std::endl;
1580 outfile <<
"// Float_t zmin = "<< zmin <<
";" << std::endl;
1581 outfile <<
"// Float_t zmax = "<< zmax <<
";" << std::endl;
1584 outfile <<
"// used minimum and maximum of distribution (taking into account log scale if applicable): " << std::endl;
1585 outfile <<
"Float_t zmin = "<< zmin <<
";" << std::endl;
1586 outfile <<
"Float_t zmax = "<< zmax <<
";" << std::endl;
1597 outfile <<
"// =========== Rectangular cells ==========="<< std::endl;
1599 if ( fCells[
iCell]->GetStat() == 1) {
1618 outfile <<
"b1->SetFillColor(" << color <<
");" << std::endl;
1622 outfile<<
"b1->DrawBox("<<
x1<<
","<<
y1<<
","<<
x2<<
","<<
y2<<
");"<<std::endl;
1624 outfile<<
"b2->DrawBox("<<
x1<<
","<<
y1<<
","<<
x2<<
","<<
y2<<
");"<<std::endl;
1628 outfile<<
"t->SetTextColor(4);"<<std::endl;
1630 outfile<<
"t->SetTextSize(0.025);"<<std::endl;
1631 else if(fLastCe<251)
1632 outfile<<
"t->SetTextSize(0.015);"<<std::endl;
1634 outfile<<
"t->SetTextSize(0.008);"<<std::endl;
1637 outfile<<
"t->DrawText("<<
x<<
","<<
y<<
","<<
"\""<<
iCell<<
"\""<<
");"<<std::endl;
1641 outfile<<
"// ============== End Rectangles ==========="<< std::endl;
1654 GetDistr()->FillBinarySearchTree(
ev);
1663 if(fDistr)
delete fDistr;
static const Float_t kVlow
static const Float_t kHigh
int Int_t
Signed integer 4 bytes (int)
long Long_t
Signed long integer 4 bytes (long). Size depends on architecture.
float Float_t
Float 4 bytes (float)
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.
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 filename
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t wmin
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 x2
Option_t Option_t TPoint TPoint const char x1
Option_t Option_t TPoint TPoint const char y2
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t wmax
Option_t Option_t TPoint TPoint const char y1
R__EXTERN TStyle * gStyle
TVectorT< Double_t > TVectorD
const_iterator begin() const
const_iterator end() const
virtual Double_t GetBinCenter(Int_t bin) const
Return center of bin.
virtual void SetOwner(Bool_t enable=kTRUE)
Set whether this collection is the owner (enable==true) of its content.
TDirectory::TContext keeps track and restore the current directory.
1-D histogram with a double per channel (see TH1 documentation)
virtual Double_t GetBinCenter(Int_t bin) const
Return bin center for 1D histogram.
virtual Int_t GetNbinsY() const
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 GetBinContent(Int_t bin) const
Return content of bin number bin.
2-D histogram with a double per channel (see TH1 documentation)
ostringstream derivative to redirect and format output
PDEFoamCell * GetPare() const
void SetDriv(Double_t Driv)
void SetIntg(Double_t Intg)
This class is the abstract kernel interface for PDEFoam.
Implementation of PDEFoam.
Double_t GetCellElement(const PDEFoamCell *cell, UInt_t i) const
Returns cell element i of cell 'cell'.
void DeleteBinarySearchTree()
Delete the foam's density estimator, which contains the binary search tree.
void MakeAlpha()
Internal subprogram used by Create.
TObjArray * fVariableNames
collection of all variable names
virtual Float_t GetCellValue(const std::vector< Float_t > &xvec, ECellValue cv, PDEFoamKernelBase *)
This function finds the cell, which corresponds to the given untransformed event vector 'xvec' and re...
void OutputGrow(Bool_t finished=false)
Overridden function of PDEFoam to avoid native foam output.
void SetCellElement(PDEFoamCell *cell, UInt_t i, Double_t value)
Set cell element i of cell to value.
Int_t Divide(PDEFoamCell *)
Internal subprogram used by Create.
void PrintCell(Long_t iCell=0)
Prints geometry of and elements of 'iCell', as well as relations to parent and daughter cells.
void ResetCellElements()
Remove the cell elements from all cells.
void Grow()
Internal subprogram used by Create.
TH1D * Draw1Dim(ECellValue cell_value, Int_t nbin, PDEFoamKernelBase *kernel=nullptr)
Draws 1-dimensional foam (= histogram)
Double_t Eval(Double_t *xRand, Double_t &event_density)
Internal subprogram.
void PrintCells()
Prints geometry of ALL cells of the FOAM.
void SetXmax(Int_t idim, Double_t wmax)
set upper foam bound in dimension idim
virtual ~PDEFoam()
Default destructor.
PDEFoam()
Default constructor for streamer, user should not use it.
virtual TH2D * Project2(Int_t idim1, Int_t idim2, ECellValue cell_value=kValue, PDEFoamKernelBase *kernel=nullptr, UInt_t nbin=50)
Project foam variable idim1 and variable idim2 to histogram.
virtual Bool_t CellValueIsUndefined(PDEFoamCell *)
Returns true, if the value of the given cell is undefined.
virtual void FillFoamCells(const Event *ev, Float_t wt)
This function fills a weight 'wt' into the PDEFoam cell, which corresponds to the given event 'ev'.
void Create()
Basic initialization of FOAM invoked by the user.
void SetInhiDiv(Int_t, Int_t)
This can be called before Create, after setting kDim It defines which variables are excluded in the p...
void InitCells()
Internal subprogram used by Create.
PDEFoamCell * FindCell(const std::vector< Float_t > &) const
Find cell that contains 'xvec' (in foam coordinates [0,1]).
void FillBinarySearchTree(const Event *ev)
Insert event to internal foam's density estimator PDEFoamDensityBase.
virtual void Explore(PDEFoamCell *Cell)
Internal subprogram used by Create.
void SetXmin(Int_t idim, Double_t wmin)
set lower foam bound in dimension idim
std::vector< TMVA::PDEFoamCell * > FindCells(const std::vector< Float_t > &) const
Find all cells, that contain txvec.
void Varedu(Double_t[5], Int_t &, Double_t &, Double_t &)
Internal subprogram used by Create.
Int_t CellFill(Int_t, PDEFoamCell *)
Internal subprogram used by Create.
Long_t PeekMax()
Internal subprogram used by Create.
void RootPlot2dim(const TString &filename, TString opt, Bool_t createCanvas=kTRUE, Bool_t colors=kTRUE)
Debugging tool which plots the cells of a 2-dimensional PDEFoam as rectangles in C++ format readable ...
void CheckAll(Int_t)
User utility, miscellaneous and debug.
void SetDim(Int_t kDim)
Sets dimension of cubical space.
Timing information for training and evaluation of MVA methods.
Mother of all ROOT objects.
virtual void Print(Option_t *option="") const
This method must be overridden when a class wants to print itself.
Random number generator class based on M.
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
void SetPalette(Int_t ncolors=kBird, Int_t *colors=nullptr, Float_t alpha=1.)
See TColor::SetPalette.
Int_t GetColorPalette(Int_t i) const
Return color number i in current palette.
Int_t GetNumberOfColors() const
Return number of colors in the color palette.
MsgLogger & Endl(MsgLogger &ml)
Short_t Abs(Short_t d)
Returns the absolute value of parameter Short_t d.