Changeset 1084 for trunk/MagicSoft/Mars
- Timestamp:
- 11/15/01 12:28:18 (23 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MReadTree.h
r1035 r1084 21 21 Bool_t fAutoEnable; // Flag for auto enabeling scheme 22 22 23 T OrdCollection *fVetoList;// List of Branches which are not allowed to get enabled24 T OrdCollection *fNotify;// List of TObjects to notify when switching files23 TList *fVetoList; // List of Branches which are not allowed to get enabled 24 TList *fNotify; // List of TObjects to notify when switching files 25 25 26 TGProgressBar *fProgress;// Possible display of status26 TGProgressBar *fProgress; // Possible display of status 27 27 28 void SetBranchStatus(const T OrdCollection*list, Bool_t status);28 void SetBranchStatus(const TList *list, Bool_t status); 29 29 void SetBranchStatus(TObject *branch, Bool_t status); 30 30 … … 58 58 virtual void AddNotify(TObject *obj); 59 59 virtual void SetOwner(Bool_t flag=kTRUE); 60 virtual void SetReadyToSave(Bool_t flag=kTRUE); 61 virtual void Print(Option_t *opt="") const; 60 62 61 63 virtual Int_t AddFile(const char *fname); -
trunk/MagicSoft/Mars/mbase/MTask.cc
r1076 r1084 84 84 fTitle = title ? title : "Base class for all tasks (dummy task)."; 85 85 86 fListOfBranches = new T OrdCollection;86 fListOfBranches = new TList; 87 87 fListOfBranches->SetOwner(); 88 88 } -
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 -
trunk/MagicSoft/Mars/mbase/MTaskList.cc
r1080 r1084 78 78 fTitle = title ? title : "A list for tasks to be executed"; 79 79 80 fTasks = new TList; //OrdCollection;80 fTasks = new TList; 81 81 } 82 82
Note:
See TracChangeset
for help on using the changeset viewer.