Belle II Software  release-06-01-16
feiSLB0_RDstar.py
1 #!/usr/bin/env python3
2 
3 
10 
11 """
12 <header>
13  <output>feiSLB0_RDstar_Validation.root</output>
14  <contact>cameron.harris@adelaide.edu.au>, Tommy Martinov <tommy.martinov@desy.de</contact>
15 </header>
16 """
17 
18 # NOTE: This file is auto-generated by b2skim-generate-validation.
19 # Do not make changes here, as your changes may be overwritten.
20 # Instead, make changes to the validation_histograms method of
21 # feiSLB0_RDstar.
22 
23 import basf2 as b2
24 import modularAnalysis as ma
25 from skim.WGs.fei import feiSLB0_RDstar
26 
27 path = b2.Path()
28 skim = feiSLB0_RDstar(
29  validation=True,
30  udstOutput=False,
31 )
32 
33 ma.inputMdstList(
34  b2.find_file(skim.validation_sample, data_type="validation"),
35  path=path,
36 )
37 skim(path)
38 
39 path.add_module('Progress')
40 b2.process(path)
Definition: __init__.py:1