Changeset 1524 for trunk/MagicSoft/Mars/mbase/MParList.h
- Timestamp:
- 09/16/02 10:10:17 (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MParList.h
r1477 r1524 36 36 37 37 public: 38 enum { kDoNotReset = BIT(15) }; 39 38 40 MParList(const char *name=NULL, const char *title=NULL); 39 41 MParList(MParList &ts); … … 45 47 46 48 Bool_t Replace(MParContainer *obj); 49 void Remove(MParContainer *obj); 47 50 48 51 void SetLogStream(MLog *log); … … 78 81 79 82 void SetOwner(Bool_t enable=kTRUE); 83 Bool_t IsOwner() const { return TestBit(kIsOwner); } 80 84 81 85 void Print(Option_t *t = NULL) const; … … 84 88 void SetNames(TObjArray &arr); 85 89 90 void SavePrimitive(ofstream &out, Option_t *o=""); 91 86 92 ClassDef(MParList, 1) // list of parameter containers (MParContainer) 87 93 };
Note:
See TracChangeset
for help on using the changeset viewer.