Belle II Software  release-08-01-10
processor.py
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 
4 
11 import basf2
12 import hbasf2
13 from softwaretrigger import constants
14 from softwaretrigger.processing import finalize_zmq_path, setup_basf2_and_db, start_zmq_path
15 
16 
17 args = setup_basf2_and_db(zmq=True)
18 
19 path, reco_path = start_zmq_path(args, location=constants.Location.hlt)
20 
21 # Monitor/Debug modules
22 reco_path.add_module('MonitorData')
23 reco_path.add_module('ElapsedTime', EventInterval=10000)
24 
25 finalize_zmq_path(path, args, location=constants.Location.hlt)
26 
27 basf2.print_path(path)
28 hbasf2.process(path, [args.dqm, args.output], True)