Ignore:
Timestamp:
02/15/09 23:12:04 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbase
Files:
3 edited

Legend:

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

    r9336 r9343  
    11/* ======================================================================== *\
    2 ! $Name: not supported by cvs2svn $:$Id: MLog.cc,v 1.63 2009-02-15 13:24:59 tbretz Exp $
     2! $Name: not supported by cvs2svn $:$Id: MLog.cc,v 1.64 2009-02-15 23:00:34 tbretz Exp $
    33! --------------------------------------------------------------------------
    44!
     
    834834    // annoying errors in case of a log-scale set too early
    835835    if (level==kError && !strcmp(location, "THistPainter::PaintInit"))
    836         level=kInfo;
     836        level=kInfo+2;
    837837
    838838    gLog << std::flush;
     
    841841
    842842    if (level >= kInfo)
    843        gLog << inf;
     843        gLog << inf;
     844    if (level==kInfo+1)
     845        gLog << inf2;
     846    if (level==kInfo+2)
     847        gLog << inf3;
    844848    if (level >= kWarning)
    845849        gLog << warn;
  • trunk/MagicSoft/Mars/mbase/MPrint.cc

    r5715 r9343  
    149149Int_t MPrint::Process()
    150150{
     151    gLog << flush << all;
    151152    if (TestBit(kSeparator))
    152153        gLog.Separator() << endl;
  • trunk/MagicSoft/Mars/mbase/MTaskList.cc

    r9037 r9343  
    584584    fTasksProcess.Clear();
    585585    while ((task=(MTask*)Next()))
    586         if (task->IsA()==MTask::Class() || task->OverwritesProcess())
     586        if (task->IsA()==MTask::Class() || task->Overwrites("Process"))
    587587            fTasksProcess.Add(task);
    588588
     
    621621    while ((task=(MTask*)Next()))
    622622    {
     623        // Supress output if not necessary
     624        if (!task->Overwrites("ReInit"))
     625            continue;
     626
    623627        *fLog << all << task->GetName() << "... " << flush;
    624628
Note: See TracChangeset for help on using the changeset viewer.