Ignore:
Timestamp:
08/14/02 14:01:05 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r1489 r1501  
    257257// identified.
    258258//
    259 void MTask::PrintStatistics(const Int_t lvl) const
     259void MTask::PrintStatistics(const Int_t lvl, Bool_t title) const
    260260{
    261261    *fLog << all << setw(lvl) << " " << GetDescriptor() << "\t";
    262     *fLog << dec << fNumExecutions << endl;
     262    *fLog << dec << fNumExecutions;
     263    if (title)
     264        *fLog << "\t" << fTitle;
     265    *fLog << endl;
    263266}
    264267
Note: See TracChangeset for help on using the changeset viewer.