Skip to content
Snippets Groups Projects
Unverified Commit 7d165a34 authored by McDonnell, Marshall's avatar McDonnell, Marshall Committed by GitHub
Browse files

Added missing StartTime to CompressEvents

parent b0160b81
No related merge requests found
......@@ -274,7 +274,8 @@ class AlignAndFocusPowderFromFiles(DistributedDataProcessorAlgorithm):
if self.kwargs['PreserveEvents'] and self.kwargs['CompressTolerance'] > 0.:
CompressEvents(InputWorkspace=wkspname, OutputWorkspace=wkspname,
WallClockTolerance=self.kwargs['CompressWallClockTolerance'],
Tolerance= self.kwargs['CompressTolerance'])
Tolerance= self.kwargs['CompressTolerance'],
StartTime=self.kwargs['CompressStartTime'])
# end of inner loop
def PyExec(self):
......@@ -360,7 +361,8 @@ class AlignAndFocusPowderFromFiles(DistributedDataProcessorAlgorithm):
if self.kwargs['PreserveEvents'] and self.kwargs['CompressTolerance'] > 0.:
CompressEvents(InputWorkspace=finalname, OutputWorkspace=finalname,
WallClockTolerance=self.kwargs['CompressWallClockTolerance'],
Tolerance= self.kwargs['CompressTolerance'])
Tolerance= self.kwargs['CompressTolerance'],
StartTime=self.kwargs['CompressStartTime'])
# not compressing unfocussed workspace because it is in d-spacing
# and is likely to be from a different part of the instrument
......
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