Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

How do we handle the want to start a job at a given task?  For example, say a job ran to completion but you want to re-run the job after altering something in task17.  It would be unfortunate to have to run tasks 1 through 16.  It would be better to start and task17 and run through to the end of task25.  To do this requires saving the output of each task.  But how?  Incremental or Differential?  Using prolog and epilog scripts? Other?

The jobs are run in the working directory so any file references are relative to that.

Task01

DidnDoesn't alter the MS

run_tclean( 'iter0', cfcache=cfcache_nowb, robust=-2.0, uvtaper='3arcsec', calcres=False  )

Task02

This tasks creates VIP_iter0b.* but I don't see those files ever referenced in this script again.  What does this taks do that is necessary to other tasks?

DidnDoesn't alter the MS

run_tclean( 'iter0b', cfcache=cfcache_nowb, calcres=False  )


Task03

mask_from_catalog(inext=inext,outext="QLcatmask.mask",catalog_search_size=1.5,catalog_fits_file='../VLASS1Q.fits')

  • input: ../data
  • input: ../VLASS1Q.fits, iter0.psf.tt0
  • output: mask_from_cat.crtf, VIP_QLcatmask.mask

...