Go to the documentation of this file.00001 {
00002 #include <stdio>
00003 TString expression="*1";
00004 TString searchfolder="Go4";
00005 TObject* result=0;
00006 Bool_t reset=kTRUE;
00007 while((result=go4->NextMatchingObject(expression.Data(),
00008 searchfolder.Data(),
00009 reset))!=0)
00010 {
00011 reset=kFALSE;
00012 printf("Found result object: %s\n",result->GetName());
00013 go4->SendObjectToGUI((TNamed*) result);
00014 }
00015
00016 }