Ignore:
Timestamp:
11/15/01 12:28:18 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r1076 r1084  
    1414#endif
    1515
    16 class TOrdCollection;
     16class TList;
    1717
    1818class MFilter;
     
    2222{
    2323private:
    24     TOrdCollection *fListOfBranches; // List of Branch names for auto enabeling scheme
     24    TList *fListOfBranches; // List of Branch names for auto enabeling scheme
    2525
    26     const MFilter *fFilter;          // Filter for conditional task execution
     26    const MFilter *fFilter; // Filter for conditional task execution
    2727
    28     Bool_t fIsPreprocessed;          // Indicates the success of the PreProcessing (set by MTaskList)
    29     UInt_t fNumExecutions;           // Number of Excutions
     28    Bool_t fIsPreprocessed; // Indicates the success of the PreProcessing (set by MTaskList)
     29    UInt_t fNumExecutions;  // Number of Excutions
    3030
    3131    virtual Bool_t PreProcess(MParList *pList);
     
    6969
    7070    void SetFilter(const MFilter *filter) { fFilter=filter; }
     71    const MFilter *GetFilter() const      { return fFilter; }
    7172    virtual void PrintStatistics(const Int_t lvl=0) const;
    7273
     
    7778    virtual Bool_t CallPostProcess();
    7879
    79     const TOrdCollection *GetListOfBranches() const { return fListOfBranches; }
     80    const TList *GetListOfBranches() const { return fListOfBranches; }
    8081
    8182    ClassDef(MTask, 0) //Abstract base class for a task
Note: See TracChangeset for help on using the changeset viewer.