Source code for pipeline.hsd.cli.private.task_hsd_blflag

'''
Created on 2013/06/23

@author: kana
'''
import sys

import pipeline.h.cli.utils as utils

[docs]def hsd_blflag(iteration=None, edge=None, flag_tsys=None, tsys_thresh=None, flag_weath=None, weath_thresh=None, flag_prfre=None, prfre_thresh=None, flag_pofre=None, pofre_thresh=None, flag_prfr=None, prfr_thresh=None, flag_pofr=None, pofr_thresh=None, flag_prfrm=None, prfrm_thresh=None, prfrm_nmean=None, flag_pofrm=None, pofrm_thresh=None, pofrm_nmean=None, flag_user=None, user_thresh=None, plotflag=None, pipelinemode=None, infiles=None, antenna=None, field=None, spw=None, pol=None, dryrun=None, acceptresults=None, parallel=None): ########################################################################## # # # CASA task interface boilerplate code starts here. No edits should be # # needed beyond this point. # # # ########################################################################## # create a dictionary containing all the arguments given in the # constructor all_inputs = vars() # get the name of this function for the weblog, eg. 'hif_flagdata' task_name = sys._getframe().f_code.co_name # get the context on which this task operates context = utils.get_context() # execute the task results = utils.execute_task(context, task_name, all_inputs) return results