Ignore:
Timestamp:
12/20/03 13:46:17 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mranforest/MRanTree.cc

    r2307 r2728  
    2424
    2525/////////////////////////////////////////////////////////////////////////////
    26 //                                                                         //
    27 // MRanTree                                                                //
    28 //                                                                         //
    29 // ParameterContainer for Tree structure                                   //
    30 //                                                                         //
    31 //                                                                         //
     26//
     27// MRanTree
     28//
     29// ParameterContainer for Tree structure
     30//
    3231/////////////////////////////////////////////////////////////////////////////
    3332#include "MRanTree.h"
     
    159158    Double_t pno=0;
    160159    Double_t pdo=0;
    161     for (Int_t j=0;j<2;j++)
     160    for (Int_t j=0; j<2; j++)
    162161    {
    163162        pno+=tclasspop[j]*tclasspop[j];
     
    171170    // (Gini-index as criterium crit)
    172171
    173     Double_t critmax=-1.0e20;  // FIXME: Replace by a constant from limits.h
     172    Double_t critmax=-FLT_MAX;
    174173
    175174    // random split selection, number of trials = fNumTry
    176     for(Int_t mt=0;mt<fNumTry;mt++)
     175    for (Int_t mt=0; mt<fNumTry; mt++)
    177176    {
    178177        const Int_t mvar=Int_t(gRandom->Rndm()*mdim);
Note: See TracChangeset for help on using the changeset viewer.