Changeset 2742 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
12/22/03 20:01:16 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2739 r2742  
    44
    55                                                 -*-*- END OF LINE -*-*-
     6 2003/12/22: Thomas Bretz
     7 
     8   * manalysis/MCT1FindSupercuts.cc, manalysis/MFindSupercuts.cc:
     9     - replaced MFRandomSplit by MFEventSelector
     10
     11
     12
    613 2003/12/21: Thomas Bretz
    714
  • trunk/MagicSoft/Mars/manalysis/MCT1FindSupercuts.cc

    r2695 r2742  
    5858#include "MFillH.h"
    5959//#include "MGeomCamCT1Daniel.h"
    60 #include "MFRandomSplit.h"
     60#include "MFEventSelector.h"
    6161#include "MGeomCamCT1.h"
    6262#include "MH3.h"
     
    522522    Double_t prob =  ( (Double_t) howmanytrain )
    523523                   / ( (Double_t)(howmanytrain+howmanytest) );
    524     MFRandomSplit split(prob);
     524    MFEventSelector split;
     525    split.SetSelectionRatio(prob);
    525526
    526527    MFillH filltrain(fMatrixTrain);
  • trunk/MagicSoft/Mars/manalysis/MFindSupercuts.cc

    r2695 r2742  
    5858#include "MFillH.h"
    5959//#include "MGeomCamCT1Daniel.h"
    60 #include "MFRandomSplit.h"
     60#include "MFEventSelector.h"
    6161#include "MGeomCamMagic.h"
    6262#include "MH3.h"
     
    522522    Double_t prob =  ( (Double_t) howmanytrain )
    523523                   / ( (Double_t)(howmanytrain+howmanytest) );
    524     MFRandomSplit split(prob);
     524    MFEventSelector split;
     525    split.SetSelectionRatio(prob);
    525526
    526527    MFillH filltrain(fMatrixTrain);
Note: See TracChangeset for help on using the changeset viewer.