Changeset 2742 for trunk/MagicSoft/Mars
- Timestamp:
- 12/22/03 20:01:16 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2739 r2742 4 4 5 5 -*-*- 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 6 13 2003/12/21: Thomas Bretz 7 14 -
trunk/MagicSoft/Mars/manalysis/MCT1FindSupercuts.cc
r2695 r2742 58 58 #include "MFillH.h" 59 59 //#include "MGeomCamCT1Daniel.h" 60 #include "MF RandomSplit.h"60 #include "MFEventSelector.h" 61 61 #include "MGeomCamCT1.h" 62 62 #include "MH3.h" … … 522 522 Double_t prob = ( (Double_t) howmanytrain ) 523 523 / ( (Double_t)(howmanytrain+howmanytest) ); 524 MFRandomSplit split(prob); 524 MFEventSelector split; 525 split.SetSelectionRatio(prob); 525 526 526 527 MFillH filltrain(fMatrixTrain); -
trunk/MagicSoft/Mars/manalysis/MFindSupercuts.cc
r2695 r2742 58 58 #include "MFillH.h" 59 59 //#include "MGeomCamCT1Daniel.h" 60 #include "MF RandomSplit.h"60 #include "MFEventSelector.h" 61 61 #include "MGeomCamMagic.h" 62 62 #include "MH3.h" … … 522 522 Double_t prob = ( (Double_t) howmanytrain ) 523 523 / ( (Double_t)(howmanytrain+howmanytest) ); 524 MFRandomSplit split(prob); 524 MFEventSelector split; 525 split.SetSelectionRatio(prob); 525 526 526 527 MFillH filltrain(fMatrixTrain);
Note:
See TracChangeset
for help on using the changeset viewer.