Belle II Software  release-06-01-15
feiSLBplus.py
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 
4 
11 
12 """
13 <header>
14  <output>feiSLBplus_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 # feiSLBplus.
23 
24 import basf2 as b2
25 import modularAnalysis as ma
26 from skim.WGs.fei import feiSLBplus
27 
28 path = b2.Path()
29 skim = feiSLBplus(
30  validation=True,
31  udstOutput=False,
32  analysisGlobaltag=ma.getAnalysisGlobaltag(),
33 )
34 
35 ma.inputMdstList(
36  "default",
37  b2.find_file(skim.validation_sample, data_type="validation"),
38  path=path,
39 )
40 skim(path)
41 
42 b2.process(path)
Definition: __init__.py:1