##################### generated by xml-casa (v2) from hsdn_importdata.xml ###########
##################### b4e378ef82aa02087c7ff3142a69a4bc ##############################
from __future__ import absolute_import
import numpy
from casatools.typecheck import CasaValidator as _val_ctor
_pc = _val_ctor( )
from casatools.coercetype import coerce as _coerce
from .private.task_hsdn_importdata import hsdn_importdata as _hsdn_importdata_t
from casatasks.private.task_logging import start_log as _start_log
from casatasks.private.task_logging import end_log as _end_log
class _hsdn_importdata:
"""
hsdn_importdata ---- Imports Nobeyama data into the single dish pipeline
Imports Nobeyama data into the single dish pipeline.
The hsdn_importdata task loads the specified visibility data into the pipeline
context unpacking and / or converting it as necessary.
Output
results -- If pipeline mode is 'getinputs' then None is returned. Otherwise
the results object for the pipeline task is returned.
--------- parameter descriptions ---------------------------------------------
vis List of visibility data files. These may be ASDMs, tar files of ASDMs,
MSes, or tar files of MSes, If ASDM files are specified, they will be
converted to MS format.
example: vis=['X227.ms', 'asdms.tar.gz']
session List of sessions to which the visibility files belong. Defaults
to a single session containing all the visibility files, otherwise
a session must be assigned to each vis file.
example: session=['Session_1', 'Sessions_2']
pipelinemode The pipeline operating mode. In 'automatic' mode the pipeline
determines the values of all context defined pipeline inputs
automatically. In 'interactive' mode the user can set the pipeline
context defined parameters manually. In 'getinputs' mode the user
can check the settings of all pipeline parameters without running
the task.
overwrite Overwrite existing MSes on output.
Parameter is not available when pipelinemode='automatic'.
nocopy Disable copying of MS to working directory.
Parameter is not available when pipelinemode='automatic'.
createmms Create an MMS
dryrun Run the task (False) or display task command (True).
Parameter is available only when pipelinemode='interactive'.
acceptresults results of the task to the pipeline context (True) or reject them (False).
Parameter is available only when pipelinemode='interactive'.
--------- examples -----------------------------------------------------------
1. Load an ASDM list in the ../rawdata subdirectory into the context:
hsdn_importdata (vis=['../rawdata/uid___A002_X30a93d_X43e',
'../rawdata/uid_A002_x30a93d_X44e'])
2. Load an MS in the current directory into the context:
hsdn_importdata (vis=[uid___A002_X30a93d_X43e.ms])
3. Load a tarred ASDM in ../rawdata into the context:
hsdn_importdata (vis=['../rawdata/uid___A002_X30a93d_X43e.tar.gz'])
4. Check the hsdn_importdata inputs, then import the data:
myvislist = ['uid___A002_X30a93d_X43e.ms', 'uid_A002_x30a93d_X44e.ms']
hsdn_importdata(vis=myvislist, pipelinemode='getinputs')
hsdn_importdata(vis=myvislist)
5. Load an ASDM but check the results before accepting them into the context:
results = hsdn_importdata(vis=['uid___A002_X30a93d_X43e.ms'],
acceptresults=False)
results.accept()
6. Run in dryrun mode before running for real:
results = hsdn_importdata(vis=['uid___A002_X30a93d_X43e.ms'], dryrun=True)
results = hsdn_importdata(vis=['uid___A002_X30a93d_X43e.ms'])
"""
_info_group_ = """pipeline"""
_info_desc_ = """Imports Nobeyama data into the single dish pipeline"""
def __call__( self, vis=[ ], session=[ ], pipelinemode='automatic', overwrite=False, nocopy=False, createmms='automatic', dryrun=False, acceptresults=True ):
schema = {'vis': {'type': 'cStrVec', 'coerce': [_coerce.to_list,_coerce.to_strvec]}, 'session': {'type': 'cStrVec', 'coerce': [_coerce.to_list,_coerce.to_strvec]}, 'pipelinemode': {'type': 'cStr', 'coerce': _coerce.to_str, 'allowed': [ 'automatic', 'interactive', 'getinputs' ]}, 'overwrite': {'type': 'cBool'}, 'nocopy': {'type': 'cBool'}, 'createmms': {'type': 'cStr', 'coerce': _coerce.to_str, 'allowed': [ 'automatic', 'true', 'false' ]}, 'dryrun': {'type': 'cBool'}, 'acceptresults': {'type': 'cBool'}}
doc = {'vis': vis, 'session': session, 'pipelinemode': pipelinemode, 'overwrite': overwrite, 'nocopy': nocopy, 'createmms': createmms, 'dryrun': dryrun, 'acceptresults': acceptresults}
assert _pc.validate(doc,schema), str(_pc.errors)
_logging_state_ = _start_log( 'hsdn_importdata', [ 'vis=' + repr(_pc.document['vis']), 'session=' + repr(_pc.document['session']), 'pipelinemode=' + repr(_pc.document['pipelinemode']), 'overwrite=' + repr(_pc.document['overwrite']), 'nocopy=' + repr(_pc.document['nocopy']), 'createmms=' + repr(_pc.document['createmms']), 'dryrun=' + repr(_pc.document['dryrun']), 'acceptresults=' + repr(_pc.document['acceptresults']) ] )
return _end_log( _logging_state_, 'hsdn_importdata', _hsdn_importdata_t( _pc.document['vis'], _pc.document['session'], _pc.document['pipelinemode'], _pc.document['overwrite'], _pc.document['nocopy'], _pc.document['createmms'], _pc.document['dryrun'], _pc.document['acceptresults'] ) )
hsdn_importdata = _hsdn_importdata( )