Belle II Software  release-05-01-25
beam_reco_monitor.py
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 import basf2
4 from softwaretrigger import constants
5 from softwaretrigger.processing import setup_basf2_and_db, start_path, finalize_path, add_hlt_processing
6 
7 args = setup_basf2_and_db()
8 
9 path = start_path(args, location=constants.Location.hlt)
10 add_hlt_processing(path, run_type=constants.RunTypes.beam,
11  softwaretrigger_mode=constants.SoftwareTriggerModes.monitor)
12 finalize_path(path, args, location=constants.Location.hlt)
13 
14 basf2.print_path(path)
15 basf2.process(path)
basf2.process
def process(path, max_event=0)
Definition: __init__.py:25
softwaretrigger.processing
Definition: processing.py:1