Changeset 1059


Ignore:
Timestamp:
06/06/06 13:19:50 (18 years ago)
Author:
mar637
Message:

merge from Release2.0

Location:
trunk/python
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/__init__.py

    r1054 r1059  
    307307
    308308__date__ = '$Date$'.split()[1]
    309 __version__  = '2.0'
     309__version__  = '2.0.1'
    310310
    311311if rcParams['verbose']:
  • trunk/python/asapmath.py

    r1029 r1059  
    6969            alignedlst.append(scan.freq_align(refepoch,insitu=False))
    7070    else:
    71         aligendlst = lst
     71        alignedlst = lst
    7272    s = scantable(stm._average(alignedlst, mask, weight.upper(), scanav))
    7373    s._add_history("average_time",varlist)
  • trunk/python/asapreader.py

    r895 r1059  
    66    This class allows the user to import single dish files
    77    (rpfits,sdfits,ms).
    8     The reader reads in integrations from the file and reamins at
     8    The reader reads in integrations from the file and remains at
    99    the fileposition afterwards.
    1010    Available functions are:
    1111
    12     read(integrations)
    13     summary    CURRENTLY DISABLED
     12    read() # read until the (current) end of file)
    1413
    1514    Example:
     
    5150    def read(self):
    5251        """
    53         Reads in an returns a specified sequence of integrations.
    54         If no list is given all integrations a read in.
     52        Reads in all integrations in the data file.
    5553        """
    5654        from asap import scantable
    5755        from asap import asaplog
    58         if integrations is None:
    59             integrations = [-1]
    6056        asaplog.push("Reading integrations from disk...")
    6157        stfiller._read(self)
Note: See TracChangeset for help on using the changeset viewer.