Ignore:
Timestamp:
11/15/01 11:07:21 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r1048 r1080  
    1616!
    1717!
    18 !   Author(s): Thomas Bretz  12/2000 (tbretz@uni-sw.gwdg.de)
     18!   Author(s): Thomas Bretz  12/2000 <mailto:tbretz@uni-sw.gwdg.de>
    1919!
    2020!   Copyright: MAGIC Software Development, 2000-2001
     
    114114    if (!fParList)
    115115    {
    116         *fLog << dbginf << "Parlist not initialized." << endl;
     116        *fLog << err << dbginf << "Parlist not initialized." << endl;
    117117        return kFALSE;
    118118    }
     
    125125    if (!fTaskList)
    126126    {
    127         *fLog << dbginf << "Cannot find tasklist '" << tlist << "' in parameter list." << endl;
     127        *fLog << err << dbginf << "Cannot find tasklist '" << tlist << "' in parameter list." << endl;
    128128        return kFALSE;
    129129    }
     
    139139    if (!fTaskList->PreProcess(fParList))
    140140    {
    141         *fLog << "Error detected while PreProcessing" << endl;
     141        *fLog << err << "Error detected while PreProcessing" << endl;
    142142        return kFALSE;
    143143    }
     
    159159    //   each event
    160160    //
    161     *fLog << "Eventloop running (";
     161    *fLog << all <<"Eventloop running (";
    162162
    163163    if (maxcnt<0)
     
    201201                fProgress->SetPosition(maxcnt - dummy);
    202202                gSystem->ProcessEvents();
     203
     204                // gClient->ProcessEventsFor(fProgress);
     205                //
     206                // root 3.02:
     207                //  * gui/: inc/TGClient.h, src/TGClient.cxx:
     208                //        new method ProcessEventsFor(TGWindow *w). Use this method to instead
     209                //        of TSystem::ProcessEvents() in case you want to allow on events for
     210                //        the specified TGWindow to be processed (like when this is a progress
     211                //        meter dialog).
    203212            }
    204213        else
     
    210219    clock.Stop();
    211220
    212     *fLog << "Ready!" << endl << endl;
     221    *fLog << all << "Ready!" << endl << endl;
    213222
    214223    clock.Print();
Note: See TracChangeset for help on using the changeset viewer.