"Framework/Kernel/git@code.ornl.gov:mantidproject/mantid.git" did not exist on "57b1b7fc35eedf82fe0e02fa6e10a73875e82372"
Newer
Older
#include "HelloWorldAlgorithm.h"
namespace Mantid
{
namespace Algorithms
{
Russell Taylor
committed
DECLARE_ALGORITHM(HelloWorldAlgorithm)
Russell Taylor
committed
/**
Anders Markvardsen
committed
declareProperty("WhatKindOfWorld","Mantid");
Russell Taylor
committed
/**
Russell Taylor
committed
void HelloWorldAlgorithm::exec()
{
Anders Markvardsen
committed
// g_log is a reference to the logger. It is used to print out information,
// warning, and error messages
std::string boevs = getProperty("WhatKindOfWorld");
g_log.information() << "\nHello " + boevs + " World!\n";