Changeset 1714 for branches/alma


Ignore:
Timestamp:
03/17/10 19:03:05 (14 years ago)
Author:
Kana Sugimoto
Message:

New Development: No

JIRA Issue: Yes (CAS-1817)

Ready to Release: for CASA 3.0.2 Yes

Interface Changes: No

What Interface Changed:

Test Programs: run sdplot with panel='s'

Put in Release Notes: No

Module(s): CASA task, sdplot()

Description:

Show scan number + source name when panel='scan'.
Changed definition of the title font size.


Location:
branches/alma/python
Files:
2 edited

Legend:

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

    r1676 r1714  
    728728                ax = sp['axes']
    729729                s = ax.title.get_size()
    730                 tsize = s-(self.cols+self.rows)
     730                #tsize = s-(self.cols+self.rows)
     731                tsize = s-(self.cols)/2
    731732                ax.title.set_size(tsize)
    732733                fp = FP(size=rcParams['axes.labelsize'])
  • branches/alma/python/asapplotter.py

    r1702 r1714  
    832832            poleval = scan._getpollabel(scan.getpol(row),scan.poltype())
    833833        d = {'b': "Beam "+str(scan.getbeam(row)),
    834              's': scan._getsourcename(row),
     834             #'s': scan._getsourcename(row),
     835             's': "Scan "+str(scan.getscan(row))+\
     836                  " ("+str(scan._getsourcename(row))+")",
    835837             'i': "IF"+str(scan.getif(row)),
    836838             'p': poleval,
Note: See TracChangeset for help on using the changeset viewer.