Changeset 652
- Timestamp:
- 02/28/01 10:43:58 (24 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MParList.cc
r651 r652 102 102 } 103 103 104 MParContainer*MParList::FindObject(const char *name) const104 TObject *MParList::FindObject(const char *name) const 105 105 { 106 106 // … … 108 108 // 'name' is the name of the object you are searching for. 109 109 // 110 return ( MParContainer*)fContainer.FindObject(name);110 return (TObject*)fContainer.FindObject(name); 111 111 } 112 112 -
trunk/MagicSoft/Mars/mbase/MParList.h
r651 r652 40 40 void SetLogStream(MLog *log); 41 41 42 MParContainer*FindObject(const char *name) const;42 TObject *FindObject(const char *name) const; 43 43 44 44 void Print(Option_t *t = NULL);
Note:
See TracChangeset
for help on using the changeset viewer.