Skip to content
Snippets Groups Projects
Commit 60dcb0cc authored by Samuel Jones's avatar Samuel Jones
Browse files

Re #22705 Date and time jiggery pokery

parent 2875e5c0
No related branches found
No related tags found
No related merge requests found
...@@ -23,6 +23,7 @@ public: ...@@ -23,6 +23,7 @@ public:
private: private:
void init() override; void init() override;
void exec() override; void exec() override;
std::string getFormattedDate(std::string date, std::string time);
}; };
} // namespace DataHandling } // namespace DataHandling
} // namespace Mantid } // namespace Mantid
......
...@@ -7,8 +7,10 @@ ...@@ -7,8 +7,10 @@
#include "MantidDataObjects/WorkspaceCreation.h" #include "MantidDataObjects/WorkspaceCreation.h"
#include "MantidHistogramData/Histogram.h" #include "MantidHistogramData/Histogram.h"
#include "MantidDataObjects/Workspace2D.h" #include "MantidDataObjects/Workspace2D.h"
#include "MantidKernel/DateAndTime.h"
#include <fstream> #include <fstream>
#include <map>
namespace Mantid { namespace Mantid {
namespace DataHandling { namespace DataHandling {
...@@ -284,11 +286,28 @@ void LoadPSIMuonBin::exec() { ...@@ -284,11 +286,28 @@ void LoadPSIMuonBin::exec() {
} }
//Set axis variables //Set axis variables
//outputWorkspace.setYUnit("Counts");
//Set log numbers //outputWorkspace.setXUnit("μs")
//outputWorkspace.setLabel("Time");
//Set log numbers
Mantid::Types::Core::DateAndTime start(getFormattedDate(dateStart));
Mantid::Types::Core::DateAndTime end(getFormattedDate(dateEnd));
outputWorkspace->mutableRun().setStartAndEndTime(start, end);
setProperty("OutputWorkspace", outputWorkspace); setProperty("OutputWorkspace", outputWorkspace);
} }
std::string LoadPSIMuonBin::getFormattedDateTime(std::string date, std::string time){
std::map<std::string, std::string> months{{"JAN", "01"},{"FEB", "02"},{"MAR", "03"},{"APR", "04"},{"MAY", "05"},{"JUN", "06"},{"JUL", "07"},{"AUG", "08"},{"SEP", "09"},{"OCT", "10"},{"NOV", "11"},{"DEC", "12"}};
/*
std::string day = date.substr(0,2);
std::string year = "20" + date.substr(7,2);
std::string originalMonth = date.substr(3, 3);
std::string month = months.find(originalMonth)->second;
std::string validDate = year + "-" + month + "-" + day;
*/
return "20" + date.substr(7,2) + "-" + months.find(date.substr(3, 3))->second + "-" + date.substr(0,2) + "T" + time;
}
} // namespace DataHandling } // namespace DataHandling
} // namespace Mantid } // namespace Mantid
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment