Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
60dcb0cc
Commit
60dcb0cc
authored
6 years ago
by
Samuel Jones
Browse files
Options
Downloads
Patches
Plain Diff
Re #22705 Date and time jiggery pokery
parent
2875e5c0
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Framework/DataHandling/inc/MantidDataHandling/LoadPSIMuonBin.h
+1
-0
1 addition, 0 deletions
...work/DataHandling/inc/MantidDataHandling/LoadPSIMuonBin.h
Framework/DataHandling/src/LoadPSIMuonBin.cpp
+22
-3
22 additions, 3 deletions
Framework/DataHandling/src/LoadPSIMuonBin.cpp
with
23 additions
and
3 deletions
Framework/DataHandling/inc/MantidDataHandling/LoadPSIMuonBin.h
+
1
−
0
View file @
60dcb0cc
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Framework/DataHandling/src/LoadPSIMuonBin.cpp
+
22
−
3
View file @
60dcb0cc
...
@@ -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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment