6 <contact>Software team b2soft@mail.desy.de</contact>
7 <output>EvtGenSimRecLarge.root</output>
9 This steering file produces 10000 generic BBbar events with
10 EvtGen, runs the detector simulation with mixed in background, and performs
11 the standard reconstruction. It will only be run for release validation in
12 order to test the software on a larger set of events to be more closer to
13 the typical runtime on a grid site.
15 <interval>release</interval>
19 from basf2
import set_random_seed, create_path, process, statistics, \
21 from simulation
import add_simulation
22 from L1trigger
import add_tsim
23 from reconstruction
import add_reconstruction
24 from beamparameters
import add_beamparameters
25 from background
import get_background_files
27 set_random_seed(12345)
32 eventinfosetter = register_module(
'EventInfoSetter')
34 eventinfosetter.param(
'evtNumList', [40000])
35 eventinfosetter.param(
'runList', [1])
36 eventinfosetter.param(
'expList', [0])
37 main.add_module(eventinfosetter)
40 beamparameters = add_beamparameters(main,
"Y4S")
44 evtgeninput = register_module(
'EvtGenInput')
45 main.add_module(evtgeninput)
48 add_simulation(main, bkgfiles=get_background_files())
54 add_reconstruction(main)
57 main.add_module(register_module(
'Profile'))
65 from validation
import *
67 'EvtGenSimRecLarge_statistics.root',
68 contact=
'Software team b2soft@mail.desy.de',
69 job_desc=
'a standard simulation and reconstruction job with generic '
71 prefix=
'EvtGenSimRecLarge'
74 '../EvtGenSimRecLarge.root',
75 'EvtGenSimRecLarge_statistics.root',
76 contact=
'Software team b2soft@mail.desy.de',
77 job_desc=
'a standard simulation and reconstruction job with generic '
79 prefix=
'EvtGenSimRecLarge'