Warning, file /jana2/src/python/examples/jana_example2.py was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005 import time
0006 import jana
0007
0008 print('Hello from jana.py!!!')
0009
0010
0011 jana.SetTicker(False)
0012
0013
0014 for i in range(1,5):
0015 time.sleep(1)
0016 print(" waiting ... %d" % (4-i))
0017
0018
0019 jana.Start()
0020
0021
0022 for i in range(1,6):
0023 time.sleep(1)
0024 print(" running ... %d (Nevents: %d)" % (i, jana.GetNeventsProcessed()))
0025
0026
0027 jana.Quit()
0028