Ignore:
Timestamp:
04/21/06 17:28:45 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mfbase
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mfbase/MFilterList.cc

    r7601 r7643  
    297297// --------------------------------------------------------------------------
    298298//
     299// ReInit all filters in the list
     300//
     301Bool_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//
    299325// Processes (updates) all filters in the list.
    300326//
  • trunk/MagicSoft/Mars/mfbase/MFilterList.h

    r7601 r7643  
    5555    TString GetDataMember() const;
    5656
    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();
    6061
    6162    void SetAccelerator(Byte_t acc=kAccStandard);
Note: See TracChangeset for help on using the changeset viewer.