Changeset 2844 for trunk/python


Ignore:
Timestamp:
08/27/13 14:52:29 (11 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: Yes CAS-5535

Ready for Test: Yes

Interface Changes: Yes

What Interface Changed: Removed freq_tolsr option from scantable constructor

Test Programs: sdsave unit test

Put in Release Notes: No

Module(s): sd

Description: Describe your changes here...

The parameter freq_tolsr is removed from scantable constructor.
It is removed from python layer as well as C++ layer.
Now the code always behaves like 'freq_tolsr=False'.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/scantable.py

    r2840 r2844  
    341341                          The default (True) is to import direction
    342342                          from MS/POINTING.
    343 
    344             freq_tolsr:   Whether to convert frequency frame information
    345                           to LSRK or not.
    346                           This is effective only when filename is MS.
    347                           The default (False) is to import frequency
    348                           as is.
    349                          
    350343        """
    351344        if average is None:
     
    376369                    # Measurement Set
    377370                    opts={'ms': {}}
    378                     mskeys=['getpt','antenna','freq_tolsr']
     371                    mskeys=['getpt','antenna']
    379372                    for key in mskeys:
    380373                        if key in args.keys():
Note: See TracChangeset for help on using the changeset viewer.