Belle II Software  release-05-01-25
test_display.py
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 import basf2
4 
5 
6 if __name__ == "__main__":
7  path = basf2.Path()
8  path.add_module("ReceiveEvent", Host="erctl", Port=4002)
9 
10  # path.add_module("PrintCollections", printForEvent=0)
11  path.add_module("EventInfoPrinter")
12 
13  basf2.process(path)
basf2.process
def process(path, max_event=0)
Definition: __init__.py:25