Ignore:
Timestamp:
02/04/09 10:41:40 (15 years ago)
Author:
TakTsutsumi
Message:

New Development: No

JIRA Issue: No

Ready to Release: Yes

Interface Changes: Yes

What Interface Changed: a new parameter in open method

Test Programs: List test programs

Put in Release Notes: No

Module(s): Module Names change impacts.

Description: Added a boolean, getPt in open()

to accommodate change in PKSIO


File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/alma/src/STFiller.cpp

    r1493 r1495  
    7474}
    7575
    76 void STFiller::open( const std::string& filename, int whichIF, int whichBeam )
     76void STFiller::open( const std::string& filename, int whichIF, int whichBeam, casa::Bool getPt )
    7777{
    7878  if (table_.null())  {
     
    211211  Vector<Int> start(nIF_, 1);
    212212  Vector<Int> end(nIF_, 0);
    213   reader_->select(beams, ifs, start, end, ref, True, haveXPol_[0], False);
     213  reader_->select(beams, ifs, start, end, ref, True, haveXPol_[0], False, getPt);
    214214  table_->setHeader(*header_);
    215215  //For MS, add the location of POINTING of the input MS so one get
Note: See TracChangeset for help on using the changeset viewer.