Ignore:
Timestamp:
02/15/05 18:59:34 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r6500 r6502  
    207207// Sets the preprocessed flag dependend on the return value of PreProcess.
    208208// Resets number of executions and cpu consumtion timer.
     209// If task has already been preprocessed return kTRUE.
    209210//
    210211Int_t MTask::CallPreProcess(MParList *plist)
    211212{
     213    if (fIsPreprocessed)
     214        return kTRUE;
     215
    212216    // This does not reset the counter!
    213217    fStopwatch->Reset();
Note: See TracChangeset for help on using the changeset viewer.