class TROOT {
...
TSeqCollection *fUserObjects; // List of user objects
TObject *TROOT::FindObject(Text_t *name, void *&where, char option)
...
};
Adding one more parameter (option) to FindObject allows to choose
the list to be searched if it is known (the default should be all lists).
In this case user could conveniently retrieve his objects like :
TUserObject* p = (TUserObject*) gROOT->FindObject(name,where,'u');
Any comments?
Regards, Pasha