Changeset 984 for trunk/MagicSoft/Mars/mbase/MParList.h
- Timestamp:
- 10/24/01 13:57:43 (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MParList.h
r959 r984 20 20 #include "MParContainer.h" 21 21 #endif 22 23 #include <TObjArray.h> 22 24 23 25 class MLog; … … 49 51 MParContainer *FindCreateObj(const char *classname, const char *objname=NULL); 50 52 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 TObjArray FindObjectList(const char *name, UInt_t first, const UInt_t last) const; 54 TObjArray FindObjectList(const char *name, const UInt_t num) const 55 { 56 return FindObjectList(name, 0, num); 57 } 53 58 54 static TObjArray CreateObjList(const char *cname, const UInt_t from, const UInt_t to=0, const char *oname=NULL); 59 TObjArray FindCreateObjList(const char *cname, UInt_t first, const UInt_t last, const char *oname=NULL); 60 TObjArray FindCreateObjList(const char *cname, const UInt_t num, const char *oname=NULL) 61 { 62 return FindCreateObjList(cname, 0, num, oname); 63 } 64 65 static TObjArray CreateObjList(const char *cname, UInt_t first, const UInt_t last, const char *oname=NULL); 66 static TObjArray CreateObjList(const char *cname, const UInt_t num, const char *oname=NULL) 67 { 68 return CreateObjList(cname, 0, num, oname); 69 } 55 70 56 71 void Reset();
Note:
See TracChangeset
for help on using the changeset viewer.