Belle II Software  release-05-01-25
test1_BtoXll.py
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 
4 
5 """
6 <header>
7  <input>../BtoXll.dst.root</input>
8  <output>../BtoXll.udst.root</output>
9  <contact>soumen.halder@desy.de</contact>
10 </header>
11 """
12 
13 
14 import basf2 as b2
15 import modularAnalysis as ma
16 from skim.ewp import BtoXll
17 
18 path = b2.Path()
19 
20 fileList = ['../BtoXll.dst.root']
21 ma.inputMdstList('default', fileList, path=path)
22 
23 skim = BtoXll(OutputFileName='../BtoXll.udst.root')
24 skim(path)
25 b2.process(path)
skim
Definition: __init__.py:1
skim.ewp
Definition: ewp.py:1