hifv_hanning

hifv_hanning(vis: str | None = None, maser_detection: bool | None = None, spws_to_smooth: str | None = None) ResultsList[Results][source]
Parameters:
  • vis -- The list of input MeasurementSets. Defaults to the list of MeasurementSets specified in the hifv_importdata task.

  • maser_detection -- Run maser detect algorithm on spectral line windows if spws_to_smooth is None. Defaults to True.

  • spws_to_smooth --

    A CASA-style range of spw IDs indicating which ones to smooth.

    Example: '1,2~4,7' indicates spws 1, 2, 3, 4, and 7 should be smoothed.

Hanning smoothing on a dataset.

Returns:

The results object for the pipeline task is returned.

Examples

  1. Run the task to execute hanning smoothing on a VLA CASA pipeline loaded MeasurementSet:

>>> hifv_hanning()
  1. Run the task with maser detection off and to only smooth spws 2 through 5.

>>> hifv_hanning(maser_detection=False, spws_to_smooth='2~5')