Belle II Software development
display.py
1
8import basf2
9
10from argparse import ArgumentParser
11
12if __name__ == '__main__':
13 basf2.reset_database()
14 basf2.use_central_database("data_reprocessing_prompt")
15
16 parser = ArgumentParser(description="Example steering file for the ZMQ tests")
17 parser.add_argument("--input", required=True, help="ZMQ Input Address")
18
19 args = parser.parse_args()
20
21 path = basf2.Path()
22
23 path.add_module("HLTZMQ2DsDirect", input=args.input)
24 path.add_module("Gearbox")
25 path.add_module("Geometry")
26 path.add_module("Display")
27
28 basf2.process(path)