/search.css" rel="stylesheet" type="text/css"/> /search.js">
Classes | |
class | SomeUserData |
class | SomeMoreUserData |
Functions | |
def | spew |
def | configure |
def | run |
Variables | |
do_write = True | |
do_read = True |
def RootIOTest::TestUserData::spew | ( | udh | ) |
Definition at line 17 of file TestUserData.py.
def RootIOTest::TestUserData::configure | ( | argv = None | ) |
Definition at line 91 of file TestUserData.py.
def RootIOTest::TestUserData::run | ( | app | ) |
Definition at line 101 of file TestUserData.py.
00102 : 00103 global do_write 00104 global do_read 00105 00106 print 'TestUserData: configured with write="%s" and read="%s"'%(do_write,do_read) 00107 00108 if do_write: 00109 alg = SomeUserData() 00110 app.addAlgorithm(alg) 00111 if do_read: 00112 alg = SomeMoreUserData() 00113 app.addAlgorithm(alg) 00114 00115 return 00116
Definition at line 89 of file TestUserData.py.
Definition at line 90 of file TestUserData.py.