Skip to content

Commit

Permalink
Re #9441. Removing extra compressions
Browse files Browse the repository at this point in the history
  • Loading branch information
peterfpeterson committed May 12, 2014
1 parent 70d6dc3 commit e9056b4
Showing 1 changed file with 0 additions and 6 deletions.
Expand Up @@ -500,12 +500,8 @@ def PyExec(self):
for (samNum, backNum) in zip(samRuns, backRuns):
# first round of processing the sample
samRun = self._loadData(samNum, SUFFIX, filterWall)
samRun = CompressEvents(samRun, OutputWorkspace=samRun.name(),
Tolerance=COMPRESS_TOL_TOF) # 100ns
if (backNum > 0):
backRun = self._loadData(backNum, SUFFIX, filterWall)
backRun = CompressEvents(backRun, OutputWorkspace=backRun.name(),
Tolerance=COMPRESS_TOL_TOF) # 100ns
samRun -= backRun
DeleteWorkspace(backRun)
samRun = CompressEvents(samRun, OutputWorkspace=samRun.name(),
Expand All @@ -518,8 +514,6 @@ def PyExec(self):
if AnalysisDataService.doesExist(str(samRun)):
AnalysisDataService.remove(str(samRun))
samRun = self._loadData(samNum, SUFFIX, filterWall)
samRun = CompressEvents(samRun, OutputWorkspace=samRun.name(),
Tolerance=COMPRESS_TOL_TOF) # 100ns
LRef = self.getProperty("UnwrapRef").value
DIFCref = self.getProperty("LowResRef").value
if (LRef > 0.) or (DIFCref > 0.): # super special Jason stuff
Expand Down

0 comments on commit e9056b4

Please sign in to comment.