Changeset 2419 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 10/21/03 09:31:06 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MMatrixLoop.cc
r2206 r2419 34 34 35 35 #include "MHMatrix.h" 36 #include "MLog.h" 36 37 37 38 ClassImp(MMatrixLoop); … … 53 54 // -------------------------------------------------------------------------- 54 55 // 56 57 Int_t MMatrixLoop::PreProcess(MParList *plist) 58 { 59 fNumRow = 0; 60 61 return fMatrix ? kTRUE : kFALSE; 62 } 63 64 // -------------------------------------------------------------------------- 65 // 55 66 // Set the present row of the Matrix, stops the loop when all rows have 56 67 // been accessed. … … 61 72 } 62 73 74 75 76 77 78 79 80 81 82 -
trunk/MagicSoft/Mars/manalysis/MMatrixLoop.h
r2206 r2419 5 5 #include "MTask.h" 6 6 #endif 7 7 8 8 9 class MHMatrix; … … 21 22 MMatrixLoop(MHMatrix *mat, const char *name=NULL, const char *title=NULL); 22 23 23 Int_t PreProcess(MParList *plist) 24 { 25 fNumRow = 0; 26 27 return fMatrix ? kTRUE : kFALSE; 28 } 29 24 Int_t PreProcess(MParList *plist); 30 25 Int_t Process(); 31 26
Note:
See TracChangeset
for help on using the changeset viewer.