Ignore:
Timestamp:
11/14/01 10:03:20 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r1027 r1076  
    197197//  check if the object is in the list or not
    198198//
    199 TObject *MTaskList::FindObject(TObject *obj) const
     199TObject *MTaskList::FindObject(const TObject *obj) const
    200200{
    201201    return fTasks->FindObject(obj);
     
    360360        *fLog << "Execution Statistics: " << endl;
    361361        *fLog << "---------------------" << endl;
    362         *fLog << GetName() << " [" << ClassName() << "]" << endl;
     362        *fLog << GetDescriptor() << endl;
    363363    }
    364364    else
    365365    {
    366         *fLog << setw(lvl) << " " << GetName() << " [";
    367         *fLog << ClassName() << "]" << endl;
     366        *fLog << setw(lvl) << " " << GetDescriptor() << endl;
    368367    }
    369368
     
    380379void MTaskList::Print(Option_t *t) const
    381380{
    382     *fLog << "TaskList: " << GetName() << " <" << GetTitle() << ">" << endl;
     381    *fLog << GetDescriptor() << " <" << GetTitle() << ">" << endl;
    383382
    384383    fTasks->Print();
Note: See TracChangeset for help on using the changeset viewer.