13 <output>EvtGenSimRec.root</output>
15 <contact>giacomo.pietro@kit.edu</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 validationgenerators
import add_evtgen_for_validation
27from background
import get_background_files
37main.add_module(
"EventInfoSetter", evtNumList=[1000], runList=[1], expList=[0])
40add_evtgen_for_validation(main)
43add_simulation(main, bkgfiles=get_background_files())
46add_reconstruction(main)
50add_svd_create_recodigits(main)
52main.add_module(
'Progress')
54main.add_module(
"Profile")
59 additionalBranchNames=[
"SpacePoints",
"SVDSpacePoints"],
60 outputFileName=
"../EvtGenSimRec.root",
63process(main, calculateStatistics=
True)
66 "EvtGenSimRec_statistics.root",
67 contact=
"giacomo.pietro@kit.edu",
68 job_desc=
"a standard simulation and reconstruction job with generic EvtGen events",
69 prefix=
"EvtGenSimRec",
72 "../EvtGenSimRec.root",
73 "EvtGenSimRec_statistics.root",
74 contact=
"giacomo.pietro@kit.edu",
75 job_desc=
"a standard simulation and reconstruction job with generic EvtGen events",
76 prefix=
"EvtGenSimRec",