17 from rawdata
import add_raw_seqoutput
18 from softwaretrigger
import constants
25 components = constants.DEFAULT_HLT_COMPONENTS
27 main_path = basf2.create_path()
29 main_path.add_module(
"SeqRootInput", inputFileName=
"hlt_rawdata_simulation.sroot")
33 main_path.add_module(
"HistoManager")
35 add_hlt_processing(main_path, store_array_debug_prescale=1, components=components)
37 add_raw_seqoutput(main_path, additionalObjects=[
"SoftwareTriggerResults",
"SoftwareTriggerVariables",
"ROIs"])
39 basf2.print_path(main_path)
40 basf2.process(main_path)
42 print(basf2.statistics)