#ifndef __JRECONSTRUCTION__JRANGE_T__ #define __JRECONSTRUCTION__JRANGE_T__ #include "JTools/JRange.hh" /** * \author mdejong */ namespace JRECONSTRUCTION {} namespace JPP { using namespace JRECONSTRUCTION; } namespace JRECONSTRUCTION { /** * Type definition of range. */ struct JRange_t : public JTOOLS::JRange { /** * Default constructor. */ JRange_t() : JTOOLS::JRange() {} /** * Constructor. * * \param x lower limit * \param y upper limit */ JRange_t(double x, double y) : JTOOLS::JRange(x, y) {} }; } #endif