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, statistics
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
37# specify number of events to be generated
38main.add_module("EventInfoSetter", evtNumList=[10000], runList=[1], expList=[0])
41add_beamparameters(main, "Y4S")
43# generate BBbar events
44main.add_module("EvtGenInput")
46# detector and L1 trigger simulation
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"])
67 "EvtGenSimRecLarge_statistics.root",
68 contact=
"arul.prakash@physik.uni-muenchen.de",
69 job_desc=
"a standard simulation and reconstruction job with generic "
71 prefix=
"EvtGenSimRecLarge",
74 "../EvtGenSimRecLarge.root",
75 "EvtGenSimRecLarge_statistics.root",
76 contact=
"arul.prakash@physik.uni-muenchen.de",
77 job_desc=
"a standard simulation and reconstruction job with generic "
79 prefix=
"EvtGenSimRecLarge",