Ignore:
Timestamp:
10/15/02 17:02:46 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MTask.cc

    r1501 r1540  
    252252// --------------------------------------------------------------------------
    253253//
    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.
    258260//
    259261void MTask::PrintStatistics(const Int_t lvl, Bool_t title) const
     
    261263    *fLog << all << setw(lvl) << " " << GetDescriptor() << "\t";
    262264    *fLog << dec << fNumExecutions;
     265    if (fFilter)
     266        *fLog << " <" << fFilter->GetName() << ">";
    263267    if (title)
    264268        *fLog << "\t" << fTitle;
     
    280284    /*
    281285     If we don't stream filter which are not in the task list itself
    282      (which means: alrteady streamed) we may be able to use the
    283      primitive streamer as some kind of validity check for the macros
     286     (which means: already streamed) we may be able to use
     287     SavePrimitive as some kind of validity check for the macros
    284288
    285289     fFilter->SavePrimitive(out);
Note: See TracChangeset for help on using the changeset viewer.