Loading and Running Tasks: Difference between revisions

From CASA Guides
Jump to navigationJump to search
(Created page with 'There are three distinct ways to invoke a task in CASA. The first: <pre> default('clean') </pre> will load up a task with the default parameters. The second---equivalent to TASK…')
 
No edit summary
Line 9: Line 9:
inp clean
inp clean
</pre>
</pre>
This might come in handy if, say,
This might come in handy if, say, you  have already set the 'vis' and 'spw' parameters for one task, and would like to use these same settings in another task.
 
Finally, the third option is:
<pre>
tget clean
</pre>
which is conveniently equivalent to TGET in AIPS This will recall the parameters from the last time the invoked task was run successfully.

Revision as of 16:08, 10 February 2010

There are three distinct ways to invoke a task in CASA. The first:

default('clean')

will load up a task with the default parameters.

The second---equivalent to TASK in AIPS---will invoke a task, but will transfer over any currently-used parameters to that "new" task (the rest it will set to defaults).

inp clean

This might come in handy if, say, you have already set the 'vis' and 'spw' parameters for one task, and would like to use these same settings in another task.

Finally, the third option is:

 
tget clean

which is conveniently equivalent to TGET in AIPS This will recall the parameters from the last time the invoked task was run successfully.