6 <output>EvtGenSimNoBkg.root</output>
7 <contact>Software team b2soft@mail.desy.de</contact>
9 <description>This steering file produces 1000 generic BBbar events with EvtGen
10 and runs the detector simulation without mixing in background.</description>
14 from basf2
import set_random_seed, create_path, process, statistics, \
16 from simulation
import add_simulation
17 from L1trigger
import add_tsim
18 from beamparameters
import add_beamparameters
20 set_random_seed(12345)
25 eventinfosetter = register_module(
'EventInfoSetter')
26 eventinfosetter.param(
'evtNumList', [1000])
27 eventinfosetter.param(
'runList', [1])
28 eventinfosetter.param(
'expList', [0])
29 main.add_module(eventinfosetter)
32 beamparameters = add_beamparameters(main,
"Y4S")
36 evtgeninput = register_module(
'EvtGenInput')
37 main.add_module(evtgeninput)
46 main.add_module(register_module(
'Profile'))
49 output = register_module(
'RootOutput')
50 output.param(
'outputFileName',
'../EvtGenSimNoBkg.root')
51 main.add_module(output)
58 from validation
import *
60 'EvtGenSimNoBkg_statistics.root',
61 contact=
'Software team b2soft@mail.desy.de',
62 job_desc=
'a standard simulation job with generic EvtGen events',
63 prefix=
'EvtGenSimNoBkg'
66 '../EvtGenSimNoBkg.root',
'EvtGenSimNoBkg_statistics.root',
67 contact=
'Software team b2soft@mail.desy.de',
68 job_desc=
'a standard simulation job with generic EvtGen events',
69 prefix=
'EvtGenSimNoBkg'