7 <output>../TwoTrackMuonsForLuminosity.dst.root</output>
8 <contact>zhouxy@buaa.edu.cn</contact>
13 from ROOT
import Belle2
14 from simulation
import add_simulation
15 from reconstruction
import add_reconstruction, add_mdst_output
18 basf2.set_log_level(basf2.LogLevel.INFO)
20 main = basf2.create_path()
22 main.add_module(
"EventInfoSetter", expList=0, runList=1, evtNumList=1000)
25 main.add_module(
'KKGenInput',
29 kkmcoutputfilename=
'kkmc_mumu.dat')
35 add_reconstruction(main)
38 output_filename =
"../TwoTrackMuonsForLuminosity.dst.root"
39 add_mdst_output(main, filename=output_filename)
45 print(basf2.statistics)