Skip to content

Commit

Permalink
Re #4303 remove unused parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
mdoucet committed Feb 3, 2012
1 parent bb5b66e commit e9d6511
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def _plot_count_vs_y(self):
def call_back(xmin, xmax):
self._summary.data_peak_from_pixel.setText("%-d" % int(xmin))
self._summary.data_peak_to_pixel.setText("%-d" % int(xmax))
data_manipulation.counts_vs_y_distribution(f[0], 9000, 23600, call_back)
data_manipulation.counts_vs_y_distribution(f[0], call_back)


def _plot_tof(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def tof_distribution(file_path):
l.setScale(2,xmin,xmax)
l.setTitle(" ")

def counts_vs_y_distribution(file_path, minTOF, maxTOF, callback=None):
def counts_vs_y_distribution(file_path, callback=None):
ws = "__REFL_data"
ws_output = "__REFL_Y_distribution"
graph_name = "Counts vs Y"
Expand Down

0 comments on commit e9d6511

Please sign in to comment.