El pipeline viene con varios conjuntos de instrucciones predefinidos, llamados recetas, para adaptarse a diferentes nececidades: uno para datos del VLA, otro para datos de ALMA, otro para VLASS, etc. Una vez iniciado, el pipeline no requiere ninguna otra entrada del usuario y debería correr hasta el final automáticamente. O la receta que viene predeterminda del VLA para el continuo de Stokes I se llama hifv que se deriva de 'heurístico', interferometro, VLA. Para usar esta receta de datos del VLA, primero se necesita importarla a CASA con el siguiente comando desde el prompt de CASA:
# En CASA
import pipeline.recipes.hifv as hifv
e iniciar la via del pipeline:
# En CASA
hifv.hifv(['mySDM'])
donde mySDM es el nombre del SDM-BDF de sus observaciones.
The pipeline comes with several predefined sets of instructions, called recipes, to accommodate for different needs: one for VLA data, one for ALMA data, one for VLASS, etc. Once started, the pipeline does not require any further input from the user and should run to completion automatically. The default VLA recipe for Stokes I continuum is called hifv which stands for 'heuristics, interferometry, VLA'. To use this VLA data recipe, you first need to import it into CASA via the following command from the CASA prompt:
# In CASA
import pipeline.recipes.hifv as hifv
and then start the pipeline via:
# In CASA
hifv.hifv(['mySDM'])
where mySDM is the name of the SDM-BDF from your observations.