00001 #!/usr/bin/env python 00002 ''' 00003 Navigate through the data stream 00004 ''' 00005 00006 import gaudiinterface as gi 00007 00008 def next(): 00009 ''' 00010 Advance to the next event 00011 ''' 00012 00013 print 'NEXT!' 00014 00015 gi.uiSvc().nextEvent() 00016 gi.session().flush()
1.4.7