Changeset 1084 for trunk/MagicSoft/Mars/mbase/MTask.h
- Timestamp:
- 11/15/01 12:28:18 (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MTask.h
r1076 r1084 14 14 #endif 15 15 16 class T OrdCollection;16 class TList; 17 17 18 18 class MFilter; … … 22 22 { 23 23 private: 24 T OrdCollection*fListOfBranches; // List of Branch names for auto enabeling scheme24 TList *fListOfBranches; // List of Branch names for auto enabeling scheme 25 25 26 const MFilter *fFilter; 26 const MFilter *fFilter; // Filter for conditional task execution 27 27 28 Bool_t fIsPreprocessed; 29 UInt_t fNumExecutions; 28 Bool_t fIsPreprocessed; // Indicates the success of the PreProcessing (set by MTaskList) 29 UInt_t fNumExecutions; // Number of Excutions 30 30 31 31 virtual Bool_t PreProcess(MParList *pList); … … 69 69 70 70 void SetFilter(const MFilter *filter) { fFilter=filter; } 71 const MFilter *GetFilter() const { return fFilter; } 71 72 virtual void PrintStatistics(const Int_t lvl=0) const; 72 73 … … 77 78 virtual Bool_t CallPostProcess(); 78 79 79 const T OrdCollection*GetListOfBranches() const { return fListOfBranches; }80 const TList *GetListOfBranches() const { return fListOfBranches; } 80 81 81 82 ClassDef(MTask, 0) //Abstract base class for a task
Note:
See TracChangeset
for help on using the changeset viewer.