Belle II Software  release-05-01-25
ParticleWeightingBinLimits Class Reference

Just pair of numbers - min and max values of bin border. More...

#include <ParticleWeightingBinLimits.h>

Public Member Functions

 ParticleWeightingBinLimits ()
 Constructor.
 
 ParticleWeightingBinLimits (double ul, double ll)
 Constructor. More...
 
double first ()
 Lowest bin border. More...
 
double second ()
 Highest bin border. More...
 

Private Attributes

double m_lowerLimit
 lower limit
 
double m_upperLimit
 upper limit
 

Detailed Description

Just pair of numbers - min and max values of bin border.

Definition at line 31 of file ParticleWeightingBinLimits.h.

Constructor & Destructor Documentation

◆ ParticleWeightingBinLimits()

ParticleWeightingBinLimits ( double  ul,
double  ll 
)
inline

Constructor.

Parameters
ulsome bin border
llanother bin border

Definition at line 46 of file ParticleWeightingBinLimits.h.

47  {
48  B2FATAL("Trying to create bin with equal limits");
49  }
50  }
51 
56  double first()
57  {
58  return m_lowerLimit;

Member Function Documentation

◆ first()

double first ( )
inline

Lowest bin border.

Returns
Lowest bin border

Definition at line 64 of file ParticleWeightingBinLimits.h.

◆ second()

double second ( )
inline

Highest bin border.

Returns
Highest bin border

Definition at line 73 of file ParticleWeightingBinLimits.h.


The documentation for this class was generated from the following file:
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