Changeset 891 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 07/20/01 16:44:11 (23 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MParList.cc
r890 r891 69 69 // -------------------------------------------------------------------------- 70 70 // 71 // copy constructor 71 // Copy constructor. It copies all entries of the parameter list, but it 72 // takes care of, that the automatically created entries are only deleted 73 // once. (doesn't copy the list which holds the automatically created 74 // entries) 72 75 // 73 76 MParList::MParList(MParList &ts) … … 78 81 // -------------------------------------------------------------------------- 79 82 // 80 // create the Iterator over the tasklist 83 // Set the logging streamer of the parameter list and all contained 84 // parameter containers 81 85 // 82 86 void MParList::SetLogStream(MLog *log) -
trunk/MagicSoft/Mars/mbase/MParList.h
r858 r891 29 29 TOrdCollection fAutodelete; // All what this list contains is deleted in the destructor 30 30 31 static TString GetClassName(const char *classname); 32 static TString GetObjectName(const char *classname, const char *objname); 33 31 34 public: 32 35 MParList(const char *name=NULL, const char *title=NULL); … … 38 41 39 42 Bool_t AddToList(MParContainer *obj, MParContainer *where = NULL); 43 void AddToList(TObjArray *list); 40 44 41 45 void SetLogStream(MLog *log); … … 44 48 TObject *FindObject(TObject *obj) const; 45 49 MParContainer *FindCreateObj(const char *classname, const char *objname=NULL); 50 51 TObjArray FindObjectList(const char *name, const UInt_t from, const UInt_t to=0) const; 52 TObjArray FindCreateObjList(const char *cname, const UInt_t from, const UInt_t to=0, const char *oname=NULL); 53 54 static TObjArray CreateObjList(const char *cname, const UInt_t from, const UInt_t to=0, const char *oname=NULL); 46 55 47 56 void Reset();
Note:
See TracChangeset
for help on using the changeset viewer.