Belle II Software
release-05-02-19
Main Page
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Typedefs
a
b
c
d
e
h
i
l
m
n
p
r
s
t
v
w
Enumerations
Enumerator
c
d
f
p
t
u
v
w
Classes
Class List
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Enumerations
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
Enumerator
a
b
c
d
e
f
g
h
k
l
m
n
o
p
r
s
t
u
v
w
z
Related Functions
b
c
d
g
i
o
r
s
t
Files
File List
File Members
All
Functions
ParticleWeightingBinLimits.h
1
/**************************************************************************
2
* BASF2 (Belle Analysis Framework 2) *
3
* Copyright(C) 2018 - Belle II Collaboration *
4
* *
5
* Author: The Belle II Collaboration *
6
* Contributors: Ilya Komarov *
7
* *
8
* This software is provided "as is" without any warranty. *
9
**************************************************************************/
10
11
#pragma once
12
#include <framework/logging/Logger.h>
13
14
namespace
Belle2
{
23
class
ParticleWeightingBinLimits {
24
double
m_lowerLimit
;
25
double
m_upperLimit
;
26
public
:
27
31
ParticleWeightingBinLimits
() {};
32
38
ParticleWeightingBinLimits
(
double
ul,
double
ll)
39
{
40
if
(ul > ll) {
41
m_upperLimit
= ul;
42
m_lowerLimit
= ll;
43
}
else
if
(ul < ll) {
44
m_upperLimit
= ll;
45
m_lowerLimit
= ul;
46
47
}
else
{
48
B2FATAL(
"Trying to create bin with equal limits"
);
49
}
50
}
51
56
double
first
()
57
{
58
return
m_lowerLimit
;
59
}
60
65
double
second
()
66
{
67
return
m_upperLimit
;
68
}
69
};
71
}
// Belle2 namespace
Belle2::ParticleWeightingBinLimits::second
double second()
Highest bin border.
Definition:
ParticleWeightingBinLimits.h:73
Belle2
Abstract base class for different kinds of events.
Definition:
MillepedeAlgorithm.h:19
Belle2::ParticleWeightingBinLimits::ParticleWeightingBinLimits
ParticleWeightingBinLimits()
Constructor.
Definition:
ParticleWeightingBinLimits.h:39
Belle2::ParticleWeightingBinLimits::m_upperLimit
double m_upperLimit
upper limit
Definition:
ParticleWeightingBinLimits.h:33
Belle2::ParticleWeightingBinLimits::m_lowerLimit
double m_lowerLimit
lower limit
Definition:
ParticleWeightingBinLimits.h:32
Belle2::ParticleWeightingBinLimits::first
double first()
Lowest bin border.
Definition:
ParticleWeightingBinLimits.h:64
analysis
dbobjects
include
ParticleWeightingBinLimits.h
Generated on Tue Jan 4 2022 02:49:38 for Belle II Software by
1.8.17