hifv_hanning

Note

Parameters set to None will use intelligent defaults from the pipeline context. Pass explicit values to override context defaults.

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

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

  • spws_to_smooth (str | None) --

    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.

Return type:

ResultsList[Results]

Hanning smoothing on a dataset.

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')