Changeset 843 for trunk/MagicSoft/Mars/mbase/MTaskList.cc
- Timestamp:
- 06/12/01 13:08:58 (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MTaskList.cc
r752 r843 135 135 *fLog << "Preprocessing... " << flush; 136 136 137 fParList = pList; 138 137 139 // 138 140 // create the Iterator over the tasklist … … 149 151 *fLog << task->GetName() << "... " << flush; 150 152 151 if (!task->PreProcess( pList))153 if (!task->PreProcess(fParList)) 152 154 return kFALSE; 153 155 } … … 164 166 Bool_t MTaskList::Process() 165 167 { 168 // 169 // Reset the HasChanged flag. 170 // Reset all containers. 171 // 172 fParList->SetHasChanged(kFALSE); 173 fParList->Reset(); 174 166 175 // 167 176 // create the Iterator for the TaskList … … 218 227 *fLog << "Postprocessing... " << flush; 219 228 229 // FIXME: At the moment all containers are post processed independ of 230 // whether it was preprocessed or not. 231 220 232 // 221 233 // create the Iterator for the TaskList
Note:
See TracChangeset
for help on using the changeset viewer.