Belle II Software  release-05-01-25
test1_TauLFV.py
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 
4 """
5 <header>
6  <input>../TauLFV.dst.root</input>
7  <output>../TauLFV.udst.root</output>
8  <contact>kenji@hepl.phys.nagoya-u.ac.jp</contact>
9 </header>
10 """
11 
12 __author__ = "Kenji Inami"
13 
14 
15 import basf2 as b2
16 import modularAnalysis as ma
17 from skim.taupair import TauLFV
18 
19 path = b2.Path()
20 
21 fileList = ['../TauLFV.dst.root']
22 ma.inputMdstList('default', fileList, path=path)
23 
24 skim = TauLFV(OutputFileName='../TauLFV.udst.root')
25 skim(path)
26 b2.process(path)
skim
Definition: __init__.py:1
skim.taupair
Definition: taupair.py:1