Newer
Older
Gigg, Martyn Anthony
committed
#ifndef MANTID_KERNEL_MATRIXPROPERTY_H_
#define MANTID_KERNEL_MATRIXPROPERTY_H_
Gigg, Martyn Anthony
committed
//-----------------------------------------------------------------------------
// Includes
//-----------------------------------------------------------------------------
Gigg, Martyn Anthony
committed
#include "MantidKernel/Matrix.h"
Gigg, Martyn Anthony
committed
#include "MantidKernel/PropertyWithValue.h"
#include "MantidKernel/NullValidator.h"
namespace Mantid {
namespace Kernel {
/*
Copyright © 2011 ISIS Rutherford Appleton Laboratory, NScD Oak Ridge
National Laboratory & European Spallation Source
Gigg, Martyn Anthony
committed
Gigg, Martyn Anthony
committed
Mantid is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
Gigg, Martyn Anthony
committed
Mantid is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
Gigg, Martyn Anthony
committed
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Gigg, Martyn Anthony
committed
File change history is stored at: <https://github.com/mantidproject/mantid>.
Code Documentation is available at: <http://doxygen.mantidproject.org>
*/
template <class TYPE = double>
class MatrixProperty : public PropertyWithValue<Matrix<TYPE>> {
/// Typedef the held type
typedef Kernel::Matrix<TYPE> HeldType;
Gigg, Martyn Anthony
committed
public:
/// Constructor
MatrixProperty(const std::string &propName,
IValidator_sptr validator = IValidator_sptr(new NullValidator),
unsigned int direction = Direction::Input);
/// Copy constructor
MatrixProperty(const MatrixProperty &rhs);
// Unhide base class members (at minimum, avoids Intel compiler warning)
using PropertyWithValue<HeldType>::operator=;
/// 'Virtual copy constructor'
inline MatrixProperty *clone() const override {
return new MatrixProperty(*this);
}
~MatrixProperty() override;
Gigg, Martyn Anthony
committed
/// Add the value of another property. Doesn't make sense here.
MatrixProperty &operator+=(Kernel::Property const *) override {
throw Exception::NotImplementedError(
"+= operator is not implemented for MatrixProperty.");
return *this;
Gigg, Martyn Anthony
committed
}
private:
/// Default constructor
MatrixProperty();
};
}
Gigg, Martyn Anthony
committed
}
#endif // MANTID_KERNEL_MATRIXPROPERTY_H_