Belle II Software release-09-00-01
passthrough.py
1#!/usr/bin/env python3
2
3
10import basf2
11from softwaretrigger import constants
12from softwaretrigger.processing import setup_basf2_and_db, start_path, finalize_path
13from pxd import add_pxd_percentframe_phase3_early, add_roi_payload_assembler
14
15args = setup_basf2_and_db()
16
17path = start_path(args, location=constants.Location.hlt)
18add_pxd_percentframe_phase3_early(path, fraction=0.1, random_position=True)
19add_roi_payload_assembler(path, ignore_hlt_decision=True)
20finalize_path(path, args, location=constants.Location.hlt)
21
22basf2.print_path(path)
23basf2.process(path)