Changeset 2365


Ignore:
Timestamp:
12/08/11 19:13:17 (12 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: Yes CAS-2816

Ready for Test: No

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...

Warning message modified and plot style is changed.


Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/asapgrid.py

    r2364 r2365  
    123123        pl.figure(10)
    124124        pl.clf()
    125         pl.plot(self.grid[0],self.grid[1],'.',color='blue')
    126         pl.plot(self.pointing[0],self.pointing[1],'.',color='red')
     125        pl.plot(self.grid[0],self.grid[1],',',color='blue')
     126        pl.plot(self.pointing[0],self.pointing[1],',',color='green')
    127127        extent=[self.grid[0].min()-0.5*self.cellx,
    128128                self.grid[0].max()+0.5*self.cellx,
  • trunk/src/STGrid.cpp

    r2364 r2365  
    438438    LogIO os( LogOrigin("STGrid","getData",WHERE) ) ;
    439439    os << LogIO::SEVERE
    440        << "No corresponding rows for given selection: IFNO" << ifno
    441        << "SCANNO " << scanlist_
     440       << "No corresponding rows for given selection: IFNO " << ifno
     441       << " SCANNO " << scanlist_
    442442       << LogIO::EXCEPTION ;
    443443  }
Note: See TracChangeset for help on using the changeset viewer.