Changeset 1920


Ignore:
Timestamp:
09/09/10 18:53:37 (14 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: No

Ready for Test: Yes

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...

Modified help texts.
Added 'ms' to the possible suffix values for list_files().


Location:
trunk/python
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/asapmath.py

    r1918 r1920  
    159159    Calibrate GBT position switched data
    160160    Adopted from GBTIDL getps
    161     Currently calps identify the scans as position switched data if they
    162     contain '_ps' in the source name. The data must contains 'CAL' signal
    163     on/off in each integration. To identify 'CAL' on state, the word, 'calon'
    164     need to be present in the source name field.
     161    Currently calps identify the scans as position switched data if source
     162    type enum is pson or psoff. The data must contains 'CAL' signal
     163    on/off in each integration. To identify 'CAL' on state, the source type
     164    enum of poncal and poffcal need to be present in the source name field.
    165165    (GBT MS data reading process to scantable automatically append these
    166166    id names to the source names)
     
    176176        tcalval:       optional user specified Tcal (default is 0.0,
    177177                       use Tcal value in the data)
     178        verify:        Verify calibration if true
    178179    """
    179180    varlist = vars()
     
    409410        tauval:      optional user specified tau value (not implemented yet)
    410411        tcalval:     optional user specified Tcal value
     412        verify:       Verify calibration if true
    411413    """
    412414    varlist = vars()
     
    619621    Calibrate GBT frequency switched data.
    620622    Adopted from GBTIDL getfs.
    621     Currently calfs identify the scans as frequency switched data if they
    622     contain '_fs' in the source name. The data must contains 'CAL' signal
    623     on/off in each integration. To identify 'CAL' on state, the word, 'calon'
    624     need to be present in the source name field.
     623    Currently calfs identify the scans as frequency switched data if source
     624    type enum is fson and fsoff. The data must contains 'CAL' signal
     625    on/off in each integration. To identify 'CAL' on state, the source type
     626    enum of foncal and foffcal need to be present in the source name field.
    625627    (GBT MS data reading via scantable automatically append these
    626628    id names to the source names)
     
    634636                       use Tsys in the data)
    635637        tauval:        optional user specified Tau
     638        verify:        Verify calibration if true
    636639    """
    637640    varlist = vars()
  • trunk/python/opacity.py

    r1859 r1920  
    147147                    is corrupted (Mopra). If set to 'False', an opacity value
    148148                    per polarisation is returned.
    149         tksy:       The sky temperature (default 300.0K). This might
     149        tsky:       The sky temperature (default 300.0K). This might
    150150                    be read from the data in the future.
    151151        plot:       Plot each fit (airmass vs. Tsys). Default is 'False'
  • trunk/python/scantable.py

    r1919 r1920  
    110110                          the MS data faster in some cases.
    111111
    112             antenna:      Antenna selection. integer (id) or string (name or id).
     112            antenna:      for MeasurementSet input data only:
     113                          Antenna selection. integer (id) or string (name or id).
    113114
    114115            parallactify: Indicate that the data had been parallatified. Default
  • trunk/python/utils.py

    r1860 r1920  
    6161    if not os.path.isdir(path):
    6262        return None
    63     valid = "rpf rpf.1 rpf.2 sdf sdfits mbf asap".split()
     63    valid = "ms rpf rpf.1 rpf.2 sdf sdfits mbf asap".split()
    6464    if not suffix in valid:
    6565        return None
Note: See TracChangeset for help on using the changeset viewer.