12from basf2
import create_path, register_module
13from analysisDQM
import get_hadB_path
16rec_path_1 = create_path()
18rec_path_1.add_module(
'RootInput')
20get_hadB_path(rec_path_1)
22histo = register_module(
"HistoManager")
23rec_path_1.add_module(histo)
24histo.param(
'histoFileName',
'outHist.root')
26basf2.process(rec_path_1)