source: trunk/src/STMath.cpp @ 2580

Last change on this file since 2580 was 2580, checked in by ShinnosukeKawakami, 12 years ago

hpc33 merged asap-trunk

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 183.1 KB
Line 
1//
2// C++ Implementation: STMath
3//
4// Description:
5//
6//
7// Author: Malte Marquarding <asap@atnf.csiro.au>, (C) 2006
8//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
12
13#include <sstream>
14
15#include <casa/iomanip.h>
16#include <casa/Arrays/MaskArrLogi.h>
17#include <casa/Arrays/MaskArrMath.h>
18#include <casa/Arrays/ArrayLogical.h>
19#include <casa/Arrays/ArrayMath.h>
20#include <casa/Arrays/Slice.h>
21#include <casa/Arrays/Slicer.h>
22#include <casa/BasicSL/String.h>
23#include <casa/Containers/Block.h>
24#include <casa/Containers/RecordField.h>
25#include <casa/Exceptions/Error.h>
26#include <casa/Logging/LogIO.h>
27
28#include <coordinates/Coordinates/CoordinateSystem.h>
29#include <coordinates/Coordinates/CoordinateUtil.h>
30#include <coordinates/Coordinates/FrequencyAligner.h>
31#include <coordinates/Coordinates/SpectralCoordinate.h>
32
33#include <lattices/Lattices/LatticeUtilities.h>
34
35#include <scimath/Functionals/Polynomial.h>
36#include <scimath/Mathematics/Convolver.h>
37#include <scimath/Mathematics/VectorKernel.h>
38
39#include <tables/Tables/ExprNode.h>
40#include <tables/Tables/ReadAsciiTable.h>
41#include <tables/Tables/TableCopy.h>
42#include <tables/Tables/TableIter.h>
43#include <tables/Tables/TableParse.h>
44#include <tables/Tables/TableRecord.h>
45#include <tables/Tables/TableRow.h>
46#include <tables/Tables/TableVector.h>
47#include <tables/Tables/TabVecMath.h>
48
49#include <atnf/PKSIO/SrcType.h>
50
51#include "RowAccumulator.h"
52#include "STAttr.h"
53#include "STMath.h"
54#include "STSelector.h"
55#include "Accelerator.h"
56#include "STIdxIter.h"
57
58using namespace casa;
59using namespace asap;
60
61// 2012/02/17 TN
62// Since STGrid is implemented, average doesn't consider direction
63// when accumulating
64// tolerance for direction comparison (rad)
65// #define TOL_OTF    1.0e-15
66// #define TOL_POINT  2.9088821e-4  // 1 arcmin
67
68STMath::STMath(bool insitu) :
69  insitu_(insitu)
70{
71}
72
73
74STMath::~STMath()
75{
76}
77
78CountedPtr<Scantable>
79STMath::average( const std::vector<CountedPtr<Scantable> >& in,
80                 const std::vector<bool>& mask,
81                 const std::string& weight,
82                 const std::string& avmode)
83{
84//    double t0, t1 ;
85//    t0 = mathutil::gettimeofday_sec() ;
86
87  LogIO os( LogOrigin( "STMath", "average()", WHERE ) ) ;
88  if ( avmode == "SCAN" && in.size() != 1 )
89    throw(AipsError("Can't perform 'SCAN' averaging on multiple tables.\n"
90                    "Use merge first."));
91  WeightType wtype = stringToWeight(weight);
92
93  // 2012/02/17 TN
94  // Since STGrid is implemented, average doesn't consider direction
95  // when accumulating
96  // check if OTF observation
97//   String obstype = in[0]->getHeader().obstype ;
98//   Double tol = 0.0 ;
99//   if ( (obstype.find( "OTF" ) != String::npos) || (obstype.find( "OBSERVE_TARGET" ) != String::npos) ) {
100//     tol = TOL_OTF ;
101//   }
102//   else {
103//     tol = TOL_POINT ;
104//   }
105
106  // output
107  // clone as this is non insitu
108  bool insitu = insitu_;
109  setInsitu(false);
110  CountedPtr< Scantable > out = getScantable(in[0], true);
111  setInsitu(insitu);
112  std::vector<CountedPtr<Scantable> >::const_iterator stit = in.begin();
113  ++stit;
114  while ( stit != in.end() ) {
115    out->appendToHistoryTable((*stit)->history());
116    ++stit;
117  }
118
119  Table& tout = out->table();
120
121  /// @todo check if all scantables are conformant
122
123  ArrayColumn<Float> specColOut(tout,"SPECTRA");
124  ArrayColumn<uChar> flagColOut(tout,"FLAGTRA");
125  ArrayColumn<Float> tsysColOut(tout,"TSYS");
126  ScalarColumn<Double> mjdColOut(tout,"TIME");
127  ScalarColumn<Double> intColOut(tout,"INTERVAL");
128  ScalarColumn<uInt> cycColOut(tout,"CYCLENO");
129  ScalarColumn<uInt> scanColOut(tout,"SCANNO");
130
131  // set up the output table rows. These are based on the structure of the
132  // FIRST scantable in the vector
133  const Table& baset = in[0]->table();
134
135  RowAccumulator acc(wtype);
136  Vector<Bool> cmask(mask);
137  acc.setUserMask(cmask);
138//   ROTableRow row(tout);
139  ROArrayColumn<Float> specCol, tsysCol;
140  ROArrayColumn<uChar> flagCol;
141  ROScalarColumn<Double> mjdCol, intCol;
142  ROScalarColumn<Int> scanIDCol;
143
144  //Vector<uInt> rowstodelete;
145  Block<uInt> rowstodelB( in[0]->nrow() ) ;
146  uInt nrowdel = 0 ;
147
148//   Block<String> cols(3);
149  vector<string> cols(3) ;
150  cols[0] = String("BEAMNO");
151  cols[1] = String("IFNO");
152  cols[2] = String("POLNO");
153  if ( avmode == "SOURCE" ) {
154    cols.resize(4);
155    cols[3] = String("SRCNAME");
156  }
157  if ( avmode == "SCAN"  && in.size() == 1) {
158    //cols.resize(4);
159    //cols[3] = String("SCANNO");
160    cols.resize(5);
161    cols[3] = String("SRCNAME");
162    cols[4] = String("SCANNO");
163  }
164  uInt outrowCount = 0;
165  // use STIdxIterExAcc instead of TableIterator
166  STIdxIterExAcc iter( in[0], cols ) ;
167//   double t2 = 0 ;
168//   double t3 = 0 ;
169//   double t4 = 0 ;
170//   double t5 = 0 ;
171//   TableIterator iter(baset, cols);
172//   int count = 0 ;
173  while (!iter.pastEnd()) {
174    Vector<uInt> rows = iter.getRows( SHARE ) ;
175    if ( rows.nelements() == 0 ) {
176      iter.next() ;
177      continue ;
178    }
179    Vector<uInt> current = iter.current() ;
180    String srcname = iter.getSrcName() ;
181    //Table subt = iter.table();
182    // copy the first row of this selection into the new table
183    tout.addRow();
184//     t4 = mathutil::gettimeofday_sec() ;
185    // skip to copy SPECTRA, FLAGTRA, and TSYS since those heavy columns are
186    // overwritten in the following process
187    copyRows( tout, baset, outrowCount, rows[0], 1, False, False, False ) ;
188//     t5 += mathutil::gettimeofday_sec() - t4 ;
189    // re-index to 0
190    if ( avmode != "SCAN" && avmode != "SOURCE" ) {
191      scanColOut.put(outrowCount, uInt(0));
192    }
193
194    // 2012/02/17 TN
195    // Since STGrid is implemented, average doesn't consider direction
196    // when accumulating
197//     MDirection::ScalarColumn dircol ;
198//     dircol.attach( subt, "DIRECTION" ) ;
199//     Int length = subt.nrow() ;
200//     vector< Vector<Double> > dirs ;
201//     vector<int> indexes ;
202//     for ( Int i = 0 ; i < length ; i++ ) {
203//       Vector<Double> t = dircol(i).getAngle(Unit(String("rad"))).getValue() ;
204//       //os << << count++ << ": " ;
205//       //os << "[" << t[0] << "," << t[1] << "]" << LogIO::POST ;
206//       bool adddir = true ;
207//       for ( uInt j = 0 ; j < dirs.size() ; j++ ) {
208//         //if ( allTrue( t == dirs[j] ) ) {
209//         Double dx = t[0] - dirs[j][0] ;
210//         Double dy = t[1] - dirs[j][1] ;
211//         Double dd = sqrt( dx * dx + dy * dy ) ;
212//         //if ( allNearAbs( t, dirs[j], tol ) ) {
213//         if ( dd <= tol ) {
214//           adddir = false ;
215//           break ;
216//         }
217//       }
218//       if ( adddir ) {
219//         dirs.push_back( t ) ;
220//         indexes.push_back( i ) ;
221//       }
222//     }
223//     uInt rowNum = dirs.size() ;
224//     tout.addRow( rowNum ) ;
225//     for ( uInt i = 0 ; i < rowNum ; i++ ) {
226//       TableCopy::copyRows( tout, subt, outrowCount+i, indexes[i], 1 ) ;
227//       // re-index to 0
228//       if ( avmode != "SCAN" && avmode != "SOURCE" ) {
229//         scanColOut.put(outrowCount+i, uInt(0));
230//       }       
231//     }
232//     outrowCount += rowNum ;
233
234    // merge loop
235    uInt i = outrowCount ;
236    // in[0] is already selected by iterator
237    specCol.attach(baset,"SPECTRA");
238    flagCol.attach(baset,"FLAGTRA");
239    tsysCol.attach(baset,"TSYS");
240    intCol.attach(baset,"INTERVAL");
241    mjdCol.attach(baset,"TIME");
242    Vector<Float> spec,tsys;
243    Vector<uChar> flag;
244    Double inter,time;
245
246    for (uInt l = 0; l < rows.nelements(); ++l ) {
247      uInt k = rows[l] ;
248      flagCol.get(k, flag);
249      Vector<Bool> bflag(flag.shape());
250      convertArray(bflag, flag);
251      /*                                                                                                   
252        if ( allEQ(bflag, True) ) {                                                                         
253        continue;//don't accumulate                                                                         
254        }                                                                                                   
255      */
256      specCol.get(k, spec);
257      tsysCol.get(k, tsys);
258      intCol.get(k, inter);
259      mjdCol.get(k, time);
260      // spectrum has to be added last to enable weighting by the other values                             
261//       t2 = mathutil::gettimeofday_sec() ;
262      acc.add(spec, !bflag, tsys, inter, time);
263//       t3 += mathutil::gettimeofday_sec() - t2 ;
264     
265    }
266
267
268    // in[0] is already selected by TableIterator so that index is
269    // started from 1
270    for ( int j=1; j < int(in.size()); ++j ) {
271      const Table& tin = in[j]->table();
272      //const TableRecord& rec = row.get(i);
273      ROScalarColumn<Double> tmp(tin, "TIME");
274      Double td;tmp.get(0,td);
275
276#if 1
277      static char const*const colNames1[] = { "IFNO", "BEAMNO", "POLNO" };
278      //uInt const values1[] = { rec.asuInt("IFNO"), rec.asuInt("BEAMNO"), rec.asuInt("POLNO") };
279      uInt const values1[] = { current[1], current[0], current[2] };
280      SingleTypeEqPredicate<uInt, 3> myPred(tin, colNames1, values1);
281      CustomTableExprNodeRep myNodeRep(tin, myPred);
282      myNodeRep.link(); // to avoid automatic delete when myExpr is destructed.
283      CustomTableExprNode myExpr(myNodeRep);
284      Table basesubt = tin(myExpr);
285#else
286//       Table basesubt = tin( tin.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
287//                          && tin.col("IFNO") == Int(rec.asuInt("IFNO"))
288//                          && tin.col("POLNO") == Int(rec.asuInt("POLNO")) );
289      Table basesubt = tin( tin.col("BEAMNO") == current[0]
290                         && tin.col("IFNO") == current[1]
291                         && tin.col("POLNO") == current[2] );
292#endif
293      Table subt;
294      if ( avmode == "SOURCE") {
295//         subt = basesubt( basesubt.col("SRCNAME") == rec.asString("SRCNAME"));
296        subt = basesubt( basesubt.col("SRCNAME") == srcname );
297
298      } else if (avmode == "SCAN") {
299//         subt = basesubt( basesubt.col("SRCNAME") == rec.asString("SRCNAME")
300//                    && basesubt.col("SCANNO") == Int(rec.asuInt("SCANNO")) );
301        subt = basesubt( basesubt.col("SRCNAME") == srcname
302                      && basesubt.col("SCANNO") == current[4] );
303      } else {
304        subt = basesubt;
305      }
306
307      // 2012/02/17 TN
308      // Since STGrid is implemented, average doesn't consider direction
309      // when accumulating
310//       vector<uInt> removeRows ;
311//       uInt nrsubt = subt.nrow() ;
312//       for ( uInt irow = 0 ; irow < nrsubt ; irow++ ) {
313//         //if ( !allTrue((subt.col("DIRECTION").getArrayDouble(TableExprId(irow)))==rec.asArrayDouble("DIRECTION")) ) {
314//         Vector<Double> x0 = (subt.col("DIRECTION").getArrayDouble(TableExprId(irow))) ;
315//         Vector<Double> x1 = rec.asArrayDouble("DIRECTION") ;
316//         double dx = x0[0] - x1[0];
317//         double dy = x0[1] - x1[1];
318//         Double dd = sqrt( dx * dx + dy * dy ) ;
319//         //if ( !allNearAbs((subt.col("DIRECTION").getArrayDouble(TableExprId(irow))), rec.asArrayDouble("DIRECTION"), tol ) ) {
320//         if ( dd > tol ) {
321//           removeRows.push_back( irow ) ;
322//         }
323//       }
324//       if ( removeRows.size() != 0 ) {
325//         subt.removeRow( removeRows ) ;
326//       }
327     
328//       if ( nrsubt == removeRows.size() )
329//         throw(AipsError("Averaging data is empty.")) ;
330
331      specCol.attach(subt,"SPECTRA");
332      flagCol.attach(subt,"FLAGTRA");
333      tsysCol.attach(subt,"TSYS");
334      intCol.attach(subt,"INTERVAL");
335      mjdCol.attach(subt,"TIME");
336      for (uInt k = 0; k < subt.nrow(); ++k ) {
337        flagCol.get(k, flag);
338        Vector<Bool> bflag(flag.shape());
339        convertArray(bflag, flag);
340        /*
341        if ( allEQ(bflag, True) ) {
342        continue;//don't accumulate
343        }
344        */
345        specCol.get(k, spec);
346        //tsysCol.get(k, tsys);
347        tsys.assign( tsysCol(k) );
348        intCol.get(k, inter);
349        mjdCol.get(k, time);
350        // spectrum has to be added last to enable weighting by the other values
351//         t2 = mathutil::gettimeofday_sec() ;
352        acc.add(spec, !bflag, tsys, inter, time);
353//         t3 += mathutil::gettimeofday_sec() - t2 ;
354      }
355
356    }
357    const Vector<Bool>& msk = acc.getMask();
358    if ( allEQ(msk, False) ) {
359      rowstodelB[nrowdel] = i ;
360      nrowdel++ ;
361      continue;
362    }
363    //write out
364    if (acc.state()) {
365      // If there exists a channel at which all the input spectra are masked,
366      // spec has 'nan' values for that channel and it may affect the following
367      // processes. To avoid this, replacing 'nan' values in spec with
368      // weighted-mean of all spectra in the following line.
369      // (done for CAS-2776, 2011/04/07 by Wataru Kawasaki)
370      acc.replaceNaN();
371
372      Vector<uChar> flg(msk.shape());
373      convertArray(flg, !msk);
374      for (uInt k = 0; k < flg.nelements(); ++k) {
375        uChar userFlag = 1 << 7;
376        if (msk[k]==True) userFlag = 0 << 7;
377        flg(k) = userFlag;
378      }
379
380      flagColOut.put(i, flg);
381      specColOut.put(i, acc.getSpectrum());
382      tsysColOut.put(i, acc.getTsys());
383      intColOut.put(i, acc.getInterval());
384      mjdColOut.put(i, acc.getTime());
385      // we should only have one cycle now -> reset it to be 0
386      // frequency switched data has different CYCLENO for different IFNO
387      // which requires resetting this value
388      cycColOut.put(i, uInt(0));
389    } else {
390      ostringstream oss;
391      oss << "For output row="<<i<<", all input rows of data are flagged. no averaging" << endl;
392      pushLog(String(oss));
393    }
394    acc.reset();
395
396    // merge with while loop for preparing out table
397    ++outrowCount;
398//     ++iter ;
399    iter.next() ;
400  }
401
402  if ( nrowdel > 0 ) {
403    Vector<uInt> rowstodelete( IPosition(1,nrowdel), rowstodelB.storage(), SHARE ) ;
404    os << rowstodelete << LogIO::POST ;
405    tout.removeRow(rowstodelete);
406    if (tout.nrow() == 0) {
407      throw(AipsError("Can't average fully flagged data."));
408    }
409  }
410
411//    t1 = mathutil::gettimeofday_sec() ;
412//    cout << "elapsed time for average(): " << t1-t0 << " sec" << endl ;
413//    cout << "   elapsed time for acc.add(): " << t3 << " sec" << endl ;
414//    cout << "   elapsed time for copyRows(): " << t5 << " sec" << endl ;
415
416  return out;
417}
418
419CountedPtr< Scantable >
420STMath::averageChannel( const CountedPtr < Scantable > & in,
421                          const std::string & mode,
422                          const std::string& avmode )
423{
424  (void) mode; // currently unused
425  // 2012/02/17 TN
426  // Since STGrid is implemented, average doesn't consider direction
427  // when accumulating
428  // check if OTF observation
429//   String obstype = in->getHeader().obstype ;
430//   Double tol = 0.0 ;
431//   if ( obstype.find( "OTF" ) != String::npos ) {
432//     tol = TOL_OTF ;
433//   }
434//   else {
435//     tol = TOL_POINT ;
436//   }
437
438  // clone as this is non insitu
439  bool insitu = insitu_;
440  setInsitu(false);
441  CountedPtr< Scantable > out = getScantable(in, true);
442  setInsitu(insitu);
443  Table& tout = out->table();
444  ArrayColumn<Float> specColOut(tout,"SPECTRA");
445  ArrayColumn<uChar> flagColOut(tout,"FLAGTRA");
446  ArrayColumn<Float> tsysColOut(tout,"TSYS");
447  ScalarColumn<uInt> scanColOut(tout,"SCANNO");
448  ScalarColumn<Double> intColOut(tout, "INTERVAL");
449  Table tmp = in->table().sort("BEAMNO");
450  Block<String> cols(3);
451  cols[0] = String("BEAMNO");
452  cols[1] = String("IFNO");
453  cols[2] = String("POLNO");
454  if ( avmode == "SCAN") {
455    cols.resize(4);
456    cols[3] = String("SCANNO");
457  }
458  uInt outrowCount = 0;
459  uChar userflag = 1 << 7;
460  TableIterator iter(tmp, cols);
461  while (!iter.pastEnd()) {
462    Table subt = iter.table();
463    ROArrayColumn<Float> specCol, tsysCol;
464    ROArrayColumn<uChar> flagCol;
465    ROScalarColumn<Double> intCol(subt, "INTERVAL");
466    specCol.attach(subt,"SPECTRA");
467    flagCol.attach(subt,"FLAGTRA");
468    tsysCol.attach(subt,"TSYS");
469
470    tout.addRow();
471    TableCopy::copyRows(tout, subt, outrowCount, 0, 1);
472    if ( avmode != "SCAN") {
473      scanColOut.put(outrowCount, uInt(0));
474    }
475    Vector<Float> tmp;
476    specCol.get(0, tmp);
477    uInt nchan = tmp.nelements();
478    // have to do channel by channel here as MaskedArrMath
479    // doesn't have partialMedians
480    Vector<uChar> flags = flagCol.getColumn(Slicer(Slice(0)));
481    Vector<Float> outspec(nchan);
482    Vector<uChar> outflag(nchan,0);
483    Vector<Float> outtsys(1);/// @fixme when tsys is channel based
484    for (uInt i=0; i<nchan; ++i) {
485      Vector<Float> specs = specCol.getColumn(Slicer(Slice(i)));
486      MaskedArray<Float> ma = maskedArray(specs,flags);
487      outspec[i] = median(ma);
488      if ( allEQ(ma.getMask(), False) )
489        outflag[i] = userflag;// flag data
490    }
491    outtsys[0] = median(tsysCol.getColumn());
492    specColOut.put(outrowCount, outspec);
493    flagColOut.put(outrowCount, outflag);
494    tsysColOut.put(outrowCount, outtsys);
495    Double intsum = sum(intCol.getColumn());
496    intColOut.put(outrowCount, intsum);
497    ++outrowCount;
498    ++iter;
499
500    // 2012/02/17 TN
501    // Since STGrid is implemented, average doesn't consider direction
502    // when accumulating
503//     MDirection::ScalarColumn dircol ;
504//     dircol.attach( subt, "DIRECTION" ) ;
505//     Int length = subt.nrow() ;
506//     vector< Vector<Double> > dirs ;
507//     vector<int> indexes ;
508//     // Handle MX mode averaging
509//     if (in->nbeam() > 1 ) {     
510//       length = 1;
511//     }
512//     for ( Int i = 0 ; i < length ; i++ ) {
513//       Vector<Double> t = dircol(i).getAngle(Unit(String("rad"))).getValue() ;
514//       bool adddir = true ;
515//       for ( uInt j = 0 ; j < dirs.size() ; j++ ) {
516//         //if ( allTrue( t == dirs[j] ) ) {
517//         Double dx = t[0] - dirs[j][0] ;
518//         Double dy = t[1] - dirs[j][1] ;
519//         Double dd = sqrt( dx * dx + dy * dy ) ;
520//         //if ( allNearAbs( t, dirs[j], tol ) ) {
521//         if ( dd <= tol ) {
522//           adddir = false ;
523//           break ;
524//         }
525//       }
526//       if ( adddir ) {
527//         dirs.push_back( t ) ;
528//         indexes.push_back( i ) ;
529//       }
530//     }
531//     uInt rowNum = dirs.size() ;
532//     tout.addRow( rowNum );
533//     for ( uInt i = 0 ; i < rowNum ; i++ ) {
534//       TableCopy::copyRows(tout, subt, outrowCount+i, indexes[i], 1) ;
535//       // Handle MX mode averaging
536//       if ( avmode != "SCAN") {
537//         scanColOut.put(outrowCount+i, uInt(0));
538//       }
539//     }
540//     MDirection::ScalarColumn dircolOut ;
541//     dircolOut.attach( tout, "DIRECTION" ) ;
542//     for ( uInt irow = 0 ; irow < rowNum ; irow++ ) {
543//       Vector<Double> t = \
544//      dircolOut(outrowCount+irow).getAngle(Unit(String("rad"))).getValue() ;
545//       Vector<Float> tmp;
546//       specCol.get(0, tmp);
547//       uInt nchan = tmp.nelements();
548//       // have to do channel by channel here as MaskedArrMath
549//       // doesn't have partialMedians
550//       Vector<uChar> flags = flagCol.getColumn(Slicer(Slice(0)));
551//       // mask spectra for different DIRECTION
552//       for ( uInt jrow = 0 ; jrow < subt.nrow() ; jrow++ ) {
553//         Vector<Double> direction = \
554//        dircol(jrow).getAngle(Unit(String("rad"))).getValue() ;
555//         //if ( t[0] != direction[0] || t[1] != direction[1] ) {
556//         Double dx = t[0] - direction[0];
557//         Double dy = t[1] - direction[1];
558//         Double dd = sqrt(dx*dx + dy*dy);
559//         //if ( !allNearAbs( t, direction, tol ) ) {
560//         if ( dd > tol &&  in->nbeam() < 2 ) {
561//           flags[jrow] = userflag ;
562//         }
563//       }
564//       Vector<Float> outspec(nchan);
565//       Vector<uChar> outflag(nchan,0);
566//       Vector<Float> outtsys(1);/// @fixme when tsys is channel based
567//       for (uInt i=0; i<nchan; ++i) {
568//         Vector<Float> specs = specCol.getColumn(Slicer(Slice(i)));
569//         MaskedArray<Float> ma = maskedArray(specs,flags);
570//         outspec[i] = median(ma);
571//         if ( allEQ(ma.getMask(), False) )
572//           outflag[i] = userflag;// flag data
573//       }
574//       outtsys[0] = median(tsysCol.getColumn());
575//       specColOut.put(outrowCount+irow, outspec);
576//       flagColOut.put(outrowCount+irow, outflag);
577//       tsysColOut.put(outrowCount+irow, outtsys);
578//       Vector<Double> integ = intCol.getColumn() ;
579//       MaskedArray<Double> mi = maskedArray( integ, flags ) ;
580//       Double intsum = sum(mi);
581//       intColOut.put(outrowCount+irow, intsum);
582//     }
583//     outrowCount += rowNum ;
584//     ++iter;
585  }
586  return out;
587}
588
589CountedPtr< Scantable > STMath::getScantable(const CountedPtr< Scantable >& in,
590                                             bool droprows)
591{
592  if (insitu_) {
593    return in;
594  }
595  else {
596    // clone
597    return CountedPtr<Scantable>(new Scantable(*in, Bool(droprows)));
598  }
599}
600
601CountedPtr< Scantable > STMath::unaryOperate( const CountedPtr< Scantable >& in,
602                                              float val,
603                                              const std::string& mode,
604                                              bool tsys )
605{
606  CountedPtr< Scantable > out = getScantable(in, false);
607  Table& tab = out->table();
608  ArrayColumn<Float> specCol(tab,"SPECTRA");
609  ArrayColumn<Float> tsysCol(tab,"TSYS");
610  if (mode=="DIV") val = 1.0/val ;
611  else if (mode=="SUB") val *= -1.0 ;
612  for (uInt i=0; i<tab.nrow(); ++i) {
613    Vector<Float> spec;
614    Vector<Float> ts;
615    specCol.get(i, spec);
616    tsysCol.get(i, ts);
617    if (mode == "MUL" || mode == "DIV") {
618      //if (mode == "DIV") val = 1.0/val;
619      spec *= val;
620      specCol.put(i, spec);
621      if ( tsys ) {
622        ts *= val;
623        tsysCol.put(i, ts);
624      }
625    } else if ( mode == "ADD"  || mode == "SUB") {
626      //if (mode == "SUB") val *= -1.0;
627      spec += val;
628      specCol.put(i, spec);
629      if ( tsys ) {
630        ts += val;
631        tsysCol.put(i, ts);
632      }
633    }
634  }
635  return out;
636}
637
638CountedPtr< Scantable > STMath::arrayOperate( const CountedPtr< Scantable >& in,
639                                              const std::vector<float> val,
640                                              const std::string& mode,
641                                              const std::string& opmode,
642                                              bool tsys )
643{
644  CountedPtr< Scantable > out ;
645  if ( opmode == "channel" ) {
646    out = arrayOperateChannel( in, val, mode, tsys ) ;
647  }
648  else if ( opmode == "row" ) {
649    out = arrayOperateRow( in, val, mode, tsys ) ;
650  }
651  else {
652    throw( AipsError( "Unknown array operation mode." ) ) ;
653  }
654  return out ;
655}
656
657CountedPtr< Scantable > STMath::arrayOperateChannel( const CountedPtr< Scantable >& in,
658                                                     const std::vector<float> val,
659                                                     const std::string& mode,
660                                                     bool tsys )
661{
662  if ( val.size() == 1 ){
663    return unaryOperate( in, val[0], mode, tsys ) ;
664  }
665
666  // conformity of SPECTRA and TSYS
667  if ( tsys ) {
668    TableIterator titer(in->table(), "IFNO");
669    while ( !titer.pastEnd() ) {
670      ArrayColumn<Float> specCol( in->table(), "SPECTRA" ) ;
671      ArrayColumn<Float> tsysCol( in->table(), "TSYS" ) ;
672      Array<Float> spec = specCol.getColumn() ;
673      Array<Float> ts = tsysCol.getColumn() ;
674      if ( !spec.conform( ts ) ) {
675        throw( AipsError( "SPECTRA and TSYS must conform in shape if you want to apply operation on Tsys." ) ) ;
676      }
677      titer.next() ;
678    }
679  }
680
681  // check if all spectra in the scantable have the same number of channel
682  vector<uInt> nchans;
683  vector<uInt> ifnos = in->getIFNos() ;
684  for ( uInt i = 0 ; i < ifnos.size() ; i++ ) {
685    nchans.push_back( in->nchan( ifnos[i] ) ) ;
686  }
687  Vector<uInt> mchans( nchans ) ;
688  if ( anyNE( mchans, mchans[0] ) ) {
689    throw( AipsError("All spectra in the input scantable must have the same number of channel for vector operation." ) ) ;
690  }
691
692  // check if vector size is equal to nchan
693  Vector<Float> fact( val ) ;
694  if ( fact.nelements() != mchans[0] ) {
695    throw( AipsError("Vector size must be 1 or be same as number of channel.") ) ;
696  }
697
698  // check divided by zero
699  if ( ( mode == "DIV" ) && anyEQ( fact, (float)0.0 ) ) {
700    throw( AipsError("Divided by zero is not recommended." ) ) ;
701  }
702
703  CountedPtr< Scantable > out = getScantable(in, false);
704  Table& tab = out->table();
705  ArrayColumn<Float> specCol(tab,"SPECTRA");
706  ArrayColumn<Float> tsysCol(tab,"TSYS");
707  if (mode == "DIV") fact = (float)1.0 / fact;
708  else if (mode == "SUB") fact *= (float)-1.0 ;
709  for (uInt i=0; i<tab.nrow(); ++i) {
710    Vector<Float> spec;
711    Vector<Float> ts;
712    specCol.get(i, spec);
713    tsysCol.get(i, ts);
714    if (mode == "MUL" || mode == "DIV") {
715      //if (mode == "DIV") fact = (float)1.0 / fact;
716      spec *= fact;
717      specCol.put(i, spec);
718      if ( tsys ) {
719        ts *= fact;
720        tsysCol.put(i, ts);
721      }
722    } else if ( mode == "ADD"  || mode == "SUB") {
723      //if (mode == "SUB") fact *= (float)-1.0 ;
724      spec += fact;
725      specCol.put(i, spec);
726      if ( tsys ) {
727        ts += fact;
728        tsysCol.put(i, ts);
729      }
730    }
731  }
732  return out;
733}
734
735CountedPtr< Scantable > STMath::arrayOperateRow( const CountedPtr< Scantable >& in,
736                                                 const std::vector<float> val,
737                                                 const std::string& mode,
738                                                 bool tsys )
739{
740  if ( val.size() == 1 ) {
741    return unaryOperate( in, val[0], mode, tsys ) ;
742  }
743
744  // conformity of SPECTRA and TSYS
745  if ( tsys ) {
746    TableIterator titer(in->table(), "IFNO");
747    while ( !titer.pastEnd() ) {
748      ArrayColumn<Float> specCol( in->table(), "SPECTRA" ) ;
749      ArrayColumn<Float> tsysCol( in->table(), "TSYS" ) ;
750      Array<Float> spec = specCol.getColumn() ;
751      Array<Float> ts = tsysCol.getColumn() ;
752      if ( !spec.conform( ts ) ) {
753        throw( AipsError( "SPECTRA and TSYS must conform in shape if you want to apply operation on Tsys." ) ) ;
754      }
755      titer.next() ;
756    }
757  }
758
759  // check if vector size is equal to nrow
760  Vector<Float> fact( val ) ;
761  if (fact.nelements() != uInt(in->nrow())) {
762    throw( AipsError("Vector size must be 1 or be same as number of row.") ) ;
763  }
764
765  // check divided by zero
766  if ( ( mode == "DIV" ) && anyEQ( fact, (float)0.0 ) ) {
767    throw( AipsError("Divided by zero is not recommended." ) ) ;
768  }
769
770  CountedPtr< Scantable > out = getScantable(in, false);
771  Table& tab = out->table();
772  ArrayColumn<Float> specCol(tab,"SPECTRA");
773  ArrayColumn<Float> tsysCol(tab,"TSYS");
774  if (mode == "DIV") fact = (float)1.0 / fact;
775  if (mode == "SUB") fact *= (float)-1.0 ;
776  for (uInt i=0; i<tab.nrow(); ++i) {
777    Vector<Float> spec;
778    Vector<Float> ts;
779    specCol.get(i, spec);
780    tsysCol.get(i, ts);
781    if (mode == "MUL" || mode == "DIV") {
782      spec *= fact[i];
783      specCol.put(i, spec);
784      if ( tsys ) {
785        ts *= fact[i];
786        tsysCol.put(i, ts);
787      }
788    } else if ( mode == "ADD"  || mode == "SUB") {
789      spec += fact[i];
790      specCol.put(i, spec);
791      if ( tsys ) {
792        ts += fact[i];
793        tsysCol.put(i, ts);
794      }
795    }
796  }
797  return out;
798}
799
800CountedPtr< Scantable > STMath::array2dOperate( const CountedPtr< Scantable >& in,
801                                                const std::vector< std::vector<float> > val,
802                                                const std::string& mode,
803                                                bool tsys )
804{
805  // conformity of SPECTRA and TSYS
806  if ( tsys ) {
807    TableIterator titer(in->table(), "IFNO");
808    while ( !titer.pastEnd() ) {
809      ArrayColumn<Float> specCol( in->table(), "SPECTRA" ) ;
810      ArrayColumn<Float> tsysCol( in->table(), "TSYS" ) ;
811      Array<Float> spec = specCol.getColumn() ;
812      Array<Float> ts = tsysCol.getColumn() ;
813      if ( !spec.conform( ts ) ) {
814        throw( AipsError( "SPECTRA and TSYS must conform in shape if you want to apply operation on Tsys." ) ) ;
815      }
816      titer.next() ;
817    }
818  }
819
820  // some checks
821  vector<uInt> nchans;
822  for (Int i = 0 ; i < in->nrow() ; i++) {
823    nchans.push_back((in->getSpectrum(i)).size());
824  }
825  //Vector<uInt> mchans( nchans ) ;
826  vector< Vector<Float> > facts ;
827  for ( uInt i = 0 ; i < nchans.size() ; i++ ) {
828    Vector<Float> tmp( val[i] ) ;
829    // check divided by zero
830    if ( ( mode == "DIV" ) && anyEQ( tmp, (float)0.0 ) ) {
831      throw( AipsError("Divided by zero is not recommended." ) ) ;
832    }
833    // conformity check
834    if ( tmp.nelements() != nchans[i] ) {
835      stringstream ss ;
836      ss << "Row " << i << ": Vector size must be same as number of channel." ;
837      throw( AipsError( ss.str() ) ) ;
838    }
839    facts.push_back( tmp ) ;
840  }
841
842
843  CountedPtr< Scantable > out = getScantable(in, false);
844  Table& tab = out->table();
845  ArrayColumn<Float> specCol(tab,"SPECTRA");
846  ArrayColumn<Float> tsysCol(tab,"TSYS");
847  for (uInt i=0; i<tab.nrow(); ++i) {
848    Vector<Float> fact = facts[i] ;
849    Vector<Float> spec;
850    Vector<Float> ts;
851    specCol.get(i, spec);
852    tsysCol.get(i, ts);
853    if (mode == "MUL" || mode == "DIV") {
854      if (mode == "DIV") fact = (float)1.0 / fact;
855      spec *= fact;
856      specCol.put(i, spec);
857      if ( tsys ) {
858        ts *= fact;
859        tsysCol.put(i, ts);
860      }
861    } else if ( mode == "ADD"  || mode == "SUB") {
862      if (mode == "SUB") fact *= (float)-1.0 ;
863      spec += fact;
864      specCol.put(i, spec);
865      if ( tsys ) {
866        ts += fact;
867        tsysCol.put(i, ts);
868      }
869    }
870  }
871  return out;
872}
873
874CountedPtr<Scantable> STMath::binaryOperate(const CountedPtr<Scantable>& left,
875                                            const CountedPtr<Scantable>& right,
876                                            const std::string& mode)
877{
878  bool insitu = insitu_;
879  if ( ! left->conformant(*right) ) {
880    throw(AipsError("'left' and 'right' scantables are not conformant."));
881  }
882  setInsitu(false);
883  CountedPtr< Scantable > out = getScantable(left, false);
884  setInsitu(insitu);
885  Table& tout = out->table();
886  Block<String> coln(5);
887  coln[0] = "SCANNO";  coln[1] = "CYCLENO";  coln[2] = "BEAMNO";
888  coln[3] = "IFNO";  coln[4] = "POLNO";
889  Table tmpl = tout.sort(coln);
890  Table tmpr = right->table().sort(coln);
891  ArrayColumn<Float> lspecCol(tmpl,"SPECTRA");
892  ROArrayColumn<Float> rspecCol(tmpr,"SPECTRA");
893  ArrayColumn<uChar> lflagCol(tmpl,"FLAGTRA");
894  ROArrayColumn<uChar> rflagCol(tmpr,"FLAGTRA");
895
896  for (uInt i=0; i<tout.nrow(); ++i) {
897    Vector<Float> lspecvec, rspecvec;
898    Vector<uChar> lflagvec, rflagvec;
899    lspecvec = lspecCol(i);    rspecvec = rspecCol(i);
900    lflagvec = lflagCol(i);    rflagvec = rflagCol(i);
901    MaskedArray<Float> mleft = maskedArray(lspecvec, lflagvec);
902    MaskedArray<Float> mright = maskedArray(rspecvec, rflagvec);
903    if (mode == "ADD") {
904      mleft += mright;
905    } else if ( mode == "SUB") {
906      mleft -= mright;
907    } else if ( mode == "MUL") {
908      mleft *= mright;
909    } else if ( mode == "DIV") {
910      mleft /= mright;
911    } else {
912      throw(AipsError("Illegal binary operator"));
913    }
914    lspecCol.put(i, mleft.getArray());
915  }
916  return out;
917}
918
919
920
921MaskedArray<Float> STMath::maskedArray( const Vector<Float>& s,
922                                        const Vector<uChar>& f)
923{
924  Vector<Bool> mask;
925  mask.resize(f.shape());
926  convertArray(mask, f);
927  return MaskedArray<Float>(s,!mask);
928}
929
930MaskedArray<Double> STMath::maskedArray( const Vector<Double>& s,
931                                         const Vector<uChar>& f)
932{
933  Vector<Bool> mask;
934  mask.resize(f.shape());
935  convertArray(mask, f);
936  return MaskedArray<Double>(s,!mask);
937}
938
939Vector<uChar> STMath::flagsFromMA(const MaskedArray<Float>& ma)
940{
941  const Vector<Bool>& m = ma.getMask();
942  Vector<uChar> flags(m.shape());
943  convertArray(flags, !m);
944  return flags;
945}
946
947CountedPtr< Scantable > STMath::autoQuotient( const CountedPtr< Scantable >& in,
948                                              const std::string & mode,
949                                              bool preserve )
950{
951  /// @todo make other modes available
952  /// modes should be "nearest", "pair"
953  // make this operation non insitu
954  (void) mode; //currently unused
955  const Table& tin = in->table();
956  Table ons = tin(tin.col("SRCTYPE") == Int(SrcType::PSON));
957  Table offs = tin(tin.col("SRCTYPE") == Int(SrcType::PSOFF));
958  if ( offs.nrow() == 0 )
959    throw(AipsError("No 'off' scans present."));
960  // put all "on" scans into output table
961
962  bool insitu = insitu_;
963  setInsitu(false);
964  CountedPtr< Scantable > out = getScantable(in, true);
965  setInsitu(insitu);
966  Table& tout = out->table();
967
968  TableCopy::copyRows(tout, ons);
969  TableRow row(tout);
970  ROScalarColumn<Double> offtimeCol(offs, "TIME");
971  ArrayColumn<Float> outspecCol(tout, "SPECTRA");
972  ROArrayColumn<Float> outtsysCol(tout, "TSYS");
973  ArrayColumn<uChar> outflagCol(tout, "FLAGTRA");
974  for (uInt i=0; i < tout.nrow(); ++i) {
975    const TableRecord& rec = row.get(i);
976    Double ontime = rec.asDouble("TIME");
977    Table presel = offs(offs.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
978                        && offs.col("IFNO") == Int(rec.asuInt("IFNO"))
979                        && offs.col("POLNO") == Int(rec.asuInt("POLNO")) );
980    ROScalarColumn<Double> offtimeCol(presel, "TIME");
981
982    Double mindeltat = min(abs(offtimeCol.getColumn() - ontime));
983    // Timestamp may vary within a cycle ???!!!
984    // increase this by 0.01 sec in case of rounding errors...
985    // There might be a better way to do this.
986    // fix to this fix. TIME is MJD, so 1.0d not 1.0s
987    mindeltat += 0.01/24./60./60.;
988    Table sel = presel( abs(presel.col("TIME")-ontime) <= mindeltat);
989
990    if ( sel.nrow() < 1 )  {
991      throw(AipsError("No closest in time found... This could be a rounding "
992                      "issue. Try quotient instead."));
993    }
994    TableRow offrow(sel);
995    const TableRecord& offrec = offrow.get(0);//should only be one row
996    RORecordFieldPtr< Array<Float> > specoff(offrec, "SPECTRA");
997    RORecordFieldPtr< Array<Float> > tsysoff(offrec, "TSYS");
998    RORecordFieldPtr< Array<uChar> > flagoff(offrec, "FLAGTRA");
999    /// @fixme this assumes tsys is a scalar not vector
1000    Float tsysoffscalar = (*tsysoff)(IPosition(1,0));
1001    Vector<Float> specon, tsyson;
1002    outtsysCol.get(i, tsyson);
1003    outspecCol.get(i, specon);
1004    Vector<uChar> flagon;
1005    outflagCol.get(i, flagon);
1006    MaskedArray<Float> mon = maskedArray(specon, flagon);
1007    MaskedArray<Float> moff = maskedArray(*specoff, *flagoff);
1008    MaskedArray<Float> quot = (tsysoffscalar * mon / moff);
1009    if (preserve) {
1010      quot -= tsysoffscalar;
1011    } else {
1012      quot -= tsyson[0];
1013    }
1014    outspecCol.put(i, quot.getArray());
1015    outflagCol.put(i, flagsFromMA(quot));
1016  }
1017  // renumber scanno
1018  TableIterator it(tout, "SCANNO");
1019  uInt i = 0;
1020  while ( !it.pastEnd() ) {
1021    Table t = it.table();
1022    TableVector<uInt> vec(t, "SCANNO");
1023    vec = i;
1024    ++i;
1025    ++it;
1026  }
1027  return out;
1028}
1029
1030
1031CountedPtr< Scantable > STMath::quotient( const CountedPtr< Scantable > & on,
1032                                          const CountedPtr< Scantable > & off,
1033                                          bool preserve )
1034{
1035  bool insitu = insitu_;
1036  if ( ! on->conformant(*off) ) {
1037    throw(AipsError("'on' and 'off' scantables are not conformant."));
1038  }
1039  setInsitu(false);
1040  CountedPtr< Scantable > out = getScantable(on, false);
1041  setInsitu(insitu);
1042  Table& tout = out->table();
1043  const Table& toff = off->table();
1044  TableIterator sit(tout, "SCANNO");
1045  TableIterator s2it(toff, "SCANNO");
1046  while ( !sit.pastEnd() ) {
1047    Table ton = sit.table();
1048    TableRow row(ton);
1049    Table t = s2it.table();
1050    ArrayColumn<Float> outspecCol(ton, "SPECTRA");
1051    ROArrayColumn<Float> outtsysCol(ton, "TSYS");
1052    ArrayColumn<uChar> outflagCol(ton, "FLAGTRA");
1053    for (uInt i=0; i < ton.nrow(); ++i) {
1054      const TableRecord& rec = row.get(i);
1055      Table offsel = t( t.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
1056                          && t.col("IFNO") == Int(rec.asuInt("IFNO"))
1057                          && t.col("POLNO") == Int(rec.asuInt("POLNO")) );
1058      if ( offsel.nrow() == 0 )
1059        throw AipsError("STMath::quotient: no matching off");
1060      TableRow offrow(offsel);
1061      const TableRecord& offrec = offrow.get(0);//should be ncycles - take first
1062      RORecordFieldPtr< Array<Float> > specoff(offrec, "SPECTRA");
1063      RORecordFieldPtr< Array<Float> > tsysoff(offrec, "TSYS");
1064      RORecordFieldPtr< Array<uChar> > flagoff(offrec, "FLAGTRA");
1065      Float tsysoffscalar = (*tsysoff)(IPosition(1,0));
1066      Vector<Float> specon, tsyson;
1067      outtsysCol.get(i, tsyson);
1068      outspecCol.get(i, specon);
1069      Vector<uChar> flagon;
1070      outflagCol.get(i, flagon);
1071      MaskedArray<Float> mon = maskedArray(specon, flagon);
1072      MaskedArray<Float> moff = maskedArray(*specoff, *flagoff);
1073      MaskedArray<Float> quot = (tsysoffscalar * mon / moff);
1074      if (preserve) {
1075        quot -= tsysoffscalar;
1076      } else {
1077        quot -= tsyson[0];
1078      }
1079      outspecCol.put(i, quot.getArray());
1080      outflagCol.put(i, flagsFromMA(quot));
1081    }
1082    ++sit;
1083    ++s2it;
1084    // take the first off for each on scan which doesn't have a
1085    // matching off scan
1086    // non <= noff:  matching pairs, non > noff matching pairs then first off
1087    if ( s2it.pastEnd() ) s2it.reset();
1088  }
1089  return out;
1090}
1091
1092// dototalpower (migration of GBTIDL procedure dototalpower.pro)
1093// calibrate the CAL on-off pair. It calculate Tsys and average CAL on-off subintegrations
1094// do it for each cycles in a specific scan.
1095CountedPtr< Scantable > STMath::dototalpower( const CountedPtr< Scantable >& calon,
1096                                              const CountedPtr< Scantable >& caloff, Float tcal )
1097{
1098  if ( ! calon->conformant(*caloff) ) {
1099    throw(AipsError("'CAL on' and 'CAL off' scantables are not conformant."));
1100  }
1101  setInsitu(false);
1102  CountedPtr< Scantable > out = getScantable(caloff, false);
1103  Table& tout = out->table();
1104  const Table& tcon = calon->table();
1105  Vector<Float> tcalout;
1106
1107  std::map<uInt,uInt> tcalIdToRecNoMap;
1108  const Table& calOffTcalTable = caloff->tcal().table();
1109  {
1110    ROScalarColumn<uInt> calOffTcalTable_IDcol(calOffTcalTable, "ID");
1111    const Vector<uInt> tcalIds(calOffTcalTable_IDcol.getColumn());
1112    size_t tcalIdsEnd = tcalIds.nelements();
1113    for (uInt i = 0; i < tcalIdsEnd; i++) {
1114      tcalIdToRecNoMap[tcalIds[i]] = i;
1115    }
1116  }
1117  ROArrayColumn<Float> calOffTcalTable_TCALcol(calOffTcalTable, "TCAL");
1118
1119  if ( tout.nrow() != tcon.nrow() ) {
1120    throw(AipsError("Mismatch in number of rows to form cal on - off pair."));
1121  }
1122  // iteration by scanno or cycle no.
1123  TableIterator sit(tout, "SCANNO");
1124  TableIterator s2it(tcon, "SCANNO");
1125  while ( !sit.pastEnd() ) {
1126    Table toff = sit.table();
1127    TableRow row(toff);
1128    Table t = s2it.table();
1129    ScalarColumn<Double> outintCol(toff, "INTERVAL");
1130    ArrayColumn<Float> outspecCol(toff, "SPECTRA");
1131    ArrayColumn<Float> outtsysCol(toff, "TSYS");
1132    ArrayColumn<uChar> outflagCol(toff, "FLAGTRA");
1133    ROScalarColumn<uInt> outtcalIdCol(toff, "TCAL_ID");
1134    ROScalarColumn<uInt> outpolCol(toff, "POLNO");
1135    ROScalarColumn<Double> onintCol(t, "INTERVAL");
1136    ROArrayColumn<Float> onspecCol(t, "SPECTRA");
1137    ROArrayColumn<Float> ontsysCol(t, "TSYS");
1138    ROArrayColumn<uChar> onflagCol(t, "FLAGTRA");
1139    //ROScalarColumn<uInt> ontcalIdCol(t, "TCAL_ID");
1140
1141    for (uInt i=0; i < toff.nrow(); ++i) {
1142      //skip these checks -> assumes the data order are the same between the cal on off pairs
1143      //
1144      Vector<Float> specCalon, specCaloff;
1145      // to store scalar (mean) tsys
1146      Vector<Float> tsysout(1);
1147      uInt tcalId, polno;
1148      Double offint, onint;
1149      outpolCol.get(i, polno);
1150      outspecCol.get(i, specCaloff);
1151      onspecCol.get(i, specCalon);
1152      Vector<uChar> flagCaloff, flagCalon;
1153      outflagCol.get(i, flagCaloff);
1154      onflagCol.get(i, flagCalon);
1155      outtcalIdCol.get(i, tcalId);
1156      outintCol.get(i, offint);
1157      onintCol.get(i, onint);
1158      // caluculate mean Tsys
1159      uInt nchan = specCaloff.nelements();
1160      // percentage of edge cut off
1161      uInt pc = 10;
1162      uInt bchan = nchan/pc;
1163      uInt echan = nchan-bchan;
1164
1165      Slicer chansl(IPosition(1,bchan-1), IPosition(1,echan-1), IPosition(1,1),Slicer::endIsLast);
1166      Vector<Float> testsubsp = specCaloff(chansl);
1167      MaskedArray<Float> spoff = maskedArray( specCaloff(chansl),flagCaloff(chansl) );
1168      MaskedArray<Float> spon = maskedArray( specCalon(chansl),flagCalon(chansl) );
1169      MaskedArray<Float> spdiff = spon-spoff;
1170      uInt noff = spoff.nelementsValid();
1171      //uInt non = spon.nelementsValid();
1172      uInt ndiff = spdiff.nelementsValid();
1173      Float meantsys;
1174
1175/**
1176      Double subspec, subdiff;
1177      uInt usednchan;
1178      subspec = 0;
1179      subdiff = 0;
1180      usednchan = 0;
1181      for(uInt k=(bchan-1); k<echan; k++) {
1182        subspec += specCaloff[k];
1183        subdiff += static_cast<Double>(specCalon[k]-specCaloff[k]);
1184        ++usednchan;
1185      }
1186**/
1187      // get tcal if input tcal <= 0
1188      Float tcalUsed;
1189      tcalUsed = tcal;
1190      if ( tcal <= 0.0 ) {
1191        uInt tcalRecNo = tcalIdToRecNoMap[tcalId];
1192        calOffTcalTable_TCALcol.get(tcalRecNo, tcalout);
1193//         if (polno<=3) {
1194//           tcalUsed = tcalout[polno];
1195//         }
1196//         else {
1197//           tcalUsed = tcalout[0];
1198//         }
1199        if ( tcalout.size() == 1 )
1200          tcalUsed = tcalout[0] ;
1201        else if ( tcalout.size() == nchan )
1202          tcalUsed = mean(tcalout) ;
1203        else {
1204          uInt ipol = polno ;
1205          if ( ipol > 3 ) ipol = 0 ;
1206          tcalUsed = tcalout[ipol] ;
1207        }
1208      }
1209
1210      Float meanoff;
1211      Float meandiff;
1212      if (noff && ndiff) {
1213         //Debug
1214         //if(noff!=ndiff) cerr<<"noff and ndiff is not equal"<<endl;
1215         //LogIO os( LogOrigin( "STMath", "dototalpower()", WHERE ) ) ;
1216         //if(noff!=ndiff) os<<"noff and ndiff is not equal"<<LogIO::POST;
1217         meanoff = sum(spoff)/noff;
1218         meandiff = sum(spdiff)/ndiff;
1219         meantsys= (meanoff/meandiff )*tcalUsed + tcalUsed/2;
1220      }
1221      else {
1222         meantsys=1;
1223      }
1224
1225      tsysout[0] = Float(meantsys);
1226      MaskedArray<Float> mcaloff = maskedArray(specCaloff, flagCaloff);
1227      MaskedArray<Float> mcalon = maskedArray(specCalon, flagCalon);
1228      MaskedArray<Float> sig =   Float(0.5) * (mcaloff + mcalon);
1229      //uInt ncaloff = mcaloff.nelementsValid();
1230      //uInt ncalon = mcalon.nelementsValid();
1231
1232      outintCol.put(i, offint+onint);
1233      outspecCol.put(i, sig.getArray());
1234      outflagCol.put(i, flagsFromMA(sig));
1235      outtsysCol.put(i, tsysout);
1236    }
1237    ++sit;
1238    ++s2it;
1239  }
1240  return out;
1241}
1242
1243//dosigref - migrated from GBT IDL's dosigref.pro, do calibration of position switch
1244// observatiions.
1245// input: sig and ref scantables, and an optional boxcar smoothing width(default width=0,
1246//        no smoothing).
1247// output: resultant scantable [= (sig-ref/ref)*tsys]
1248CountedPtr< Scantable > STMath::dosigref( const CountedPtr < Scantable >& sig,
1249                                          const CountedPtr < Scantable >& ref,
1250                                          int smoothref,
1251                                          casa::Float tsysv,
1252                                          casa::Float tau )
1253{
1254if ( ! ref->conformant(*sig) ) {
1255    throw(AipsError("'sig' and 'ref' scantables are not conformant."));
1256  }
1257  setInsitu(false);
1258  CountedPtr< Scantable > out = getScantable(sig, false);
1259  CountedPtr< Scantable > smref;
1260  if ( smoothref > 1 ) {
1261    float fsmoothref = static_cast<float>(smoothref);
1262    std::string inkernel = "boxcar";
1263    smref = smooth(ref, inkernel, fsmoothref );
1264    ostringstream oss;
1265    oss<<"Applied smoothing of "<<fsmoothref<<" on the reference."<<endl;
1266    pushLog(String(oss));
1267  }
1268  else {
1269    smref = ref;
1270  }
1271  Table& tout = out->table();
1272  const Table& tref = smref->table();
1273  if ( tout.nrow() != tref.nrow() ) {
1274    throw(AipsError("Mismatch in number of rows to form on-source and reference pair."));
1275  }
1276  // iteration by scanno? or cycle no.
1277  TableIterator sit(tout, "SCANNO");
1278  TableIterator s2it(tref, "SCANNO");
1279  while ( !sit.pastEnd() ) {
1280    Table ton = sit.table();
1281    Table t = s2it.table();
1282    ScalarColumn<Double> outintCol(ton, "INTERVAL");
1283    ArrayColumn<Float> outspecCol(ton, "SPECTRA");
1284    ArrayColumn<Float> outtsysCol(ton, "TSYS");
1285    ArrayColumn<uChar> outflagCol(ton, "FLAGTRA");
1286    ArrayColumn<Float> refspecCol(t, "SPECTRA");
1287    ROScalarColumn<Double> refintCol(t, "INTERVAL");
1288    ROArrayColumn<Float> reftsysCol(t, "TSYS");
1289    ArrayColumn<uChar> refflagCol(t, "FLAGTRA");
1290    ROScalarColumn<Float> refelevCol(t, "ELEVATION");
1291    for (uInt i=0; i < ton.nrow(); ++i) {
1292
1293      Double onint, refint;
1294      Vector<Float> specon, specref;
1295      // to store scalar (mean) tsys
1296      Vector<Float> tsysref;
1297      outintCol.get(i, onint);
1298      refintCol.get(i, refint);
1299      outspecCol.get(i, specon);
1300      refspecCol.get(i, specref);
1301      Vector<uChar> flagref, flagon;
1302      outflagCol.get(i, flagon);
1303      refflagCol.get(i, flagref);
1304      reftsysCol.get(i, tsysref);
1305
1306      Float tsysrefscalar;
1307      if ( tsysv > 0.0 ) {
1308        ostringstream oss;
1309        Float elev;
1310        refelevCol.get(i, elev);
1311        oss << "user specified Tsys = " << tsysv;
1312        // do recalc elevation if EL = 0
1313        if ( elev == 0 ) {
1314          throw(AipsError("EL=0, elevation data is missing."));
1315        } else {
1316          if ( tau <= 0.0 ) {
1317            throw(AipsError("Valid tau is not supplied."));
1318          } else {
1319            tsysrefscalar = tsysv * exp(tau/elev);
1320          }
1321        }
1322        oss << ", corrected (for El) tsys= "<<tsysrefscalar;
1323        pushLog(String(oss));
1324      }
1325      else {
1326        tsysrefscalar = tsysref[0];
1327      }
1328      //get quotient spectrum
1329      MaskedArray<Float> mref = maskedArray(specref, flagref);
1330      MaskedArray<Float> mon = maskedArray(specon, flagon);
1331      MaskedArray<Float> specres =   tsysrefscalar*((mon - mref)/mref);
1332      Double resint = onint*refint*smoothref/(onint+refint*smoothref);
1333
1334      //Debug
1335      //cerr<<"Tsys used="<<tsysrefscalar<<endl;
1336      //LogIO os( LogOrigin( "STMath", "dosigref", WHERE ) ) ;
1337      //os<<"Tsys used="<<tsysrefscalar<<LogIO::POST;
1338      // fill the result, replay signal tsys by reference tsys
1339      outintCol.put(i, resint);
1340      outspecCol.put(i, specres.getArray());
1341      outflagCol.put(i, flagsFromMA(specres));
1342      outtsysCol.put(i, tsysref);
1343    }
1344    ++sit;
1345    ++s2it;
1346  }
1347  return out;
1348}
1349
1350CountedPtr< Scantable > STMath::donod(const casa::CountedPtr<Scantable>& s,
1351                                     const std::vector<int>& scans,
1352                                     int smoothref,
1353                                     casa::Float tsysv,
1354                                     casa::Float tau,
1355                                     casa::Float tcal )
1356
1357{
1358  setInsitu(false);
1359  STSelector sel;
1360  std::vector<int> scan1, scan2, beams, types;
1361  std::vector< vector<int> > scanpair;
1362  //std::vector<string> calstate;
1363  std::vector<int> calstate;
1364  String msg;
1365
1366  CountedPtr< Scantable > s1b1on, s1b1off, s1b2on, s1b2off;
1367  CountedPtr< Scantable > s2b1on, s2b1off, s2b2on, s2b2off;
1368
1369  std::vector< CountedPtr< Scantable > > sctables;
1370  sctables.push_back(s1b1on);
1371  sctables.push_back(s1b1off);
1372  sctables.push_back(s1b2on);
1373  sctables.push_back(s1b2off);
1374  sctables.push_back(s2b1on);
1375  sctables.push_back(s2b1off);
1376  sctables.push_back(s2b2on);
1377  sctables.push_back(s2b2off);
1378
1379  //check scanlist
1380  int n=s->checkScanInfo(scans);
1381  if (n==1) {
1382     throw(AipsError("Incorrect scan pairs. "));
1383  }
1384
1385  // Assume scans contain only a pair of consecutive scan numbers.
1386  // It is assumed that first beam, b1,  is on target.
1387  // There is no check if the first beam is on or not.
1388  if ( scans.size()==1 ) {
1389    scan1.push_back(scans[0]);
1390    scan2.push_back(scans[0]+1);
1391  } else if ( scans.size()==2 ) {
1392   scan1.push_back(scans[0]);
1393   scan2.push_back(scans[1]);
1394  } else {
1395    if ( scans.size()%2 == 0 ) {
1396      for (uInt i=0; i<scans.size(); i++) {
1397        if (i%2 == 0) {
1398          scan1.push_back(scans[i]);
1399        }
1400        else {
1401          scan2.push_back(scans[i]);
1402        }
1403      }
1404    } else {
1405      throw(AipsError("Odd numbers of scans, cannot form pairs."));
1406    }
1407  }
1408  scanpair.push_back(scan1);
1409  scanpair.push_back(scan2);
1410  //calstate.push_back("*calon");
1411  //calstate.push_back("*[^calon]");
1412  calstate.push_back(SrcType::NODCAL);
1413  calstate.push_back(SrcType::NOD);
1414  CountedPtr< Scantable > ws = getScantable(s, false);
1415  uInt l=0;
1416  while ( l < sctables.size() ) {
1417    for (uInt i=0; i < 2; i++) {
1418      for (uInt j=0; j < 2; j++) {
1419        for (uInt k=0; k < 2; k++) {
1420          sel.reset();
1421          sel.setScans(scanpair[i]);
1422          //sel.setName(calstate[k]);
1423          types.clear();
1424          types.push_back(calstate[k]);
1425          sel.setTypes(types);
1426          beams.clear();
1427          beams.push_back(j);
1428          sel.setBeams(beams);
1429          ws->setSelection(sel);
1430          sctables[l]= getScantable(ws, false);
1431          l++;
1432        }
1433      }
1434    }
1435  }
1436
1437  // replace here by splitData or getData functionality
1438  CountedPtr< Scantable > sig1;
1439  CountedPtr< Scantable > ref1;
1440  CountedPtr< Scantable > sig2;
1441  CountedPtr< Scantable > ref2;
1442  CountedPtr< Scantable > calb1;
1443  CountedPtr< Scantable > calb2;
1444
1445  msg=String("Processing dototalpower for subset of the data");
1446  ostringstream oss1;
1447  oss1 << msg  << endl;
1448  pushLog(String(oss1));
1449  // Debug for IRC CS data
1450  //float tcal1=7.0;
1451  //float tcal2=4.0;
1452  sig1 = dototalpower(sctables[0], sctables[1], tcal=tcal);
1453  ref1 = dototalpower(sctables[2], sctables[3], tcal=tcal);
1454  ref2 = dototalpower(sctables[4], sctables[5], tcal=tcal);
1455  sig2 = dototalpower(sctables[6], sctables[7], tcal=tcal);
1456
1457  // correction of user-specified tsys for elevation here
1458
1459  // dosigref calibration
1460  msg=String("Processing dosigref for subset of the data");
1461  ostringstream oss2;
1462  oss2 << msg  << endl;
1463  pushLog(String(oss2));
1464  calb1=dosigref(sig1,ref2,smoothref,tsysv,tau);
1465  calb2=dosigref(sig2,ref1,smoothref,tsysv,tau);
1466
1467  // iteration by scanno or cycle no.
1468  Table& tcalb1 = calb1->table();
1469  Table& tcalb2 = calb2->table();
1470  TableIterator sit(tcalb1, "SCANNO");
1471  TableIterator s2it(tcalb2, "SCANNO");
1472  while ( !sit.pastEnd() ) {
1473    Table t1 = sit.table();
1474    Table t2= s2it.table();
1475    ArrayColumn<Float> outspecCol(t1, "SPECTRA");
1476    ArrayColumn<Float> outtsysCol(t1, "TSYS");
1477    ArrayColumn<uChar> outflagCol(t1, "FLAGTRA");
1478    ScalarColumn<Double> outintCol(t1, "INTERVAL");
1479    ArrayColumn<Float> t2specCol(t2, "SPECTRA");
1480    ROArrayColumn<Float> t2tsysCol(t2, "TSYS");
1481    ArrayColumn<uChar> t2flagCol(t2, "FLAGTRA");
1482    ROScalarColumn<Double> t2intCol(t2, "INTERVAL");
1483    for (uInt i=0; i < t1.nrow(); ++i) {
1484      Vector<Float> spec1, spec2;
1485      // to store scalar (mean) tsys
1486      Vector<Float> tsys1, tsys2;
1487      Vector<uChar> flag1, flag2;
1488      Double tint1, tint2;
1489      outspecCol.get(i, spec1);
1490      t2specCol.get(i, spec2);
1491      outflagCol.get(i, flag1);
1492      t2flagCol.get(i, flag2);
1493      outtsysCol.get(i, tsys1);
1494      t2tsysCol.get(i, tsys2);
1495      outintCol.get(i, tint1);
1496      t2intCol.get(i, tint2);
1497      // average
1498      // assume scalar tsys for weights
1499      Float wt1, wt2, tsyssq1, tsyssq2;
1500      tsyssq1 = tsys1[0]*tsys1[0];
1501      tsyssq2 = tsys2[0]*tsys2[0];
1502      wt1 = Float(tint1)/tsyssq1;
1503      wt2 = Float(tint2)/tsyssq2;
1504      Float invsumwt=1/(wt1+wt2);
1505      MaskedArray<Float> mspec1 = maskedArray(spec1, flag1);
1506      MaskedArray<Float> mspec2 = maskedArray(spec2, flag2);
1507      MaskedArray<Float> avspec =  invsumwt * (wt1*mspec1 + wt2*mspec2);
1508      //Array<Float> avtsys =  Float(0.5) * (tsys1 + tsys2);
1509      // cerr<< "Tsys1="<<tsys1<<" Tsys2="<<tsys2<<endl;
1510      // LogIO os( LogOrigin( "STMath", "donod", WHERE ) ) ;
1511      // os<< "Tsys1="<<tsys1<<" Tsys2="<<tsys2<<LogIO::POST;
1512      tsys1[0] = sqrt(tsyssq1 + tsyssq2);
1513      Array<Float> avtsys =  tsys1;
1514
1515      outspecCol.put(i, avspec.getArray());
1516      outflagCol.put(i, flagsFromMA(avspec));
1517      outtsysCol.put(i, avtsys);
1518    }
1519    ++sit;
1520    ++s2it;
1521  }
1522  return calb1;
1523}
1524
1525//GBTIDL version of frequency switched data calibration
1526CountedPtr< Scantable > STMath::dofs( const CountedPtr< Scantable >& s,
1527                                      const std::vector<int>& scans,
1528                                      int smoothref,
1529                                      casa::Float tsysv,
1530                                      casa::Float tau,
1531                                      casa::Float tcal )
1532{
1533
1534
1535  (void) scans; //currently unused
1536  STSelector sel;
1537  CountedPtr< Scantable > ws = getScantable(s, false);
1538  CountedPtr< Scantable > sig, sigwcal, ref, refwcal;
1539  CountedPtr< Scantable > calsig, calref, out, out1, out2;
1540  Bool nofold=False;
1541  vector<int> types ;
1542
1543  //split the data
1544  //sel.setName("*_fs");
1545  types.push_back( SrcType::FSON ) ;
1546  sel.setTypes( types ) ;
1547  ws->setSelection(sel);
1548  sig = getScantable(ws,false);
1549  sel.reset();
1550  types.clear() ;
1551  //sel.setName("*_fs_calon");
1552  types.push_back( SrcType::FONCAL ) ;
1553  sel.setTypes( types ) ;
1554  ws->setSelection(sel);
1555  sigwcal = getScantable(ws,false);
1556  sel.reset();
1557  types.clear() ;
1558  //sel.setName("*_fsr");
1559  types.push_back( SrcType::FSOFF ) ;
1560  sel.setTypes( types ) ;
1561  ws->setSelection(sel);
1562  ref = getScantable(ws,false);
1563  sel.reset();
1564  types.clear() ;
1565  //sel.setName("*_fsr_calon");
1566  types.push_back( SrcType::FOFFCAL ) ;
1567  sel.setTypes( types ) ;
1568  ws->setSelection(sel);
1569  refwcal = getScantable(ws,false);
1570  sel.reset() ;
1571  types.clear() ;
1572
1573  calsig = dototalpower(sigwcal, sig, tcal=tcal);
1574  calref = dototalpower(refwcal, ref, tcal=tcal);
1575
1576  out1=dosigref(calsig,calref,smoothref,tsysv,tau);
1577  out2=dosigref(calref,calsig,smoothref,tsysv,tau);
1578
1579  Table& tabout1=out1->table();
1580  Table& tabout2=out2->table();
1581  ROScalarColumn<uInt> freqidCol1(tabout1, "FREQ_ID");
1582  ScalarColumn<uInt> freqidCol2(tabout2, "FREQ_ID");
1583  ROArrayColumn<Float> specCol(tabout2, "SPECTRA");
1584  Vector<Float> spec; specCol.get(0, spec);
1585  uInt nchan = spec.nelements();
1586  uInt freqid1; freqidCol1.get(0,freqid1);
1587  uInt freqid2; freqidCol2.get(0,freqid2);
1588  Double rp1, rp2, rv1, rv2, inc1, inc2;
1589  out1->frequencies().getEntry(rp1, rv1, inc1, freqid1);
1590  out2->frequencies().getEntry(rp2, rv2, inc2, freqid2);
1591  //cerr << out1->frequencies().table().nrow() << " " << out2->frequencies().table().nrow() << endl ;
1592  //LogIO os( LogOrigin( "STMath", "dofs()", WHERE ) ) ;
1593  //os << out1->frequencies().table().nrow() << " " << out2->frequencies().table().nrow() << LogIO::POST ;
1594  if (rp1==rp2) {
1595    Double foffset = rv1 - rv2;
1596    uInt choffset = static_cast<uInt>(foffset/abs(inc2));
1597    if (choffset >= nchan) {
1598      //cerr<<"out-band frequency switching, no folding"<<endl;
1599      LogIO os( LogOrigin( "STMath", "dofs()", WHERE ) ) ;
1600      os<<"out-band frequency switching, no folding"<<LogIO::POST;
1601      nofold = True;
1602    }
1603  }
1604
1605  if (nofold) {
1606    std::vector< CountedPtr< Scantable > > tabs;
1607    tabs.push_back(out1);
1608    tabs.push_back(out2);
1609    out = merge(tabs);
1610  }
1611  else {
1612    //out = out1;
1613    Double choffset = ( rv1 - rv2 ) / inc2 ;
1614    out = dofold( out1, out2, choffset ) ;
1615  }
1616   
1617  return out;
1618}
1619
1620CountedPtr<Scantable> STMath::dofold( const CountedPtr<Scantable> &sig,
1621                                      const CountedPtr<Scantable> &ref,
1622                                      Double choffset,
1623                                      Double choffset2 )
1624{
1625  LogIO os( LogOrigin( "STMath", "dofold", WHERE ) ) ;
1626  os << "choffset=" << choffset << " choffset2=" << choffset2 << LogIO::POST ;
1627
1628  // output scantable
1629  CountedPtr<Scantable> out = getScantable( sig, false ) ;
1630
1631  // separate choffset to integer part and decimal part
1632  Int ioffset = (Int)choffset ;
1633  Double doffset = choffset - ioffset ;
1634  Int ioffset2 = (Int)choffset2 ;
1635  Double doffset2 = choffset2 - ioffset2 ;
1636  os << "ioffset=" << ioffset << " doffset=" << doffset << LogIO::POST ;
1637  os << "ioffset2=" << ioffset2 << " doffset2=" << doffset2 << LogIO::POST ; 
1638
1639  // get column
1640  ROArrayColumn<Float> specCol1( sig->table(), "SPECTRA" ) ;
1641  ROArrayColumn<Float> specCol2( ref->table(), "SPECTRA" ) ;
1642  ROArrayColumn<Float> tsysCol1( sig->table(), "TSYS" ) ;
1643  ROArrayColumn<Float> tsysCol2( ref->table(), "TSYS" ) ;
1644  ROArrayColumn<uChar> flagCol1( sig->table(), "FLAGTRA" ) ;
1645  ROArrayColumn<uChar> flagCol2( ref->table(), "FLAGTRA" ) ;
1646  ROScalarColumn<Double> mjdCol1( sig->table(), "TIME" ) ;
1647  ROScalarColumn<Double> mjdCol2( ref->table(), "TIME" ) ;
1648  ROScalarColumn<Double> intervalCol1( sig->table(), "INTERVAL" ) ;
1649  ROScalarColumn<Double> intervalCol2( ref->table(), "INTERVAL" ) ;
1650
1651  // check
1652  if ( ioffset == 0 ) {
1653    LogIO os( LogOrigin( "STMath", "dofold()", WHERE ) ) ;
1654    os << "channel offset is zero, no folding" << LogIO::POST ;
1655    return out ;
1656  }
1657  int nchan = ref->nchan() ;
1658  if ( abs(ioffset) >= nchan ) {
1659    LogIO os( LogOrigin( "STMath", "dofold()", WHERE ) ) ;
1660    os << "out-band frequency switching, no folding" << LogIO::POST ;
1661    return out ;
1662  }
1663
1664  // attach column for output scantable
1665  ArrayColumn<Float> specColOut( out->table(), "SPECTRA" ) ;
1666  ArrayColumn<uChar> flagColOut( out->table(), "FLAGTRA" ) ;
1667  ArrayColumn<Float> tsysColOut( out->table(), "TSYS" ) ;
1668  ScalarColumn<Double> mjdColOut( out->table(), "TIME" ) ;
1669  ScalarColumn<Double> intervalColOut( out->table(), "INTERVAL" ) ;
1670  ScalarColumn<uInt> fidColOut( out->table(), "FREQ_ID" ) ;
1671
1672  // for each row
1673  // assume that the data order are same between sig and ref
1674  RowAccumulator acc( asap::W_TINTSYS ) ;
1675  for ( int i = 0 ; i < sig->nrow() ; i++ ) {
1676    // get values
1677    Vector<Float> spsig ;
1678    specCol1.get( i, spsig ) ;
1679    Vector<Float> spref ;
1680    specCol2.get( i, spref ) ;
1681    Vector<Float> tsyssig ;
1682    tsysCol1.get( i, tsyssig ) ;
1683    Vector<Float> tsysref ;
1684    tsysCol2.get( i, tsysref ) ;
1685    Vector<uChar> flagsig ;
1686    flagCol1.get( i, flagsig ) ;
1687    Vector<uChar> flagref ;
1688    flagCol2.get( i, flagref ) ;
1689    Double timesig ;
1690    mjdCol1.get( i, timesig ) ;
1691    Double timeref ;
1692    mjdCol2.get( i, timeref ) ;
1693    Double intsig ;
1694    intervalCol1.get( i, intsig ) ;
1695    Double intref ;
1696    intervalCol2.get( i, intref ) ;
1697
1698    // shift reference spectra
1699    int refchan = spref.nelements() ;
1700    Vector<Float> sspref( spref.nelements() ) ;
1701    Vector<Float> stsysref( tsysref.nelements() ) ;
1702    Vector<uChar> sflagref( flagref.nelements() ) ;
1703    if ( ioffset > 0 ) {
1704      // SPECTRA and FLAGTRA
1705      for ( int j = 0 ; j < refchan-ioffset ; j++ ) {
1706        sspref[j] = spref[j+ioffset] ;
1707        sflagref[j] = flagref[j+ioffset] ;
1708      }
1709      for ( int j = refchan-ioffset ; j < refchan ; j++ ) {
1710        sspref[j] = spref[j-refchan+ioffset] ;
1711        sflagref[j] = flagref[j-refchan+ioffset] ;
1712      }
1713      spref = sspref.copy() ;
1714      flagref = sflagref.copy() ;
1715      for ( int j = 0 ; j < refchan - 1 ; j++ ) {
1716        sspref[j] = doffset * spref[j+1] + ( 1.0 - doffset ) * spref[j] ;
1717        sflagref[j] = flagref[j+1] + flagref[j] ;
1718      }
1719      sspref[refchan-1] = doffset * spref[0] + ( 1.0 - doffset ) * spref[refchan-1] ;
1720      sflagref[refchan-1] = flagref[0] + flagref[refchan-1] ;
1721
1722      // TSYS
1723      if ( spref.nelements() == tsysref.nelements() ) {
1724        for ( int j = 0 ; j < refchan-ioffset ; j++ ) {
1725          stsysref[j] = tsysref[j+ioffset] ;
1726        }
1727        for ( int j = refchan-ioffset ; j < refchan ; j++ ) {
1728          stsysref[j] = tsysref[j-refchan+ioffset] ;
1729        }
1730        tsysref = stsysref.copy() ;
1731        for ( int j = 0 ; j < refchan - 1 ; j++ ) {
1732          stsysref[j] = doffset * tsysref[j+1] + ( 1.0 - doffset ) * tsysref[j] ;
1733        }
1734        stsysref[refchan-1] = doffset * tsysref[0] + ( 1.0 - doffset ) * tsysref[refchan-1] ;
1735      }
1736    }
1737    else {
1738      // SPECTRA and FLAGTRA
1739      for ( int j = 0 ; j < abs(ioffset) ; j++ ) {
1740        sspref[j] = spref[refchan+ioffset+j] ;
1741        sflagref[j] = flagref[refchan+ioffset+j] ;
1742      }
1743      for ( int j = abs(ioffset) ; j < refchan ; j++ ) {
1744        sspref[j] = spref[j+ioffset] ;
1745        sflagref[j] = flagref[j+ioffset] ;
1746      }
1747      spref = sspref.copy() ;
1748      flagref = sflagref.copy() ;
1749      sspref[0] = doffset * spref[refchan-1] + ( 1.0 - doffset ) * spref[0] ;
1750      sflagref[0] = flagref[0] + flagref[refchan-1] ;
1751      for ( int j = 1 ; j < refchan ; j++ ) {
1752        sspref[j] = doffset * spref[j-1] + ( 1.0 - doffset ) * spref[j] ;
1753        sflagref[j] = flagref[j-1] + flagref[j] ;
1754      }
1755      // TSYS
1756      if ( spref.nelements() == tsysref.nelements() ) {
1757        for ( int j = 0 ; j < abs(ioffset) ; j++ ) {
1758          stsysref[j] = tsysref[refchan+ioffset+j] ;
1759        }
1760        for ( int j = abs(ioffset) ; j < refchan ; j++ ) {
1761          stsysref[j] = tsysref[j+ioffset] ;
1762        }
1763        tsysref = stsysref.copy() ;
1764        stsysref[0] = doffset * tsysref[refchan-1] + ( 1.0 - doffset ) * tsysref[0] ;
1765        for ( int j = 1 ; j < refchan ; j++ ) {
1766          stsysref[j] = doffset * tsysref[j-1] + ( 1.0 - doffset ) * tsysref[j] ;
1767        }
1768      }
1769    }
1770
1771    // shift signal spectra if necessary (only for APEX?)
1772    if ( choffset2 != 0.0 ) {
1773      int sigchan = spsig.nelements() ;
1774      Vector<Float> sspsig( spsig.nelements() ) ;
1775      Vector<Float> stsyssig( tsyssig.nelements() ) ;
1776      Vector<uChar> sflagsig( flagsig.nelements() ) ;
1777      if ( ioffset2 > 0 ) {
1778        // SPECTRA and FLAGTRA
1779        for ( int j = 0 ; j < sigchan-ioffset2 ; j++ ) {
1780          sspsig[j] = spsig[j+ioffset2] ;
1781          sflagsig[j] = flagsig[j+ioffset2] ;
1782        }
1783        for ( int j = sigchan-ioffset2 ; j < sigchan ; j++ ) {
1784          sspsig[j] = spsig[j-sigchan+ioffset2] ;
1785          sflagsig[j] = flagsig[j-sigchan+ioffset2] ;
1786        }
1787        spsig = sspsig.copy() ;
1788        flagsig = sflagsig.copy() ;
1789        for ( int j = 0 ; j < sigchan - 1 ; j++ ) {
1790          sspsig[j] = doffset2 * spsig[j+1] + ( 1.0 - doffset2 ) * spsig[j] ;
1791          sflagsig[j] = flagsig[j+1] || flagsig[j] ;
1792        }
1793        sspsig[sigchan-1] = doffset2 * spsig[0] + ( 1.0 - doffset2 ) * spsig[sigchan-1] ;
1794        sflagsig[sigchan-1] = flagsig[0] || flagsig[sigchan-1] ;
1795        // TSTS
1796        if ( spsig.nelements() == tsyssig.nelements() ) {
1797          for ( int j = 0 ; j < sigchan-ioffset2 ; j++ ) {
1798            stsyssig[j] = tsyssig[j+ioffset2] ;
1799          }
1800          for ( int j = sigchan-ioffset2 ; j < sigchan ; j++ ) {
1801            stsyssig[j] = tsyssig[j-sigchan+ioffset2] ;
1802          }
1803          tsyssig = stsyssig.copy() ;
1804          for ( int j = 0 ; j < sigchan - 1 ; j++ ) {
1805            stsyssig[j] = doffset2 * tsyssig[j+1] + ( 1.0 - doffset2 ) * tsyssig[j] ;
1806          }
1807          stsyssig[sigchan-1] = doffset2 * tsyssig[0] + ( 1.0 - doffset2 ) * tsyssig[sigchan-1] ;
1808        }
1809      }
1810      else {
1811        // SPECTRA and FLAGTRA
1812        for ( int j = 0 ; j < abs(ioffset2) ; j++ ) {
1813          sspsig[j] = spsig[sigchan+ioffset2+j] ;
1814          sflagsig[j] = flagsig[sigchan+ioffset2+j] ;
1815        }
1816        for ( int j = abs(ioffset2) ; j < sigchan ; j++ ) {
1817          sspsig[j] = spsig[j+ioffset2] ;
1818          sflagsig[j] = flagsig[j+ioffset2] ;
1819        }
1820        spsig = sspsig.copy() ;
1821        flagsig = sflagsig.copy() ;
1822        sspsig[0] = doffset2 * spsig[sigchan-1] + ( 1.0 - doffset2 ) * spsig[0] ;
1823        sflagsig[0] = flagsig[0] + flagsig[sigchan-1] ;
1824        for ( int j = 1 ; j < sigchan ; j++ ) {
1825          sspsig[j] = doffset2 * spsig[j-1] + ( 1.0 - doffset2 ) * spsig[j] ;
1826          sflagsig[j] = flagsig[j-1] + flagsig[j] ;
1827        }
1828        // TSYS
1829        if ( spsig.nelements() == tsyssig.nelements() ) {
1830          for ( int j = 0 ; j < abs(ioffset2) ; j++ ) {
1831            stsyssig[j] = tsyssig[sigchan+ioffset2+j] ;
1832          }
1833          for ( int j = abs(ioffset2) ; j < sigchan ; j++ ) {
1834            stsyssig[j] = tsyssig[j+ioffset2] ;
1835          }
1836          tsyssig = stsyssig.copy() ;
1837          stsyssig[0] = doffset2 * tsyssig[sigchan-1] + ( 1.0 - doffset2 ) * tsyssig[0] ;
1838          for ( int j = 1 ; j < sigchan ; j++ ) {
1839            stsyssig[j] = doffset2 * tsyssig[j-1] + ( 1.0 - doffset2 ) * tsyssig[j] ;
1840          }
1841        }
1842      }
1843    }
1844
1845    // folding
1846    acc.add( spsig, !flagsig, tsyssig, intsig, timesig ) ;
1847    acc.add( sspref, !sflagref, stsysref, intref, timeref ) ;
1848   
1849    // put result
1850    specColOut.put( i, acc.getSpectrum() ) ;
1851    const Vector<Bool> &msk = acc.getMask() ;
1852    Vector<uChar> flg( msk.shape() ) ;
1853    convertArray( flg, !msk ) ;
1854    flagColOut.put( i, flg ) ;
1855    tsysColOut.put( i, acc.getTsys() ) ;
1856    intervalColOut.put( i, acc.getInterval() ) ;
1857    mjdColOut.put( i, acc.getTime() ) ;
1858    // change FREQ_ID to unshifted IF setting (only for APEX?)
1859    if ( choffset2 != 0.0 ) {
1860      uInt freqid = fidColOut( 0 ) ; // assume single-IF data
1861      double refpix, refval, increment ;
1862      out->frequencies().getEntry( refpix, refval, increment, freqid ) ;
1863      refval -= choffset * increment ;
1864      uInt newfreqid = out->frequencies().addEntry( refpix, refval, increment ) ;
1865      Vector<uInt> freqids = fidColOut.getColumn() ;
1866      for ( uInt j = 0 ; j < freqids.nelements() ; j++ ) {
1867        if ( freqids[j] == freqid )
1868          freqids[j] = newfreqid ;
1869      }
1870      fidColOut.putColumn( freqids ) ;
1871    }
1872
1873    acc.reset() ;
1874  }
1875
1876  return out ;
1877}
1878
1879
1880CountedPtr< Scantable > STMath::freqSwitch( const CountedPtr< Scantable >& in )
1881{
1882  // make copy or reference
1883  CountedPtr< Scantable > out = getScantable(in, false);
1884  Table& tout = out->table();
1885  Block<String> cols(4);
1886  cols[0] = String("SCANNO");
1887  cols[1] = String("CYCLENO");
1888  cols[2] = String("BEAMNO");
1889  cols[3] = String("POLNO");
1890  TableIterator iter(tout, cols);
1891  while (!iter.pastEnd()) {
1892    Table subt = iter.table();
1893    // this should leave us with two rows for the two IFs....if not ignore
1894    if (subt.nrow() != 2 ) {
1895      continue;
1896    }
1897    ArrayColumn<Float> specCol(subt, "SPECTRA");
1898    ArrayColumn<Float> tsysCol(subt, "TSYS");
1899    ArrayColumn<uChar> flagCol(subt, "FLAGTRA");
1900    Vector<Float> onspec,offspec, ontsys, offtsys;
1901    Vector<uChar> onflag, offflag;
1902    tsysCol.get(0, ontsys);   tsysCol.get(1, offtsys);
1903    specCol.get(0, onspec);   specCol.get(1, offspec);
1904    flagCol.get(0, onflag);   flagCol.get(1, offflag);
1905    MaskedArray<Float> on  = maskedArray(onspec, onflag);
1906    MaskedArray<Float> off = maskedArray(offspec, offflag);
1907    MaskedArray<Float> oncopy = on.copy();
1908
1909    on /= off; on -= 1.0f;
1910    on *= ontsys[0];
1911    off /= oncopy; off -= 1.0f;
1912    off *= offtsys[0];
1913    specCol.put(0, on.getArray());
1914    const Vector<Bool>& m0 = on.getMask();
1915    Vector<uChar> flags0(m0.shape());
1916    convertArray(flags0, !m0);
1917    flagCol.put(0, flags0);
1918
1919    specCol.put(1, off.getArray());
1920    const Vector<Bool>& m1 = off.getMask();
1921    Vector<uChar> flags1(m1.shape());
1922    convertArray(flags1, !m1);
1923    flagCol.put(1, flags1);
1924    ++iter;
1925  }
1926
1927  return out;
1928}
1929
1930std::vector< float > STMath::statistic( const CountedPtr< Scantable > & in,
1931                                        const std::vector< bool > & mask,
1932                                        const std::string& which )
1933{
1934
1935  Vector<Bool> m(mask);
1936  const Table& tab = in->table();
1937  ROArrayColumn<Float> specCol(tab, "SPECTRA");
1938  ROArrayColumn<uChar> flagCol(tab, "FLAGTRA");
1939  std::vector<float> out;
1940  for (uInt i=0; i < tab.nrow(); ++i ) {
1941    Vector<Float> spec; specCol.get(i, spec);
1942    Vector<uChar> flag; flagCol.get(i, flag);
1943    MaskedArray<Float> ma  = maskedArray(spec, flag);
1944    float outstat = 0.0;
1945    if ( spec.nelements() == m.nelements() ) {
1946      outstat = mathutil::statistics(which, ma(m));
1947    } else {
1948      outstat = mathutil::statistics(which, ma);
1949    }
1950    out.push_back(outstat);
1951  }
1952  return out;
1953}
1954
1955std::vector< float > STMath::statisticRow( const CountedPtr< Scantable > & in,
1956                                        const std::vector< bool > & mask,
1957                                        const std::string& which,
1958                                        int row )
1959{
1960
1961  Vector<Bool> m(mask);
1962  const Table& tab = in->table();
1963  ROArrayColumn<Float> specCol(tab, "SPECTRA");
1964  ROArrayColumn<uChar> flagCol(tab, "FLAGTRA");
1965  std::vector<float> out;
1966
1967  Vector<Float> spec; specCol.get(row, spec);
1968  Vector<uChar> flag; flagCol.get(row, flag);
1969  MaskedArray<Float> ma  = maskedArray(spec, flag);
1970  float outstat = 0.0;
1971  if ( spec.nelements() == m.nelements() ) {
1972    outstat = mathutil::statistics(which, ma(m));
1973  } else {
1974    outstat = mathutil::statistics(which, ma);
1975  }
1976  out.push_back(outstat);
1977
1978  return out;
1979}
1980
1981std::vector< int > STMath::minMaxChan( const CountedPtr< Scantable > & in,
1982                                        const std::vector< bool > & mask,
1983                                        const std::string& which )
1984{
1985
1986  Vector<Bool> m(mask);
1987  const Table& tab = in->table();
1988  ROArrayColumn<Float> specCol(tab, "SPECTRA");
1989  ROArrayColumn<uChar> flagCol(tab, "FLAGTRA");
1990  std::vector<int> out;
1991  for (uInt i=0; i < tab.nrow(); ++i ) {
1992    Vector<Float> spec; specCol.get(i, spec);
1993    Vector<uChar> flag; flagCol.get(i, flag);
1994    MaskedArray<Float> ma  = maskedArray(spec, flag);
1995    if (ma.ndim() != 1) {
1996      throw (ArrayError(
1997          "std::vector<int> STMath::minMaxChan("
1998          "ContedPtr<Scantable> &in, std::vector<bool> &mask, "
1999          " std::string &which)"
2000          " - MaskedArray is not 1D"));
2001    }
2002    IPosition outpos(1,0);
2003    if ( spec.nelements() == m.nelements() ) {
2004      outpos = mathutil::minMaxPos(which, ma(m));
2005    } else {
2006      outpos = mathutil::minMaxPos(which, ma);
2007    }
2008    out.push_back(outpos[0]);
2009  }
2010  return out;
2011}
2012
2013CountedPtr< Scantable > STMath::bin( const CountedPtr< Scantable > & in,
2014                                     int width )
2015{
2016  if ( !in->getSelection().empty() ) throw(AipsError("Can't bin subset of the data."));
2017  CountedPtr< Scantable > out = getScantable(in, false);
2018  Table& tout = out->table();
2019  out->frequencies().rescale(width, "BIN");
2020  ArrayColumn<Float> specCol(tout, "SPECTRA");
2021  ArrayColumn<uChar> flagCol(tout, "FLAGTRA");
2022  ArrayColumn<Float> tsysCol(tout, "TSYS");
2023
2024  for (uInt i=0; i < tout.nrow(); ++i ) {
2025    MaskedArray<Float> main  = maskedArray(specCol(i), flagCol(i));
2026    MaskedArray<Float> maout;
2027    LatticeUtilities::bin(maout, main, 0, Int(width));
2028    specCol.put(i, maout.getArray());
2029    flagCol.put(i, flagsFromMA(maout));
2030    if (tsysCol(i).nelements() == specCol(i).nelements()) {
2031      MaskedArray<Float> matsysin = maskedArray(tsysCol(i), flagCol(i));
2032      MaskedArray<Float> matsysout;
2033      LatticeUtilities::bin(matsysout, matsysin, 0, Int(width));
2034      tsysCol.put(i, matsysout.getArray());
2035    }
2036    // take only the first binned spectrum's length for the deprecated
2037    // global header item nChan
2038    if (i==0) tout.rwKeywordSet().define(String("nChan"),
2039                                       Int(maout.getArray().nelements()));
2040  }
2041  return out;
2042}
2043
2044CountedPtr< Scantable > STMath::resample( const CountedPtr< Scantable >& in,
2045                                          const std::string& method,
2046                                          float width )
2047//
2048// Should add the possibility of width being specified in km/s. This means
2049// that for each freqID (SpectralCoordinate) we will need to convert to an
2050// average channel width (say at the reference pixel).  Then we would need
2051// to be careful to make sure each spectrum (of different freqID)
2052// is the same length.
2053//
2054{
2055  //InterpolateArray1D<Double,Float>::InterpolationMethod interp;
2056  Int interpMethod(stringToIMethod(method));
2057
2058  CountedPtr< Scantable > out = getScantable(in, false);
2059  Table& tout = out->table();
2060
2061// Resample SpectralCoordinates (one per freqID)
2062  out->frequencies().rescale(width, "RESAMPLE");
2063  TableIterator iter(tout, "IFNO");
2064  TableRow row(tout);
2065  while ( !iter.pastEnd() ) {
2066    Table tab = iter.table();
2067    ArrayColumn<Float> specCol(tab, "SPECTRA");
2068    //ArrayColumn<Float> tsysCol(tout, "TSYS");
2069    ArrayColumn<uChar> flagCol(tab, "FLAGTRA");
2070    Vector<Float> spec;
2071    Vector<uChar> flag;
2072    specCol.get(0,spec); // the number of channels should be constant per IF
2073    uInt nChanIn = spec.nelements();
2074    Vector<Float> xIn(nChanIn); indgen(xIn);
2075    Int fac =  Int(nChanIn/width);
2076    Vector<Float> xOut(fac+10); // 10 to be safe - resize later
2077    uInt k = 0;
2078    Float x = 0.0;
2079    while (x < Float(nChanIn) ) {
2080      xOut(k) = x;
2081      k++;
2082      x += width;
2083    }
2084    uInt nChanOut = k;
2085    xOut.resize(nChanOut, True);
2086    // process all rows for this IFNO
2087    Vector<Float> specOut;
2088    Vector<Bool> maskOut;
2089    Vector<uChar> flagOut;
2090    for (uInt i=0; i < tab.nrow(); ++i) {
2091      specCol.get(i, spec);
2092      flagCol.get(i, flag);
2093      Vector<Bool> mask(flag.nelements());
2094      convertArray(mask, flag);
2095
2096      IPosition shapeIn(spec.shape());
2097      //sh.nchan = nChanOut;
2098      InterpolateArray1D<Float,Float>::interpolate(specOut, maskOut, xOut,
2099                                                   xIn, spec, mask,
2100                                                   interpMethod, True, True);
2101      /// @todo do the same for channel based Tsys
2102      flagOut.resize(maskOut.nelements());
2103      convertArray(flagOut, maskOut);
2104      specCol.put(i, specOut);
2105      flagCol.put(i, flagOut);
2106    }
2107    ++iter;
2108  }
2109
2110  return out;
2111}
2112
2113STMath::imethod STMath::stringToIMethod(const std::string& in)
2114{
2115  static STMath::imap lookup;
2116
2117  // initialize the lookup table if necessary
2118  if ( lookup.empty() ) {
2119    lookup["nearest"]   = InterpolateArray1D<Double,Float>::nearestNeighbour;
2120    lookup["linear"] = InterpolateArray1D<Double,Float>::linear;
2121    lookup["cubic"]  = InterpolateArray1D<Double,Float>::cubic;
2122    lookup["spline"]  = InterpolateArray1D<Double,Float>::spline;
2123  }
2124
2125  STMath::imap::const_iterator iter = lookup.find(in);
2126
2127  if ( lookup.end() == iter ) {
2128    std::string message = in;
2129    message += " is not a valid interpolation mode";
2130    throw(AipsError(message));
2131  }
2132  return iter->second;
2133}
2134
2135WeightType STMath::stringToWeight(const std::string& in)
2136{
2137  static std::map<std::string, WeightType> lookup;
2138
2139  // initialize the lookup table if necessary
2140  if ( lookup.empty() ) {
2141    lookup["NONE"]   = asap::W_NONE;
2142    lookup["TINT"] = asap::W_TINT;
2143    lookup["TINTSYS"]  = asap::W_TINTSYS;
2144    lookup["TSYS"]  = asap::W_TSYS;
2145    lookup["VAR"]  = asap::W_VAR;
2146  }
2147
2148  std::map<std::string, WeightType>::const_iterator iter = lookup.find(in);
2149
2150  if ( lookup.end() == iter ) {
2151    std::string message = in;
2152    message += " is not a valid weighting mode";
2153    throw(AipsError(message));
2154  }
2155  return iter->second;
2156}
2157
2158CountedPtr< Scantable > STMath::gainElevation( const CountedPtr< Scantable >& in,
2159                                               const vector< float > & coeff,
2160                                               const std::string & filename,
2161                                               const std::string& method)
2162{
2163  // Get elevation data from Scantable and convert to degrees
2164  CountedPtr< Scantable > out = getScantable(in, false);
2165  Table& tab = out->table();
2166  ROScalarColumn<Float> elev(tab, "ELEVATION");
2167  Vector<Float> x = elev.getColumn();
2168  x *= Float(180 / C::pi);                        // Degrees
2169
2170  Vector<Float> coeffs(coeff);
2171  const uInt nc = coeffs.nelements();
2172  if ( filename.length() > 0 && nc > 0 ) {
2173    throw(AipsError("You must choose either polynomial coefficients or an ascii file, not both"));
2174  }
2175
2176  // Correct
2177  if ( nc > 0 || filename.length() == 0 ) {
2178    // Find instrument
2179    Bool throwit = True;
2180    Instrument inst =
2181      STAttr::convertInstrument(tab.keywordSet().asString("AntennaName"),
2182                                throwit);
2183
2184    // Set polynomial
2185    Polynomial<Float>* ppoly = 0;
2186    Vector<Float> coeff;
2187    String msg;
2188    if ( nc > 0 ) {
2189      ppoly = new Polynomial<Float>(nc-1);
2190      coeff = coeffs;
2191      msg = String("user");
2192    } else {
2193      STAttr sdAttr;
2194      coeff = sdAttr.gainElevationPoly(inst);
2195      ppoly = new Polynomial<Float>(coeff.nelements()-1);
2196      msg = String("built in");
2197    }
2198
2199    if ( coeff.nelements() > 0 ) {
2200      ppoly->setCoefficients(coeff);
2201    } else {
2202      delete ppoly;
2203      throw(AipsError("There is no known gain-elevation polynomial known for this instrument"));
2204    }
2205    ostringstream oss;
2206    oss << "Making polynomial correction with " << msg << " coefficients:" << endl;
2207    oss << "   " <<  coeff;
2208    pushLog(String(oss));
2209    const uInt nrow = tab.nrow();
2210    Vector<Float> factor(nrow);
2211    for ( uInt i=0; i < nrow; ++i ) {
2212      factor[i] = 1.0 / (*ppoly)(x[i]);
2213    }
2214    delete ppoly;
2215    scaleByVector(tab, factor, true);
2216
2217  } else {
2218    // Read and correct
2219    pushLog("Making correction from ascii Table");
2220    scaleFromAsciiTable(tab, filename, method, x, true);
2221  }
2222  return out;
2223}
2224
2225void STMath::scaleFromAsciiTable(Table& in, const std::string& filename,
2226                                 const std::string& method,
2227                                 const Vector<Float>& xout, bool dotsys)
2228{
2229
2230// Read gain-elevation ascii file data into a Table.
2231
2232  String formatString;
2233  Table tbl = readAsciiTable(formatString, Table::Memory, filename, "", "", False);
2234  scaleFromTable(in, tbl, method, xout, dotsys);
2235}
2236
2237void STMath::scaleFromTable(Table& in,
2238                            const Table& table,
2239                            const std::string& method,
2240                            const Vector<Float>& xout, bool dotsys)
2241{
2242
2243  ROScalarColumn<Float> geElCol(table, "ELEVATION");
2244  ROScalarColumn<Float> geFacCol(table, "FACTOR");
2245  Vector<Float> xin = geElCol.getColumn();
2246  Vector<Float> yin = geFacCol.getColumn();
2247  Vector<Bool> maskin(xin.nelements(),True);
2248
2249  // Interpolate (and extrapolate) with desired method
2250
2251  InterpolateArray1D<Double,Float>::InterpolationMethod interp = stringToIMethod(method);
2252
2253   Vector<Float> yout;
2254   Vector<Bool> maskout;
2255   InterpolateArray1D<Float,Float>::interpolate(yout, maskout, xout,
2256                                                xin, yin, maskin, interp,
2257                                                True, True);
2258
2259   scaleByVector(in, Float(1.0)/yout, dotsys);
2260}
2261
2262void STMath::scaleByVector( Table& in,
2263                            const Vector< Float >& factor,
2264                            bool dotsys )
2265{
2266  uInt nrow = in.nrow();
2267  if ( factor.nelements() != nrow ) {
2268    throw(AipsError("factors.nelements() != table.nelements()"));
2269  }
2270  ArrayColumn<Float> specCol(in, "SPECTRA");
2271  ArrayColumn<uChar> flagCol(in, "FLAGTRA");
2272  ArrayColumn<Float> tsysCol(in, "TSYS");
2273  for (uInt i=0; i < nrow; ++i) {
2274    MaskedArray<Float> ma  = maskedArray(specCol(i), flagCol(i));
2275    ma *= factor[i];
2276    specCol.put(i, ma.getArray());
2277    flagCol.put(i, flagsFromMA(ma));
2278    if ( dotsys ) {
2279      Vector<Float> tsys = tsysCol(i);
2280      tsys *= factor[i];
2281      tsysCol.put(i,tsys);
2282    }
2283  }
2284}
2285
2286CountedPtr< Scantable > STMath::convertFlux( const CountedPtr< Scantable >& in,
2287                                             float d, float etaap,
2288                                             float jyperk )
2289{
2290  CountedPtr< Scantable > out = getScantable(in, false);
2291  Table& tab = in->table();
2292  Table& outtab = out->table();
2293  Unit fluxUnit(tab.keywordSet().asString("FluxUnit"));
2294  Unit K(String("K"));
2295  Unit JY(String("Jy"));
2296
2297  bool tokelvin = true;
2298  Double cfac = 1.0;
2299
2300  if ( fluxUnit == JY ) {
2301    pushLog("Converting to K");
2302    Quantum<Double> t(1.0,fluxUnit);
2303    Quantum<Double> t2 = t.get(JY);
2304    cfac = (t2 / t).getValue();               // value to Jy
2305
2306    tokelvin = true;
2307    out->setFluxUnit("K");
2308  } else if ( fluxUnit == K ) {
2309    pushLog("Converting to Jy");
2310    Quantum<Double> t(1.0,fluxUnit);
2311    Quantum<Double> t2 = t.get(K);
2312    cfac = (t2 / t).getValue();              // value to K
2313
2314    tokelvin = false;
2315    out->setFluxUnit("Jy");
2316  } else {
2317    throw(AipsError("Unrecognized brightness units in Table - must be consistent with Jy or K"));
2318  }
2319  // Make sure input values are converted to either Jy or K first...
2320  Float factor = cfac;
2321
2322  // Select method
2323  if (jyperk > 0.0) {
2324    factor *= jyperk;
2325    if ( tokelvin ) factor = 1.0 / jyperk;
2326    ostringstream oss;
2327    oss << "Jy/K = " << jyperk;
2328    pushLog(String(oss));
2329    Vector<Float> factors(outtab.nrow(), factor);
2330    scaleByVector(outtab,factors, false);
2331  } else if ( etaap > 0.0) {
2332    if (d < 0) {
2333      Instrument inst =
2334        STAttr::convertInstrument(tab.keywordSet().asString("AntennaName"),
2335                                  True);
2336      STAttr sda;
2337      d = sda.diameter(inst);
2338    }
2339    jyperk = STAttr::findJyPerK(etaap, d);
2340    ostringstream oss;
2341    oss << "Jy/K = " << jyperk;
2342    pushLog(String(oss));
2343    factor *= jyperk;
2344    if ( tokelvin ) {
2345      factor = 1.0 / factor;
2346    }
2347    Vector<Float> factors(outtab.nrow(), factor);
2348    scaleByVector(outtab, factors, False);
2349  } else {
2350
2351    // OK now we must deal with automatic look up of values.
2352    // We must also deal with the fact that the factors need
2353    // to be computed per IF and may be different and may
2354    // change per integration.
2355
2356    pushLog("Looking up conversion factors");
2357    convertBrightnessUnits(out, tokelvin, cfac);
2358  }
2359
2360  return out;
2361}
2362
2363void STMath::convertBrightnessUnits( CountedPtr<Scantable>& in,
2364                                     bool tokelvin, float cfac )
2365{
2366  Table& table = in->table();
2367  Instrument inst =
2368    STAttr::convertInstrument(table.keywordSet().asString("AntennaName"), True);
2369  TableIterator iter(table, "FREQ_ID");
2370  STFrequencies stfreqs = in->frequencies();
2371  STAttr sdAtt;
2372  while (!iter.pastEnd()) {
2373    Table tab = iter.table();
2374    ArrayColumn<Float> specCol(tab, "SPECTRA");
2375    ArrayColumn<uChar> flagCol(tab, "FLAGTRA");
2376    ROScalarColumn<uInt> freqidCol(tab, "FREQ_ID");
2377    MEpoch::ROScalarColumn timeCol(tab, "TIME");
2378
2379    uInt freqid; freqidCol.get(0, freqid);
2380    Vector<Float> tmpspec; specCol.get(0, tmpspec);
2381    // STAttr.JyPerK has a Vector interface... change sometime.
2382    Vector<Float> freqs(1,stfreqs.getRefFreq(freqid, tmpspec.nelements()));
2383    for ( uInt i=0; i<tab.nrow(); ++i) {
2384      Float jyperk = (sdAtt.JyPerK(inst, timeCol(i), freqs))[0];
2385      Float factor = cfac * jyperk;
2386      if ( tokelvin ) factor = Float(1.0) / factor;
2387      MaskedArray<Float> ma  = maskedArray(specCol(i), flagCol(i));
2388      ma *= factor;
2389      specCol.put(i, ma.getArray());
2390      flagCol.put(i, flagsFromMA(ma));
2391    }
2392  ++iter;
2393  }
2394}
2395
2396CountedPtr< Scantable > STMath::opacity( const CountedPtr< Scantable > & in,
2397                                         const std::vector<float>& tau )
2398{
2399  CountedPtr< Scantable > out = getScantable(in, false);
2400
2401  Table outtab = out->table();
2402
2403  const Int ntau = uInt(tau.size());
2404  std::vector<float>::const_iterator tauit = tau.begin();
2405  AlwaysAssert((ntau == 1 || ntau == in->nif() || ntau == in->nif() * in->npol()),
2406               AipsError);
2407  TableIterator iiter(outtab, "IFNO");
2408  while ( !iiter.pastEnd() ) {
2409    Table itab = iiter.table();
2410    TableIterator piter(itab, "POLNO");
2411    while ( !piter.pastEnd() ) {
2412      Table tab = piter.table();
2413      ROScalarColumn<Float> elev(tab, "ELEVATION");
2414      ArrayColumn<Float> specCol(tab, "SPECTRA");
2415      ArrayColumn<uChar> flagCol(tab, "FLAGTRA");
2416      ArrayColumn<Float> tsysCol(tab, "TSYS");
2417      for ( uInt i=0; i<tab.nrow(); ++i) {
2418        Float zdist = Float(C::pi_2) - elev(i);
2419        Float factor = exp(*tauit/cos(zdist));
2420        MaskedArray<Float> ma = maskedArray(specCol(i), flagCol(i));
2421        ma *= factor;
2422        specCol.put(i, ma.getArray());
2423        flagCol.put(i, flagsFromMA(ma));
2424        Vector<Float> tsys;
2425        tsysCol.get(i, tsys);
2426        tsys *= factor;
2427        tsysCol.put(i, tsys);
2428      }
2429      if (ntau == in->nif()*in->npol() ) {
2430        tauit++;
2431      }
2432      piter++;
2433    }
2434    if (ntau >= in->nif() ) {
2435      tauit++;
2436    }
2437    iiter++;
2438  }
2439  return out;
2440}
2441
2442CountedPtr< Scantable > STMath::smoothOther( const CountedPtr< Scantable >& in,
2443                                             const std::string& kernel,
2444                                             float width, int order)
2445{
2446  CountedPtr< Scantable > out = getScantable(in, false);
2447  Table table = out->table();
2448
2449  TableIterator iter(table, "IFNO");
2450  while (!iter.pastEnd()) {
2451    Table tab = iter.table();
2452    ArrayColumn<Float> specCol(tab, "SPECTRA");
2453    ArrayColumn<uChar> flagCol(tab, "FLAGTRA");
2454    Vector<Float> spec;
2455    Vector<uChar> flag;
2456    for (uInt i = 0; i < tab.nrow(); ++i) {
2457      specCol.get(i, spec);
2458      flagCol.get(i, flag);
2459      Vector<Bool> mask(flag.nelements());
2460      convertArray(mask, flag);
2461      Vector<Float> specout;
2462      Vector<Bool> maskout;
2463      if (kernel == "hanning") {
2464        mathutil::hanning(specout, maskout, spec, !mask);
2465        convertArray(flag, !maskout);
2466      } else if (kernel == "rmedian") {
2467        mathutil::runningMedian(specout, maskout, spec , mask, width);
2468        convertArray(flag, maskout);
2469      } else if (kernel == "poly") {
2470        mathutil::polyfit(specout, maskout, spec, !mask, width, order);
2471        convertArray(flag, !maskout);
2472      }
2473
2474      for (uInt j = 0; j < flag.nelements(); ++j) {
2475        uChar userFlag = 1 << 7;
2476        if (maskout[j]==True) userFlag = 0 << 7;
2477        flag(j) = userFlag;
2478      }
2479
2480      flagCol.put(i, flag);
2481      specCol.put(i, specout);
2482    }
2483  ++iter;
2484  }
2485  return out;
2486}
2487
2488CountedPtr< Scantable > STMath::smooth( const CountedPtr< Scantable >& in,
2489                                        const std::string& kernel, float width,
2490                                        int order)
2491{
2492  if (kernel == "rmedian"  || kernel == "hanning" || kernel == "poly") {
2493    return smoothOther(in, kernel, width, order);
2494  }
2495  CountedPtr< Scantable > out = getScantable(in, false);
2496  Table& table = out->table();
2497  VectorKernel::KernelTypes type = VectorKernel::toKernelType(kernel);
2498  // same IFNO should have same no of channels
2499  // this saves overhead
2500  TableIterator iter(table, "IFNO");
2501  while (!iter.pastEnd()) {
2502    Table tab = iter.table();
2503    ArrayColumn<Float> specCol(tab, "SPECTRA");
2504    ArrayColumn<uChar> flagCol(tab, "FLAGTRA");
2505    Vector<Float> tmpspec; specCol.get(0, tmpspec);
2506    uInt nchan = tmpspec.nelements();
2507    Vector<Float> kvec = VectorKernel::make(type, width, nchan, True, False);
2508    Convolver<Float> conv(kvec, IPosition(1,nchan));
2509    Vector<Float> spec;
2510    Vector<uChar> flag;
2511    for ( uInt i=0; i<tab.nrow(); ++i) {
2512      specCol.get(i, spec);
2513      flagCol.get(i, flag);
2514      Vector<Bool> mask(flag.nelements());
2515      convertArray(mask, flag);
2516      Vector<Float> specout;
2517      mathutil::replaceMaskByZero(specout, mask);
2518      conv.linearConv(specout, spec);
2519      specCol.put(i, specout);
2520    }
2521    ++iter;
2522  }
2523  return out;
2524}
2525
2526CountedPtr< Scantable >
2527  STMath::merge( const std::vector< CountedPtr < Scantable > >& in )
2528{
2529  if ( in.size() < 2 ) {
2530    throw(AipsError("Need at least two scantables to perform a merge."));
2531  }
2532  std::vector<CountedPtr < Scantable > >::const_iterator it = in.begin();
2533  bool insitu = insitu_;
2534  setInsitu(false);
2535  CountedPtr< Scantable > out = getScantable(*it, false);
2536  setInsitu(insitu);
2537  Table& tout = out->table();
2538  ScalarColumn<uInt> freqidcol(tout,"FREQ_ID"), molidcol(tout, "MOLECULE_ID");
2539  ScalarColumn<uInt> scannocol(tout,"SCANNO"), focusidcol(tout,"FOCUS_ID");
2540  // Renumber SCANNO to be 0-based
2541  Vector<uInt> scannos = scannocol.getColumn();
2542  uInt offset = min(scannos);
2543  scannos -= offset;
2544  scannocol.putColumn(scannos);
2545  uInt newscanno = max(scannos)+1;
2546  ++it;
2547  while ( it != in.end() ){
2548    if ( ! (*it)->conformant(*out) ) {
2549      // non conformant.
2550      //pushLog(String("Warning: Can't merge scantables as header info differs."));
2551      LogIO os( LogOrigin( "STMath", "merge()", WHERE ) ) ;
2552      os << LogIO::SEVERE << "Can't merge scantables as header informations (any one of AntennaName, Equinox, and FluxUnit) differ." << LogIO::EXCEPTION ;
2553    }
2554    out->appendToHistoryTable((*it)->history());
2555    const Table& tab = (*it)->table();
2556
2557    Block<String> cols(3);
2558    cols[0] = String("FREQ_ID");
2559    cols[1] = String("MOLECULE_ID");
2560    cols[2] = String("FOCUS_ID");
2561
2562    TableIterator scanit(tab, "SCANNO");
2563    while (!scanit.pastEnd()) {
2564      ScalarColumn<uInt> thescannocol(scanit.table(),"SCANNO");
2565      Vector<uInt> thescannos(thescannocol.nrow(),newscanno);
2566      thescannocol.putColumn(thescannos);
2567      TableIterator subit(scanit.table(), cols);
2568      while ( !subit.pastEnd() ) {
2569        uInt nrow = tout.nrow();
2570        Table thetab = subit.table();
2571        ROTableRow row(thetab);
2572        Vector<uInt> thecolvals(thetab.nrow());
2573        ScalarColumn<uInt> thefreqidcol(thetab,"FREQ_ID");
2574        ScalarColumn<uInt> themolidcol(thetab, "MOLECULE_ID");
2575        ScalarColumn<uInt> thefocusidcol(thetab,"FOCUS_ID");
2576        // The selected subset of table should have
2577        // the equal FREQ_ID, MOLECULE_ID, and FOCUS_ID values.
2578        const TableRecord& rec = row.get(0);
2579        // Set the proper FREQ_ID
2580        Double rv,rp,inc;
2581        (*it)->frequencies().getEntry(rp, rv, inc, rec.asuInt("FREQ_ID"));
2582        uInt id;
2583        id = out->frequencies().addEntry(rp, rv, inc);
2584        thecolvals = id;
2585        thefreqidcol.putColumn(thecolvals);
2586        // Set the proper MOLECULE_ID
2587        Vector<String> name,fname;Vector<Double> rf;
2588        (*it)->molecules().getEntry(rf, name, fname, rec.asuInt("MOLECULE_ID"));
2589        id = out->molecules().addEntry(rf, name, fname);
2590        thecolvals = id;
2591        themolidcol.putColumn(thecolvals);
2592        // Set the proper FOCUS_ID
2593        Float fpa,frot,fax,ftan,fhand,fmount,fuser, fxy, fxyp;
2594        (*it)->focus().getEntry(fpa, fax, ftan, frot, fhand, fmount,fuser,
2595                                fxy, fxyp, rec.asuInt("FOCUS_ID"));
2596        id = out->focus().addEntry(fpa, fax, ftan, frot, fhand, fmount,fuser,
2597                                   fxy, fxyp);
2598        thecolvals = id;
2599        thefocusidcol.putColumn(thecolvals);
2600
2601        tout.addRow(thetab.nrow());
2602        TableCopy::copyRows(tout, thetab, nrow, 0, thetab.nrow());
2603
2604        ++subit;
2605      }
2606      ++newscanno;
2607      ++scanit;
2608    }
2609    ++it;
2610  }
2611  return out;
2612}
2613
2614CountedPtr< Scantable >
2615  STMath::invertPhase( const CountedPtr < Scantable >& in )
2616{
2617  return applyToPol(in, &STPol::invertPhase, Float(0.0));
2618}
2619
2620CountedPtr< Scantable >
2621  STMath::rotateXYPhase( const CountedPtr < Scantable >& in, float phase )
2622{
2623   return applyToPol(in, &STPol::rotatePhase, Float(phase));
2624}
2625
2626CountedPtr< Scantable >
2627  STMath::rotateLinPolPhase( const CountedPtr < Scantable >& in, float phase )
2628{
2629  return applyToPol(in, &STPol::rotateLinPolPhase, Float(phase));
2630}
2631
2632CountedPtr< Scantable > STMath::applyToPol( const CountedPtr<Scantable>& in,
2633                                             STPol::polOperation fptr,
2634                                             Float phase )
2635{
2636  CountedPtr< Scantable > out = getScantable(in, false);
2637  Table& tout = out->table();
2638  Block<String> cols(4);
2639  cols[0] = String("SCANNO");
2640  cols[1] = String("BEAMNO");
2641  cols[2] = String("IFNO");
2642  cols[3] = String("CYCLENO");
2643  TableIterator iter(tout, cols);
2644  CountedPtr<STPol> stpol = STPol::getPolClass(out->factories_,
2645                                               out->getPolType() );
2646  while (!iter.pastEnd()) {
2647    Table t = iter.table();
2648    ArrayColumn<Float> speccol(t, "SPECTRA");
2649    ScalarColumn<uInt> focidcol(t, "FOCUS_ID");
2650    Matrix<Float> pols(speccol.getColumn());
2651    try {
2652      stpol->setSpectra(pols);
2653      Float fang,fhand;
2654      fang = in->focusTable_.getTotalAngle(focidcol(0));
2655      fhand = in->focusTable_.getFeedHand(focidcol(0));
2656      stpol->setPhaseCorrections(fang, fhand);
2657      // use a member function pointer in STPol.  This only works on
2658      // the STPol pointer itself, not the Counted Pointer so
2659      // derefernce it.
2660      (&(*(stpol))->*fptr)(phase);
2661      speccol.putColumn(stpol->getSpectra());
2662    } catch (AipsError& e) {
2663      //delete stpol;stpol=0;
2664      throw(e);
2665    }
2666    ++iter;
2667  }
2668  //delete stpol;stpol=0;
2669  return out;
2670}
2671
2672CountedPtr< Scantable >
2673  STMath::swapPolarisations( const CountedPtr< Scantable > & in )
2674{
2675  CountedPtr< Scantable > out = getScantable(in, false);
2676  Table& tout = out->table();
2677  Table t0 = tout(tout.col("POLNO") == 0);
2678  Table t1 = tout(tout.col("POLNO") == 1);
2679  if ( t0.nrow() != t1.nrow() )
2680    throw(AipsError("Inconsistent number of polarisations"));
2681  ArrayColumn<Float> speccol0(t0, "SPECTRA");
2682  ArrayColumn<uChar> flagcol0(t0, "FLAGTRA");
2683  ArrayColumn<Float> speccol1(t1, "SPECTRA");
2684  ArrayColumn<uChar> flagcol1(t1, "FLAGTRA");
2685  Matrix<Float> s0 = speccol0.getColumn();
2686  Matrix<uChar> f0 = flagcol0.getColumn();
2687  speccol0.putColumn(speccol1.getColumn());
2688  flagcol0.putColumn(flagcol1.getColumn());
2689  speccol1.putColumn(s0);
2690  flagcol1.putColumn(f0);
2691  return out;
2692}
2693
2694CountedPtr< Scantable >
2695  STMath::averagePolarisations( const CountedPtr< Scantable > & in,
2696                                const std::vector<bool>& mask,
2697                                const std::string& weight )
2698{
2699  if (in->npol() < 2 )
2700    throw(AipsError("averagePolarisations can only be applied to two or more"
2701                    "polarisations"));
2702  bool insitu = insitu_;
2703  setInsitu(false);
2704  CountedPtr< Scantable > pols = getScantable(in, true);
2705  setInsitu(insitu);
2706  Table& tout = pols->table();
2707  std::string taql = "SELECT FROM $1 WHERE POLNO IN [0,1]";
2708  Table tab = tableCommand(taql, in->table());
2709  if (tab.nrow() == 0 )
2710    throw(AipsError("Could not find  any rows with POLNO==0 and POLNO==1"));
2711  TableCopy::copyRows(tout, tab);
2712  TableVector<uInt> vec(tout, "POLNO");
2713  vec = 0;
2714  pols->table_.rwKeywordSet().define("nPol", Int(1));
2715  pols->table_.rwKeywordSet().define("POLTYPE", String("stokes"));
2716  //pols->table_.rwKeywordSet().define("POLTYPE", in->getPolType());
2717  std::vector<CountedPtr<Scantable> > vpols;
2718  vpols.push_back(pols);
2719  CountedPtr< Scantable > out = average(vpols, mask, weight, "SCAN");
2720  return out;
2721}
2722
2723CountedPtr< Scantable >
2724  STMath::averageBeams( const CountedPtr< Scantable > & in,
2725                        const std::vector<bool>& mask,
2726                        const std::string& weight )
2727{
2728  bool insitu = insitu_;
2729  setInsitu(false);
2730  CountedPtr< Scantable > beams = getScantable(in, false);
2731  setInsitu(insitu);
2732  Table& tout = beams->table();
2733  // give all rows the same BEAMNO
2734  TableVector<uInt> vec(tout, "BEAMNO");
2735  vec = 0;
2736  beams->table_.rwKeywordSet().define("nBeam", Int(1));
2737  std::vector<CountedPtr<Scantable> > vbeams;
2738  vbeams.push_back(beams);
2739  CountedPtr< Scantable > out = average(vbeams, mask, weight, "SCAN");
2740  return out;
2741}
2742
2743
2744CountedPtr< Scantable >
2745  asap::STMath::frequencyAlign( const CountedPtr< Scantable > & in,
2746                                const std::string & refTime,
2747                                const std::string & method)
2748{
2749  // clone as this is not working insitu
2750  bool insitu = insitu_;
2751  setInsitu(false);
2752  CountedPtr< Scantable > out = getScantable(in, false);
2753  setInsitu(insitu);
2754  Table& tout = out->table();
2755  // Get reference Epoch to time of first row or given String
2756  Unit DAY(String("d"));
2757  MEpoch::Ref epochRef(in->getTimeReference());
2758  MEpoch refEpoch;
2759  if (refTime.length()>0) {
2760    Quantum<Double> qt;
2761    if (MVTime::read(qt,refTime)) {
2762      MVEpoch mv(qt);
2763      refEpoch = MEpoch(mv, epochRef);
2764   } else {
2765      throw(AipsError("Invalid format for Epoch string"));
2766   }
2767  } else {
2768    refEpoch = in->timeCol_(0);
2769  }
2770  MPosition refPos = in->getAntennaPosition();
2771
2772  InterpolateArray1D<Double,Float>::InterpolationMethod interp = stringToIMethod(method);
2773  /*
2774  // Comment from MV.
2775  // the following code has been commented out because different FREQ_IDs have to be aligned together even
2776  // if the frame doesn't change. So far, lack of this check didn't cause any problems.
2777  // test if user frame is different to base frame
2778  if ( in->frequencies().getFrameString(true)
2779       == in->frequencies().getFrameString(false) ) {
2780    throw(AipsError("Can't convert as no output frame has been set"
2781                    " (use set_freqframe) or it is aligned already."));
2782  }
2783  */
2784  MFrequency::Types system = in->frequencies().getFrame();
2785  MVTime mvt(refEpoch.getValue());
2786  String epochout = mvt.string(MVTime::YMD) + String(" (") + refEpoch.getRefString() + String(")");
2787  ostringstream oss;
2788  oss << "Aligned at reference Epoch " << epochout
2789      << " in frame " << MFrequency::showType(system);
2790  pushLog(String(oss));
2791  // set up the iterator
2792  Block<String> cols(4);
2793  // select by constant direction
2794  cols[0] = String("SRCNAME");
2795  cols[1] = String("BEAMNO");
2796  // select by IF ( no of channels varies over this )
2797  cols[2] = String("IFNO");
2798  // select by restfrequency
2799  cols[3] = String("MOLECULE_ID");
2800  TableIterator iter(tout, cols);
2801  while ( !iter.pastEnd() ) {
2802    Table t = iter.table();
2803    MDirection::ROScalarColumn dirCol(t, "DIRECTION");
2804    TableIterator fiter(t, "FREQ_ID");
2805    // determine nchan from the first row. This should work as
2806    // we are iterating over BEAMNO and IFNO    // we should have constant direction
2807
2808    ROArrayColumn<Float> sCol(t, "SPECTRA");
2809    const MDirection direction = dirCol(0);
2810    const uInt nchan = sCol(0).nelements();
2811
2812    // skip operations if there is nothing to align
2813    if (fiter.pastEnd()) {
2814        continue;
2815    }
2816
2817    Table ftab = fiter.table();
2818    // align all frequency ids with respect to the first encountered id
2819    ScalarColumn<uInt> freqidCol(ftab, "FREQ_ID");
2820    // get the SpectralCoordinate for the freqid, which we are iterating over
2821    SpectralCoordinate sC = in->frequencies().getSpectralCoordinate(freqidCol(0));
2822    FrequencyAligner<Float> fa( sC, nchan, refEpoch,
2823                                direction, refPos, system );
2824    // realign the SpectralCoordinate and put into the output Scantable
2825    Vector<String> units(1);
2826    units = String("Hz");
2827    Bool linear=True;
2828    SpectralCoordinate sc2 = fa.alignedSpectralCoordinate(linear);
2829    sc2.setWorldAxisUnits(units);
2830    const uInt id = out->frequencies().addEntry(sc2.referencePixel()[0],
2831                                                sc2.referenceValue()[0],
2832                                                sc2.increment()[0]);
2833    while ( !fiter.pastEnd() ) {
2834      ftab = fiter.table();
2835      // spectral coordinate for the current FREQ_ID
2836      ScalarColumn<uInt> freqidCol2(ftab, "FREQ_ID");
2837      sC = in->frequencies().getSpectralCoordinate(freqidCol2(0));
2838      // create the "global" abcissa for alignment with same FREQ_ID
2839      Vector<Double> abc(nchan);
2840      for (uInt i=0; i<nchan; i++) {
2841           Double w;
2842           sC.toWorld(w,Double(i));
2843           abc[i] = w;
2844      }
2845      TableVector<uInt> tvec(ftab, "FREQ_ID");
2846      // assign new frequency id to all rows
2847      tvec = id;
2848      // cache abcissa for same time stamps, so iterate over those
2849      TableIterator timeiter(ftab, "TIME");
2850      while ( !timeiter.pastEnd() ) {
2851        Table tab = timeiter.table();
2852        ArrayColumn<Float> specCol(tab, "SPECTRA");
2853        ArrayColumn<uChar> flagCol(tab, "FLAGTRA");
2854        MEpoch::ROScalarColumn timeCol(tab, "TIME");
2855        // use align abcissa cache after the first row
2856        // these rows should be just be POLNO
2857        bool first = true;
2858        for (int i=0; i<int(tab.nrow()); ++i) {
2859          // input values
2860          Vector<uChar> flag = flagCol(i);
2861          Vector<Bool> mask(flag.shape());
2862          Vector<Float> specOut, spec;
2863          spec  = specCol(i);
2864          Vector<Bool> maskOut;Vector<uChar> flagOut;
2865          convertArray(mask, flag);
2866          // alignment
2867          Bool ok = fa.align(specOut, maskOut, abc, spec,
2868                             mask, timeCol(i), !first,
2869                             interp, False);
2870          (void) ok; // unused stop compiler nagging
2871          // back into scantable
2872          flagOut.resize(maskOut.nelements());
2873          convertArray(flagOut, maskOut);
2874          flagCol.put(i, flagOut);
2875          specCol.put(i, specOut);
2876          // start abcissa caching
2877          first = false;
2878        }
2879        // next timestamp
2880        ++timeiter;
2881      }
2882      // next FREQ_ID
2883      ++fiter;
2884    }
2885    // next aligner
2886    ++iter;
2887  }
2888  // set this afterwards to ensure we are doing insitu correctly.
2889  out->frequencies().setFrame(system, true);
2890  return out;
2891}
2892
2893CountedPtr<Scantable>
2894  asap::STMath::convertPolarisation( const CountedPtr<Scantable>& in,
2895                                     const std::string & newtype )
2896{
2897  if (in->npol() != 2 && in->npol() != 4)
2898    throw(AipsError("Can only convert two or four polarisations."));
2899  if ( in->getPolType() == newtype )
2900    throw(AipsError("No need to convert."));
2901  if ( ! in->selector_.empty() )
2902    throw(AipsError("Can only convert whole scantable. Unset the selection."));
2903  bool insitu = insitu_;
2904  setInsitu(false);
2905  CountedPtr< Scantable > out = getScantable(in, true);
2906  setInsitu(insitu);
2907  Table& tout = out->table();
2908  tout.rwKeywordSet().define("POLTYPE", String(newtype));
2909
2910  Block<String> cols(4);
2911  cols[0] = "SCANNO";
2912  cols[1] = "CYCLENO";
2913  cols[2] = "BEAMNO";
2914  cols[3] = "IFNO";
2915  TableIterator it(in->originalTable_, cols);
2916  String basetype = in->getPolType();
2917  STPol* stpol = STPol::getPolClass(in->factories_, basetype);
2918  try {
2919    while ( !it.pastEnd() ) {
2920      Table tab = it.table();
2921      uInt row = tab.rowNumbers()[0];
2922      stpol->setSpectra(in->getPolMatrix(row));
2923      Float fang,fhand;
2924      fang = in->focusTable_.getTotalAngle(in->mfocusidCol_(row));
2925      fhand = in->focusTable_.getFeedHand(in->mfocusidCol_(row));
2926      stpol->setPhaseCorrections(fang, fhand);
2927      Int npolout = 0;
2928      for (uInt i=0; i<tab.nrow(); ++i) {
2929        Vector<Float> outvec = stpol->getSpectrum(i, newtype);
2930        if ( outvec.nelements() > 0 ) {
2931          tout.addRow();
2932          TableCopy::copyRows(tout, tab, tout.nrow()-1, 0, 1);
2933          ArrayColumn<Float> sCol(tout,"SPECTRA");
2934          ScalarColumn<uInt> pCol(tout,"POLNO");
2935          sCol.put(tout.nrow()-1 ,outvec);
2936          pCol.put(tout.nrow()-1 ,uInt(npolout));
2937          npolout++;
2938       }
2939      }
2940      tout.rwKeywordSet().define("nPol", npolout);
2941      ++it;
2942    }
2943  } catch (AipsError& e) {
2944    delete stpol;
2945    throw(e);
2946  }
2947  delete stpol;
2948  return out;
2949}
2950
2951CountedPtr< Scantable >
2952  asap::STMath::mxExtract( const CountedPtr< Scantable > & in,
2953                           const std::string & scantype )
2954{
2955  bool insitu = insitu_;
2956  setInsitu(false);
2957  CountedPtr< Scantable > out = getScantable(in, true);
2958  setInsitu(insitu);
2959  Table& tout = out->table();
2960  std::string taql = "SELECT FROM $1 WHERE BEAMNO != REFBEAMNO";
2961  if (scantype == "on") {
2962    taql = "SELECT FROM $1 WHERE BEAMNO == REFBEAMNO";
2963  }
2964  Table tab = tableCommand(taql, in->table());
2965  TableCopy::copyRows(tout, tab);
2966  if (scantype == "on") {
2967    // re-index SCANNO to 0
2968    TableVector<uInt> vec(tout, "SCANNO");
2969    vec = 0;
2970  }
2971  return out;
2972}
2973
2974std::vector<float>
2975  asap::STMath::fft( const casa::CountedPtr< Scantable > & in,
2976                     const std::vector<int>& whichrow,
2977                     bool getRealImag )
2978{
2979  std::vector<float> res;
2980  Table tab = in->table();
2981  std::vector<bool> mask;
2982
2983  if (whichrow.size() < 1) {          // for all rows (by default)
2984    int nrow = int(tab.nrow());
2985    for (int i = 0; i < nrow; ++i) {
2986      res = in->execFFT(i, mask, getRealImag);
2987    }
2988  } else {                           // for specified rows
2989    for (uInt i = 0; i < whichrow.size(); ++i) {
2990      res = in->execFFT(i, mask, getRealImag);
2991    }
2992  }
2993
2994  return res;
2995}
2996
2997
2998CountedPtr<Scantable>
2999  asap::STMath::lagFlag( const CountedPtr<Scantable>& in,
3000                         double start, double end,
3001                         const std::string& mode )
3002{
3003  CountedPtr<Scantable> out = getScantable(in, false);
3004  Table& tout = out->table();
3005  TableIterator iter(tout, "FREQ_ID");
3006  FFTServer<Float,Complex> ffts;
3007
3008  while ( !iter.pastEnd() ) {
3009    Table tab = iter.table();
3010    Double rp,rv,inc;
3011    ROTableRow row(tab);
3012    const TableRecord& rec = row.get(0);
3013    uInt freqid = rec.asuInt("FREQ_ID");
3014    out->frequencies().getEntry(rp, rv, inc, freqid);
3015    ArrayColumn<Float> specCol(tab, "SPECTRA");
3016    ArrayColumn<uChar> flagCol(tab, "FLAGTRA");
3017
3018    for (int i=0; i<int(tab.nrow()); ++i) {
3019      Vector<Float> spec = specCol(i);
3020      Vector<uChar> flag = flagCol(i);
3021      std::vector<bool> mask;
3022      for (uInt j = 0; j < flag.nelements(); ++j) {
3023        mask.push_back(!(flag[j]>0));
3024      }
3025      mathutil::doZeroOrderInterpolation(spec, mask);
3026
3027      Vector<Complex> lags;
3028      ffts.fft0(lags, spec);
3029
3030      Int lag0(start+0.5);
3031      Int lag1(end+0.5);
3032      if (mode == "frequency") {
3033        lag0 = Int(spec.nelements()*abs(inc)/(start)+0.5);
3034        lag1 = Int(spec.nelements()*abs(inc)/(end)+0.5);
3035      }
3036      Int lstart =  max(0, lag0);
3037      Int lend   =  min(Int(lags.nelements()-1), lag1);
3038      if (lstart == lend) {
3039        lags[lstart] = Complex(0.0);
3040      } else {
3041        if (lstart > lend) {
3042          Int tmp = lend;
3043          lend = lstart;
3044          lstart = tmp;
3045        }
3046        for (int j=lstart; j <=lend ;++j) {
3047          lags[j] = Complex(0.0);
3048        }
3049      }
3050
3051      ffts.fft0(spec, lags);
3052
3053      specCol.put(i, spec);
3054    }
3055    ++iter;
3056  }
3057  return out;
3058}
3059
3060// Averaging spectra with different channel/resolution
3061CountedPtr<Scantable>
3062STMath::new_average( const std::vector<CountedPtr<Scantable> >& in,
3063                     const bool& compel,
3064                     const std::vector<bool>& mask,
3065                     const std::string& weight,
3066                     const std::string& avmode )
3067  throw ( casa::AipsError )
3068{
3069  LogIO os( LogOrigin( "STMath", "new_average()", WHERE ) ) ;
3070  if ( avmode == "SCAN" && in.size() != 1 )
3071    throw(AipsError("Can't perform 'SCAN' averaging on multiple tables.\n"
3072                    "Use merge first."));
3073 
3074  // 2012/02/17 TN
3075  // Since STGrid is implemented, average doesn't consider direction
3076  // when accumulating
3077  // check if OTF observation
3078//   String obstype = in[0]->getHeader().obstype ;
3079//   Double tol = 0.0 ;
3080//   if ( obstype.find( "OTF" ) != String::npos ) {
3081//     tol = TOL_OTF ;
3082//   }
3083//   else {
3084//     tol = TOL_POINT ;
3085//   }
3086
3087  CountedPtr<Scantable> out ;     // processed result
3088  if ( compel ) {
3089    std::vector< CountedPtr<Scantable> > newin ; // input for average process
3090    uInt insize = in.size() ;    // number of input scantables
3091
3092    // TEST: do normal average in each table before IF grouping
3093    os << "Do preliminary averaging" << LogIO::POST ;
3094    vector< CountedPtr<Scantable> > tmpin( insize ) ;
3095    for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3096      vector< CountedPtr<Scantable> > v( 1, in[itable] ) ;
3097      tmpin[itable] = average( v, mask, weight, avmode ) ;
3098    }
3099
3100    // warning
3101    os << "Average spectra with different spectral resolution" << LogIO::POST ;
3102
3103    // temporarily set coordinfo
3104    vector<string> oldinfo( insize ) ;
3105    for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3106      vector<string> coordinfo = in[itable]->getCoordInfo() ;
3107      oldinfo[itable] = coordinfo[0] ;
3108      coordinfo[0] = "Hz" ;
3109      tmpin[itable]->setCoordInfo( coordinfo ) ;
3110    }
3111
3112    // columns
3113    ScalarColumn<uInt> freqIDCol ;
3114    ScalarColumn<uInt> ifnoCol ;
3115    ScalarColumn<uInt> scannoCol ;
3116
3117
3118    // check IF frequency coverage
3119    // freqid: list of FREQ_ID, which is used, in each table 
3120    // iffreq: list of minimum and maximum frequency for each FREQ_ID in
3121    //         each table
3122    // freqid[insize][numIF]
3123    // freqid: [[id00, id01, ...],
3124    //          [id10, id11, ...],
3125    //          ...
3126    //          [idn0, idn1, ...]]
3127    // iffreq[insize][numIF*2]
3128    // iffreq: [[min_id00, max_id00, min_id01, max_id01, ...],
3129    //          [min_id10, max_id10, min_id11, max_id11, ...],
3130    //          ...
3131    //          [min_idn0, max_idn0, min_idn1, max_idn1, ...]]
3132    //os << "Check IF settings in each table" << LogIO::POST ;
3133    vector< vector<uInt> > freqid( insize );
3134    vector< vector<double> > iffreq( insize ) ;
3135    for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3136      uInt rows = tmpin[itable]->nrow() ;
3137      uInt freqnrows = tmpin[itable]->frequencies().table().nrow() ;
3138      freqIDCol.attach( tmpin[itable]->table(), "FREQ_ID" ) ;
3139      //ifnoCol.attach( tmpin[itable]->table(), "IFNO" ) ;
3140      for ( uInt irow = 0 ; irow < rows ; irow++ ) {
3141        if ( freqid[itable].size() == freqnrows ) {
3142          break ;
3143        }
3144        else {
3145          uInt id = freqIDCol( irow ) ;
3146          if ( freqid[itable].size() == 0 || count( freqid[itable].begin(), freqid[itable].end(), id ) == 0 ) {
3147            //os << "itable = " << itable << ": IF " << id << " is included in the list" << LogIO::POST ;
3148            vector<double> abcissa = tmpin[itable]->getAbcissa( irow ) ;
3149            double lbedge, rbedge;
3150            freqid[itable].push_back( id ) ;
3151            lbedge = abcissa[0] - 0.5 * ( abcissa[1] - abcissa[0] );
3152            rbedge = abcissa[abcissa.size()-1] + 0.5 * ( abcissa[1] - abcissa[0] );
3153            iffreq[itable].push_back( min(lbedge, rbedge) ) ;
3154            iffreq[itable].push_back( max(lbedge, rbedge) ) ;
3155          }
3156        }
3157      }
3158    }
3159
3160    // debug
3161    //os << "IF settings summary:" << endl ;
3162    //for ( uInt i = 0 ; i < freqid.size() ; i++ ) {
3163    //os << "   Table" << i << endl ;
3164    //for ( uInt j = 0 ; j < freqid[i].size() ; j++ ) {
3165    //os << "      id = " << freqid[i][j] << " (min,max) = (" << iffreq[i][2*j] << "," << iffreq[i][2*j+1] << ")" << endl ;
3166    //}
3167    //}
3168    //os << endl ;
3169    //os.post() ;
3170
3171    // IF grouping based on their frequency coverage
3172    // ifgrp: list of table index and FREQ_ID for all members in each IF group
3173    // ifgfreq: list of minimum and maximum frequency in each IF group
3174    // ifgrp[numgrp][nummember*2]
3175    // ifgrp: [[table00, freqrow00, table01, freqrow01, ...],
3176    //         [table10, freqrow10, table11, freqrow11, ...],
3177    //         ...
3178    //         [tablen0, freqrown0, tablen1, freqrown1, ...]]
3179    // ifgfreq[numgrp*2]
3180    // ifgfreq: [min0_grp0, max0_grp0, min1_grp1, max1_grp1, ...]
3181    //os << "IF grouping based on their frequency coverage" << LogIO::POST ;
3182    vector< vector<uInt> > ifgrp ;
3183    vector<double> ifgfreq ;
3184
3185    // parameter for IF grouping
3186    // groupmode = OR    retrieve all region
3187    //             AND   only retrieve overlaped region
3188    //string groupmode = "AND" ;
3189    string groupmode = "OR" ;
3190    uInt sizecr = 0 ;
3191    if ( groupmode == "AND" )
3192      sizecr = 1 ;
3193    else if ( groupmode == "OR" )
3194      sizecr = 0 ;
3195
3196    vector<double> sortedfreq ;
3197    for ( uInt i = 0 ; i < iffreq.size() ; i++ ) {
3198      for ( uInt j = 0 ; j < iffreq[i].size() ; j++ ) {
3199        if ( count( sortedfreq.begin(), sortedfreq.end(), iffreq[i][j] ) == 0 )
3200          sortedfreq.push_back( iffreq[i][j] ) ;
3201      }
3202    }
3203    sort( sortedfreq.begin(), sortedfreq.end() ) ;
3204    for ( vector<double>::iterator i = sortedfreq.begin() ; i != sortedfreq.end()-1 ; i++ ) {
3205      ifgfreq.push_back( *i ) ;
3206      ifgfreq.push_back( *(i+1) ) ;
3207    }
3208    ifgrp.resize( ifgfreq.size()/2 ) ;
3209    for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3210      for ( uInt iif = 0 ; iif < freqid[itable].size() ; iif++ ) {
3211        double range0 = iffreq[itable][2*iif] ;
3212        double range1 = iffreq[itable][2*iif+1] ;
3213        for ( uInt j = 0 ; j < ifgrp.size() ; j++ ) {
3214          double fmin = max( range0, ifgfreq[2*j] ) ;
3215          double fmax = min( range1, ifgfreq[2*j+1] ) ;
3216          if ( fmin < fmax ) {
3217            ifgrp[j].push_back( itable ) ;
3218            ifgrp[j].push_back( freqid[itable][iif] ) ;
3219          }
3220        }
3221      }
3222    }
3223    vector< vector<uInt> >::iterator fiter = ifgrp.begin() ;
3224    vector<double>::iterator giter = ifgfreq.begin() ;
3225    while( fiter != ifgrp.end() ) {
3226      if ( fiter->size() <= sizecr ) {
3227        fiter = ifgrp.erase( fiter ) ;
3228        giter = ifgfreq.erase( giter ) ;
3229        giter = ifgfreq.erase( giter ) ;
3230      }
3231      else {
3232        fiter++ ;
3233        advance( giter, 2 ) ;
3234      }
3235    }
3236
3237    // Grouping continuous IF groups (without frequency gap)
3238    // freqgrp: list of IF group indexes in each frequency group
3239    // freqgrp[numgrp][nummember]
3240    // freqgrp: [[ifgrp00, ifgrp01, ifgrp02, ...],
3241    //           [ifgrp10, ifgrp11, ifgrp12, ...],
3242    //           ...
3243    //           [ifgrpn0, ifgrpn1, ifgrpn2, ...]]
3244    vector< vector<uInt> > freqgrp ;
3245    double freqrange = 0.0 ;
3246    uInt grpnum = 0 ;
3247    for ( uInt i = 0 ; i < ifgrp.size() ; i++ ) {
3248      // Assumed that ifgfreq was sorted
3249      if ( grpnum != 0 && freqrange == ifgfreq[2*i] ) {
3250        freqgrp[grpnum-1].push_back( i ) ;
3251      }
3252      else {
3253        vector<uInt> grp0( 1, i ) ;
3254        freqgrp.push_back( grp0 ) ;
3255        grpnum++ ;
3256      }
3257      freqrange = ifgfreq[2*i+1] ;
3258    }
3259
3260
3261    // print IF groups
3262    ostringstream oss ;
3263    oss << "IF Group summary: " << endl ;
3264    oss << "   GROUP_ID [FREQ_MIN, FREQ_MAX]: (TABLE_ID, FREQ_ID)" << endl ;
3265    for ( uInt i = 0 ; i < ifgrp.size() ; i++ ) {
3266      oss << "   GROUP " << setw( 2 ) << i << " [" << ifgfreq[2*i] << "," << ifgfreq[2*i+1] << "]: " ;
3267      for ( uInt j = 0 ; j < ifgrp[i].size()/2 ; j++ ) {
3268        oss << "(" << ifgrp[i][2*j] << "," << ifgrp[i][2*j+1] << ") " ;
3269      }
3270      oss << endl ;
3271    }
3272    oss << endl ;
3273    os << oss.str() << LogIO::POST ;
3274   
3275    // print frequency group
3276    oss.str("") ;
3277    oss << "Frequency Group summary: " << endl ;
3278    oss << "   GROUP_ID [FREQ_MIN, FREQ_MAX]: IF_GROUP_ID" << endl ;
3279    for ( uInt i = 0 ; i < freqgrp.size() ; i++ ) {
3280      oss << "   GROUP " << setw( 2 ) << i << " [" << ifgfreq[2*freqgrp[i][0]] << "," << ifgfreq[2*freqgrp[i][freqgrp[i].size()-1]+1] << "]: " ;
3281      for ( uInt j = 0 ; j < freqgrp[i].size() ; j++ ) {
3282        oss << freqgrp[i][j] << " " ;
3283      }
3284      oss << endl ;
3285    }
3286    oss << endl ;
3287    os << oss.str() << LogIO::POST ;
3288
3289    // membership check
3290    // groups: list of IF group indexes whose frequency range overlaps with
3291    //         that of each table and IF
3292    // groups[numtable][numIF][nummembership]
3293    // groups: [[[grp, grp,...], [grp, grp,...],...],
3294    //          [[grp, grp,...], [grp, grp,...],...],
3295    //          ...
3296    //          [[grp, grp,...], [grp, grp,...],...]]
3297    vector< vector< vector<uInt> > > groups( insize ) ;
3298    for ( uInt i = 0 ; i < insize ; i++ ) {
3299      groups[i].resize( freqid[i].size() ) ;
3300    }
3301    for ( uInt igrp = 0 ; igrp < ifgrp.size() ; igrp++ ) {
3302      for ( uInt imem = 0 ; imem < ifgrp[igrp].size()/2 ; imem++ ) {
3303        uInt tableid = ifgrp[igrp][2*imem] ;
3304        vector<uInt>::iterator iter = find( freqid[tableid].begin(), freqid[tableid].end(), ifgrp[igrp][2*imem+1] ) ;
3305        if ( iter != freqid[tableid].end() ) {
3306          uInt rowid = distance( freqid[tableid].begin(), iter ) ;
3307          groups[tableid][rowid].push_back( igrp ) ;
3308        }
3309      }
3310    }
3311
3312    // print membership
3313//     oss.str("") ;
3314//     for ( uInt i = 0 ; i < insize ; i++ ) {
3315//       oss << "Table " << i << endl ;
3316//       for ( uInt j = 0 ; j < groups[i].size() ; j++ ) {
3317//         oss << "   FREQ_ID " <<  setw( 2 ) << freqid[i][j] << ": " ;
3318//         for ( uInt k = 0 ; k < groups[i][j].size() ; k++ ) {
3319//           oss << setw( 2 ) << groups[i][j][k] << " " ;
3320//         }
3321//         oss << endl ;
3322//       }
3323//     }
3324//     os << oss.str() << LogIO::POST ;
3325
3326    // set back coordinfo
3327    for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3328      vector<string> coordinfo = tmpin[itable]->getCoordInfo() ;
3329      coordinfo[0] = oldinfo[itable] ;
3330      tmpin[itable]->setCoordInfo( coordinfo ) ;
3331    }
3332
3333    // Create additional table if needed
3334    bool oldInsitu = insitu_ ;
3335    setInsitu( false ) ;
3336    vector< vector<uInt> > addrow( insize ) ;
3337    vector<uInt> addtable( insize, 0 ) ;
3338    vector<uInt> newtableids( insize ) ;
3339    vector<uInt> newifids( insize, 0 ) ;
3340    for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3341      //os << "Table " << itable << ": " ;
3342      for ( uInt ifrow = 0 ; ifrow < groups[itable].size() ; ifrow++ ) {
3343        addrow[itable].push_back( groups[itable][ifrow].size()-1 ) ;
3344        //os << addrow[itable][ifrow] << " " ;
3345      }
3346      addtable[itable] = *max_element( addrow[itable].begin(), addrow[itable].end() ) ;
3347      //os << "(" << addtable[itable] << ")" << LogIO::POST ;
3348    }
3349    newin.resize( insize ) ;
3350    copy( tmpin.begin(), tmpin.end(), newin.begin() ) ;
3351    for ( uInt i = 0 ; i < insize ; i++ ) {
3352      newtableids[i] = i ;
3353    }
3354    for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3355      for ( uInt iadd = 0 ; iadd < addtable[itable] ; iadd++ ) {
3356        CountedPtr<Scantable> add = getScantable( newin[itable], false ) ;
3357        vector<int> freqidlist ;
3358        for ( uInt i = 0 ; i < groups[itable].size() ; i++ ) {
3359          if ( groups[itable][i].size() > iadd + 1 ) {
3360            freqidlist.push_back( freqid[itable][i] ) ;
3361          }
3362        }
3363        stringstream taqlstream ;
3364        taqlstream << "SELECT FROM $1 WHERE FREQ_ID IN [" ;
3365        for ( uInt i = 0 ; i < freqidlist.size() ; i++ ) {
3366          taqlstream << freqidlist[i] ;
3367          if ( i < freqidlist.size() - 1 )
3368            taqlstream << "," ;
3369          else
3370            taqlstream << "]" ;
3371        }
3372        string taql = taqlstream.str() ;
3373        //os << "taql = " << taql << LogIO::POST ;
3374        STSelector selector = STSelector() ;
3375        selector.setTaQL( taql ) ;
3376        add->setSelection( selector ) ;
3377        newin.push_back( add ) ;
3378        newtableids.push_back( itable ) ;
3379        newifids.push_back( iadd + 1 ) ;
3380      }
3381    }
3382
3383    // udpate ifgrp
3384    uInt offset = insize ;
3385    for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3386      for ( uInt iadd = 0 ; iadd < addtable[itable] ; iadd++ ) {
3387        for ( uInt ifrow = 0 ; ifrow < groups[itable].size() ; ifrow++ ) {
3388          if ( groups[itable][ifrow].size() > iadd + 1 ) {
3389            uInt igrp = groups[itable][ifrow][iadd+1] ;
3390            for ( uInt imem = 0 ; imem < ifgrp[igrp].size()/2 ; imem++ ) {
3391              if ( ifgrp[igrp][2*imem] == newtableids[offset+iadd] && ifgrp[igrp][2*imem+1] == freqid[newtableids[offset+iadd]][ifrow] ) {
3392                ifgrp[igrp][2*imem] = offset + iadd ;
3393              }
3394            }
3395          }
3396        }
3397      }
3398      offset += addtable[itable] ;
3399    }
3400
3401    // print IF groups again for debug
3402//     oss.str( "" ) ;
3403//     oss << "IF Group summary: " << endl ;
3404//     oss << "   GROUP_ID [FREQ_MIN, FREQ_MAX]: (TABLE_ID, FREQ_ID)" << endl ;
3405//     for ( uInt i = 0 ; i < ifgrp.size() ; i++ ) {
3406//       oss << "   GROUP " << setw( 2 ) << i << " [" << ifgfreq[2*i] << "," << ifgfreq[2*i+1] << "]: " ;
3407//       for ( uInt j = 0 ; j < ifgrp[i].size()/2 ; j++ ) {
3408//         oss << "(" << ifgrp[i][2*j] << "," << ifgrp[i][2*j+1] << ") " ;
3409//       }
3410//       oss << endl ;
3411//     }
3412//     oss << endl ;
3413//     os << oss.str() << LogIO::POST ;
3414
3415    // reset SCANNO and IFNO/FREQ_ID: IF is reset by the result of sortation
3416    //os << "All IF number is set to IF group index" << LogIO::POST ;
3417    insize = newin.size() ;
3418    // reset SCANNO only when avmode != "SCAN"
3419    if ( avmode != "SCAN" ) {
3420      os << "All scan number is set to 0" << LogIO::POST ;
3421      for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3422        uInt nrow = newin[itable]->nrow() ;
3423        Table &tmpt = newin[itable]->table() ;
3424        scannoCol.attach( tmpt, "SCANNO" ) ;
3425        for ( uInt irow = 0 ; irow < nrow ; irow++ )
3426          scannoCol.put( irow, 0 ) ;
3427      }
3428    }
3429    for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3430      uInt rows = newin[itable]->nrow() ;
3431      Table &tmpt = newin[itable]->table() ;
3432      freqIDCol.attach( tmpt, "FREQ_ID" ) ;
3433      ifnoCol.attach( tmpt, "IFNO" ) ;
3434      for ( uInt irow=0 ; irow < rows ; irow++ ) {
3435        uInt freqID = freqIDCol( irow ) ;
3436        vector<uInt>::iterator iter = find( freqid[newtableids[itable]].begin(), freqid[newtableids[itable]].end(), freqID ) ;
3437        if ( iter != freqid[newtableids[itable]].end() ) {
3438          uInt index = distance( freqid[newtableids[itable]].begin(), iter ) ;
3439          ifnoCol.put( irow, groups[newtableids[itable]][index][newifids[itable]] ) ;
3440        }
3441        else {
3442          throw(AipsError("IF grouping was wrong in additional tables.")) ;
3443        }
3444      }
3445    }
3446    oldinfo.resize( insize ) ;
3447    setInsitu( oldInsitu ) ;
3448
3449    // temporarily set coordinfo
3450    for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3451      vector<string> coordinfo = newin[itable]->getCoordInfo() ;
3452      oldinfo[itable] = coordinfo[0] ;
3453      coordinfo[0] = "Hz" ;
3454      newin[itable]->setCoordInfo( coordinfo ) ;
3455    }
3456
3457    // save column values in the vector
3458    vector< vector<uInt> > freqIdVec( insize ) ;
3459    vector< vector<uInt> > ifNoVec( insize ) ;
3460    for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3461      ifnoCol.attach( newin[itable]->table(), "IFNO" ) ;
3462      freqIDCol.attach( newin[itable]->table(), "FREQ_ID" ) ;
3463      for ( uInt irow = 0 ; irow < newin[itable]->table().nrow() ; irow++ ) {
3464        freqIdVec[itable].push_back( freqIDCol( irow ) ) ;
3465        ifNoVec[itable].push_back( ifnoCol( irow ) ) ;
3466      }
3467    }
3468
3469    // reset spectra and flagtra: pick up common part of frequency coverage
3470    //os << "Pick common frequency range and align resolution" << LogIO::POST ;
3471    for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3472      uInt rows = newin[itable]->nrow() ;
3473      int nminchan = -1 ;
3474      int nmaxchan = -1 ;
3475      vector<uInt> freqIdUpdate ;
3476      for ( uInt irow = 0 ; irow < rows ; irow++ ) {
3477        uInt ifno = ifNoVec[itable][irow] ;  // IFNO is reset by group index (IF group index)
3478        double minfreq = ifgfreq[2*ifno] ;
3479        double maxfreq = ifgfreq[2*ifno+1] ;
3480        //os << "frequency range: [" << minfreq << "," << maxfreq << "]" << LogIO::POST ;
3481        vector<double> abcissa = newin[itable]->getAbcissa( irow ) ;
3482        int nchan = abcissa.size() ;
3483        double resol = abcissa[1] - abcissa[0] ;
3484        //os << "abcissa range  : [" << abcissa[0] << "," << abcissa[nchan-1] << "]" << LogIO::POST ;
3485        uInt imin, imax;
3486        int sigres;
3487        if ( resol >= 0. ) {
3488          imin = 0;
3489          imax = nchan - 1 ;
3490          sigres = 1 ;
3491        } else {
3492          imin = nchan - 1 ;
3493          imax = 0 ;
3494          sigres = -1 ;
3495          resol = abs(resol) ;
3496        }
3497        if ( minfreq <= abcissa[imin] )
3498          nminchan = imin ;
3499        else {
3500          //double cfreq = ( minfreq - abcissa[0] ) / resol ;
3501          double cfreq = ( minfreq - abcissa[imin] + 0.5 * resol ) / resol ;
3502          nminchan = imin + sigres * (int(cfreq) + ( ( cfreq - int(cfreq) <= 0.5 ) ? 0 : 1 )) ;
3503        }
3504        if ( maxfreq >= abcissa[imax] )
3505          nmaxchan = imax;
3506        else {
3507          //double cfreq = ( abcissa[abcissa.size()-1] - maxfreq ) / resol ;
3508          double cfreq = ( abcissa[imax] - maxfreq + 0.5 * resol ) / resol ;
3509          nmaxchan = imax - sigres * (int(cfreq) +( ( cfreq - int(cfreq) >= 0.5 ) ? 1 : 0 )) ;
3510        }
3511        //os << "channel range (" << irow << "): [" << nminchan << "," << nmaxchan << "]" << LogIO::POST ;
3512        if ( nmaxchan < nminchan ) {
3513          int tmp = nmaxchan ;
3514          nmaxchan = nminchan ;
3515          nminchan = tmp ;
3516        }
3517        if ( nmaxchan > nminchan ) {
3518          newin[itable]->reshapeSpectrum( nminchan, nmaxchan, irow ) ;
3519          int newchan = nmaxchan - nminchan + 1 ;
3520          if ( count( freqIdUpdate.begin(), freqIdUpdate.end(), freqIdVec[itable][irow] ) == 0 && newchan < nchan ) {
3521            freqIdUpdate.push_back( freqIdVec[itable][irow] ) ;
3522
3523            // Update before nminchan is lost
3524            uInt freqId = freqIdVec[itable][irow] ;
3525            Double refpix ;
3526            Double refval ;
3527            Double increment ;
3528            newin[itable]->frequencies().getEntry( refpix, refval, increment, freqId ) ;
3529            //refval = refval - ( refpix - nminchan ) * increment ;
3530            refval = abcissa[nminchan] ;
3531            refpix = 0 ;
3532            newin[itable]->frequencies().setEntry( refpix, refval, increment, freqId ) ;
3533          }
3534        }
3535        else {
3536          throw(AipsError("Failed to pick up common part of frequency range.")) ;
3537        }
3538      }
3539//       for ( uInt i = 0 ; i < freqIdUpdate.size() ; i++ ) {
3540//      uInt freqId = freqIdUpdate[i] ;
3541//      Double refpix ;
3542//      Double refval ;
3543//      Double increment ;
3544       
3545//      // update row
3546//      newin[itable]->frequencies().getEntry( refpix, refval, increment, freqId ) ;
3547//      refval = refval - ( refpix - nminchan ) * increment ;
3548//      refpix = 0 ;
3549//      newin[itable]->frequencies().setEntry( refpix, refval, increment, freqId ) ;
3550//       }   
3551    }
3552
3553   
3554    // reset spectra and flagtra: align spectral resolution
3555    //os << "Align spectral resolution" << LogIO::POST ;
3556    // gmaxdnu: the coarsest frequency resolution in the frequency group
3557    // gmemid: member index that have a resolution equal to gmaxdnu
3558    // gmaxdnu[numfreqgrp]
3559    // gmaxdnu: [dnu0, dnu1, ...]
3560    // gmemid[numfreqgrp]
3561    // gmemid: [id0, id1, ...]
3562    vector<double> gmaxdnu( freqgrp.size(), 0.0 ) ;
3563    vector<uInt> gmemid( freqgrp.size(), 0 ) ;
3564    for ( uInt igrp = 0 ; igrp < ifgrp.size() ; igrp++ ) {
3565      double maxdnu = 0.0 ;       // maximum (coarsest) frequency resolution
3566      int minchan = INT_MAX ;     // minimum channel number
3567      Double refpixref = -1 ;     // reference of 'reference pixel'
3568      Double refvalref = -1 ;     // reference of 'reference frequency'
3569      Double refinc = -1 ;        // reference frequency resolution
3570      uInt refreqid ;
3571      uInt reftable = INT_MAX;
3572      // process only if group member > 1
3573      if ( ifgrp[igrp].size() > 2 ) {
3574        // find minchan and maxdnu in each group
3575        for ( uInt imem = 0 ; imem < ifgrp[igrp].size()/2 ; imem++ ) {
3576          uInt tableid = ifgrp[igrp][2*imem] ;
3577          uInt rowid = ifgrp[igrp][2*imem+1] ;
3578          vector<uInt>::iterator iter = find( freqIdVec[tableid].begin(), freqIdVec[tableid].end(), rowid ) ;
3579          if ( iter != freqIdVec[tableid].end() ) {
3580            uInt index = distance( freqIdVec[tableid].begin(), iter ) ;
3581            vector<double> abcissa = newin[tableid]->getAbcissa( index ) ;
3582            int nchan = abcissa.size() ;
3583            double dnu = abcissa[1] - abcissa[0] ;
3584            //os << "GROUP " << igrp << " (" << tableid << "," << rowid << "): nchan = " << nchan << " (minchan = " << minchan << ")" << LogIO::POST ;
3585            if ( nchan < minchan ) {
3586              minchan = nchan ;
3587              maxdnu = abs(dnu) ;
3588              newin[tableid]->frequencies().getEntry( refpixref, refvalref, refinc, rowid ) ;
3589              refreqid = rowid ;
3590              reftable = tableid ;
3591              // Spectra are reversed when dnu < 0
3592              if (dnu < 0)
3593                refpixref = minchan - 1 -refpixref ;
3594            }
3595          }
3596        }
3597        // regrid spectra in each group
3598        os << "GROUP " << igrp << endl ;
3599        os << "   Channel number is adjusted to " << minchan << endl ;
3600        os << "   Corresponding frequency resolution is " << maxdnu << "Hz" << LogIO::POST ;
3601        for ( uInt imem = 0 ; imem < ifgrp[igrp].size()/2 ; imem++ ) {
3602          uInt tableid = ifgrp[igrp][2*imem] ;
3603          uInt rowid = ifgrp[igrp][2*imem+1] ;
3604          freqIDCol.attach( newin[tableid]->table(), "FREQ_ID" ) ;
3605          //os << "tableid = " << tableid << " rowid = " << rowid << ": " << LogIO::POST ;
3606          //os << "   regridChannel applied to " ;
3607          //if ( tableid != reftable )
3608          refreqid = newin[tableid]->frequencies().addEntry( refpixref, refvalref, maxdnu ) ;
3609          for ( uInt irow = 0 ; irow < newin[tableid]->table().nrow() ; irow++ ) {
3610            uInt tfreqid = freqIdVec[tableid][irow] ;
3611            if ( tfreqid == rowid ) {     
3612              //os << irow << " " ;
3613              newin[tableid]->regridChannel( minchan, maxdnu, irow ) ;
3614              freqIDCol.put( irow, refreqid ) ;
3615              freqIdVec[tableid][irow] = refreqid ;
3616            }
3617          }
3618          //os << LogIO::POST ;
3619        }
3620      }
3621      else {
3622        uInt tableid = ifgrp[igrp][0] ;
3623        uInt rowid = ifgrp[igrp][1] ;
3624        vector<uInt>::iterator iter = find( freqIdVec[tableid].begin(), freqIdVec[tableid].end(), rowid ) ;
3625        if ( iter != freqIdVec[tableid].end() ) {
3626          uInt index = distance( freqIdVec[tableid].begin(), iter ) ;
3627          vector<double> abcissa = newin[tableid]->getAbcissa( index ) ;
3628          minchan = abcissa.size() ;
3629          maxdnu = abs( abcissa[1] - abcissa[0]) ;
3630        }
3631      }
3632      for ( uInt i = 0 ; i < freqgrp.size() ; i++ ) {
3633        if ( count( freqgrp[i].begin(), freqgrp[i].end(), igrp ) > 0 ) {
3634          if ( maxdnu > gmaxdnu[i] ) {
3635            gmaxdnu[i] = maxdnu ;
3636            gmemid[i] = igrp ;
3637          }
3638          break ;
3639        }
3640      }
3641    }
3642
3643    // set back coordinfo
3644    for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3645      vector<string> coordinfo = newin[itable]->getCoordInfo() ;
3646      coordinfo[0] = oldinfo[itable] ;
3647      newin[itable]->setCoordInfo( coordinfo ) ;
3648    }     
3649
3650    // accumulate all rows into the first table
3651    // NOTE: assumed in.size() = 1
3652    vector< CountedPtr<Scantable> > tmp( 1 ) ;
3653    if ( newin.size() == 1 )
3654      tmp[0] = newin[0] ;
3655    else
3656      tmp[0] = merge( newin ) ;
3657
3658    //return tmp[0] ;
3659
3660    // average
3661    CountedPtr<Scantable> tmpout = average( tmp, mask, weight, avmode ) ;
3662
3663    //return tmpout ;
3664
3665    // combine frequency group
3666    os << "Combine spectra based on frequency grouping" << LogIO::POST ;
3667    os << "IFNO is renumbered as frequency group ID (see above)" << LogIO::POST ;
3668    vector<string> coordinfo = tmpout->getCoordInfo() ;
3669    oldinfo[0] = coordinfo[0] ;
3670    coordinfo[0] = "Hz" ;
3671    tmpout->setCoordInfo( coordinfo ) ;
3672    // create proformas of output table
3673    stringstream taqlstream ;
3674    taqlstream << "SELECT FROM $1 WHERE IFNO IN [" ;
3675    for ( uInt i = 0 ; i < gmemid.size() ; i++ ) {
3676      taqlstream << gmemid[i] ;
3677      if ( i < gmemid.size() - 1 )
3678        taqlstream << "," ;
3679      else
3680        taqlstream << "]" ;
3681    }
3682    string taql = taqlstream.str() ;
3683    //os << "taql = " << taql << LogIO::POST ;
3684    STSelector selector = STSelector() ;
3685    selector.setTaQL( taql ) ;
3686    oldInsitu = insitu_ ;
3687    setInsitu( false ) ;
3688    out = getScantable( tmpout, false ) ;
3689    setInsitu( oldInsitu ) ;
3690    out->setSelection( selector ) ;
3691    // regrid rows
3692    ifnoCol.attach( tmpout->table(), "IFNO" ) ;
3693    for ( uInt irow = 0 ; irow < tmpout->table().nrow() ; irow++ ) {
3694      uInt ifno = ifnoCol( irow ) ;
3695      for ( uInt igrp = 0 ; igrp < freqgrp.size() ; igrp++ ) {
3696        if ( count( freqgrp[igrp].begin(), freqgrp[igrp].end(), ifno ) > 0 ) {
3697          vector<double> abcissa = tmpout->getAbcissa( irow ) ;
3698          double bw = ( abcissa[1] - abcissa[0] ) * abcissa.size() ;
3699          int nchan = (int) abs( bw / gmaxdnu[igrp] ) ;
3700          // All spectra will have positive frequency increments
3701          tmpout->regridChannel( nchan, gmaxdnu[igrp], irow ) ;
3702          break ;
3703        }
3704      }
3705    }
3706    // combine spectra
3707    ArrayColumn<Float> specColOut( out->table(), "SPECTRA" ) ;
3708    ArrayColumn<uChar> flagColOut( out->table(), "FLAGTRA" ) ;
3709    ArrayColumn<Float> tsysColOut( out->table(), "TSYS" ) ;
3710    ScalarColumn<uInt> ifnoColOut( out->table(), "IFNO" ) ;
3711    ScalarColumn<uInt> polnoColOut( out->table(), "POLNO" ) ;
3712    ScalarColumn<uInt> freqidColOut( out->table(), "FREQ_ID" ) ;
3713//     MDirection::ScalarColumn dirColOut ;
3714//     dirColOut.attach( out->table(), "DIRECTION" ) ;
3715    Table &tab = tmpout->table() ;
3716//     Block<String> cols(1);
3717//     cols[0] = String("POLNO") ;
3718    Block<String> cols(3);
3719    cols[0] = String("POLNO") ;
3720    cols[1] = String("SCANNO") ;
3721    cols[2] = String("BEAMNO") ;
3722    TableIterator iter( tab, cols ) ;
3723    vector< vector<uInt> > sizes( freqgrp.size() ) ;
3724    vector<uInt> totalsizes( freqgrp.size(), 0 ) ;
3725    ArrayColumn<Float> specCols ;
3726    ArrayColumn<uChar> flagCols ;
3727    ArrayColumn<Float> tsysCols ;
3728    ScalarColumn<uInt> polnos ;
3729    vector< Vector<Float> > specout( freqgrp.size() ) ;
3730    vector< Vector<uChar> > flagout( freqgrp.size() ) ;
3731    vector< Vector<Float> > tsysout( freqgrp.size() ) ;
3732    while( !iter.pastEnd() ) {
3733      specCols.attach( iter.table(), "SPECTRA" ) ;
3734      flagCols.attach( iter.table(), "FLAGTRA" ) ;
3735      tsysCols.attach( iter.table(), "TSYS" ) ;
3736      ifnoCol.attach( iter.table(), "IFNO" ) ;
3737      polnos.attach( iter.table(), "POLNO" ) ;
3738//       MDirection::ScalarColumn dircol ;
3739//       dircol.attach( iter.table(), "DIRECTION" ) ;
3740      uInt polno = polnos( 0 ) ;
3741      //os << "POLNO iteration: " << polno << LogIO::POST ;
3742//       for ( uInt igrp = 0 ; igrp < freqgrp.size() ; igrp++ ) {
3743//      sizes[igrp].resize( freqgrp[igrp].size() ) ;
3744//      for ( uInt imem = 0 ; imem < freqgrp[igrp].size() ; imem++ ) {
3745//        for ( uInt irow = 0 ; irow < iter.table().nrow() ; irow++ ) {
3746//          uInt ifno = ifnoCol( irow ) ;
3747//          if ( ifno == freqgrp[igrp][imem] ) {
3748//            Vector<Float> spec = specCols( irow ) ;
3749//            Vector<uChar> flag = flagCols( irow ) ;
3750//            vector<Float> svec ;
3751//            spec.tovector( svec ) ;
3752//            vector<uChar> fvec ;
3753//            flag.tovector( fvec ) ;
3754//            //os << "spec.size() = " << svec.size() << " fvec.size() = " << fvec.size() << LogIO::POST ;
3755//            specout[igrp].insert( specout[igrp].end(), svec.begin(), svec.end() ) ;
3756//            flagout[igrp].insert( flagout[igrp].end(), fvec.begin(), fvec.end() ) ;
3757//            //os << "specout[" << igrp << "].size() = " << specout[igrp].size() << LogIO::POST ;
3758//            sizes[igrp][imem] = spec.nelements() ;
3759//          }
3760//        }
3761//      }
3762//      for ( uInt irow = 0 ; irow < out->table().nrow() ; irow++ ) {
3763//        uInt ifout = ifnoColOut( irow ) ;
3764//        uInt polout = polnoColOut( irow ) ;
3765//        if ( ifout == gmemid[igrp] && polout == polno ) {
3766//          // set SPECTRA and FRAGTRA
3767//          Vector<Float> newspec( specout[igrp] ) ;
3768//          Vector<uChar> newflag( flagout[igrp] ) ;
3769//          specColOut.put( irow, newspec ) ;
3770//          flagColOut.put( irow, newflag ) ;
3771//          // IFNO renumbering
3772//          ifnoColOut.put( irow, igrp ) ;
3773//        }
3774//      }
3775//       }
3776      // get a list of number of channels for each frequency group member
3777      if ( totalsizes[0] == 0 ) {
3778        for ( uInt igrp = 0 ; igrp < freqgrp.size() ; igrp++ ) {
3779          sizes[igrp].resize( freqgrp[igrp].size() ) ;
3780          for ( uInt imem = 0 ; imem < freqgrp[igrp].size() ; imem++ ) {
3781            for ( uInt irow = 0 ; irow < iter.table().nrow() ; irow++ ) {
3782              uInt ifno = ifnoCol( irow ) ;
3783              if ( ifno == freqgrp[igrp][imem] ) {
3784                Vector<Float> spec = specCols( irow ) ;
3785                sizes[igrp][imem] = spec.nelements() ;
3786                totalsizes[igrp] += sizes[igrp][imem] ;
3787                break ;
3788              }
3789            }
3790          }
3791          specout[igrp].resize( totalsizes[igrp] ) ;
3792          flagout[igrp].resize( totalsizes[igrp] ) ;
3793          tsysout[igrp].resize( totalsizes[igrp] ) ;
3794        }
3795      }
3796
3797      // combine spectra
3798      for ( uInt irow = 0 ; irow < out->table().nrow() ; irow++ ) {
3799        uInt polout = polnoColOut( irow ) ;
3800        if ( polout == polno ) {
3801          uInt ifout = ifnoColOut( irow ) ;
3802//           Vector<Double> direction = dirColOut(irow).getAngle(Unit(String("rad"))).getValue() ;
3803          uInt igrp ;
3804          for ( uInt jgrp = 0 ; jgrp < freqgrp.size() ; jgrp++ ) {
3805            if ( ifout == gmemid[jgrp] ) {
3806              igrp = jgrp ;
3807              break ;
3808            }
3809          }
3810          IPosition startpos( 1, 0 ) ;
3811          IPosition endpos( 1, 0 ) ;
3812          for ( uInt imem = 0 ; imem < freqgrp[igrp].size() ; imem++ ) {
3813            for ( uInt jrow = 0 ; jrow < iter.table().nrow() ; jrow++ ) {
3814              uInt ifno = ifnoCol( jrow ) ;
3815              // 2012/02/17 TN
3816              // Since STGrid is implemented, average doesn't consider direction
3817              // when accumulating
3818//               Vector<Double> tdir = dircol(jrow).getAngle(Unit(String("rad"))).getValue() ;
3819//               //if ( ifno == freqgrp[igrp][imem] && allTrue( tdir == direction  ) ) {
3820//               Double dx = tdir[0] - direction[0] ;
3821//               Double dy = tdir[1] - direction[1] ;
3822//               Double dd = sqrt( dx * dx + dy * dy ) ;
3823              //if ( ifno == freqgrp[igrp][imem] && allNearAbs( tdir, direction, tol ) ) {
3824//               if ( ifno == freqgrp[igrp][imem] && dd <= tol ) {
3825              if ( ifno == freqgrp[igrp][imem] ) {
3826                endpos[0] = startpos[0] + sizes[igrp][imem] - 1 ;
3827                Vector<Float> spec = specCols( jrow ) ;
3828                Vector<uChar> flag = flagCols( jrow ) ;
3829                Vector<Float> tsys = tsysCols( jrow ) ;
3830                //os << "spec.size() = " << svec.size() << " fvec.size() = " << fvec.size() << LogIO::POST ;
3831                specout[igrp]( startpos, endpos ) = spec ;
3832                flagout[igrp]( startpos, endpos ) = flag ;
3833                if ( spec.size() == tsys.size() ) {
3834                  tsysout[igrp]( startpos, endpos ) = tsys ;
3835                }
3836                else {
3837                  tsysout[igrp]( startpos, endpos ) = tsys[0] ;
3838                }
3839                //os << "specout[" << igrp << "].size() = " << specout[igrp].size() << LogIO::POST ;
3840                startpos[0] += sizes[igrp][imem] ;
3841              }
3842            }
3843          }
3844          // set SPECTRA and FRAGTRA
3845          specColOut.put( irow, specout[igrp] ) ;
3846          flagColOut.put( irow, flagout[igrp] ) ;
3847          tsysColOut.put( irow, tsysout[igrp] ) ;
3848          // IFNO renumbering (renumbered as frequency group ID)
3849          ifnoColOut.put( irow, igrp ) ;
3850        }
3851      }
3852      iter++ ;
3853    }
3854    // update FREQUENCIES subtable
3855    vector<bool> updated( freqgrp.size(), false ) ;
3856    for ( uInt igrp = 0 ; igrp < freqgrp.size() ; igrp++ ) {
3857      uInt index = 0 ;
3858      uInt pixShift = 0 ;
3859
3860      while ( freqgrp[igrp][index] != gmemid[igrp] ) {
3861        pixShift += sizes[igrp][index++] ;
3862      }
3863      for ( uInt irow = 0 ; irow < out->table().nrow() ; irow++ ) {
3864        //if ( ifnoColOut( irow ) == gmemid[igrp] && !updated[igrp] ) {
3865        if ( ifnoColOut( irow ) == igrp && !updated[igrp] ) {
3866          uInt freqidOut = freqidColOut( irow ) ;
3867          //os << "freqgrp " << igrp << " freqidOut = " << freqidOut << LogIO::POST ;
3868          double refpix ;
3869          double refval ;
3870          double increm ;
3871          out->frequencies().getEntry( refpix, refval, increm, freqidOut ) ;
3872          if (increm < 0)
3873            refpix = sizes[igrp][index] - 1 - refpix ; // reversed
3874          refpix += pixShift ;
3875          out->frequencies().setEntry( refpix, refval, gmaxdnu[igrp], freqidOut ) ;
3876          updated[igrp] = true ;
3877        }
3878      }
3879    }
3880
3881    //out = tmpout ;
3882
3883    coordinfo = tmpout->getCoordInfo() ;
3884    coordinfo[0] = oldinfo[0] ;
3885    tmpout->setCoordInfo( coordinfo ) ;
3886  }
3887  else {
3888    // simple average
3889    out =  average( in, mask, weight, avmode ) ;
3890  }
3891 
3892  return out;
3893}
3894
3895CountedPtr<Scantable> STMath::cwcal( const CountedPtr<Scantable>& s,
3896                                     const String calmode,
3897                                     const String antname )
3898{
3899  // frequency switch
3900  if ( calmode == "fs" ) {
3901    return cwcalfs( s, antname ) ;
3902  }
3903  else {
3904    vector<bool> masks = s->getMask( 0 ) ;
3905    vector<int> types ;
3906
3907    // save original table selection
3908    Table torg  = s->table_ ;
3909
3910    // sky scan
3911    bool insitu = insitu_ ;
3912    insitu_ = false ;
3913    // share calibration scans before average with out
3914    CountedPtr<Scantable> out = getScantable( s, true ) ;
3915    insitu_ = insitu ;
3916    out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::SKY ) ;
3917    out->attach() ;
3918    CountedPtr<Scantable> asky = averageWithinSession( out,
3919                                                       masks,
3920                                                       "TINT" ) ;
3921    // hot scan
3922    out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::HOT ) ;
3923    out->attach() ;
3924    CountedPtr<Scantable> ahot = averageWithinSession( out,
3925                                                       masks,
3926                                                       "TINT" ) ;
3927    // cold scan
3928    CountedPtr<Scantable> acold ;
3929//     out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::COLD ) ;
3930//     out->attach() ;
3931//     CountedPtr<Scantable> acold = averageWithinSession( out,
3932//                                                         masks,
3933//                                                         "TINT" ) ;
3934
3935    // off scan
3936    out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::PSOFF ) ;
3937    out->attach() ;
3938    CountedPtr<Scantable> aoff = averageWithinSession( out,
3939                                                       masks,
3940                                                       "TINT" ) ;
3941   
3942    // on scan
3943    s->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::PSON ) ;
3944    s->attach() ;
3945    out->table_ = out->originalTable_ ;
3946    out->attach() ;
3947    out->table().addRow( s->nrow() ) ;
3948    copyRows( out->table(), s->table(), 0, 0, s->nrow(), False, True, False ) ;
3949   
3950    // process each on scan
3951    STSelector sel ;
3952    vector<string> cols( 3 ) ;
3953    cols[0] = "BEAMNO" ;
3954    cols[1] = "POLNO" ;
3955    cols[2] = "IFNO" ;
3956    STIdxIter *iter = new STIdxIterAcc( out, cols ) ;
3957    while ( !iter->pastEnd() ) {
3958      Vector<uInt> ids = iter->current() ;
3959      stringstream ss ;
3960      ss << "SELECT FROM $1 WHERE "
3961         << "BEAMNO==" << ids[0] << "&&"
3962         << "POLNO==" << ids[1] << "&&"
3963         << "IFNO==" << ids[2] ;
3964      //cout << "TaQL string: " << ss.str() << endl ;
3965      sel.setTaQL( ss.str() ) ;
3966      aoff->setSelection( sel ) ;
3967      ahot->setSelection( sel ) ;
3968      asky->setSelection( sel ) ;
3969      Vector<uInt> rows = iter->getRows( SHARE ) ;
3970      // out should be an exact copy of s except that SPECTRA column is empty
3971      calibrateCW( out, s, aoff, asky, ahot, acold, rows, antname ) ;
3972      aoff->unsetSelection() ;
3973      ahot->unsetSelection() ;
3974      asky->unsetSelection() ;
3975      sel.reset() ;
3976      iter->next() ;
3977    }
3978    delete iter ;
3979    s->table_ = torg ;
3980    s->attach() ;
3981
3982    // flux unit
3983    out->setFluxUnit( "K" ) ;
3984
3985    return out ;
3986  }
3987}
3988 
3989CountedPtr<Scantable> STMath::almacal( const CountedPtr<Scantable>& s,
3990                                       const String calmode )
3991{
3992  // frequency switch
3993  if ( calmode == "fs" ) {
3994    return almacalfs( s ) ;
3995  }
3996  else {
3997//     double t0, t1 ;
3998//     t0 = mathutil::gettimeofday_sec() ;
3999    vector<bool> masks = s->getMask( 0 ) ;
4000
4001    // save original table selection
4002    Table torg = s->table_ ;
4003
4004    // off scan
4005    // TODO 2010/01/08 TN
4006    // Grouping by time should be needed before averaging.
4007    // Each group must have own unique SCANNO (should be renumbered).
4008    // See PIPELINE/SDCalibration.py
4009    bool insitu = insitu_ ;
4010    insitu_ = false ;
4011    // share off scan before average with out
4012    CountedPtr<Scantable> out = getScantable( s, true ) ;
4013    out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::PSOFF ) ;
4014    out->attach() ;
4015    insitu_ = insitu ;
4016    CountedPtr<Scantable> aoff = averageWithinSession( out,
4017                                                       masks,
4018                                                       "TINT" ) ;
4019
4020    // on scan
4021//     t0 = mathutil::gettimeofday_sec() ;
4022    s->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::PSON ) ;
4023    s->attach() ;
4024    out->table_ = out->originalTable_ ;
4025    out->attach() ;
4026    out->table().addRow( s->nrow() ) ;
4027    copyRows( out->table(), s->table(), 0, 0, s->nrow(), False ) ;
4028//     t1 = mathutil::gettimeofday_sec() ;
4029//     cout << "elapsed time for preparing output table: " << t1-t0 << " sec" << endl ;
4030
4031    // process each on scan
4032//     t0 = mathutil::gettimeofday_sec() ;
4033
4034    // using STIdxIterAcc
4035    vector<string> cols( 3 ) ;
4036    cols[0] = "BEAMNO" ;
4037    cols[1] = "POLNO" ;
4038    cols[2] = "IFNO" ;
4039    STIdxIter *iter = new STIdxIterAcc( out, cols ) ;
4040    STSelector sel ;
4041    while ( !iter->pastEnd() ) {
4042      Vector<uInt> ids = iter->current() ;
4043      stringstream ss ;
4044      ss << "SELECT FROM $1 WHERE "
4045         << "BEAMNO==" << ids[0] << "&&"
4046         << "POLNO==" << ids[1] << "&&"
4047         << "IFNO==" << ids[2] ;
4048      //cout << "TaQL string: " << ss.str() << endl ;
4049      sel.setTaQL( ss.str() ) ;
4050      aoff->setSelection( sel ) ;
4051      Vector<uInt> rows = iter->getRows( SHARE ) ;
4052      // out should be an exact copy of s except that SPECTRA column is empty
4053      calibrateALMA( out, s, aoff, rows ) ;
4054      aoff->unsetSelection() ;
4055      sel.reset() ;
4056      iter->next() ;
4057    }
4058    delete iter ;
4059    s->table_ = torg ;
4060    s->attach() ;
4061
4062//     t1 = mathutil::gettimeofday_sec() ;
4063//     cout << "elapsed time for calibration: " << t1-t0 << " sec" << endl ;
4064
4065    // flux unit
4066    out->setFluxUnit( "K" ) ;
4067
4068    return out ;
4069  }
4070}
4071
4072CountedPtr<Scantable> STMath::cwcalfs( const CountedPtr<Scantable>& s,
4073                                       const String antname )
4074{
4075  vector<int> types ;
4076
4077  // APEX calibration mode
4078  int apexcalmode = 1 ;
4079 
4080  if ( antname.find( "APEX" ) != string::npos ) {
4081    // check if off scan exists or not
4082    STSelector sel = STSelector() ;
4083    //sel.setName( offstr1 ) ;
4084    types.push_back( SrcType::FLOOFF ) ;
4085    sel.setTypes( types ) ;
4086    try {
4087      s->setSelection( sel ) ;
4088    }
4089    catch ( AipsError &e ) {
4090      apexcalmode = 0 ;
4091    }
4092    sel.reset() ;
4093  }
4094  s->unsetSelection() ;
4095  types.clear() ;
4096
4097  vector<bool> masks = s->getMask( 0 ) ;
4098  CountedPtr<Scantable> ssig, sref ;
4099  //CountedPtr<Scantable> out ;
4100  bool insitu = insitu_ ;
4101  insitu_ = False ;
4102  CountedPtr<Scantable> out = getScantable( s, true ) ;
4103  insitu_ = insitu ;
4104
4105  if ( antname.find( "APEX" ) != string::npos ) {
4106    // APEX calibration
4107    // sky scan
4108    out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FLOSKY ) ;
4109    out->attach() ;
4110    CountedPtr<Scantable> askylo = averageWithinSession( out,
4111                                                         masks,
4112                                                         "TINT" ) ;
4113    out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FHISKY ) ;
4114    out->attach() ;
4115    CountedPtr<Scantable> askyhi = averageWithinSession( out,
4116                                                         masks,
4117                                                         "TINT" ) ;
4118   
4119    // hot scan
4120    out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FLOHOT ) ;
4121    out->attach() ;
4122    CountedPtr<Scantable> ahotlo = averageWithinSession( out,
4123                                                         masks,
4124                                                         "TINT" ) ;
4125    out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FHIHOT ) ;
4126    out->attach() ;
4127    CountedPtr<Scantable> ahothi = averageWithinSession( out,
4128                                                         masks,
4129                                                         "TINT" ) ;
4130   
4131    // cold scan
4132    CountedPtr<Scantable> acoldlo, acoldhi ;
4133//     out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FLOCOLD ) ;
4134//     out->attach() ;
4135//     CountedPtr<Scantable> acoldlo = averageWithinSession( out,
4136//                                                           masks,
4137//                                                           "TINT" ) ;
4138//     out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FHICOLD ) ;
4139//     out->attach() ;
4140//     CountedPtr<Scantable> acoldhi = averageWithinSession( out,
4141//                                                           masks,
4142//                                                           "TINT" ) ;
4143
4144    // ref scan
4145    insitu_ = false ;
4146    sref = getScantable( s, true ) ;
4147    CountedPtr<Scantable> rref = getScantable( s, true ) ;
4148    insitu_ = insitu ;
4149    rref->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FSLO ) ;
4150    rref->attach() ;
4151    copyRows( sref->table_, rref->table_, 0, 0, rref->nrow(), False, True, False ) ;
4152   
4153    // sig scan
4154    insitu_ = false ;
4155    ssig = getScantable( s, true ) ;
4156    CountedPtr<Scantable> rsig = getScantable( s, true ) ;
4157    insitu_ = insitu ;
4158    rsig->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FSHI ) ;
4159    rsig->attach() ;
4160    copyRows( ssig->table_, rsig->table_, 0, 0, rsig->nrow(), False, True, False ) ;
4161         
4162    if ( apexcalmode == 0 ) {
4163      // using STIdxIterAcc
4164      vector<string> cols( 3 ) ;
4165      cols[0] = "BEAMNO" ;
4166      cols[1] = "POLNO" ;
4167      cols[2] = "IFNO" ;
4168      STIdxIter *iter = new STIdxIterAcc( ssig, cols ) ;
4169      STSelector sel ;
4170      vector< CountedPtr<Scantable> > on( 2 ) ;
4171      on[0] = rsig ;
4172      on[1] = rref ;
4173      vector< CountedPtr<Scantable> > sky( 2 ) ;
4174      sky[0] = askylo ;
4175      sky[1] = askyhi ;
4176      vector< CountedPtr<Scantable> > hot( 2 ) ;
4177      hot[0] = ahotlo ;
4178      hot[1] = ahothi ;
4179      vector< CountedPtr<Scantable> > cold( 2 ) ;
4180      while ( !iter->pastEnd() ) {
4181        Vector<uInt> ids = iter->current() ;
4182        stringstream ss ;
4183        ss << "SELECT FROM $1 WHERE "
4184           << "BEAMNO==" << ids[0] << "&&"
4185           << "POLNO==" << ids[1] << "&&"
4186           << "IFNO==" << ids[2] ;
4187        //cout << "TaQL string: " << ss.str() << endl ;
4188        sel.setTaQL( ss.str() ) ;
4189        sky[0]->setSelection( sel ) ;
4190        sky[1]->setSelection( sel ) ;
4191        hot[0]->setSelection( sel ) ;
4192        hot[1]->setSelection( sel ) ;
4193        Vector<uInt> rows = iter->getRows( SHARE ) ;
4194        calibrateAPEXFS( ssig, sref, on, sky, hot, cold, rows ) ;
4195        sky[0]->unsetSelection() ;
4196        sky[1]->unsetSelection() ;
4197        hot[0]->unsetSelection() ;
4198        hot[1]->unsetSelection() ;
4199        sel.reset() ;
4200        iter->next() ;
4201      }
4202      delete iter ;
4203
4204    }
4205    else if ( apexcalmode == 1 ) {
4206      // APEX fs data with off scan
4207      // off scan
4208      out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FLOOFF ) ;
4209      out->attach() ;
4210      CountedPtr<Scantable> aofflo = averageWithinSession( out,
4211                                                           masks,
4212                                                           "TINT" ) ;
4213      out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FHIOFF ) ;
4214      out->attach() ;
4215      CountedPtr<Scantable> aoffhi = averageWithinSession( out,
4216                                                           masks,
4217                                                           "TINT" ) ;
4218     
4219      // process each sig and ref scan
4220//       STSelector sel ;
4221      vector<string> cols( 3 ) ;
4222      cols[0] = "BEAMNO" ;
4223      cols[1] = "POLNO" ;
4224      cols[2] = "IFNO" ;
4225      STIdxIter *iter = new STIdxIterAcc( ssig, cols ) ;
4226      STSelector sel ;
4227      while ( !iter->pastEnd() ) {
4228        Vector<uInt> ids = iter->current() ;
4229        stringstream ss ;
4230        ss << "SELECT FROM $1 WHERE "
4231           << "BEAMNO==" << ids[0] << "&&"
4232           << "POLNO==" << ids[1] << "&&"
4233           << "IFNO==" << ids[2] ;
4234        //cout << "TaQL string: " << ss.str() << endl ;
4235        sel.setTaQL( ss.str() ) ;
4236        aofflo->setSelection( sel ) ;
4237        ahotlo->setSelection( sel ) ;
4238        askylo->setSelection( sel ) ;
4239        Vector<uInt> rows = iter->getRows( SHARE ) ;
4240        calibrateCW( ssig, rsig, aofflo, askylo, ahotlo, acoldlo, rows, antname ) ;
4241        aofflo->unsetSelection() ;
4242        ahotlo->unsetSelection() ;
4243        askylo->unsetSelection() ;
4244        sel.reset() ;
4245        iter->next() ;
4246      }
4247      delete iter ;
4248      iter = new STIdxIterAcc( sref, cols ) ;
4249      while ( !iter->pastEnd() ) {
4250        Vector<uInt> ids = iter->current() ;
4251        stringstream ss ;
4252        ss << "SELECT FROM $1 WHERE "
4253           << "BEAMNO==" << ids[0] << "&&"
4254           << "POLNO==" << ids[1] << "&&"
4255           << "IFNO==" << ids[2] ;
4256        //cout << "TaQL string: " << ss.str() << endl ;
4257        sel.setTaQL( ss.str() ) ;
4258        aoffhi->setSelection( sel ) ;
4259        ahothi->setSelection( sel ) ;
4260        askyhi->setSelection( sel ) ;
4261        Vector<uInt> rows = iter->getRows( SHARE ) ;
4262        calibrateCW( sref, rref, aoffhi, askyhi, ahothi, acoldhi, rows, antname ) ;
4263        aoffhi->unsetSelection() ;
4264        ahothi->unsetSelection() ;
4265        askyhi->unsetSelection() ;
4266        sel.reset() ;
4267        iter->next() ;
4268      }
4269      delete iter ;
4270    }
4271  }
4272  else {
4273    // non-APEX fs data
4274    // sky scan
4275    out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::SKY ) ;
4276    out->attach() ;
4277    CountedPtr<Scantable> asky = averageWithinSession( out,
4278                                                       masks,
4279                                                       "TINT" ) ;
4280    STSelector sel = STSelector() ;
4281
4282    // hot scan
4283    out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::HOT ) ;
4284    out->attach() ;
4285    CountedPtr<Scantable> ahot = averageWithinSession( out,
4286                                                       masks,
4287                                                       "TINT" ) ;
4288
4289    // cold scan
4290    CountedPtr<Scantable> acold ;
4291//     out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::COLD ) ;
4292//     out->attach() ;
4293//     CountedPtr<Scantable> acold = averageWithinSession( out,
4294//                                                         masks,
4295//                                                         "TINT" ) ;
4296   
4297    // ref scan
4298    bool insitu = insitu_ ;
4299    insitu_ = false ;
4300    sref = getScantable( s, true ) ;
4301    CountedPtr<Scantable> rref = getScantable( s, true ) ;
4302    insitu_ = insitu ;
4303    rref->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::PSOFF ) ;
4304    rref->attach() ;
4305    copyRows( sref->table_, rref->table_, 0, 0, rref->nrow(), False, True, False ) ;
4306   
4307    // sig scan
4308    insitu_ = false ;
4309    ssig = getScantable( s, true ) ;
4310    CountedPtr<Scantable> rsig = getScantable( s, true ) ;
4311    insitu_ = insitu ;
4312    rsig->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::PSON ) ;
4313    rsig->attach() ;
4314    copyRows( ssig->table_, rsig->table_, 0, 0, rsig->nrow(), False, True, False ) ;
4315
4316    // process each sig and ref scan
4317    vector<string> cols( 3 ) ;
4318    cols[0] = "BEAMNO" ;
4319    cols[1] = "POLNO" ;
4320    cols[2] = "IFNO" ;
4321    STIdxIter *iter = new STIdxIterAcc( ssig, cols ) ;
4322    while ( !iter->pastEnd() ) {
4323      Vector<uInt> ids = iter->current() ;
4324      stringstream ss ;
4325      ss << "SELECT FROM $1 WHERE "
4326         << "BEAMNO==" << ids[0] << "&&"
4327         << "POLNO==" << ids[1] << "&&"
4328         << "IFNO==" << ids[2] ;
4329      //cout << "TaQL string: " << ss.str() << endl ;
4330      sel.setTaQL( ss.str() ) ;
4331      ahot->setSelection( sel ) ;
4332      asky->setSelection( sel ) ;
4333      Vector<uInt> rows = iter->getRows( SHARE ) ;
4334      // out should be an exact copy of s except that SPECTRA column is empty
4335      calibrateFS( ssig, sref, rsig, rref, asky, ahot, acold, rows ) ;
4336      ahot->unsetSelection() ;
4337      asky->unsetSelection() ;
4338      sel.reset() ;
4339      iter->next() ;
4340    }
4341    delete iter ;
4342  }
4343
4344  // do folding if necessary
4345  Table sigtab = ssig->table() ;
4346  Table reftab = sref->table() ;
4347  ScalarColumn<uInt> reffidCol ;
4348  Int nchan = (Int)ssig->nchan() ;
4349  reffidCol.attach( reftab, "FREQ_ID" ) ;
4350  Vector<uInt> sfids = ssig->mfreqidCol_.getColumn() ;
4351  Vector<uInt> rfids = sref->mfreqidCol_.getColumn() ;
4352  vector<uInt> sfids_unique ;
4353  vector<uInt> rfids_unique ;
4354  vector<uInt> sifno_unique ;
4355  vector<uInt> rifno_unique ;
4356  for ( uInt i = 0 ; i < sfids.nelements() ; i++ ) {
4357    if ( count( sfids_unique.begin(), sfids_unique.end(), sfids[i] ) == 0 ) {
4358      sfids_unique.push_back( sfids[i] ) ;
4359      sifno_unique.push_back( ssig->getIF( i ) ) ;
4360    }
4361    if ( count( rfids_unique.begin(), rfids_unique.end(),  rfids[i] ) == 0 ) {
4362      rfids_unique.push_back( rfids[i] ) ;
4363      rifno_unique.push_back( sref->getIF( i ) ) ;
4364    }
4365  }
4366  double refpix_sig, refval_sig, increment_sig ;
4367  double refpix_ref, refval_ref, increment_ref ;
4368  vector< CountedPtr<Scantable> > tmp( sfids_unique.size() ) ;
4369  for ( uInt i = 0 ; i < sfids_unique.size() ; i++ ) {
4370    ssig->frequencies().getEntry( refpix_sig, refval_sig, increment_sig, sfids_unique[i] ) ;
4371    sref->frequencies().getEntry( refpix_ref, refval_ref, increment_ref, rfids_unique[i] ) ;
4372    if ( refpix_sig == refpix_ref ) {
4373      double foffset = refval_ref - refval_sig ;
4374      int choffset = static_cast<int>(foffset/increment_sig) ;
4375      double doffset = foffset / increment_sig ;
4376      if ( abs(choffset) >= nchan ) {
4377        LogIO os( LogOrigin( "STMath", "cwcalfs", WHERE ) ) ;
4378        os << "FREQ_ID=[" << sfids_unique[i] << "," << rfids_unique[i] << "]: out-band frequency switching, no folding" << LogIO::POST ;
4379        os << "Just return signal data" << LogIO::POST ;
4380        //std::vector< CountedPtr<Scantable> > tabs ;
4381        //tabs.push_back( ssig ) ;
4382        //tabs.push_back( sref ) ;
4383        //out = merge( tabs ) ;
4384        tmp[i] = ssig ;
4385      }
4386      else {
4387        STSelector sel = STSelector() ;
4388        vector<int> v( 1, sifno_unique[i] ) ;
4389        sel.setIFs( v ) ;
4390        ssig->setSelection( sel ) ;
4391        sel.reset() ;
4392        v[0] = rifno_unique[i] ;
4393        sel.setIFs( v ) ;
4394        sref->setSelection( sel ) ;
4395        sel.reset() ;
4396        if ( antname.find( "APEX" ) != string::npos ) {
4397          tmp[i] = dofold( ssig, sref, 0.5*doffset, -0.5*doffset ) ;
4398          //tmp[i] = dofold( ssig, sref, doffset ) ;
4399        }
4400        else {
4401          tmp[i] = dofold( ssig, sref, doffset ) ;
4402        }
4403        ssig->unsetSelection() ;
4404        sref->unsetSelection() ;
4405      }
4406    }
4407  }
4408
4409  if ( tmp.size() > 1 ) {
4410    out = merge( tmp ) ;
4411  }
4412  else {
4413    out = tmp[0] ;
4414  }
4415
4416  // flux unit
4417  out->setFluxUnit( "K" ) ;
4418
4419  return out ;
4420}
4421
4422CountedPtr<Scantable> STMath::almacalfs( const CountedPtr<Scantable>& s )
4423{
4424  (void) s; //currently unused
4425  CountedPtr<Scantable> out ;
4426
4427  return out ;
4428}
4429
4430Vector<Float> STMath::getSpectrumFromTime( double reftime,
4431                                           const Vector<Double> &timeVec,
4432                                           const vector<int> &idx,
4433                                           const Matrix<Float>& spectra,
4434                                           string mode )
4435{
4436  LogIO os( LogOrigin( "STMath", "getSpectrumFromTime", WHERE ) ) ;
4437  Vector<Float> sp ;
4438  uInt ncol = spectra.ncolumn() ;
4439
4440  if ( ncol == 0 ) {
4441    os << LogIO::SEVERE << "No spectra in the input scantable. Return empty spectrum." << LogIO::POST ;
4442    return sp ;
4443  }
4444  else if ( ncol == 1 ) {
4445    //os << "use row " << 0 << " (scanno = " << s->getScan( 0 ) << ")" << LogIO::POST ;
4446    sp.reference( spectra.column( 0 ) ) ;
4447    return sp ;
4448  }
4449  else {
4450    if ( mode == "before" ) {
4451      int id = -1 ;
4452      if ( idx[0] != -1 ) {
4453        id = idx[0] ;
4454      }
4455      else if ( idx[1] != -1 ) {
4456        os << LogIO::WARN << "Failed to find a scan before reftime. return a spectrum just after the reftime." << LogIO::POST ;
4457        id = idx[1] ;
4458      }
4459      //os << "use row " << id << " (scanno = " << s->getScan( id ) << ")" << LogIO::POST ;
4460      sp.reference( spectra.column( id ) ) ;
4461    }
4462    else if ( mode == "after" ) {
4463      int id = -1 ;
4464      if ( idx[1] != -1 ) {
4465        id = idx[1] ;
4466      }
4467      else if ( idx[0] != -1 ) {
4468        os << LogIO::WARN << "Failed to find a scan after reftime. return a spectrum just before the reftime." << LogIO::POST ;
4469        id = idx[1] ;
4470      }
4471      //os << "use row " << id << " (scanno = " << s->getScan( id ) << ")" << LogIO::POST ;
4472      sp.reference( spectra.column( id ) ) ;
4473    }
4474    else if ( mode == "nearest" ) {
4475      int id = -1 ;
4476      if ( idx[0] == -1 ) {
4477        id = idx[1] ;
4478      }
4479      else if ( idx[1] == -1 ) {
4480        id = idx[0] ;
4481      }
4482      else if ( idx[0] == idx[1] ) {
4483        id = idx[0] ;
4484      }
4485      else {
4486        double t0 = timeVec[idx[0]] ;
4487        double t1 = timeVec[idx[1]] ;
4488        double tref = reftime ;
4489        if ( abs( t0 - tref ) > abs( t1 - tref ) ) {
4490          id = idx[1] ;
4491        }
4492        else {
4493          id = idx[0] ;
4494        }
4495      }
4496      //os << "use row " << id << " (scanno = " << s->getScan( id ) << ")" << LogIO::POST ;
4497      sp.reference( spectra.column( id ) ) ;
4498    }
4499    else if ( mode == "linear" ) {
4500      if ( idx[0] == -1 ) {
4501        // use after
4502        os << LogIO::WARN << "Failed to interpolate. return a spectrum just after the reftime." << LogIO::POST ;
4503        int id = idx[1] ;
4504        //os << "use row " << id << " (scanno = " << s->getScan( id ) << ")" << LogIO::POST ;
4505        sp.reference( spectra.column( id ) ) ;
4506      }
4507      else if ( idx[1] == -1 ) {
4508        // use before
4509        os << LogIO::WARN << "Failed to interpolate. return a spectrum just before the reftime." << LogIO::POST ;
4510        int id = idx[0] ;
4511        //os << "use row " << id << " (scanno = " << s->getScan( id ) << ")" << LogIO::POST ;
4512        sp.reference( spectra.column( id ) ) ;
4513      }
4514      else if ( idx[0] == idx[1] ) {
4515        // use before
4516        //os << "No need to interporate." << LogIO::POST ;
4517        int id = idx[0] ;
4518        //os << "use row " << id << " (scanno = " << s->getScan( id ) << ")" << LogIO::POST ;
4519        sp.reference( spectra.column( id ) ) ;
4520      }
4521      else {
4522        // do interpolation
4523        //os << "interpolate between " << idx[0] << " and " << idx[1] << " (scanno: " << s->getScan( idx[0] ) << ", " << s->getScan( idx[1] ) << ")" << LogIO::POST ;
4524        double t0 = timeVec[idx[0]] ;
4525        double t1 = timeVec[idx[1]] ;
4526        double tref = reftime ;
4527        sp = spectra.column( idx[0] ).copy() ;
4528        Vector<Float> sp1( spectra.column( idx[1] ) ) ;
4529        double tfactor = ( tref - t0 ) / ( t1 - t0 ) ;
4530        for ( unsigned int i = 0 ; i < sp.size() ; i++ ) {
4531          sp[i] = ( sp1[i] - sp[i] ) * tfactor + sp[i] ;
4532        }
4533      }
4534    }
4535    else {
4536      os << LogIO::SEVERE << "Unknown mode" << LogIO::POST ;
4537    }
4538    return sp ;
4539  }
4540}
4541
4542vector<int> STMath::getRowIdFromTime( double reftime, const Vector<Double> &t )
4543{
4544//   double reft = reftime ;
4545  double dtmin = 1.0e100 ;
4546  double dtmax = -1.0e100 ;
4547//   vector<double> dt ;
4548  int just_before = -1 ;
4549  int just_after = -1 ;
4550  Vector<Double> dt = t - reftime ;
4551  for ( unsigned int i = 0 ; i < dt.size() ; i++ ) {
4552    if ( dt[i] > 0.0 ) {
4553      // after reftime
4554      if ( dt[i] < dtmin ) {
4555        just_after = i ;
4556        dtmin = dt[i] ;
4557      }
4558    }
4559    else if ( dt[i] < 0.0 ) {
4560      // before reftime
4561      if ( dt[i] > dtmax ) {
4562        just_before = i ;
4563        dtmax = dt[i] ;
4564      }
4565    }
4566    else {
4567      // just a reftime
4568      just_before = i ;
4569      just_after = i ;
4570      dtmax = 0 ;
4571      dtmin = 0 ;
4572      break ;
4573    }
4574  }
4575
4576  vector<int> v(2) ;
4577  v[0] = just_before ;
4578  v[1] = just_after ;
4579
4580  return v ;
4581}
4582
4583Vector<Float> STMath::getTcalFromTime( double reftime,
4584                                       const Vector<Double> &timeVec,
4585                                       const vector<int> &idx,
4586                                       const CountedPtr<Scantable>& s,
4587                                       string mode )
4588{
4589  LogIO os( LogOrigin( "STMath", "getTcalFromTime", WHERE ) ) ;
4590  STTcal tcalTable = s->tcal() ;
4591  String time ;
4592  Vector<Float> tcalval ;
4593  if ( s->nrow() == 0 ) {
4594    os << LogIO::SEVERE << "No row in the input scantable. Return empty tcal." << LogIO::POST ;
4595    return tcalval ;
4596  }
4597  else if ( s->nrow() == 1 ) {
4598    uInt tcalid = s->getTcalId( 0 ) ;
4599    //os << "use row " << 0 << " (tcalid = " << tcalid << ")" << LogIO::POST ;
4600    tcalTable.getEntry( time, tcalval, tcalid ) ;
4601    return tcalval ;
4602  }
4603  else {
4604    if ( mode == "before" ) {
4605      int id = -1 ;
4606      if ( idx[0] != -1 ) {
4607        id = idx[0] ;
4608      }
4609      else if ( idx[1] != -1 ) {
4610        os << LogIO::WARN << "Failed to find a scan before reftime. return a spectrum just after the reftime." << LogIO::POST ;
4611        id = idx[1] ;
4612      }
4613      uInt tcalid = s->getTcalId( id ) ;
4614      //os << "use row " << id << " (tcalid = " << tcalid << ")" << LogIO::POST ;
4615      tcalTable.getEntry( time, tcalval, tcalid ) ;
4616    }
4617    else if ( mode == "after" ) {
4618      int id = -1 ;
4619      if ( idx[1] != -1 ) {
4620        id = idx[1] ;
4621      }
4622      else if ( idx[0] != -1 ) {
4623        os << LogIO::WARN << "Failed to find a scan after reftime. return a spectrum just before the reftime." << LogIO::POST ;
4624        id = idx[1] ;
4625      }
4626      uInt tcalid = s->getTcalId( id ) ;
4627      //os << "use row " << id << " (tcalid = " << tcalid << ")" << LogIO::POST ;
4628      tcalTable.getEntry( time, tcalval, tcalid ) ;
4629    }
4630    else if ( mode == "nearest" ) {
4631      int id = -1 ;
4632      if ( idx[0] == -1 ) {
4633        id = idx[1] ;
4634      }
4635      else if ( idx[1] == -1 ) {
4636        id = idx[0] ;
4637      }
4638      else if ( idx[0] == idx[1] ) {
4639        id = idx[0] ;
4640      }
4641      else {
4642        double t0 = timeVec[idx[0]] ;
4643        double t1 = timeVec[idx[1]] ;
4644        if ( abs( t0 - reftime ) > abs( t1 - reftime ) ) {
4645          id = idx[1] ;
4646        }
4647        else {
4648          id = idx[0] ;
4649        }
4650      }
4651      uInt tcalid = s->getTcalId( id ) ;
4652      //os << "use row " << id << " (tcalid = " << tcalid << ")" << LogIO::POST ;
4653      tcalTable.getEntry( time, tcalval, tcalid ) ;
4654    }
4655    else if ( mode == "linear" ) {
4656      if ( idx[0] == -1 ) {
4657        // use after
4658        os << LogIO::WARN << "Failed to interpolate. return a spectrum just after the reftime." << LogIO::POST ;
4659        int id = idx[1] ;
4660        uInt tcalid = s->getTcalId( id ) ;
4661        //os << "use row " << id << " (tcalid = " << tcalid << ")" << LogIO::POST ;
4662        tcalTable.getEntry( time, tcalval, tcalid ) ;
4663      }
4664      else if ( idx[1] == -1 ) {
4665        // use before
4666        os << LogIO::WARN << "Failed to interpolate. return a spectrum just before the reftime." << LogIO::POST ;
4667        int id = idx[0] ;
4668        uInt tcalid = s->getTcalId( id ) ;
4669        //os << "use row " << id << " (tcalid = " << tcalid << ")" << LogIO::POST ;
4670        tcalTable.getEntry( time, tcalval, tcalid ) ;
4671      }
4672      else if ( idx[0] == idx[1] ) {
4673        // use before
4674        //os << "No need to interporate." << LogIO::POST ;
4675        int id = idx[0] ;
4676        uInt tcalid = s->getTcalId( id ) ;
4677        //os << "use row " << id << " (tcalid = " << tcalid << ")" << LogIO::POST ;
4678        tcalTable.getEntry( time, tcalval, tcalid ) ;
4679      }
4680      else {
4681        // do interpolation
4682        //os << "interpolate between " << idx[0] << " and " << idx[1] << " (scanno: " << s->getScan( idx[0] ) << ", " << s->getScan( idx[1] ) << ")" << LogIO::POST ;
4683        double t0 = timeVec[idx[0]] ;
4684        double t1 = timeVec[idx[1]] ;
4685        Vector<Float> tcal0 ;
4686        uInt tcalid0 = s->getTcalId( idx[0] ) ;
4687        uInt tcalid1 = s->getTcalId( idx[1] ) ;
4688        tcalTable.getEntry( time, tcal0, tcalid0 ) ;
4689        tcalTable.getEntry( time, tcalval, tcalid1 ) ;
4690        double tfactor = (reftime - t0) / (t1 - t0) ;
4691        for ( unsigned int i = 0 ; i < tcal0.size() ; i++ ) {
4692          tcalval[i] = ( tcalval[i] - tcal0[i] ) * tfactor + tcal0[i] ;
4693        }
4694      }
4695    }
4696    else {
4697      os << LogIO::SEVERE << "Unknown mode" << LogIO::POST ;
4698    }
4699    return tcalval ;
4700  }
4701}
4702
4703Vector<Float> STMath::getTsysFromTime( double reftime,
4704                                       const Vector<Double> &timeVec,
4705                                       const vector<int> &idx,
4706                                       const CountedPtr<Scantable> &s,
4707                                       string mode )
4708{
4709  LogIO os( LogOrigin( "STMath", "getTsysFromTime", WHERE ) ) ;
4710  ArrayColumn<Float> tsysCol ;
4711  tsysCol.attach( s->table(), "TSYS" ) ;
4712  Vector<Float> tsysval ;
4713  if ( s->nrow() == 0 ) {
4714    os << LogIO::SEVERE << "No row in the input scantable. Return empty tsys." << LogIO::POST ;
4715    return tsysval ;
4716  }
4717  else if ( s->nrow() == 1 ) {
4718    //os << "use row " << 0 << LogIO::POST ;
4719    tsysval = tsysCol( 0 ) ;
4720    return tsysval ;
4721  }
4722  else {
4723    if ( mode == "before" ) {
4724      int id = -1 ;
4725      if ( idx[0] != -1 ) {
4726        id = idx[0] ;
4727      }
4728      else if ( idx[1] != -1 ) {
4729        os << LogIO::WARN << "Failed to find a scan before reftime. return a spectrum just after the reftime." << LogIO::POST ;
4730        id = idx[1] ;
4731      }
4732      //os << "use row " << id << LogIO::POST ;
4733      tsysval = tsysCol( id ) ;
4734    }
4735    else if ( mode == "after" ) {
4736      int id = -1 ;
4737      if ( idx[1] != -1 ) {
4738        id = idx[1] ;
4739      }
4740      else if ( idx[0] != -1 ) {
4741        os << LogIO::WARN << "Failed to find a scan after reftime. return a spectrum just before the reftime." << LogIO::POST ;
4742        id = idx[1] ;
4743      }
4744      //os << "use row " << id << LogIO::POST ;
4745      tsysval = tsysCol( id ) ;
4746    }
4747    else if ( mode == "nearest" ) {
4748      int id = -1 ;
4749      if ( idx[0] == -1 ) {
4750        id = idx[1] ;
4751      }
4752      else if ( idx[1] == -1 ) {
4753        id = idx[0] ;
4754      }
4755      else if ( idx[0] == idx[1] ) {
4756        id = idx[0] ;
4757      }
4758      else {
4759        double t0 = timeVec[idx[0]] ;
4760        double t1 = timeVec[idx[1]] ;
4761        if ( abs( t0 - reftime ) > abs( t1 - reftime ) ) {
4762          id = idx[1] ;
4763        }
4764        else {
4765          id = idx[0] ;
4766        }
4767      }
4768      //os << "use row " << id << LogIO::POST ;
4769      tsysval = tsysCol( id ) ;
4770    }
4771    else if ( mode == "linear" ) {
4772      if ( idx[0] == -1 ) {
4773        // use after
4774        os << LogIO::WARN << "Failed to interpolate. return a spectrum just after the reftime." << LogIO::POST ;
4775        int id = idx[1] ;
4776        //os << "use row " << id << LogIO::POST ;
4777        tsysval = tsysCol( id ) ;
4778      }
4779      else if ( idx[1] == -1 ) {
4780        // use before
4781        os << LogIO::WARN << "Failed to interpolate. return a spectrum just before the reftime." << LogIO::POST ;
4782        int id = idx[0] ;
4783        //os << "use row " << id << LogIO::POST ;
4784        tsysval = tsysCol( id ) ;
4785      }
4786      else if ( idx[0] == idx[1] ) {
4787        // use before
4788        //os << "No need to interporate." << LogIO::POST ;
4789        int id = idx[0] ;
4790        //os << "use row " << id << LogIO::POST ;
4791        tsysval = tsysCol( id ) ;
4792      }
4793      else {
4794        // do interpolation
4795        //os << "interpolate between " << idx[0] << " and " << idx[1] << " (scanno: " << s->getScan( idx[0] ) << ", " << s->getScan( idx[1] ) << ")" << LogIO::POST ;
4796        double t0 = timeVec[idx[0]] ;
4797        double t1 = timeVec[idx[1]] ;
4798        Vector<Float> tsys0 ;
4799        tsys0 = tsysCol( idx[0] ) ;
4800        tsysval = tsysCol( idx[1] ) ;
4801        double tfactor = (reftime - t0) / (t1 - t0) ;
4802        for ( unsigned int i = 0 ; i < tsys0.size() ; i++ ) {
4803          tsysval[i] = ( tsysval[i] - tsys0[i] ) * tfactor + tsys0[i] ;
4804        }
4805      }
4806    }
4807    else {
4808      os << LogIO::SEVERE << "Unknown mode" << LogIO::POST ;
4809    }
4810    return tsysval ;
4811  }
4812}
4813
4814void STMath::calibrateCW( CountedPtr<Scantable> &out,
4815                          const CountedPtr<Scantable>& on,
4816                          const CountedPtr<Scantable>& off,
4817                          const CountedPtr<Scantable>& sky,
4818                          const CountedPtr<Scantable>& hot,
4819                          const CountedPtr<Scantable>& cold,
4820                          const Vector<uInt> &rows,
4821                          const String &antname )
4822{
4823  // 2012/05/22 TN
4824  // Assume that out has empty SPECTRA column
4825
4826  // if rows is empty, just return
4827  if ( rows.nelements() == 0 )
4828    return ;
4829  ROScalarColumn<Double> timeCol( off->table(), "TIME" ) ;
4830  Vector<Double> timeOff = timeCol.getColumn() ;
4831  timeCol.attach( sky->table(), "TIME" ) ;
4832  Vector<Double> timeSky = timeCol.getColumn() ;
4833  timeCol.attach( hot->table(), "TIME" ) ;
4834  Vector<Double> timeHot = timeCol.getColumn() ;
4835  timeCol.attach( on->table(), "TIME" ) ;
4836  ROArrayColumn<Float> arrayFloatCol( off->table(), "SPECTRA" ) ;
4837  Matrix<Float> offspectra = arrayFloatCol.getColumn() ;
4838  arrayFloatCol.attach( sky->table(), "SPECTRA" ) ;
4839  Matrix<Float> skyspectra = arrayFloatCol.getColumn() ;
4840  arrayFloatCol.attach( hot->table(), "SPECTRA" ) ;
4841  Matrix<Float> hotspectra = arrayFloatCol.getColumn() ;
4842  unsigned int spsize = on->nchan( on->getIF(rows[0]) ) ;
4843  // I know that the data is contiguous
4844  const uInt *p = rows.data() ;
4845  vector<int> ids( 2 ) ;
4846  Block<uInt> flagchan( spsize ) ;
4847  uInt nflag = 0 ;
4848  for ( int irow = 0 ; irow < rows.nelements() ; irow++ ) {
4849    double reftime = timeCol.asdouble(*p) ;
4850    ids = getRowIdFromTime( reftime, timeOff ) ;
4851    Vector<Float> spoff = getSpectrumFromTime( reftime, timeOff, ids, offspectra, "linear" ) ;
4852    ids = getRowIdFromTime( reftime, timeSky ) ;
4853    Vector<Float> spsky = getSpectrumFromTime( reftime, timeSky, ids, skyspectra, "linear" ) ;
4854    Vector<Float> tcal = getTcalFromTime( reftime, timeSky, ids, sky, "linear" ) ;
4855    Vector<Float> tsys = getTsysFromTime( reftime, timeSky, ids, sky, "linear" ) ;
4856    ids = getRowIdFromTime( reftime, timeHot ) ;
4857    Vector<Float> sphot = getSpectrumFromTime( reftime, timeHot, ids, hotspectra, "linear" ) ;
4858    Vector<Float> spec = on->specCol_( *p ) ;
4859    if ( antname.find( "APEX" ) != String::npos ) {
4860      // using gain array
4861      for ( unsigned int j = 0 ; j < tcal.size() ; j++ ) {
4862        if ( spoff[j] == 0.0 || (sphot[j]-spsky[j]) == 0.0 ) {
4863          spec[j] = 0.0 ;
4864          flagchan[nflag++] = j ;
4865        }
4866        else {
4867          spec[j] = ( ( spec[j] - spoff[j] ) / spoff[j] )
4868            * ( spsky[j] / ( sphot[j] - spsky[j] ) ) * tcal[j] ;
4869        }
4870      }
4871    }
4872    else {
4873      // Chopper-Wheel calibration (Ulich & Haas 1976)
4874      for ( unsigned int j = 0 ; j < tcal.size() ; j++ ) {
4875        if ( (sphot[j]-spsky[j]) == 0.0 ) {
4876          spec[j] = 0.0 ;
4877          flagchan[nflag++] = j ;
4878        }
4879        else {
4880          spec[j] = ( spec[j] - spoff[j] ) / ( sphot[j] - spsky[j] ) * tcal[j] ;
4881        }
4882      }
4883    }
4884    out->specCol_.put( *p, spec ) ;
4885    out->tsysCol_.put( *p, tsys ) ;
4886    if ( nflag > 0 ) {
4887      Vector<uChar> fl = out->flagsCol_( *p ) ;
4888      for ( unsigned int j = 0 ; j < nflag ; j++ ) {
4889        fl[flagchan[j]] = (uChar)True ;
4890      }
4891      out->flagsCol_.put( *p, fl ) ;
4892    }
4893    nflag = 0 ;
4894    p++ ;
4895  }
4896}
4897
4898void STMath::calibrateALMA( CountedPtr<Scantable>& out,
4899                            const CountedPtr<Scantable>& on,
4900                            const CountedPtr<Scantable>& off,
4901                            const Vector<uInt>& rows )
4902{
4903  // 2012/05/22 TN
4904  // Assume that out has empty SPECTRA column
4905
4906  // if rows is empty, just return
4907  if ( rows.nelements() == 0 )
4908    return ;
4909  ROScalarColumn<Double> timeCol( off->table(), "TIME" ) ;
4910  Vector<Double> timeVec = timeCol.getColumn() ;
4911  timeCol.attach( on->table(), "TIME" ) ;
4912  ROArrayColumn<Float> arrayFloatCol( off->table(), "SPECTRA" ) ;
4913  Matrix<Float> offspectra = arrayFloatCol.getColumn() ;
4914  unsigned int spsize = on->nchan( on->getIF(rows[0]) ) ;
4915  // I know that the data is contiguous
4916  const uInt *p = rows.data() ;
4917  vector<int> ids( 2 ) ;
4918  Block<uInt> flagchan( spsize ) ;
4919  uInt nflag = 0 ;
4920  for ( int irow = 0 ; irow < rows.nelements() ; irow++ ) {
4921    double reftime = timeCol.asdouble(*p) ;
4922    ids = getRowIdFromTime( reftime, timeVec ) ;
4923    Vector<Float> spoff = getSpectrumFromTime( reftime, timeVec, ids, offspectra, "linear" ) ;
4924    //Vector<Float> spoff = getSpectrumFromTime( reftime, timeVec, off, "linear" ) ;
4925    Vector<Float> spec = on->specCol_( *p ) ;
4926    Vector<Float> tsys = on->tsysCol_( *p ) ;
4927    // ALMA Calibration
4928    //
4929    // Ta* = Tsys * ( ON - OFF ) / OFF
4930    //
4931    // 2010/01/07 Takeshi Nakazato
4932    unsigned int tsyssize = tsys.nelements() ;
4933    for ( unsigned int j = 0 ; j < spsize ; j++ ) {
4934      if ( spoff[j] == 0.0 ) {
4935        spec[j] = 0.0 ;
4936        flagchan[nflag++] = j ;
4937      }
4938      else {
4939        spec[j] = ( spec[j] - spoff[j] ) / spoff[j] ;
4940      }
4941      if ( tsyssize == spsize )
4942        spec[j] *= tsys[j] ;
4943      else
4944        spec[j] *= tsys[0] ;
4945    }
4946    out->specCol_.put( *p, spec ) ;
4947    if ( nflag > 0 ) {
4948      Vector<uChar> fl = out->flagsCol_( *p ) ;
4949      for ( unsigned int j = 0 ; j < nflag ; j++ ) {
4950        fl[flagchan[j]] = (uChar)True ;
4951      }
4952      out->flagsCol_.put( *p, fl ) ;
4953    }
4954    nflag = 0 ;
4955    p++ ;
4956  }
4957}
4958
4959void STMath::calibrateAPEXFS( CountedPtr<Scantable> &sig,
4960                              CountedPtr<Scantable> &ref,
4961                              const vector< CountedPtr<Scantable> >& on,
4962                              const vector< CountedPtr<Scantable> >& sky,
4963                              const vector< CountedPtr<Scantable> >& hot,
4964                              const vector< CountedPtr<Scantable> >& cold,
4965                              const Vector<uInt> &rows )
4966{
4967  // if rows is empty, just return
4968  if ( rows.nelements() == 0 )
4969    return ;
4970  ROScalarColumn<Double> timeCol( sky[0]->table(), "TIME" ) ;
4971  Vector<Double> timeSkyS = timeCol.getColumn() ;
4972  timeCol.attach( sky[1]->table(), "TIME" ) ;
4973  Vector<Double> timeSkyR = timeCol.getColumn() ;
4974  timeCol.attach( hot[0]->table(), "TIME" ) ;
4975  Vector<Double> timeHotS = timeCol.getColumn() ;
4976  timeCol.attach( hot[1]->table(), "TIME" ) ;
4977  Vector<Double> timeHotR = timeCol.getColumn() ;
4978  timeCol.attach( sig->table(), "TIME" ) ;
4979  ROScalarColumn<Double> timeCol2( ref->table(), "TIME" ) ;
4980  ROArrayColumn<Float> arrayFloatCol( sky[0]->table(), "SPECTRA" ) ;
4981  Matrix<Float> skyspectraS = arrayFloatCol.getColumn() ;
4982  arrayFloatCol.attach( sky[1]->table(), "SPECTRA" ) ;
4983  Matrix<Float> skyspectraR = arrayFloatCol.getColumn() ;
4984  arrayFloatCol.attach( hot[0]->table(), "SPECTRA" ) ;
4985  Matrix<Float> hotspectraS = arrayFloatCol.getColumn() ;
4986  arrayFloatCol.attach( hot[1]->table(), "SPECTRA" ) ;
4987  Matrix<Float> hotspectraR = arrayFloatCol.getColumn() ;
4988  unsigned int spsize = sig->nchan( sig->getIF(rows[0]) ) ;
4989  Vector<Float> spec( spsize ) ;
4990  // I know that the data is contiguous
4991  const uInt *p = rows.data() ;
4992  vector<int> ids( 2 ) ;
4993  Block<uInt> flagchan( spsize ) ;
4994  uInt nflag = 0 ;
4995  for ( int irow = 0 ; irow < rows.nelements() ; irow++ ) {
4996    double reftime = timeCol.asdouble(*p) ;
4997    ids = getRowIdFromTime( reftime, timeSkyS ) ;
4998    Vector<Float> spskyS = getSpectrumFromTime( reftime, timeSkyS, ids, skyspectraS, "linear" ) ;
4999    Vector<Float> tcalS = getTcalFromTime( reftime, timeSkyS, ids, sky[0], "linear" ) ;
5000    Vector<Float> tsysS = getTsysFromTime( reftime, timeSkyS, ids, sky[0], "linear" ) ;
5001    ids = getRowIdFromTime( reftime, timeHotS ) ;
5002    Vector<Float> sphotS = getSpectrumFromTime( reftime, timeHotS, ids, hotspectraS ) ;
5003    reftime = timeCol2.asdouble(*p) ;
5004    ids = getRowIdFromTime( reftime, timeSkyR ) ;
5005    Vector<Float> spskyR = getSpectrumFromTime( reftime, timeSkyR, ids, skyspectraR, "linear" ) ;
5006    Vector<Float> tcalR = getTcalFromTime( reftime, timeSkyR, ids, sky[1], "linear" ) ;
5007    Vector<Float> tsysR = getTsysFromTime( reftime, timeSkyR, ids, sky[1], "linear" ) ;
5008    ids = getRowIdFromTime( reftime, timeHotR ) ;
5009    Vector<Float> sphotR = getSpectrumFromTime( reftime, timeHotR, ids, hotspectraR ) ;
5010    Vector<Float> spsig = on[0]->specCol_( *p ) ;
5011    Vector<Float> spref = on[1]->specCol_( *p ) ;
5012    for ( unsigned int j = 0 ; j < spsize ; j++ ) {
5013      if ( (sphotS[j]-spskyS[j]) == 0.0 || (sphotR[j]-spskyR[j]) == 0.0 ) {
5014        spec[j] = 0.0 ;
5015        flagchan[nflag++] = j ;
5016      }
5017      else {
5018        spec[j] = tcalS[j] * spsig[j] / ( sphotS[j] - spskyS[j] )
5019          - tcalR[j] * spref[j] / ( sphotR[j] - spskyR[j] ) ;
5020      }
5021    }
5022    sig->specCol_.put( *p, spec ) ;
5023    sig->tsysCol_.put( *p, tsysS ) ;
5024    spec *= (Float)-1.0 ;
5025    ref->specCol_.put( *p, spec ) ;
5026    ref->tsysCol_.put( *p, tsysR ) ;   
5027    if ( nflag > 0 ) {
5028      Vector<uChar> flsig = sig->flagsCol_( *p ) ;
5029      Vector<uChar> flref = ref->flagsCol_( *p ) ;
5030      for ( unsigned int j = 0 ; j < nflag ; j++ ) {
5031        flsig[flagchan[j]] = (uChar)True ;
5032        flref[flagchan[j]] = (uChar)True ;
5033      }
5034      sig->flagsCol_.put( *p, flsig ) ;
5035      ref->flagsCol_.put( *p, flref ) ;
5036    }
5037    nflag = 0 ;
5038    p++ ;
5039  }
5040}
5041
5042void STMath::calibrateFS( CountedPtr<Scantable> &sig,
5043                          CountedPtr<Scantable> &ref,
5044                          const CountedPtr<Scantable>& rsig,
5045                          const CountedPtr<Scantable>& rref,
5046                          const CountedPtr<Scantable>& sky,
5047                          const CountedPtr<Scantable>& hot,
5048                          const CountedPtr<Scantable>& cold,
5049                          const Vector<uInt> &rows )
5050{
5051  // if rows is empty, just return
5052  if ( rows.nelements() == 0 )
5053    return ;
5054  ROScalarColumn<Double> timeCol( sky->table(), "TIME" ) ;
5055  Vector<Double> timeSky = timeCol.getColumn() ;
5056  timeCol.attach( hot->table(), "TIME" ) ;
5057  Vector<Double> timeHot = timeCol.getColumn() ;
5058  timeCol.attach( sig->table(), "TIME" ) ;
5059  ROScalarColumn<Double> timeCol2( ref->table(), "TIME" ) ;
5060  ROArrayColumn<Float> arrayFloatCol( sky->table(), "SPECTRA" ) ;
5061  Matrix<Float> skyspectra = arrayFloatCol.getColumn() ;
5062  arrayFloatCol.attach( hot->table(), "SPECTRA" ) ;
5063  Matrix<Float> hotspectra = arrayFloatCol.getColumn() ;
5064  unsigned int spsize = sig->nchan( sig->getIF(rows[0]) ) ;
5065  Vector<Float> spec( spsize ) ;
5066  // I know that the data is contiguous
5067  const uInt *p = rows.data() ;
5068  vector<int> ids( 2 ) ;
5069  Block<uInt> flagchan( spsize ) ;
5070  uInt nflag = 0 ;
5071  for ( int irow = 0 ; irow < rows.nelements() ; irow++ ) {
5072    double reftime = timeCol.asdouble(*p) ;
5073    ids = getRowIdFromTime( reftime, timeSky ) ;
5074    Vector<Float> spsky = getSpectrumFromTime( reftime, timeSky, ids, skyspectra, "linear" ) ;
5075    Vector<Float> tcal = getTcalFromTime( reftime, timeSky, ids, sky, "linear" ) ;
5076    Vector<Float> tsys = getTsysFromTime( reftime, timeSky, ids, sky, "linear" ) ;
5077    ids = getRowIdFromTime( reftime, timeHot ) ;
5078    Vector<Float> sphot = getSpectrumFromTime( reftime, timeHot, ids, hotspectra ) ;
5079    Vector<Float> spsig = rsig->specCol_( *p ) ;
5080    Vector<Float> spref = rref->specCol_( *p ) ;
5081    // using gain array
5082    for ( unsigned int j = 0 ; j < spsize ; j++ ) {
5083      if ( spref[j] == 0.0 || (sphot[j]-spsky[j]) == 0.0 ) {
5084        spec[j] = 0.0 ;
5085        flagchan[nflag++] = j ;
5086      }
5087      else {
5088        spec[j] = ( ( spsig[j] - spref[j] ) / spref[j] )
5089          * ( spsky[j] / ( sphot[j] - spsky[j] ) ) * tcal[j] ;
5090      }
5091    }
5092    sig->specCol_.put( *p, spec ) ;
5093    sig->tsysCol_.put( *p, tsys ) ;
5094    if ( nflag > 0 ) {
5095      Vector<uChar> fl = sig->flagsCol_( *p ) ;
5096      for ( unsigned int j = 0 ; j < nflag ; j++ ) {
5097        fl[flagchan[j]] = (uChar)True ;
5098      }
5099      sig->flagsCol_.put( *p, fl ) ;
5100    }
5101    nflag = 0 ;
5102
5103    reftime = timeCol2.asdouble(*p) ;
5104    spsky = getSpectrumFromTime( reftime, timeSky, ids, skyspectra, "linear" ) ;
5105    tcal = getTcalFromTime( reftime, timeSky, ids, sky, "linear" ) ;
5106    tsys = getTsysFromTime( reftime, timeSky, ids, sky, "linear" ) ;
5107    ids = getRowIdFromTime( reftime, timeHot ) ;
5108    sphot = getSpectrumFromTime( reftime, timeHot, ids, hotspectra ) ;
5109    // using gain array
5110    for ( unsigned int j = 0 ; j < spsize ; j++ ) {
5111      if ( spsig[j] == 0.0 || (sphot[j]-spsky[j]) == 0.0 ) {
5112        spec[j] = 0.0 ;
5113        flagchan[nflag++] = j ;
5114      }
5115      else {
5116        spec[j] = ( ( spref[j] - spsig[j] ) / spsig[j] )
5117          * ( spsky[j] / ( sphot[j] - spsky[j] ) ) * tcal[j] ;
5118      }
5119    }
5120    ref->specCol_.put( *p, spec ) ;
5121    ref->tsysCol_.put( *p, tsys ) ;   
5122    if ( nflag > 0 ) {
5123      Vector<uChar> fl = ref->flagsCol_( *p ) ;
5124      for ( unsigned int j = 0 ; j < nflag ; j++ ) {
5125        fl[flagchan[j]] = (uChar)True ;
5126      }
5127      ref->flagsCol_.put( *p, fl ) ;
5128    }
5129    nflag = 0 ;
5130    p++ ;
5131  }
5132}
5133
5134void STMath::copyRows( Table &out,
5135                       const Table &in,
5136                       uInt startout,
5137                       uInt startin,
5138                       uInt nrow,
5139                       Bool copySpectra,
5140                       Bool copyFlagtra,
5141                       Bool copyTsys )
5142{
5143  uInt nexclude = 0 ;
5144  Block<String> excludeColsBlock( 3 ) ;
5145  if ( !copySpectra ) {
5146    excludeColsBlock[nexclude] = "SPECTRA" ;
5147    nexclude++ ;
5148  }
5149  if ( !copyFlagtra ) {
5150    excludeColsBlock[nexclude] = "FLAGTRA" ;
5151    nexclude++ ;
5152  }
5153  if ( !copyTsys ) {
5154    excludeColsBlock[nexclude] = "TSYS" ;
5155    nexclude++ ;
5156  }
5157  //  if ( nexclude < 3 ) {
5158  //    excludeCols.resize( nexclude, True ) ;
5159  //  }
5160  Vector<String> excludeCols( IPosition(1,nexclude),
5161                              excludeColsBlock.storage(),
5162                              SHARE ) ;
5163//   cout << "excludeCols=" << excludeCols << endl ;
5164  TableRow rowout( out, excludeCols, True ) ;
5165  ROTableRow rowin( in, excludeCols, True ) ;
5166  uInt rin = startin ;
5167  uInt rout = startout ;
5168  for ( uInt i = 0 ; i < nrow ; i++ ) {
5169    rowin.get( rin ) ;
5170    rowout.putMatchingFields( rout, rowin.record() ) ;
5171    rin++ ;
5172    rout++ ;
5173  }
5174}
5175
5176CountedPtr<Scantable> STMath::averageWithinSession( CountedPtr<Scantable> &s,
5177                                                    vector<bool> &mask,
5178                                                    string weight )
5179{
5180  // prepare output table
5181  bool insitu = insitu_ ;
5182  insitu_ = false ;
5183  CountedPtr<Scantable> a = getScantable( s, true ) ;
5184  insitu_ = insitu ;
5185  Table &atab = a->table() ;
5186  ScalarColumn<Double> timeColOut( atab, "TIME" ) ;
5187
5188  if ( s->nrow() == 0 )
5189    return a ;
5190
5191  // setup RowAccumulator
5192  WeightType wtype = stringToWeight( weight ) ;
5193  RowAccumulator acc( wtype ) ;
5194  Vector<Bool> cmask( mask ) ;
5195  acc.setUserMask( cmask ) ;
5196
5197  vector<string> cols( 3 ) ;
5198  cols[0] = "IFNO" ;
5199  cols[1] = "POLNO" ;
5200  cols[2] = "BEAMNO" ;
5201  STIdxIterAcc iter( s, cols ) ;
5202
5203  Table ttab = s->table() ;
5204  ROScalarColumn<Double> *timeCol = new ROScalarColumn<Double>( ttab, "TIME" ) ;
5205  Vector<Double> timeVec = timeCol->getColumn() ;
5206  delete timeCol ;
5207  Vector<Double> interval = s->integrCol_.getColumn() ;
5208  uInt nrow = timeVec.nelements() ;
5209  uInt outrow = 0 ;
5210
5211  while( !iter.pastEnd() ) {
5212
5213    Vector<uInt> rows = iter.getRows( SHARE ) ;
5214
5215    uInt nchan = s->nchan(s->getIF(rows[0])) ;
5216    Vector<uChar> flag( nchan ) ;
5217    Vector<Bool> bflag( nchan ) ;
5218    Vector<Float> spec( nchan ) ;
5219    Vector<Float> tsys( nchan ) ;
5220
5221    uInt len = rows.nelements() ;
5222
5223    Vector<Double> timeSep( len-1 ) ;
5224    for ( uInt i = 0 ; i < len-1 ; i++ ) {
5225      timeSep[i] = timeVec[rows[i+1]] - timeVec[rows[i]] ;
5226    }
5227
5228    uInt irow ;
5229    uInt jrow ;
5230    for ( uInt i = 0 ; i < len-1 ; i++ ) {
5231      irow = rows[i] ;
5232      jrow = rows[i+1] ;
5233      // accumulate data
5234      s->flagsCol_.get( irow, flag ) ;
5235      convertArray( bflag, flag ) ;
5236      s->specCol_.get( irow, spec ) ;
5237      tsys.assign( s->tsysCol_( irow ) ) ;
5238      if ( !allEQ(bflag,True) )
5239        acc.add( spec, !bflag, tsys, interval[irow], timeVec[irow] ) ;
5240      double gap = 2.0 * 86400.0 * timeSep[i] / ( interval[jrow] + interval[irow] ) ;
5241      //cout << "gap[" << i << "]=" << setw(5) << gap << endl ;
5242      if ( gap > 1.1 ) {
5243        //cout << "detected gap between " << i << " and " << i+1 << endl ;
5244        // put data to output table
5245        // reset RowAccumulator
5246        if ( acc.state() ) {
5247          atab.addRow() ;
5248          copyRows( atab, ttab, outrow, irow, 1, False, False, False ) ;
5249          acc.replaceNaN() ;
5250          const Vector<Bool> &msk = acc.getMask() ;
5251          convertArray( flag, !msk ) ;
5252          for (uInt k = 0; k < nchan; ++k) {
5253            uChar userFlag = 1 << 7;
5254            if (msk[k]==True) userFlag = 0 << 7;
5255            flag(k) = userFlag;
5256          }
5257          a->flagsCol_.put( outrow, flag ) ;
5258          a->specCol_.put( outrow, acc.getSpectrum() ) ;
5259          a->tsysCol_.put( outrow, acc.getTsys() ) ;
5260          a->integrCol_.put( outrow, acc.getInterval() ) ;
5261          timeColOut.put( outrow, acc.getTime() ) ;
5262          a->cycleCol_.put( outrow, 0 ) ;
5263        }
5264        acc.reset() ;
5265        outrow++ ;
5266      }
5267    }
5268
5269    // accumulate and add last data
5270    irow = rows[len-1] ;
5271    s->flagsCol_.get( irow, flag ) ;
5272    convertArray( bflag, flag ) ;
5273    s->specCol_.get( irow, spec ) ;
5274    tsys.assign( s->tsysCol_( irow ) ) ;
5275    if (!allEQ(bflag,True) )
5276      acc.add( spec, !bflag, tsys, interval[irow], timeVec[irow] ) ;
5277    if ( acc.state() ) {
5278      atab.addRow() ;
5279      copyRows( atab, ttab, outrow, irow, 1, False, False, False ) ;
5280      acc.replaceNaN() ;
5281      const Vector<Bool> &msk = acc.getMask() ;
5282      convertArray( flag, !msk ) ;
5283      for (uInt k = 0; k < nchan; ++k) {
5284        uChar userFlag = 1 << 7;
5285        if (msk[k]==True) userFlag = 0 << 7;
5286        flag(k) = userFlag;
5287      }
5288      a->flagsCol_.put( outrow, flag ) ;
5289      a->specCol_.put( outrow, acc.getSpectrum() ) ;
5290      a->tsysCol_.put( outrow, acc.getTsys() ) ;
5291      a->integrCol_.put( outrow, acc.getInterval() ) ;
5292      timeColOut.put( outrow, acc.getTime() ) ;
5293      a->cycleCol_.put( outrow, 0 ) ;
5294    }
5295    acc.reset() ;
5296    outrow++ ;
5297
5298    iter.next() ;
5299  }
5300
5301  return a ;
5302}
Note: See TracBrowser for help on using the repository browser.