Changeset 7643 for trunk/MagicSoft/Mars/mfbase
- Timestamp:
- 04/21/06 17:28:45 (19 years ago)
- Location:
- trunk/MagicSoft/Mars/mfbase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mfbase/MFilterList.cc
r7601 r7643 297 297 // -------------------------------------------------------------------------- 298 298 // 299 // ReInit all filters in the list 300 // 301 Bool_t MFilterList::ReInit(MParList *pList) 302 { 303 TIter Next(&fFilters); 304 305 MFilter *filter=NULL; 306 307 // 308 // loop over all filters 309 // 310 while ((filter=(MFilter*)Next())) 311 { 312 if (!filter->ReInit(pList)) 313 { 314 *fLog << err << "Error - ReInit Filter "; 315 *fLog << filter->GetName() << " in " << fName << endl; 316 return kFALSE; 317 } 318 } 319 320 return kTRUE; 321 } 322 323 // -------------------------------------------------------------------------- 324 // 299 325 // Processes (updates) all filters in the list. 300 326 // -
trunk/MagicSoft/Mars/mfbase/MFilterList.h
r7601 r7643 55 55 TString GetDataMember() const; 56 56 57 Int_t PreProcess(MParList *pList); 58 Int_t Process(); 59 Int_t PostProcess(); 57 Bool_t ReInit(MParList *plist); 58 Int_t PreProcess(MParList *pList); 59 Int_t Process(); 60 Int_t PostProcess(); 60 61 61 62 void SetAccelerator(Byte_t acc=kAccStandard);
Note:
See TracChangeset
for help on using the changeset viewer.