Newer
Older
Peterson, Peter
committed
#include "MantidAlgorithms/ChangeLogTime.h"
#include "MantidDataObjects/EventWorkspace.h"
#include "MantidKernel/TimeSeriesProperty.h"
#include <sstream>
namespace Mantid {
namespace Algorithms {
Peterson, Peter
committed
// Register the algorithm into the AlgorithmFactory
Peterson, Peter
committed
using std::string;
using std::stringstream;
using std::vector;
using namespace Mantid::API;
using namespace Mantid::DataObjects;
using namespace Mantid::Kernel;
/// Empty constructor allocates no resources.
Peterson, Peter
committed
/// Empty destructor deallocates no resources.
ChangeLogTime::~ChangeLogTime() {}
Peterson, Peter
committed
/// Algorithm's name for identification
const string ChangeLogTime::name() const { return "ChangeLogTime"; }
Peterson, Peter
committed
/// Algorithm's version for identification
int ChangeLogTime::version() const { return 1; }
Peterson, Peter
committed
/// Algorithm's category for identification
const std::string ChangeLogTime::category() const {
return "DataHandling\\Logs";
Peterson, Peter
committed
}
/// Declares the parameters for running the algorithm.
void ChangeLogTime::init() {
declareProperty(new WorkspaceProperty<API::MatrixWorkspace>(
"InputWorkspace", "", Direction::Input),
"A workspace");
declareProperty(new WorkspaceProperty<API::MatrixWorkspace>(
"OutputWorkspace", "", Direction::Output),
"The name to use for the output workspace");
Peterson, Peter
committed
this->declareProperty("LogName", "", "Name of the log to add the offset to");
this->declareProperty(
new PropertyWithValue<double>("TimeOffset", Direction::Input),
"Number of seconds (a float) to add to the time of each log value. "
"Required.");
Peterson, Peter
committed
}
/// Do the actual work of modifying the log in the workspace.
Peterson, Peter
committed
// check that a log was specified
string logname = this->getProperty("LogName");
if (logname.empty()) {
throw std::runtime_error("Failed to supply a LogName");
}
// everything will need an offset
double offset = this->getProperty("TimeOffset");
// make sure the log is in the input workspace
MatrixWorkspace_sptr inputWS = getProperty("InputWorkspace");
Kernel::TimeSeriesProperty<double> *oldlog =
dynamic_cast<Kernel::TimeSeriesProperty<double> *>(
inputWS->run().getLogData(logname));
Peterson, Peter
committed
if (!oldlog) {
stringstream msg;
msg << "InputWorkspace \'" << this->getPropertyValue("InputWorkspace")
<< "\' does not have LogName \'" << logname << "\'";
throw std::runtime_error(msg.str());
}
// Create the new log
auto newlog = new TimeSeriesProperty<double>(logname);
Peterson, Peter
committed
newlog->setUnits(oldlog->units());
int size = oldlog->realSize();
vector<double> values = oldlog->valuesAsVector();
vector<DateAndTime> times = oldlog->timesAsVector();
for (int i = 0; i < size; i++) {
newlog->addValue(times[i] + offset, values[i]);
}
// Just overwrite if the change is in place
MatrixWorkspace_sptr outputWS = getProperty("OutputWorkspace");
IAlgorithm_sptr duplicate = createChildAlgorithm("CloneWorkspace");
duplicate->initialize();
duplicate->setProperty<Workspace_sptr>(
"InputWorkspace", boost::dynamic_pointer_cast<Workspace>(inputWS));
duplicate->execute();
Workspace_sptr temp = duplicate->getProperty("OutputWorkspace");
outputWS = boost::dynamic_pointer_cast<MatrixWorkspace>(temp);
setProperty("OutputWorkspace", outputWS);
Peterson, Peter
committed
}
outputWS->mutableRun().addProperty(newlog, true);
Peterson, Peter
committed
}
} // namespace Mantid
} // namespace Algorithms