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