3Functionality of constructor and
Draw() methods were extended to support interactive
4work in the python scripts. If extra block parameter is True, script execution
5will be suspended until <space> key pressed by user. Simple example:
10# block until space is pressed
11br = ROOT.TBrowser(block = True)
13# continue work to load new files
15# block here again until space is pressed
18# continues after <space> is pressed
Using a TBrowser one can browse all ROOT objects.