Ignore:
Timestamp:
06/12/01 13:08:58 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r752 r843  
    135135    *fLog << "Preprocessing... " << flush;
    136136
     137    fParList = pList;
     138
    137139    //
    138140    //  create the Iterator over the tasklist
     
    149151        *fLog << task->GetName() << "... " << flush;
    150152
    151         if (!task->PreProcess( pList ))
     153        if (!task->PreProcess(fParList))
    152154            return kFALSE;
    153155    }
     
    164166Bool_t MTaskList::Process()
    165167{
     168    //
     169    // Reset the HasChanged flag.
     170    // Reset all containers.
     171    //
     172    fParList->SetHasChanged(kFALSE);
     173    fParList->Reset();
     174
    166175    //
    167176    //  create the Iterator for the TaskList
     
    218227    *fLog << "Postprocessing... " << flush;
    219228
     229    // FIXME: At the moment all containers are post processed independ of
     230    // whether it was preprocessed or not.
     231
    220232    //
    221233    //  create the Iterator for the TaskList
Note: See TracChangeset for help on using the changeset viewer.