Belle II Software development
test_display.py
1#!/usr/bin/env python3
2# -*- coding: utf-8 -*-
3
4
11import basf2
12
13
14if __name__ == "__main__":
15 path = basf2.Path()
16 path.add_module("ReceiveEvent", Host="erctl", Port=4002)
17
18 # path.add_module("PrintCollections", printForEvent=0)
19 path.add_module("EventInfoPrinter")
20
21 basf2.process(path)