Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:17:43

0001 # Copyright 2020, Jefferson Science Associates, LLC.
0002 # Subject to the terms in the LICENSE file found in the top-level directory.
0003 #
0004 # This is a simple example JANA python script. It shows how to add plugins
0005 # and set configuration parameters. Event processing will start once this
0006 # script exits.
0007 import jana
0008 
0009 jana.AddPlugin('JTest')
0010 jana.SetParameterValue('jana:nevents', 10)
0011 
0012 jana.Run()