Changeset 553


Ignore:
Timestamp:
03/10/05 15:43:45 (19 years ago)
Author:
mar637
Message:

Fixed theif/IF consistency issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/scantable.py

    r535 r553  
    193193        print info
    194194           
    195     def set_cursor(self, thebeam=0,theif=0,thepol=0):
     195    def set_cursor(self, beam=0, IF=0, pol=0):
    196196        """
    197197        Set the spectrum for individual operations.
    198198        Parameters:
    199             thebeam,theif,thepol:    a number
     199            beam, IF, pol:    a number
    200200        Example:
    201201            scan.set_cursor(0,0,1)
     
    204204        """
    205205        varlist = vars()
    206         self.setbeam(thebeam)
    207         self.setpol(thepol)
    208         self.setif(theif)
     206        self.setbeam(beam)
     207        self.setpol(pol)
     208        self.setif(IF)
    209209        self._add_history("set_cursor",varlist)
    210210        return
Note: See TracChangeset for help on using the changeset viewer.