Newer
Older
Janik Zikovsky
committed
/*WIKI*
Workspaces contain information in logs. Often these detail what happened to the sample during the experiment. This algorithm allows one named log to be entered.
The log can be either a String, a Number, or a Number Series. If you select Number Series, the workspace start time will be used as the time of the log entry, and the number in the text used as the (only) value.
Janik Zikovsky
committed
*WIKI*/
Steve Williams
committed
//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------
Peterson, Peter
committed
#include "MantidAlgorithms/AddSampleLog.h"
Steve Williams
committed
#include "MantidKernel/Exception.h"
Janik Zikovsky
committed
#include "MantidKernel/ListValidator.h"
#include "MantidKernel/MandatoryValidator.h"
Janik Zikovsky
committed
#include "MantidKernel/Strings.h"
#include "MantidKernel/TimeSeriesProperty.h"
#include "MantidKernel/PropertyWithValue.h"
Steve Williams
committed
#include <string>
namespace Mantid
{
namespace Algorithms
{
// Register the algorithm into the AlgorithmFactory
DECLARE_ALGORITHM(AddSampleLog)
Janik Zikovsky
committed
/// Sets documentation strings for this algorithm
void AddSampleLog::initDocs()
{
Janik Zikovsky
committed
this->setWikiSummary("Used to insert a value into the sample logs in a workspace.");
this->setOptionalMessage("Used to insert a value into the sample logs in a workspace.");
Janik Zikovsky
committed
}
Steve Williams
committed
using namespace Kernel;
using namespace API;
void AddSampleLog::init()
{
declareProperty(new WorkspaceProperty<>("Workspace","",Direction::InOut),
"Workspace to add the log entry to");
declareProperty("LogName", "", boost::make_shared<MandatoryValidator<std::string> >(),
Steve Williams
committed
"The name that will identify the log entry");
Janik Zikovsky
committed
declareProperty("LogText", "",
"The content of the log");
Janik Zikovsky
committed
std::vector<std::string> propOptions;
propOptions.push_back("String");
propOptions.push_back("Number");
propOptions.push_back("Number Series");
declareProperty("LogType", "String",boost::make_shared<StringListValidator>(propOptions),
Janik Zikovsky
committed
"The type that the log data will be."
);
Steve Williams
committed
}
void AddSampleLog::exec()
{
// A pointer to the workspace to add a log to
MatrixWorkspace_sptr wSpace = getProperty("Workspace");
Gigg, Martyn Anthony
committed
// we're going to edit the workspaces run details so get a non-const reference to it
Run &theRun = wSpace->mutableRun();
Steve Williams
committed
// get the data that the user wants to add
std::string propName = getProperty("LogName");
std::string propValue = getProperty("LogText");
Janik Zikovsky
committed
std::string propType = getPropertyValue("LogType");
// Remove any existing log
if (theRun.hasProperty(propName))
Janik Zikovsky
committed
theRun.removeLogData(propName);
Steve Williams
committed
Janik Zikovsky
committed
if (propType == "String")
{
theRun.addLogData(new PropertyWithValue<std::string>(propName, propValue));
return;
}
bool valueIsInt(false);
int intVal;
double dblVal;
if ( Strings::convert(propValue, intVal) )
{
valueIsInt = true;
Janik Zikovsky
committed
}
else if ( !Strings::convert(propValue, dblVal) )
Janik Zikovsky
committed
{
throw std::invalid_argument("Error interpreting string '" + propValue + "' as a number.");
}
if (propType == "Number")
{
if (valueIsInt) theRun.addLogData(new PropertyWithValue<int>(propName, intVal));
else theRun.addLogData(new PropertyWithValue<double>(propName, dblVal));
Janik Zikovsky
committed
}
else if (propType == "Number Series")
{
Kernel::DateAndTime startTime;
try {
startTime = theRun.startTime();
} catch (std::runtime_error&) {
// Swallow the error - startTime will just be 0
}
if (valueIsInt)
{
auto tsp = new TimeSeriesProperty<int>(propName);
tsp->addValue(startTime, intVal);
theRun.addLogData(tsp);
}
else
{
auto tsp = new TimeSeriesProperty<double>(propName);
tsp->addValue(startTime, dblVal);
theRun.addLogData(tsp);
}
Janik Zikovsky
committed
}
Steve Williams
committed
}
} // namespace Algorithms
} // namespace Mantid