Jpp  17.3.1
the software that should make you happy
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
JRange_t.hh
Go to the documentation of this file.
1 #ifndef __JRECONSTRUCTION__JRANGE_T__
2 #define __JRECONSTRUCTION__JRANGE_T__
3 
4 #include "JTools/JRange.hh"
5 
6 /**
7  * \author mdejong
8  */
9 
10 namespace JRECONSTRUCTION {}
11 namespace JPP { using namespace JRECONSTRUCTION; }
12 
13 namespace JRECONSTRUCTION {
14 
15  /**
16  * Type definition of range.
17  */
18  struct JRange_t :
19  public JTOOLS::JRange<double>
20  {
21  /**
22  * Default constructor.
23  */
25  JTOOLS::JRange<double>()
26  {}
27 
28 
29  /**
30  * Constructor.
31  *
32  * \param x lower limit
33  * \param y upper limit
34  */
35  JRange_t(double x,
36  double y) :
37  JTOOLS::JRange<double>(x, y)
38  {}
39  };
40 }
41 
42 #endif
Type definition of range.
Definition: JRange_t.hh:18
Range of values.
Definition: JRange.hh:38
JRange_t()
Default constructor.
Definition: JRange_t.hh:24
Auxiliary class to define a range between two values.
JRange_t(double x, double y)
Constructor.
Definition: JRange_t.hh:35