Changeset 1600 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 11/13/02 17:03:19 (22 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MContinue.cc
r1538 r1600 27 27 // MContinue // 28 28 // // 29 // Does nothing than return kCONTINUE in the Process-fu cntion //29 // Does nothing than return kCONTINUE in the Process-function // 30 30 // (use with filters) // 31 31 // // -
trunk/MagicSoft/Mars/mbase/MEvtLoop.cc
r1540 r1600 85 85 #include "MTaskList.h" 86 86 #ifdef __MARS__ 87 #include "MRead Tree.h"// for setting progress bar87 #include "MRead.h" // for setting progress bar 88 88 #include "MProgressBar.h" // MProgressBar::GetBar 89 89 #endif … … 213 213 else 214 214 { 215 MReadTree *read = (MReadTree*)fTaskList->FindObject("MReadTree"); 216 if (!read) 217 read = (MReadTree*)fTaskList->FindObject("MReadMarsFile"); 218 if (read) 215 MRead *read = (MRead*)fTaskList->FindObject("MRead"); 216 if (read && read->GetEntries()>0) 219 217 fProgress->SetRange(0, read->GetEntries()); 220 218 }
Note:
See TracChangeset
for help on using the changeset viewer.