Mantid
Loading...
Searching...
No Matches
SpecialCoordinateSystem.cpp
Go to the documentation of this file.
1//
2// Created by jbq on 4/20/21.
3//
4// Mantid Repository : https://github.com/mantidproject/mantid
5//
6// Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI,
7// NScD Oak Ridge National Laboratory, European Spallation Source,
8// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
9// SPDX - License - Identifier: GPL - 3.0 +
11
12#include <boost/python/enum.hpp>
13
15 boost::python::enum_<Mantid::Kernel::SpecialCoordinateSystem>("SpecialCoordinateSystem")
16 .value("NONE", Mantid::Kernel::None)
17 .value("QLab", Mantid::Kernel::QLab)
18 .value("QSample", Mantid::Kernel::QSample)
19 .value("HKL", Mantid::Kernel::HKL);
20}
void export_SpecialCoordinateSystem()