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