Belle II Software
release-05-01-25
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)
masterclass
examples
masterclass.py
Generated on Fri Nov 5 2021 03:55:29 for Belle II Software by
1.8.17