Ignore:
Timestamp:
10/21/03 09:31:06 (21 years ago)
Author:
wittek
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/manalysis
Files:
2 edited

Legend:

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

    r2206 r2419  
    3434
    3535#include "MHMatrix.h"
     36#include "MLog.h"
    3637
    3738ClassImp(MMatrixLoop);
     
    5354// --------------------------------------------------------------------------
    5455//
     56
     57Int_t MMatrixLoop::PreProcess(MParList *plist)
     58    {
     59        fNumRow = 0;
     60
     61        return fMatrix ? kTRUE : kFALSE;
     62    }
     63
     64// --------------------------------------------------------------------------
     65//
    5566// Set the present row of the Matrix, stops the loop when all rows have
    5667// been accessed.
     
    6172}
    6273
     74
     75
     76
     77
     78
     79
     80
     81
     82
  • trunk/MagicSoft/Mars/manalysis/MMatrixLoop.h

    r2206 r2419  
    55#include "MTask.h"
    66#endif
     7
    78
    89class MHMatrix;
     
    2122    MMatrixLoop(MHMatrix *mat, const char *name=NULL, const char *title=NULL);
    2223
    23     Int_t PreProcess(MParList *plist)
    24     {
    25         fNumRow = 0;
    26 
    27         return fMatrix ? kTRUE : kFALSE;
    28     }
    29 
     24    Int_t PreProcess(MParList *plist);
    3025    Int_t Process();
    3126
Note: See TracChangeset for help on using the changeset viewer.