Skip to content
Snippets Groups Projects
Commit 30c03a95 authored by David Rafferty's avatar David Rafferty
Browse files

Task #3403: Updated changelog.

parent 202c9a3a
No related branches found
No related tags found
No related merge requests found
...@@ -32,6 +32,8 @@ def changelog(): ...@@ -32,6 +32,8 @@ def changelog():
2012/10/04 - Fixed a bug in the mean map calculation that caused mean 2012/10/04 - Fixed a bug in the mean map calculation that caused mean
maps with constant values (i.e., non-2D maps) to have values of maps with constant values (i.e., non-2D maps) to have values of
0.0 Jy/beam unless "mean_map = 'const'" was explicitly specified. 0.0 Jy/beam unless "mean_map = 'const'" was explicitly specified.
Fixed a bug in Gaussian fitting that could cause an island to be
skipped.
2012/10/02 - Fixed a bug in the PSF vary module that resulted in 2012/10/02 - Fixed a bug in the PSF vary module that resulted in
incorrect PSF generators being used. Added an option to smooth incorrect PSF generators being used. Added an option to smooth
......
...@@ -100,10 +100,6 @@ class Op_gausfit(Op): ...@@ -100,10 +100,6 @@ class Op_gausfit(Op):
idx = isl.island_id idx = isl.island_id
gaul = gaus_list[idx][0] gaul = gaus_list[idx][0]
fgaul = gaus_list[idx][1] fgaul = gaus_list[idx][1]
if gaul == None:
gaul = []
if fgaul == None:
fgaul = []
gaul = [Gaussian(img, par, idx, gidx) gaul = [Gaussian(img, par, idx, gidx)
for (gidx, par) in enumerate(gaul)] for (gidx, par) in enumerate(gaul)]
......
...@@ -113,7 +113,6 @@ def run_tasks(procs, err_q, out_q, num): ...@@ -113,7 +113,6 @@ def run_tasks(procs, err_q, out_q, num):
return numpy.concatenate(results).tolist() return numpy.concatenate(results).tolist()
def parallel_map(function, sequence, numcores=None, bar=None, weights=None): def parallel_map(function, sequence, numcores=None, bar=None, weights=None):
""" """
A parallelized version of the native Python map function that A parallelized version of the native Python map function that
......
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