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
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",
62process(main, calculateStatistics=
True)
65 "EvtGenSimRec_statistics.root",
66 contact=
"arul.prakash@physik.uni-muenchen.de",
67 job_desc=
"a standard simulation and reconstruction job with generic EvtGen events",
68 prefix=
"EvtGenSimRec",
71 "../EvtGenSimRec.root",
72 "EvtGenSimRec_statistics.root",
73 contact=
"arul.prakash@physik.uni-muenchen.de",
74 job_desc=
"a standard simulation and reconstruction job with generic EvtGen events",
75 prefix=
"EvtGenSimRec",