Ignore:
Timestamp:
01/17/13 18:54:24 (11 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: Yes CAS-4770

Ready for Test: Yes

Interface Changes: Yes/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...

  • clean up log messages
  • interface changes to be easier to call from Python layer
  • added reset and completeReset method
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/STApplyCal.h

    r2733 r2735  
    5858
    5959  // set interpolation method
    60   void setInterpolation(STCalEnum::InterpolationAxis axis, STCalEnum::InterpolationType itype, casa::Int order=-1);
     60  //void setInterpolation(STCalEnum::InterpolationAxis axis, STCalEnum::InterpolationType itype, casa::Int order=-1);
     61  void setTimeInterpolation(STCalEnum::InterpolationType itype, casa::Int order=-1);
     62  void setFrequencyInterpolation(STCalEnum::InterpolationType itype, casa::Int order=-1);
    6163
    6264  // set IF (spw) mapping for Tsys transfer
     
    6971  void save(const casa::String &name);
    7072
     73  // reset all settings except target scantable
     74  void reset();
     75
     76  // reset all settings
     77  void completeReset();
     78 
    7179private:
    7280  // initialization
     
    100108
    101109  // interpolation method
    102   std::vector<STCalEnum::InterpolationType> interp_;
    103   casa::Bool is2d_;
     110  STCalEnum::InterpolationType iTime_;
     111  STCalEnum::InterpolationType iFreq_;
    104112  casa::Int order_;
    105113  casa::CountedPtr<Interpolator1D<casa::Double, casa::Float> > interpolatorT_;
Note: See TracChangeset for help on using the changeset viewer.