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}
8import ROOT
9
10# block until space is pressed
11br = ROOT.TBrowser(block = True)
12
13# continue work to load new files
14
15# block here again until space is pressed
16br.Draw(block = True)
17
18# continues after <space> is pressed
19\endcode
20\endpythondoc
Using a TBrowser one can browse all ROOT objects.
Definition TBrowser.h:37
th1 Draw()