DESY Hbb Analysis Framework
Public Member Functions | Public Attributes | List of all members
JME::JetResolutionObject::Range Struct Reference

#include <JetResolutionObject.h>

Public Member Functions

bool is_inside (float value) const
 
 Range ()
 
 Range (float min, float max)
 

Public Attributes

 COND_SERIALIZABLE
 
float max
 
float min
 

Detailed Description

Definition at line 122 of file JetResolutionObject.h.

Constructor & Destructor Documentation

JME::JetResolutionObject::Range::Range ( )
inline

Definition at line 126 of file JetResolutionObject.h.

126  {
127  // Empty
128  }
JME::JetResolutionObject::Range::Range ( float  min,
float  max 
)
inline

Definition at line 130 of file JetResolutionObject.h.

130  {
131  this->min = min;
132  this->max = max;
133  }

Member Function Documentation

bool JME::JetResolutionObject::Range::is_inside ( float  value) const
inline

Definition at line 135 of file JetResolutionObject.h.

135  {
136  return (value >= min) && (value <= max);
137  }

Member Data Documentation

JME::JetResolutionObject::Range::COND_SERIALIZABLE

Definition at line 139 of file JetResolutionObject.h.

float JME::JetResolutionObject::Range::max

Definition at line 124 of file JetResolutionObject.h.

float JME::JetResolutionObject::Range::min

Definition at line 123 of file JetResolutionObject.h.


The documentation for this struct was generated from the following file: