Changeset 1080 for trunk/MagicSoft/Mars/mbase/MEvtLoop.cc
- Timestamp:
- 11/15/01 11:07:21 (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MEvtLoop.cc
r1048 r1080 16 16 ! 17 17 ! 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> 19 19 ! 20 20 ! Copyright: MAGIC Software Development, 2000-2001 … … 114 114 if (!fParList) 115 115 { 116 *fLog << dbginf << "Parlist not initialized." << endl;116 *fLog << err << dbginf << "Parlist not initialized." << endl; 117 117 return kFALSE; 118 118 } … … 125 125 if (!fTaskList) 126 126 { 127 *fLog << dbginf << "Cannot find tasklist '" << tlist << "' in parameter list." << endl;127 *fLog << err << dbginf << "Cannot find tasklist '" << tlist << "' in parameter list." << endl; 128 128 return kFALSE; 129 129 } … … 139 139 if (!fTaskList->PreProcess(fParList)) 140 140 { 141 *fLog << "Error detected while PreProcessing" << endl;141 *fLog << err << "Error detected while PreProcessing" << endl; 142 142 return kFALSE; 143 143 } … … 159 159 // each event 160 160 // 161 *fLog << "Eventloop running (";161 *fLog << all <<"Eventloop running ("; 162 162 163 163 if (maxcnt<0) … … 201 201 fProgress->SetPosition(maxcnt - dummy); 202 202 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). 203 212 } 204 213 else … … 210 219 clock.Stop(); 211 220 212 *fLog << "Ready!" << endl << endl;221 *fLog << all << "Ready!" << endl << endl; 213 222 214 223 clock.Print();
Note:
See TracChangeset
for help on using the changeset viewer.