#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<double>
  {
    /**
     * Default constructor.
     */
    JRange_t() :
      JTOOLS::JRange<double>()
    {}


    /**
     * Constructor.
     *
     * \param  x                lower limit
     * \param  y                upper limit
     */
    JRange_t(double x,
             double y) :
      JTOOLS::JRange<double>(x, y)
    {}
  };
}

#endif