13<input>../DSTtoMDST.mdst.root</input>
14<output>../MDSTtoUDST.udst.root</output>
15<contact>Frank Meier; frank.meier@duke.edu</contact>
21from modularAnalysis
import outputUdst
24rootFileName =
'../MDSTtoUDST'
25logFileName = rootFileName +
'.log'
26sys.stdout = open(logFileName,
'w')
28main = basf2.create_path()
29input = basf2.register_module(
'RootInput')
30input.param(
'inputFileName',
'../DSTtoMDST.mdst.root')
32outputUdst(
'../MDSTtoUDST.udst.root', path=main)
34main.add_module(
'Progress')
38print(basf2.statistics)