Belle II Software  release-08-01-10
cosmic_dqm_only.py
1 #!/usr/bin/env python3
2 
3 
10 import basf2
11 from softwaretrigger import constants
12 from softwaretrigger.processing import setup_basf2_and_db, start_path, finalize_path, add_expressreco_processing
13 
14 args = setup_basf2_and_db()
15 
16 path = start_path(args, location=constants.Location.expressreco)
17 add_expressreco_processing(path, run_type=constants.RunTypes.cosmic, do_reconstruction=False)
18 finalize_path(path, args, location=constants.Location.expressreco)
19 
20 basf2.print_path(path)
21 basf2.process(path)