Ignore:
Timestamp:
05/02/11 16:00:51 (13 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: scantable._gettsysspectrum()

Put in Release Notes: No

Module(s): Module Names change impacts.

Description: Describe your changes here...

Added scantable._gettsysspectrum() that retrieves channel-dependent Tsys.


File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/Scantable.cpp

    r2133 r2161  
    28592859}
    28602860
     2861vector<float> Scantable::getTsysSpectrum( int whichrow ) const
     2862{
     2863  Vector<Float> tsys( tsysCol_(whichrow) ) ;
     2864  vector<float> stlTsys ;
     2865  tsys.tovector( stlTsys ) ;
     2866  return stlTsys ;
     2867}
    28612868
    28622869/*
Note: See TracChangeset for help on using the changeset viewer.