Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
_tbrowser.pyzdoc
Go to the documentation of this file.
1\pythondoc TBrowser
2
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:
6
7\code{.py}
8\endcode
9import ROOT
10
11# block until space is pressed
12br = ROOT.TBrowser(block = True)
13
14# continue work to load new files
15
16# block here again until space is pressed
17br.Draw(block = True)
18
19# continues after <space> is pressed
20\endpythondoc
Using a TBrowser one can browse all ROOT objects.
Definition TBrowser.h:37
th1 Draw()