6 <input>../GenericB_GENSIMRECtoDST.dst.root</input>
7 <output>../DSTtoMDST.mdst.root</output>
8 <contact>Jorge Martinez-Ortega; jmartinez@fis.cinvestav.mx</contact>
14 rootFileName =
'../DSTtoMDST'
15 logFileName = rootFileName +
'.log'
16 sys.stdout = open(logFileName,
'w')
19 from reconstruction
import add_mdst_output
21 main = basf2.create_path()
22 input = basf2.register_module(
'RootInput')
23 input.param(
'inputFileName',
'../GenericB_GENSIMRECtoDST.dst.root')
24 main.add_module(input)
25 add_mdst_output(main,
True,
'../DSTtoMDST.mdst.root')
30 print(basf2.statistics)