Changeset 1702 for branches/alma


Ignore:
Timestamp:
02/16/10 18:35:38 (14 years ago)
Author:
Kana Sugimoto
Message:

New Development: No

JIRA Issue: Yes (CAS-1077)

Ready to Release: Yes

Interface Changes: No

What Interface Changed:

Test Programs:

Put in Release Notes: No

Module(s):

Description: Add a note to help message and log output for set_data().

Just for user infomation.


File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/alma/python/asapplotter.py

    r1698 r1702  
    145145                       replotted based on the new parameter setting(s).
    146146                       Otherwise,the parameter(s) are set without replotting.
     147        Note:
     148           The user specified masks and data selections will be reset
     149           if a new scantable is set. This method should be called before
     150           setting data selections (set_selection) and/or masks (set_mask).
    147151        """
    148152        from asap import scantable
     
    153157                    # reset
    154158                    self._reset()
     159                    msg = "A new scantable is set to the plotter. The masks and data selections are reset."
     160                    asaplog.push( msg )
     161                    print_log( 'INFO' )
    155162            else:
    156163                self._data = scan
Note: See TracChangeset for help on using the changeset viewer.