7 <output>../CharmlessHad3BodyNeutral.dst.root</output>
8 <contact>khsmith@student.unimelb.edu.au</contact>
13 from simulation
import add_simulation
14 from reconstruction
import add_reconstruction, add_mdst_output
15 from ROOT
import Belle2
18 b2.set_random_seed(12345)
21 bg = glob.glob(
'./BG/[A-Z]*.root')
24 charmless3neutralpath = b2.Path()
27 eventinfosetter = b2.register_module(
'EventInfoSetter')
28 eventinfosetter.param(
'evtNumList', [1000])
29 eventinfosetter.param(
'runList', [1])
30 eventinfosetter.param(
'expList', [0])
31 charmless3neutralpath.add_module(eventinfosetter)
34 evtgeninput = b2.register_module(
'EvtGenInput')
36 charmless3neutralpath.add_module(evtgeninput)
39 add_simulation(path=charmless3neutralpath)
42 add_reconstruction(path=charmless3neutralpath)
46 output_filename =
"../CharmlessHad3BodyNeutral.dst.root"
47 add_mdst_output(charmless3neutralpath, filename=output_filename)
50 b2.process(charmless3neutralpath)