Changeset 2920 for trunk/src/STMath.cpp


Ignore:
Timestamp:
04/07/14 10:04:18 (10 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: No

Ready for Test: Yes

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..

Merged IterationHelper? into STIdxIter2.


File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/STMath.cpp

    r2919 r2920  
    5858
    5959#include "CalibrationHelper.h"
    60 #include "IterationHelper.h"
    6160
    6261using namespace casa;
     
    35343533    copyRows( out->table(), s->table(), 0, 0, s->nrow(), False, True, False ) ;
    35353534   
    3536     // iterate throgh IterationHelper
     3535    // iterate throgh STIdxIter2
    35373536    ChopperWheelCalibrator cal(out, s, aoff, asky, ahot, acold);
    3538     IterationHelper<ChopperWheelCalibrator>::Iterate(cal, "BEAMNO,POLNO,IFNO");
     3537    STIdxIter2::Iterate<ChopperWheelCalibrator>(cal, "BEAMNO,POLNO,IFNO");
    35393538
    35403539    s->table_ = torg ;
     
    35933592//     t0 = mathutil::gettimeofday_sec() ;
    35943593
    3595     // iterate throgh IterationHelper
     3594    // iterate throgh STIdxIter2
    35963595    AlmaCalibrator cal(out, s, aoff);
    3597     IterationHelper<AlmaCalibrator>::Iterate(cal, "BEAMNO,POLNO,IFNO");
     3596    STIdxIter2::Iterate<AlmaCalibrator>(cal, "BEAMNO,POLNO,IFNO");
    35983597
    35993598    // finalize
     
    37583757     
    37593758      // process each sig and ref scan
    3760       // iterate throgh IterationHelper
     3759      // iterate throgh STIdxIter2
    37613760      ChopperWheelCalibrator cal_sig(ssig, rsig, aofflo, askylo, ahotlo, acoldlo);
    3762       IterationHelper<ChopperWheelCalibrator>::Iterate(cal_sig, "BEAMNO,POLNO,IFNO");
     3761      STIdxIter2::Iterate<ChopperWheelCalibrator>(cal_sig, "BEAMNO,POLNO,IFNO");
    37633762      ChopperWheelCalibrator cal_ref(sref, rref, aoffhi, askyhi, ahothi, acoldhi);
    3764       IterationHelper<ChopperWheelCalibrator>::Iterate(cal_ref, "BEAMNO,POLNO,IFNO");
     3763      STIdxIter2::Iterate<ChopperWheelCalibrator>(cal_ref, "BEAMNO,POLNO,IFNO");
    37653764    }
    37663765  }
Note: See TracChangeset for help on using the changeset viewer.