Belle II Software  release-06-02-00
SLUntagged.py
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 
4 
11 
12 """
13 <header>
14  <output>SLUntagged_Validation.root</output>
15  <contact>shanette.delamotte@adelaide.edu.au</contact>
16 </header>
17 """
18 
19 # NOTE: This file is auto-generated by b2skim-generate-validation.
20 # Do not make changes here, as your changes may be overwritten.
21 # Instead, make changes to the validation_histograms method of
22 # SLUntagged.
23 
24 import basf2 as b2
25 import modularAnalysis as ma
26 from skim.WGs.semileptonic import SLUntagged
27 
28 path = b2.Path()
29 skim = SLUntagged(validation=True, udstOutput=False)
30 
31 ma.inputMdstList(
32  "default",
33  b2.find_file(skim.validation_sample, data_type="validation"),
34  path=path,
35 )
36 skim(path)
37 
38 b2.process(path)
Definition: __init__.py:1