Commits
Urvashi Rao Venkata authored and Ville Suoranta committed b582d0017e9 Merge
410 410 | casalog.post("***Time for making PSF and PB: "+"%.2f"%(t1-t0)+" sec", "INFO3", "task_tclean"); |
411 411 | else: |
412 412 | casalog.post("***Time for making PSF: "+"%.2f"%(t1-t0)+" sec", "INFO3", "task_tclean"); |
413 413 | |
414 414 | imager.makePB() |
415 415 | |
416 416 | t2=time.time(); |
417 417 | if(specmode=='mfs' and ('stand' in gridder)): |
418 418 | casalog.post("***Time for making PB: "+"%.2f"%(t2-t1)+" sec", "INFO3", "task_tclean"); |
419 419 | |
420 - | imager.checkPB() |
420 + | if gridder in ['mosaic','awproject']: |
421 + | imager.checkPB() |
421 422 | |
422 423 | if niter >=0 : |
423 424 | |
424 425 | ## Make dirty image |
425 426 | if calcres==True: |
426 427 | t0=time.time(); |
427 428 | imager.runMajorCycle() |
428 429 | t1=time.time(); |
429 430 | casalog.post("***Time for major cycle (calcres=T): "+"%.2f"%(t1-t0)+" sec", "INFO3", "task_tclean"); |
430 431 | |