Newer
Older
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI,
// NScD Oak Ridge National Laboratory, European Spallation Source,
// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
// SPDX - License - Identifier: GPL - 3.0 +
Gigg, Martyn Anthony
committed
#include "MantidAPI/IEventWorkspace.h"
#include "MantidKernel/IPropertyManager.h"
Gigg, Martyn Anthony
committed
const std::string IEventWorkspace::toString() const {
std::ostringstream os;
os << MatrixWorkspace::toString() << "\n";
os << "Events: " + std::to_string(getNumberEvents());
case WEIGHTED:
os << " (weighted)\n";
break;
case WEIGHTED_NOTIME:
os << " (weighted, no times)\n";
break;
case TOF:
os << "\n";
break;
}
return os.str();
}
Gigg, Martyn Anthony
committed
/*
* In order to be able to cast PropertyWithValue classes correctly a definition
*for the PropertyWithValue<IEventWorkspace> is required
Gigg, Martyn Anthony
committed
*
*/
Gigg, Martyn Anthony
committed
template <>
MANTID_API_DLL Mantid::API::IEventWorkspace_sptr
IPropertyManager::getValue<Mantid::API::IEventWorkspace_sptr>(
const std::string &name) const {
dynamic_cast<PropertyWithValue<Mantid::API::IEventWorkspace_sptr> *>(
getPointerToProperty(name));
if (prop) {
Gigg, Martyn Anthony
committed
return *prop;
std::string message =
"Attempt to assign property " + name +
" to incorrect type. Expected shared_ptr<IEventWorkspace>.";
Gigg, Martyn Anthony
committed
throw std::runtime_error(message);
}
}
template <>
MANTID_API_DLL Mantid::API::IEventWorkspace_const_sptr
IPropertyManager::getValue<Mantid::API::IEventWorkspace_const_sptr>(
const std::string &name) const {
dynamic_cast<PropertyWithValue<Mantid::API::IEventWorkspace_sptr> *>(
getPointerToProperty(name));
if (prop) {
Gigg, Martyn Anthony
committed
return prop->operator()();
std::string message =
"Attempt to assign property " + name +
" to incorrect type. Expected const shared_ptr<IEventWorkspace>.";
Gigg, Martyn Anthony
committed
throw std::runtime_error(message);
}
}
// namespace Kernel
Gigg, Martyn Anthony
committed
} // namespace Mantid
///\endcond TEMPLATE