18 from rawdata
import add_raw_seqoutput
19 from softwaretrigger
import constants
26 components = constants.DEFAULT_HLT_COMPONENTS
28 main_path = basf2.create_path()
30 main_path.add_module(
"SeqRootInput", inputFileName=
"hlt_rawdata_simulation.sroot")
34 main_path.add_module(
"HistoManager")
36 add_hlt_processing(main_path, store_array_debug_prescale=1, components=components)
38 add_raw_seqoutput(main_path, additionalObjects=[
"SoftwareTriggerResults",
"SoftwareTriggerVariables",
"ROIs"])
40 basf2.print_path(main_path)
41 basf2.process(main_path)
43 print(basf2.statistics)