Skip to content
Snippets Groups Projects
CreateSampleShape.cpp 1.79 KiB
Newer Older
//--------------------------------
// Includes
//--------------------------------
#include "MantidDataHandling/CreateSampleShape.h"
Nick Draper's avatar
Nick Draper committed
#include "MantidGeometry/Objects/ShapeFactory.h"
#include "MantidKernel/MandatoryValidator.h"
namespace Mantid {
namespace DataHandling {
// Register the algorithm into the AlgorithmFactory
DECLARE_ALGORITHM(CreateSampleShape)
using namespace Mantid::DataHandling;
using namespace Mantid::API;
/**
 * Initialize the algorithm
 */
void CreateSampleShape::init() {
  using namespace Mantid::Kernel;
  declareProperty(make_unique<WorkspaceProperty<MatrixWorkspace>>(
                      "InputWorkspace", "", Direction::Input),
                  "The workspace with which to associate the sample ");
  declareProperty("ShapeXML", "",
                  boost::make_shared<MandatoryValidator<std::string>>(),
                  "The XML that describes the shape");
}
/**
 * Execute the algorithm
 */
void CreateSampleShape::exec() {
  // Get the input workspace
  MatrixWorkspace_sptr workspace = getProperty("InputWorkspace");
  // Get the XML definition
  std::string shapeXML = getProperty("ShapeXML");
  Geometry::ShapeFactory sFactory;
  // Create the object
Martyn Gigg's avatar
Martyn Gigg committed
  auto shape = sFactory.createShape(shapeXML);
  // Check it's valid and attach it to the workspace sample but preserve any
  // material
  if (shape->hasValidShape()) {
    const auto &mat = workspace->sample().getMaterial();
Martyn Gigg's avatar
Martyn Gigg committed
    shape->setMaterial(mat);
    workspace->mutableSample().setShape(*shape);
Martyn Gigg's avatar
Martyn Gigg committed
    std::ostringstream msg;
    msg << "Object has invalid shape. TopRule = " << shape->topRule()
        << ", number of surfaces = " << shape->getSurfacePtr().size() << "\n";
    throw std::runtime_error(msg.str());
  // Done!
  progress(1);
}