Belle II Software  release-06-01-15
masterclass.py
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 
4 
11 
12 from basf2 import Path, process
13 from sys import argv
14 
15 main = Path()
16 
17 main.add_module('RootInput')
18 
19 masterclass = main.add_module('MasterClass')
20 if (len(argv) > 1):
21  masterclass.param('outputFileName', argv[1])
22 
23 process(main)