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