Changeset 2406


Ignore:
Timestamp:
02/13/12 19:12:47 (12 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: No

Ready for Test: Yes

Interface Changes: Yes/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...

Added Python interface (scantable.get_tsysspectrum) for the method
to get channel dependent Tsys, which is just calling
Scantable._gettsysspectrum.


File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/scantable.py

    r2351 r2406  
    757757        return self._row_callback(self._gettsys, "Tsys")
    758758
     759    def get_tsysspectrum(self, row=-1):
     760        """\
     761        Return the channel dependent system temperatures.
     762
     763        Parameters:
     764
     765            row:    the rowno to get the information for. (default all rows)
     766
     767        Returns:
     768
     769            a list of Tsys values for the current selection
     770
     771        """
     772        return self._get_column( self._gettsysspectrum, row )
    759773
    760774    def get_weather(self, row=-1):
Note: See TracChangeset for help on using the changeset viewer.