Jpp 19.3.0-rc.2
the software that should make you happy
Loading...
Searching...
No Matches
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
10namespace JRECONSTRUCTION {}
11namespace JPP { using namespace JRECONSTRUCTION; }
12
13namespace 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
Auxiliary class to define a range between two values.
Range of values.
Definition JRange.hh:42
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
Model fits to data.
Auxiliary classes and methods for multi-dimensional interpolations and histograms.
Type definition of range.
Definition JRange_t.hh:20
JRange_t(double x, double y)
Constructor.
Definition JRange_t.hh:35
JRange_t()
Default constructor.
Definition JRange_t.hh:24