Belle II Software  release-05-01-25
test1_BtoDh_Kshh.py
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 
4 """
5 <header>
6  <input>../BtoDh_Kshh.dst.root</input>
7  <output>14140200.udst.root</output>
8  <contact>niharikarout@physics.iitm.ac.in</contact>
9  <interval>nightly</interval>
10 </header>
11 """
12 __author__ = [
13  "N. Dash",
14  "N. Rout"
15 ]
16 
17 import basf2 as b2
18 import modularAnalysis as ma
19 from skim.btocharm import BtoD0h_Kshh
20 
21 path = b2.Path()
22 
23 fileList = ['../BtoDh_Kshh.dst.root']
24 ma.inputMdstList('default', fileList, path=path)
25 
26 skim = BtoD0h_Kshh()
27 skim(path)
28 b2.process(path)
skim.btocharm
Definition: btocharm.py:1
skim
Definition: __init__.py:1