Changeset 156


Ignore:
Timestamp:
12/26/04 21:42:04 (19 years ago)
Author:
kil064
Message:

comment out print statements for function 'get_tsys'
as now returns a vector. Malte to fix up.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/scantable.py

    r135 r156  
    144144            mask:    an optional mask specifying where the statistic
    145145                     should be determined.
    146             all:     optional flag to show all or a selected
     146            all:     optional flag to show all (default) or a selected
    147147                     spectrum of Beam/IF/Pol
    148148
     
    221221                        ts = self._gettsys()
    222222                        tmp.append(ts)
    223                         out += 'TSys: Beam[%d], IF[%d], Pol[%d] = %3.3f\n' % (i,j,k,ts)
    224             if self._vb:
    225                 print out
     223#                        out += 'TSys: Beam[%d], IF[%d], Pol[%d] = %3.3f\n' % (i,j,k,ts)
     224#            if self._vb:
     225#                print out
    226226            return tmp
    227227        else:
     
    230230            k = self.getpol()
    231231            ts = self._gettsys()
    232             out = 'TSys: Beam[%d], IF[%d], Pol[%d] = %3.3f' % (i,j,k,ts)
    233             if self._vb:
    234                 print out
     232#            out = 'TSys: Beam[%d], IF[%d], Pol[%d] = %3.3f' % (i,j,k,ts)
     233#            if self._vb:
     234#                print out
    235235            return ts
    236236       
Note: See TracChangeset for help on using the changeset viewer.