Belle II Software  release-05-01-25
test2_LeptonicUntagged.py
1 #!/usr/bin/env/python3
2 # -*-coding: utf-8-*-
3 
4 """
5 <header>
6  <input>../LeptonicUntagged.udst.root</input>
7  <output>LeptonicUntagged_Validation.root</output>
8  <contact>philip.grace@adelaide.edu.au</contact>
9 </header>
10 """
11 
12 import basf2 as b2
13 import modularAnalysis as ma
14 from skim.leptonic import LeptonicUntagged
15 
16 path = b2.Path()
17 skim = LeptonicUntagged()
18 
19 ma.inputMdst('default', '../LeptonicUntagged.udst.root', path=path)
20 skim.validation_histograms(path)
21 b2.process(path)
skim.leptonic
Definition: leptonic.py:1