Commits
282 282 | t1=time.time(); |
283 283 | casalog.post("***Time for minor cycle: "+"%.2f"%(t1-t0)+" sec", "INFO3", "task_deconvolve"); |
284 284 | isit = decon.hasConverged() # get the convergence state, to report back to the calling code |
285 285 | |
286 286 | |
287 287 | # Residual image needs to be computed for this to work |
288 288 | if niter==0 or runmin==False: |
289 289 | id = ImagingDict() |
290 290 | retrec1 = id.construct_residual_dict(paramList) |
291 291 | |
292 - | print("retrec1 ", retrec1) |
293 - | |
294 292 | ## Get summary from iterbot |
295 293 | #if type(interactive) != bool and niter>0: |
296 294 | # this requrirment should go... |
297 295 | #if niter>0: |
298 296 | retrec=decon.getSummary(fullsummary); |
299 297 | |
300 - | print("retrec ", retrec) |
301 - | |
302 298 | if niter==0 or runmin==False: |
303 299 | retrec['summaryminor'] = retrec1['summaryminor'] #CAS-14184 |
304 300 | retrec['stopcode'] = retrec1['stopcode'] |
305 301 | retrec['stopDescription'] = retrec1['stopDescription'] |
306 302 | |
307 303 | |
308 304 | ################################################# |
309 305 | #### Teardown |
310 306 | ################################################# |
311 307 | |