Changeset 1540 for trunk/MagicSoft/Mars/mbase/MTask.cc
- Timestamp:
- 10/15/02 17:02:46 (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MTask.cc
r1501 r1540 252 252 // -------------------------------------------------------------------------- 253 253 // 254 // Prints the number of times this task has been processed. 255 // For convinience the lvl argument results in a number of spaces at the 256 // beginning of the line. So that the structur of a tasklist can be 257 // identified. 254 // Prints the number of times all the tasks in the list has been. 255 // For convinience the lvl argument results in a number of spaces at the 256 // beginning of the line. So that the structur of a tasklist can be 257 // identified. If a Tasklist or task has filter applied the name of the 258 // filter is printer in <>-brackets behind the number of executions. 259 // Use MTaskList::PrintStatistics without an argument. 258 260 // 259 261 void MTask::PrintStatistics(const Int_t lvl, Bool_t title) const … … 261 263 *fLog << all << setw(lvl) << " " << GetDescriptor() << "\t"; 262 264 *fLog << dec << fNumExecutions; 265 if (fFilter) 266 *fLog << " <" << fFilter->GetName() << ">"; 263 267 if (title) 264 268 *fLog << "\t" << fTitle; … … 280 284 /* 281 285 If we don't stream filter which are not in the task list itself 282 (which means: alr teady streamed) we may be able to use the283 primitive streameras some kind of validity check for the macros286 (which means: already streamed) we may be able to use 287 SavePrimitive as some kind of validity check for the macros 284 288 285 289 fFilter->SavePrimitive(out);
Note:
See TracChangeset
for help on using the changeset viewer.