int main(int argc, char** argv)
{
static TROOT theROOT("OTHRoot","OTHRoot",initfuncs) ;
TApplication* theApp = new TApplication("Applic",&argc,argv) ;
for(int i=0; i<100000; i++)
{
cout << i << endl;
gSystem->InnerLoop() ;
}
return(0);
};
The loop over gSystem->InnerLoop() is exactly what appears in
TMonitor::Select(). What did I forget ?
Regards, thanks,
Wouter