Belle II Software  light-2205-abys
options.py
1 
8 
9 '''
10 Wrappers around options and interfaces defined within the Belle2::MVA namespace.
11 '''
12 
13 
14 def CombinationOptions():
15  '''
16  Wrapper around CombinationOptions Belle2::MVA:CombinationOptions().
17  '''
18  import ROOT # noqa
19  return ROOT.Belle2.MVA.CombinationOptions()
20 
21 
22 def FANNOptions():
23  '''
24  Wrapper around FANNOptions Belle2::MVA:FANNOptions().
25  '''
26  import ROOT # noqa
27  return ROOT.Belle2.MVA.FANNOptions()
28 
29 
30 def FastBDTOptions():
31  '''
32  Wrapper around FastBDTOptions Belle2::MVA:FastBDTOptions().
33  '''
34  import ROOT # noqa
35  return ROOT.Belle2.MVA.FastBDTOptions()
36 
37 
38 def GeneralOptions():
39  '''
40  Wrapper around GeneralOptions Belle2::MVA:GeneralOptions().
41  '''
42  import ROOT # noqa
43  return ROOT.Belle2.MVA.GeneralOptions()
44 
45 
46 def MetaOptions():
47  '''
48  Wrapper around MetaOptions Belle2::MVA:MetaOptions().
49  '''
50  import ROOT # noqa
51  return ROOT.Belle2.MVA.MetaOptions()
52 
53 
54 def PDFOptions():
55  '''
56  Wrapper around PDFOptions Belle2::MVA:PDFOptions().
57  '''
58  import ROOT # noqa
59  return ROOT.Belle2.MVA.PDFOptions()
60 
61 
62 def PythonOptions():
63  '''
64  Wrapper around PythonOptions Belle2::MVA:PythonOptions().
65  '''
66  import ROOT # noqa
67  return ROOT.Belle2.MVA.PythonOptions()
68 
69 
70 def RegressionFastBDTOptions():
71  '''
72  Wrapper around RegressionFastBDTOptions Belle2::MVA:RegressionFastBDTOptions().
73  '''
74  import ROOT # noqa
75  return ROOT.Belle2.MVA.RegressionFastBDTOptions()
76 
77 
78 def ReweighterOptions():
79  '''
80  Wrapper around ReweighterOptions Belle2::MVA:ReweighterOptions().
81  '''
82  import ROOT # noqa
83  return ROOT.Belle2.MVA.ReweighterOptions()
84 
85 
86 def TMVAOptionsClassification():
87  '''
88  Wrapper around TMVAOptionsClassification Belle2::MVA:TMVAOptionsClassification().
89  '''
90  import ROOT # noqa
91  return ROOT.Belle2.MVA.TMVAOptionsClassification()
92 
93 
94 def TMVAOptionsMulticlass():
95  '''
96  Wrapper around TMVAOptionsMulticlass Belle2::MVA:TMVAOptionsMulticlass().
97  '''
98  import ROOT # noqa
99  return ROOT.Belle2.MVA.TMVAOptionsMulticlass()
100 
101 
102 def TMVAOptionsRegression():
103  '''
104  Wrapper around TMVAOptionsRegression Belle2::MVA:TMVAOptionsRegression().
105  '''
106  import ROOT # noqa
107  return ROOT.Belle2.MVA.TMVAOptionsRegression()
108 
109 
110 def TrivialOptions():
111  '''
112  Wrapper around TrivialOptions Belle2::MVA:TrivialOptions().
113  '''
114  import ROOT # noqa
115  return ROOT.Belle2.MVA.TrivialOptions()