14 <contact>Software team b2soft@mail.desy.de</contact>
15 <output>EvtGenSimRecLarge.root</output>
17 This steering file produces 10000 generic BBbar events with
18 EvtGen, runs the detector simulation with mixed in background, and performs
19 the standard reconstruction. It will only be run for release validation in
20 order to test the software on a larger set of events to be more closer to
21 the typical runtime on a grid site.
23 <interval>release</interval>
27 from basf2
import set_random_seed, create_path, process, statistics
28 from simulation
import add_simulation
29 from reconstruction
import add_reconstruction
30 from beamparameters
import add_beamparameters
31 from validation
import statistics_plots, event_timing_plot
32 from background
import get_background_files
34 set_random_seed(12345)
39 main.add_module(
"EventInfoSetter", evtNumList=[10000], runList=[1], expList=[0])
42 add_beamparameters(main,
"Y4S")
45 main.add_module(
"EvtGenInput")
48 add_simulation(main, bkgfiles=get_background_files())
51 add_reconstruction(main)
53 main.add_module(
'Progress')
55 main.add_module(
"Profile")
58 main.add_module(
"RootOutput",
59 outputFileName=
"../EvtGenSimRecLarge.root",
60 branchNames=[
"ProfileInfo"])
68 "EvtGenSimRecLarge_statistics.root",
69 contact=
"Software team b2soft@mail.desy.de",
70 job_desc=
"a standard simulation and reconstruction job with generic "
72 prefix=
"EvtGenSimRecLarge",
75 "../EvtGenSimRecLarge.root",
76 "EvtGenSimRecLarge_statistics.root",
77 contact=
"Software team b2soft@mail.desy.de",
78 job_desc=
"a standard simulation and reconstruction job with generic "
80 prefix=
"EvtGenSimRecLarge",