13 <output>EvtGenSimRec.root</output>
15 <contact>arul.prakash@physik.uni-muenchen.de</contact>
16 <description>This steering file produces 1000 generic BBbar events with EvtGen,
17 runs the detector simulation with mixed in background, and performs the standard reconstruction.</description>
21from basf2
import set_random_seed, create_path, process, statistics
22from simulation
import add_simulation
23from reconstruction
import add_reconstruction
24from svd
import add_svd_create_recodigits
25from validation
import statistics_plots, event_timing_plot
26from background
import get_background_files
36main.add_module(
"EventInfoSetter", evtNumList=[1000], runList=[1], expList=[0])
39main.add_module(
"EvtGenInput")
42add_simulation(main, bkgfiles=get_background_files())
45add_reconstruction(main)
49add_svd_create_recodigits(main)
51main.add_module(
'Progress')
53main.add_module(
"Profile")
58 additionalBranchNames=[
"SpacePoints",
"SVDSpacePoints"],
59 outputFileName=
"../EvtGenSimRec.root",
68 "EvtGenSimRec_statistics.root",
69 contact=
"arul.prakash@physik.uni-muenchen.de",
70 job_desc=
"a standard simulation and reconstruction job with generic EvtGen events",
71 prefix=
"EvtGenSimRec",
74 "../EvtGenSimRec.root",
75 "EvtGenSimRec_statistics.root",
76 contact=
"arul.prakash@physik.uni-muenchen.de",
77 job_desc=
"a standard simulation and reconstruction job with generic EvtGen events",
78 prefix=
"EvtGenSimRec",