Newer
Older
#include "MantidKernel/MDUnitFactory.h"
#include "MantidKernel/MDUnit.h"
#include "MantidKernel/UnitLabelTypes.h"
#include <boost/regex.hpp>
namespace Mantid {
namespace Kernel {
LabelUnit *LabelUnitFactory::createRaw(const std::string &unitString) const {
return new LabelUnit(UnitLabel(unitString));
bool LabelUnitFactory::canInterpret(const std::string &) const {
return true; // Can always treat a unit as a label unit.
InverseAngstromsUnit *
InverseAngstromsUnitFactory::createRaw(const std::string &) const {
return new InverseAngstromsUnit;
bool InverseAngstromsUnitFactory::canInterpret(
const std::string &unitString) const {
boost::regex pattern("(Angstrom\\^-1)");
boost::smatch match; // Unused.
return boost::regex_search(unitString, match, pattern);
ReciprocalLatticeUnit *
ReciprocalLatticeUnitFactory::createRaw(const std::string &) const {
return new ReciprocalLatticeUnit;
bool ReciprocalLatticeUnitFactory::canInterpret(
const std::string &unitString) const {
auto isRLU = unitString == Units::Symbol::RLU.ascii();
// In addition to having RLU we can encounter units of type "in 6.28 A^-1"
// We need to account for the latter here
boost::regex pattern("in.*A\\^-1");
auto isHoraceStyle = boost::regex_match(unitString, pattern);
return isRLU || isHoraceStyle;
MDUnitFactory_uptr makeMDUnitFactoryChain() {
typedef MDUnitFactory_uptr FactoryType;
auto first = FactoryType(new InverseAngstromsUnitFactory);
first->setSuccessor(FactoryType(new ReciprocalLatticeUnitFactory))
// Add more factories here!
// Make sure that LabelUnitFactory is the last in the chain to give a fall
// through
.setSuccessor(FactoryType(new LabelUnitFactory));
} // namespace Kernel
} // namespace Mantid