diff --git a/Framework/Kernel/inc/MantidKernel/ContainerDtype.h b/Framework/Kernel/inc/MantidKernel/ContainerDtype.h new file mode 100644 index 0000000000000000000000000000000000000000..7ab867061520e83ff5b93d8073b0de1bb3e00de2 --- /dev/null +++ b/Framework/Kernel/inc/MantidKernel/ContainerDtype.h @@ -0,0 +1,68 @@ +#ifndef MANTID_KERNEL_CONTAINERDTYPE_H_ +#define MANTID_KERNEL_CONTAINERDTYPE_H_ + +#include <string> +#include <vector> +#include <type_traits> + +#include <boost/python/class.hpp> +#include <boost/python/implicit.hpp> +#include <boost/python/init.hpp> +#include <boost/python/make_function.hpp> +#include <boost/python/register_ptr_to_python.hpp> +#include <boost/python/return_value_policy.hpp> + +/** + ContainerDtype Header File + + A helper free function to allow identification of data type being used by providing a + numpy friendly string. + + @author Lamar Moore STFC, Bhuvan Bezawada STFC + @date 21/06/2018 + + Copyright © 2018 ISIS Rutherford Appleton Laboratory, NScD Oak + Ridge National Laboratory & European Spallation Source + + This file is part of Mantid. + + 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. + + 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. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + + File change history is stored at: <https://github.com/mantidproject/mantid>. + Code Documentation is available at: <http://doxygen.mantidproject.org> +*/ +namespace dtypeHelper { + +template <template<class> typename Container, typename HeldType> +std::string dtype(Container<HeldType> &self) { + if (std::is_same<HeldType, bool>::value) { + return "b"; + } + else if (std::is_integral<HeldType>::value) { + return "i"; + } + else if (std::is_floating_point<HeldType>::value) { + return "d"; + } + else if (std::is_same<HeldType, std::string>::value) { + return "s"; + } + else { + return "obj"; + } +} + +} + +#endif /*MANTID_KERNEL_CONTAINERDTYPE_H_*/