"docs/git@code.ornl.gov:mantidproject/mantid.git" did not exist on "dc87e12fcf2938c3699a09195f89799afd392a04"
Newer
Older
#include "MantidDataObjects/PeakShapeBase.h"
#include "MantidKernel/SpecialCoordinateSystem.h"
namespace Mantid {
namespace DataObjects {
PeakShapeBase::PeakShapeBase(Kernel::SpecialCoordinateSystem frame,
std::string algorithmName, int algorithmVersion)
: m_frame(frame), m_algorithmName(algorithmName),
m_algorithmVersion(algorithmVersion) {}
/**
* @brief PeakShapeBase::frame
* @return The coordinate frame used
*/
Kernel::SpecialCoordinateSystem PeakShapeBase::frame() const { return m_frame; }
/**
* @brief PeakShapeBase::buildCommon. Serialize to JSON object and return the
* JSON value for further modification
* @param root : Ref to root value to write to
*/
void PeakShapeBase::buildCommon(Json::Value &root) const {
Json::Value shape(this->shapeName());
Json::Value algorithmName(this->algorithmName());
Json::Value algorithmVersion(this->algorithmVersion());
Json::Value frame(this->frame());
root["shape"] = shape;
root["algorithm_name"] = algorithmName;
root["algorithm_version"] = algorithmVersion;
root["frame"] = frame;
}
/**
* @brief Get the algorithm name
* @return Algorithm name
*/
std::string PeakShapeBase::algorithmName() const { return m_algorithmName; }
/**
* @brief Get the algorithmVersion
* @return Algorithm version
*/
int PeakShapeBase::algorithmVersion() const { return m_algorithmVersion; }
bool PeakShapeBase::operator==(const PeakShapeBase &other) const {
return other.frame() == this->frame();
}
} // namespace DataObjects
} // namespace Mantid