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:
11# block until space is pressed
12br = ROOT.TBrowser(block = True)
14# continue work to load new files
16# block here again until space is pressed
19# continues after <space> is pressed
Using a TBrowser one can browse all ROOT objects.