2017-02-16 11:20:40 +01:00
|
|
|
// -*- C++ -*-
|
|
|
|
|
|
|
|
#ifndef __range_base_h__
|
|
|
|
#define __range_base_h__
|
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <vector>
|
2017-02-17 18:10:03 +01:00
|
|
|
#include <memory>
|
|
|
|
|
2017-02-16 11:20:40 +01:00
|
|
|
#include "base_def.h"
|
|
|
|
|
|
|
|
namespace MultiArrayTools
|
|
|
|
{
|
|
|
|
|
|
|
|
enum class RangeType
|
|
|
|
{
|
|
|
|
NIL = 0,
|
2017-02-17 18:10:03 +01:00
|
|
|
ANY = 1,
|
|
|
|
SPACE = 2,
|
|
|
|
MOMENTUM = 3,
|
|
|
|
LORENTZ = 4,
|
2017-03-02 19:27:46 +01:00
|
|
|
SPIN = 5,
|
2017-03-14 23:00:41 +01:00
|
|
|
ENSEMBLE = 6,
|
2017-03-27 19:29:51 +02:00
|
|
|
VALUE_ERROR = 7,
|
|
|
|
DISTANCE = 8
|
2017-02-16 11:20:40 +01:00
|
|
|
};
|
|
|
|
|
2017-07-26 18:38:11 +02:00
|
|
|
class RangeFactoryBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
RangeFactoryBase() = default;
|
|
|
|
virtual ~RangeFactoryBase() = default;
|
|
|
|
|
|
|
|
// should return mProd !!
|
|
|
|
virtual std::shared_ptr<RangeBase> create() = 0;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
std::shared_ptr<RangeBase> mProd;
|
2017-08-04 11:27:47 +02:00
|
|
|
|
|
|
|
// call this function before returning product !!
|
|
|
|
void setSelf();
|
2017-07-26 18:38:11 +02:00
|
|
|
};
|
|
|
|
|
2017-07-25 17:46:59 +02:00
|
|
|
class RangeBase
|
2017-02-16 11:20:40 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2017-07-25 17:46:59 +02:00
|
|
|
virtual ~RangeBase() = default;
|
2017-02-17 18:10:03 +01:00
|
|
|
|
2017-07-25 17:46:59 +02:00
|
|
|
virtual size_t size() const = 0;
|
|
|
|
virtual size_t dim() const = 0;
|
2017-02-16 11:20:40 +01:00
|
|
|
|
2017-07-25 17:46:59 +02:00
|
|
|
virtual std::shared_ptr<IndexBase> index() const = 0;
|
2017-07-26 18:38:11 +02:00
|
|
|
|
|
|
|
bool operator==(const RangeBase& in) const;
|
|
|
|
bool operator!=(const RangeBase& in) const;
|
2017-02-16 11:20:40 +01:00
|
|
|
|
2017-07-26 18:38:11 +02:00
|
|
|
friend RangeFactoryBase;
|
2017-06-01 13:19:27 +02:00
|
|
|
|
2017-07-26 18:38:11 +02:00
|
|
|
protected:
|
|
|
|
|
|
|
|
RangeBase() = default;
|
|
|
|
std::shared_ptr<RangeBase> mThis;
|
2017-05-24 19:01:02 +02:00
|
|
|
};
|
2017-07-25 17:46:59 +02:00
|
|
|
|
2017-02-16 11:20:40 +01:00
|
|
|
template <class Index>
|
2017-07-25 17:46:59 +02:00
|
|
|
class RangeInterface : public RangeBase
|
2017-02-16 11:20:40 +01:00
|
|
|
{
|
|
|
|
public:
|
2017-05-31 16:44:28 +02:00
|
|
|
|
2017-07-25 17:46:59 +02:00
|
|
|
typedef Index IndexType;
|
2017-06-01 13:19:27 +02:00
|
|
|
|
2017-08-04 14:57:19 +02:00
|
|
|
virtual Index begin() const = 0;
|
|
|
|
virtual Index end() const = 0;
|
2017-07-26 18:38:11 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
RangeInterface() = default;
|
2017-02-16 11:20:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "range_base.cc"
|
|
|
|
|
|
|
|
#endif
|