Just pair of numbers - min and max values of bin border.
More...
#include <ParticleWeightingBinLimits.h>
Just pair of numbers - min and max values of bin border.
Definition at line 21 of file ParticleWeightingBinLimits.h.
◆ ParticleWeightingBinLimits() [1/2]
◆ ParticleWeightingBinLimits() [2/2]
Constructor.
- Parameters
-
ul | some bin border |
ll | another bin border |
Definition at line 36 of file ParticleWeightingBinLimits.h.
37 {
38 if (ul > ll) {
39 m_upperLimit = ul;
40 m_lowerLimit = ll;
41 } else if (ul < ll) {
42 m_upperLimit = ll;
43 m_lowerLimit = ul;
44
45 } else {
46 B2FATAL("Trying to create bin with equal limits");
47 }
48 }
◆ first()
◆ second()
◆ m_lowerLimit
◆ m_upperLimit
The documentation for this class was generated from the following file: