Skip to content
Snippets Groups Projects
Commit 285cb4df authored by Zhou, Wenduo's avatar Zhou, Wenduo
Browse files

Refs #22282. Fixed the issue.

parent 0bc7035c
No related branches found
No related tags found
No related merge requests found
...@@ -371,7 +371,7 @@ class SaveVulcanGSS(PythonAlgorithm): ...@@ -371,7 +371,7 @@ class SaveVulcanGSS(PythonAlgorithm):
# property run_start and duration exist # property run_start and duration exist
utctime = numpy.datetime64(run.getProperty('run_start').value) utctime = numpy.datetime64(run.getProperty('run_start').value)
time0 = numpy.datetime64("1990-01-01T0:0:0") time0 = numpy.datetime64("1990-01-01T00:00:00")
total_nanosecond_start = int((utctime - time0) / numpy.timedelta64(1, 'ns')) total_nanosecond_start = int((utctime - time0) / numpy.timedelta64(1, 'ns'))
total_nanosecond_stop = total_nanosecond_start + int(duration*1.0E9) total_nanosecond_stop = total_nanosecond_start + int(duration*1.0E9)
......
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