Ignore:
Timestamp:
03/27/03 13:42:00 (22 years ago)
Author:
hengsteb
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/manalysis
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MRanForest.cc

    r1870 r1871  
    226226    {
    227227        if(!gRandom)
    228             gRandom=new TRandom3(0);
     228        {
     229            *fLog << err << dbginf << "gRandom not initialized... aborting." << endl;
     230            return kFALSE;
     231        }
     232
    229233        Int_t k=Int_t(fNumData*gRandom->Rndm());
    230234
  • trunk/MagicSoft/Mars/manalysis/MRanTree.cc

    r1870 r1871  
    4141#include "MDataArray.h"
    4242
     43#include "MLog.h"
     44#include "MLogManip.h"
     45
    4346ClassImp(MRanTree);
    4447
     
    178181
    179182    // random split selection, number of trials = fNumTry
     183    if(!gRandom)
     184    {
     185        *fLog << err << dbginf << "gRandom not initialized... aborting." << endl;
     186        return kFALSE;
     187    }
    180188    for(Int_t mt=0;mt<fNumTry;mt++)
    181189    {
Note: See TracChangeset for help on using the changeset viewer.