Skip to content

Commit

Permalink
Refs #3686 Do not rebin histogram
Browse files Browse the repository at this point in the history
  • Loading branch information
VickieLynch committed Jan 11, 2012
1 parent 831ed97 commit bff5ca4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,8 @@ def _multicalibrate(self, wksp, calib, filterLogs=None):
if self._xpixelbin*self._ypixelbin>1:
SumNeighbours(InputWorkspace=wksp, OutputWorkspace=wksp, SumX=self._xpixelbin, SumY=self._ypixelbin)
# Bin events in d-Spacing
Rebin(InputWorkspace=wksp, OutputWorkspace=wksp,Params=str(self._binning[0])+","+str(abs(self._binning[1]))+","+str(self._binning[2]))
if not "histo" in self.getProperty("Extension"):
Rebin(InputWorkspace=wksp, OutputWorkspace=wksp,Params=str(self._binning[0])+","+str(abs(self._binning[1]))+","+str(self._binning[2]))
# Remove old calibration files
cmd = "rm "+calib
os.system(cmd)
Expand Down

0 comments on commit bff5ca4

Please sign in to comment.