Belle II Software  release-05-02-19
masterclass.py
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 
4 from basf2 import Path, process
5 from ROOT import gSystem
6 from sys import argv
7 
8 main = Path()
9 
10 main.add_module('RootInput')
11 
12 masterclass = main.add_module('MasterClass')
13 if (len(argv) > 1):
14  masterclass.param('outputFileName', argv[1])
15 
16 process(main)