13 <contact>arul.prakash@physik.uni-muenchen.de</contact>
14 <output>EvtGenSimRecLarge.root</output>
16 This steering file produces 10000 generic BBbar events with
17 EvtGen, runs the detector simulation with mixed in background, and performs
18 the standard reconstruction. It will only be run for release validation in
19 order to test the software on a larger set of events to be more closer to
20 the typical runtime on a grid site.
22 <interval>release</interval>
26from basf2
import set_random_seed, create_path, process
27from simulation
import add_simulation
28from reconstruction
import add_reconstruction
29from beamparameters
import add_beamparameters
30from validation
import statistics_plots, event_timing_plot
31from background
import get_background_files
38main.add_module(
"EventInfoSetter", evtNumList=[10000], runList=[1], expList=[0])
41add_beamparameters(main,
"Y4S")
44main.add_module(
"EvtGenInput")
47add_simulation(main, bkgfiles=get_background_files())
50add_reconstruction(main)
52main.add_module(
'Progress')
54main.add_module(
"Profile")
57main.add_module(
"RootOutput",
58 outputFileName=
"../EvtGenSimRecLarge.root",
59 branchNames=[
"ProfileInfo"])
61process(main, calculateStatistics=
True)
64 "EvtGenSimRecLarge_statistics.root",
65 contact=
"arul.prakash@physik.uni-muenchen.de",
66 job_desc=
"a standard simulation and reconstruction job with generic "
68 prefix=
"EvtGenSimRecLarge",
71 "../EvtGenSimRecLarge.root",
72 "EvtGenSimRecLarge_statistics.root",
73 contact=
"arul.prakash@physik.uni-muenchen.de",
74 job_desc=
"a standard simulation and reconstruction job with generic "
76 prefix=
"EvtGenSimRecLarge",