source: trunk/src/STMath.cpp@ 2603

Last change on this file since 2603 was 2595, checked in by Takeshi Nakazato, 12 years ago

New Development: No

JIRA Issue: Yes CAS-4010

Ready for Test: Yes

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: sdcal unit test

Put in Release Notes: Yes/No

Module(s): Module Names change impacts.

Description: Describe your changes here...

Rewrote STMath::new_average based on new algorithm. To do that,
Scantable::regridChannel is re-defined.


  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 162.6 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 CountedPtr<Scantable> out ; // processed result
3075 if ( compel ) {
3076 std::vector< CountedPtr<Scantable> > newin ; // input for average process
3077 uInt insize = in.size() ; // number of input scantables
3078
3079 // setup newin
3080 bool oldInsitu = insitu_ ;
3081 setInsitu( false ) ;
3082 newin.resize( insize ) ;
3083 for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3084 newin[itable] = getScantable( in[itable], false ) ;
3085 }
3086 setInsitu( oldInsitu ) ;
3087
3088 // warning
3089 os << "Average spectra with different spectral resolution" << LogIO::POST ;
3090
3091 // temporarily set coordinfo
3092 vector<string> oldinfo( insize ) ;
3093 for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3094 vector<string> coordinfo = in[itable]->getCoordInfo() ;
3095 oldinfo[itable] = coordinfo[0] ;
3096 coordinfo[0] = "Hz" ;
3097 newin[itable]->setCoordInfo( coordinfo ) ;
3098 }
3099
3100 ostringstream oss ;
3101
3102 // check IF frequency coverage
3103 // freqid: list of FREQ_ID, which is used, in each table
3104 // iffreq: list of minimum and maximum frequency for each FREQ_ID in
3105 // each table
3106 // freqid[insize][numIF]
3107 // freqid: [[id00, id01, ...],
3108 // [id10, id11, ...],
3109 // ...
3110 // [idn0, idn1, ...]]
3111 // iffreq[insize][numIF*2]
3112 // iffreq: [[min_id00, max_id00, min_id01, max_id01, ...],
3113 // [min_id10, max_id10, min_id11, max_id11, ...],
3114 // ...
3115 // [min_idn0, max_idn0, min_idn1, max_idn1, ...]]
3116 //os << "Check IF settings in each table" << LogIO::POST ;
3117 vector< vector<uInt> > freqid( insize );
3118 vector< vector<double> > iffreq( insize ) ;
3119 for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3120 Vector<uInt> freqIds = newin[itable]->mfreqidCol_.getColumn() ;
3121 vector<uInt> uniqueFreqId = newin[itable]->getNumbers(newin[itable]->mfreqidCol_) ;
3122 for ( vector<uInt>::iterator i = uniqueFreqId.begin() ;
3123 i != uniqueFreqId.end() ; i++ ) {
3124 //os << "itable = " << itable << ": IF " << id << " is included in the list" << LogIO::POST ;
3125 uInt target = 0 ;
3126 while ( freqIds[target] != *i )
3127 target++ ;
3128 vector<double> abcissa = newin[itable]->getAbcissa( target ) ;
3129 freqid[itable].push_back( *i ) ;
3130 double incr = abs( abcissa[1] - abcissa[0] ) ;
3131 iffreq[itable].push_back( (*min_element(abcissa.begin(),abcissa.end()))-0.5*incr ) ;
3132 iffreq[itable].push_back( (*max_element(abcissa.begin(),abcissa.end()))+0.5*incr ) ;
3133 }
3134 }
3135
3136 // debug
3137// os << "IF settings summary:" << endl ;
3138// for ( uInt i = 0 ; i < freqid.size() ; i++ ) {
3139// os << " Table" << i << endl ;
3140// for ( uInt j = 0 ; j < freqid[i].size() ; j++ ) {
3141// os << " id = " << freqid[i][j] << " (min,max) = (" << iffreq[i][2*j] << "," << iffreq[i][2*j+1] << ")" << endl ;
3142// }
3143// }
3144// os << endl ;
3145// os.post() ;
3146
3147 // IF grouping based on their frequency coverage
3148 // ifgrp: number of member in each IF group
3149 // ifgrp[numgrp]
3150 // ifgrp: [n0, n1, ...]
3151 //os << "IF grouping based on their frequency coverage" << LogIO::POST ;
3152
3153 // parameter for IF grouping
3154 // groupmode = OR retrieve all region
3155 // AND only retrieve overlaped region
3156 //string groupmode = "AND" ;
3157 string groupmode = "OR" ;
3158 uInt sizecr = 0 ;
3159 if ( groupmode == "AND" )
3160 sizecr = 1 ;
3161 else if ( groupmode == "OR" )
3162 sizecr = 0 ;
3163
3164 vector<double> sortedfreq ;
3165 for ( uInt i = 0 ; i < iffreq.size() ; i++ ) {
3166 for ( uInt j = 0 ; j < iffreq[i].size() ; j++ ) {
3167 if ( count( sortedfreq.begin(), sortedfreq.end(), iffreq[i][j] ) == 0 )
3168 sortedfreq.push_back( iffreq[i][j] ) ;
3169 }
3170 }
3171 sort( sortedfreq.begin(), sortedfreq.end() ) ;
3172 vector<uInt> ifgrp( sortedfreq.size()-1, 0 ) ;
3173 for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3174 for ( uInt iif = 0 ; iif < freqid[itable].size() ; iif++ ) {
3175 double range0 = iffreq[itable][2*iif] ;
3176 double range1 = iffreq[itable][2*iif+1] ;
3177 for ( uInt j = 0 ; j < sortedfreq.size()-1 ; j++ ) {
3178 double fmin = max( range0, sortedfreq[j] ) ;
3179 double fmax = min( range1, sortedfreq[j+1] ) ;
3180 if ( fmin < fmax ) {
3181 ifgrp[j]++ ;
3182 }
3183 }
3184 }
3185 }
3186
3187 // Grouping continuous IF groups (without frequency gap)
3188 // freqgrp: list of IF group indexes in each frequency group
3189 // freqgrp[numgrp][nummember]
3190 // freqgrp: [[ifgrp00, ifgrp01, ifgrp02, ...],
3191 // [ifgrp10, ifgrp11, ifgrp12, ...],
3192 // ...
3193 // [ifgrpn0, ifgrpn1, ifgrpn2, ...]]
3194 // grprange[2*numgrp]
3195 // grprange: [fmin0,fmax0,fmin1,fmax1,...]
3196 vector< vector<uInt> > freqgrp ;
3197 vector<double> grprange ;
3198 vector<uInt> grpedge ;
3199 for ( uInt igrp = 0 ; igrp < ifgrp.size() ; igrp++ ) {
3200 if ( ifgrp[igrp] <= sizecr ) {
3201 grpedge.push_back( igrp ) ;
3202 }
3203 }
3204 grpedge.push_back( ifgrp.size() ) ;
3205 uInt itmp = 0 ;
3206 for ( uInt i = 0 ; i < grpedge.size() ; i++ ) {
3207 int n = grpedge[i] - itmp ;
3208 if ( n > 0 ) {
3209 vector<uInt> members( n ) ;
3210 for ( int j = 0 ; j < n ; j++ ) {
3211 members[j] = itmp+j ;
3212 }
3213 freqgrp.push_back( members ) ;
3214 grprange.push_back( sortedfreq[itmp] ) ;
3215 grprange.push_back( sortedfreq[grpedge[i]] ) ;
3216 }
3217 itmp += n + 1 ;
3218 }
3219
3220 // print frequency group
3221 oss.str("") ;
3222 oss << "Frequency Group summary: " << endl ;
3223 oss << " GROUP_ID: [FREQ_MIN, FREQ_MAX]" << endl ;
3224 for ( uInt i = 0 ; i < freqgrp.size() ; i++ ) {
3225 oss << " GROUP " << setw( 2 ) << i << ": [" << grprange[2*i] << "," << grprange[2*i+1] << "]" ;
3226 oss << endl ;
3227 }
3228 oss << endl ;
3229 os << oss.str() << LogIO::POST ;
3230
3231 // groups: list of frequency group index whose frequency range overlaps
3232 // with that of each table and IF
3233 // groups[numtable][numIF]
3234 // groups: [[grpx, grpy,...],
3235 // [grpa, grpb,...],
3236 // ...
3237 // [grpk, grpm,...]]
3238 vector< vector<uInt> > groups( insize ) ;
3239 for ( uInt i = 0 ; i < insize ; i++ ) {
3240 groups[i].resize( freqid[i].size() ) ;
3241 }
3242 for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3243 for ( uInt ifreq = 0 ; ifreq < freqid[itable].size() ; ifreq++ ) {
3244 double minf = iffreq[itable][2*ifreq] ;
3245 uInt groupid ;
3246 for ( uInt igrp = 0 ; igrp < freqgrp.size() ; igrp++ ) {
3247 vector<uInt> memberlist = freqgrp[igrp] ;
3248 if ( (minf >= grprange[2*igrp]) && (minf <= grprange[2*igrp+1]) ) {
3249 groupid = igrp ;
3250 break ;
3251 }
3252 }
3253 groups[itable][ifreq] = groupid ;
3254 }
3255 }
3256
3257
3258 // print membership
3259 oss.str("") ;
3260 for ( uInt i = 0 ; i < insize ; i++ ) {
3261 oss << "Table " << i << endl ;
3262 for ( uInt j = 0 ; j < groups[i].size() ; j++ ) {
3263 oss << " FREQ_ID " << setw( 2 ) << freqid[i][j] << ": " ;
3264 oss << setw( 2 ) << groups[i][j] ;
3265 oss << endl ;
3266 }
3267 }
3268 os << oss.str() << LogIO::POST ;
3269
3270 // reset SCANNO and IFNO/FREQ_ID: IF is reset by the result of sortation
3271 //os << "All IF number is set to IF group index" << LogIO::POST ;
3272 // reset SCANNO only when avmode != "SCAN"
3273 if ( avmode != "SCAN" ) {
3274 os << "All scan number is set to 0" << LogIO::POST ;
3275 for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3276 uInt nrow = newin[itable]->nrow() ;
3277 Vector<uInt> resetScan( nrow, 0 ) ;
3278 newin[itable]->scanCol_.putColumn( resetScan ) ;
3279 }
3280 }
3281
3282 // reset spectra and flagtra: align spectral resolution
3283 //os << "Align spectral resolution" << LogIO::POST ;
3284 // gmaxdnu: the coarsest frequency resolution in the frequency group
3285 // gminfreq: lower frequency edge of the frequency group
3286 // gnchan: number of channels for the frequency group
3287 vector<double> gmaxdnu( freqgrp.size(), 0.0 ) ;
3288 vector<double> gminfreq( freqgrp.size() ) ;
3289 vector<double> gnchan( freqgrp.size() ) ;
3290 for ( uInt i = 0 ; i < insize ; i++ ) {
3291 vector<uInt> members = groups[i] ;
3292 for ( uInt j = 0 ; j < members.size() ; j++ ) {
3293 uInt groupid = members[j] ;
3294 Double rp,rv,ic ;
3295 newin[i]->frequencies().getEntry( rp, rv, ic, j ) ;
3296 if ( abs(ic) > abs(gmaxdnu[groupid]) )
3297 gmaxdnu[groupid] = ic ;
3298 }
3299 }
3300 for ( uInt igrp = 0 ; igrp < freqgrp.size() ; igrp++ ) {
3301 gminfreq[igrp] = grprange[2*igrp] ;
3302 double maxfreq = grprange[2*igrp+1] ;
3303 gnchan[igrp] = (int)(abs((maxfreq-gminfreq[igrp])/gmaxdnu[igrp])+0.9) ;
3304 }
3305
3306 // regrid spectral data and update frequency info
3307 for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3308 Vector<uInt> oldFreqId = newin[itable]->mfreqidCol_.getColumn() ;
3309 Vector<uInt> newFreqId( oldFreqId.nelements() ) ;
3310
3311 // update MAIN
3312 for ( uInt irow = 0 ; irow < newin[itable]->nrow() ; irow++ ) {
3313 uInt groupid = groups[itable][oldFreqId[irow]] ;
3314 newFreqId[irow] = groupid ;
3315 newin[itable]->regridChannel( gnchan[groupid],
3316 gmaxdnu[groupid],
3317 gminfreq[groupid],
3318 irow ) ;
3319 }
3320 newin[itable]->mfreqidCol_.putColumn( newFreqId ) ;
3321 newin[itable]->ifCol_.putColumn( newFreqId ) ;
3322
3323 // update FREQUENCIES
3324 Table tab = newin[itable]->frequencies().table() ;
3325 ScalarColumn<uInt> fIdCol( tab, "ID" ) ;
3326 ScalarColumn<Double> fRefPixCol( tab, "REFPIX" ) ;
3327 ScalarColumn<Double> fRefValCol( tab, "REFVAL" ) ;
3328 ScalarColumn<Double> fIncrCol( tab, "INCREMENT" ) ;
3329 if ( freqgrp.size() > tab.nrow() ) {
3330 tab.addRow( freqgrp.size()-tab.nrow() ) ;
3331 }
3332 for ( uInt irow = 0 ; irow < freqgrp.size() ; irow++ ) {
3333 Double refval = gminfreq[irow] + 0.5 * abs(gmaxdnu[irow]) ;
3334 Double refpix = (gmaxdnu[irow] > 0.0) ? 0 : gnchan[irow]-1 ;
3335 Double increment = gmaxdnu[irow] ;
3336 fIdCol.put( irow, irow ) ;
3337 fRefPixCol.put( irow, refpix ) ;
3338 fRefValCol.put( irow, refval ) ;
3339 fIncrCol.put( irow, increment ) ;
3340 }
3341 }
3342
3343 // set back coordinfo
3344 for ( uInt itable = 0 ; itable < insize ; itable++ ) {
3345 vector<string> coordinfo = newin[itable]->getCoordInfo() ;
3346 coordinfo[0] = oldinfo[itable] ;
3347 newin[itable]->setCoordInfo( coordinfo ) ;
3348 }
3349
3350 // average
3351 out = average( newin, mask, weight, avmode ) ;
3352 }
3353 else {
3354 // simple average
3355 out = average( in, mask, weight, avmode ) ;
3356 }
3357
3358 return out;
3359}
3360
3361CountedPtr<Scantable> STMath::cwcal( const CountedPtr<Scantable>& s,
3362 const String calmode,
3363 const String antname )
3364{
3365 // frequency switch
3366 if ( calmode == "fs" ) {
3367 return cwcalfs( s, antname ) ;
3368 }
3369 else {
3370 vector<bool> masks = s->getMask( 0 ) ;
3371 vector<int> types ;
3372
3373 // save original table selection
3374 Table torg = s->table_ ;
3375
3376 // sky scan
3377 bool insitu = insitu_ ;
3378 insitu_ = false ;
3379 // share calibration scans before average with out
3380 CountedPtr<Scantable> out = getScantable( s, true ) ;
3381 insitu_ = insitu ;
3382 out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::SKY ) ;
3383 out->attach() ;
3384 CountedPtr<Scantable> asky = averageWithinSession( out,
3385 masks,
3386 "TINT" ) ;
3387 // hot scan
3388 out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::HOT ) ;
3389 out->attach() ;
3390 CountedPtr<Scantable> ahot = averageWithinSession( out,
3391 masks,
3392 "TINT" ) ;
3393 // cold scan
3394 CountedPtr<Scantable> acold ;
3395// out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::COLD ) ;
3396// out->attach() ;
3397// CountedPtr<Scantable> acold = averageWithinSession( out,
3398// masks,
3399// "TINT" ) ;
3400
3401 // off scan
3402 out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::PSOFF ) ;
3403 out->attach() ;
3404 CountedPtr<Scantable> aoff = averageWithinSession( out,
3405 masks,
3406 "TINT" ) ;
3407
3408 // on scan
3409 s->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::PSON ) ;
3410 s->attach() ;
3411 out->table_ = out->originalTable_ ;
3412 out->attach() ;
3413 out->table().addRow( s->nrow() ) ;
3414 copyRows( out->table(), s->table(), 0, 0, s->nrow(), False, True, False ) ;
3415
3416 // process each on scan
3417 STSelector sel ;
3418 vector<string> cols( 3 ) ;
3419 cols[0] = "BEAMNO" ;
3420 cols[1] = "POLNO" ;
3421 cols[2] = "IFNO" ;
3422 STIdxIter *iter = new STIdxIterAcc( out, cols ) ;
3423 while ( !iter->pastEnd() ) {
3424 Vector<uInt> ids = iter->current() ;
3425 stringstream ss ;
3426 ss << "SELECT FROM $1 WHERE "
3427 << "BEAMNO==" << ids[0] << "&&"
3428 << "POLNO==" << ids[1] << "&&"
3429 << "IFNO==" << ids[2] ;
3430 //cout << "TaQL string: " << ss.str() << endl ;
3431 sel.setTaQL( ss.str() ) ;
3432 aoff->setSelection( sel ) ;
3433 ahot->setSelection( sel ) ;
3434 asky->setSelection( sel ) ;
3435 Vector<uInt> rows = iter->getRows( SHARE ) ;
3436 // out should be an exact copy of s except that SPECTRA column is empty
3437 calibrateCW( out, s, aoff, asky, ahot, acold, rows, antname ) ;
3438 aoff->unsetSelection() ;
3439 ahot->unsetSelection() ;
3440 asky->unsetSelection() ;
3441 sel.reset() ;
3442 iter->next() ;
3443 }
3444 delete iter ;
3445 s->table_ = torg ;
3446 s->attach() ;
3447
3448 // flux unit
3449 out->setFluxUnit( "K" ) ;
3450
3451 return out ;
3452 }
3453}
3454
3455CountedPtr<Scantable> STMath::almacal( const CountedPtr<Scantable>& s,
3456 const String calmode )
3457{
3458 // frequency switch
3459 if ( calmode == "fs" ) {
3460 return almacalfs( s ) ;
3461 }
3462 else {
3463// double t0, t1 ;
3464// t0 = mathutil::gettimeofday_sec() ;
3465 vector<bool> masks = s->getMask( 0 ) ;
3466
3467 // save original table selection
3468 Table torg = s->table_ ;
3469
3470 // off scan
3471 // TODO 2010/01/08 TN
3472 // Grouping by time should be needed before averaging.
3473 // Each group must have own unique SCANNO (should be renumbered).
3474 // See PIPELINE/SDCalibration.py
3475 bool insitu = insitu_ ;
3476 insitu_ = false ;
3477 // share off scan before average with out
3478 CountedPtr<Scantable> out = getScantable( s, true ) ;
3479 out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::PSOFF ) ;
3480 out->attach() ;
3481 insitu_ = insitu ;
3482 CountedPtr<Scantable> aoff = averageWithinSession( out,
3483 masks,
3484 "TINT" ) ;
3485
3486 // on scan
3487// t0 = mathutil::gettimeofday_sec() ;
3488 s->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::PSON ) ;
3489 s->attach() ;
3490 out->table_ = out->originalTable_ ;
3491 out->attach() ;
3492 out->table().addRow( s->nrow() ) ;
3493 copyRows( out->table(), s->table(), 0, 0, s->nrow(), False ) ;
3494// t1 = mathutil::gettimeofday_sec() ;
3495// cout << "elapsed time for preparing output table: " << t1-t0 << " sec" << endl ;
3496
3497 // process each on scan
3498// t0 = mathutil::gettimeofday_sec() ;
3499
3500 // using STIdxIterAcc
3501 vector<string> cols( 3 ) ;
3502 cols[0] = "BEAMNO" ;
3503 cols[1] = "POLNO" ;
3504 cols[2] = "IFNO" ;
3505 STIdxIter *iter = new STIdxIterAcc( out, cols ) ;
3506 STSelector sel ;
3507 while ( !iter->pastEnd() ) {
3508 Vector<uInt> ids = iter->current() ;
3509 stringstream ss ;
3510 ss << "SELECT FROM $1 WHERE "
3511 << "BEAMNO==" << ids[0] << "&&"
3512 << "POLNO==" << ids[1] << "&&"
3513 << "IFNO==" << ids[2] ;
3514 //cout << "TaQL string: " << ss.str() << endl ;
3515 sel.setTaQL( ss.str() ) ;
3516 aoff->setSelection( sel ) ;
3517 Vector<uInt> rows = iter->getRows( SHARE ) ;
3518 // out should be an exact copy of s except that SPECTRA column is empty
3519 calibrateALMA( out, s, aoff, rows ) ;
3520 aoff->unsetSelection() ;
3521 sel.reset() ;
3522 iter->next() ;
3523 }
3524 delete iter ;
3525 s->table_ = torg ;
3526 s->attach() ;
3527
3528// t1 = mathutil::gettimeofday_sec() ;
3529// cout << "elapsed time for calibration: " << t1-t0 << " sec" << endl ;
3530
3531 // flux unit
3532 out->setFluxUnit( "K" ) ;
3533
3534 return out ;
3535 }
3536}
3537
3538CountedPtr<Scantable> STMath::cwcalfs( const CountedPtr<Scantable>& s,
3539 const String antname )
3540{
3541 vector<int> types ;
3542
3543 // APEX calibration mode
3544 int apexcalmode = 1 ;
3545
3546 if ( antname.find( "APEX" ) != string::npos ) {
3547 // check if off scan exists or not
3548 STSelector sel = STSelector() ;
3549 //sel.setName( offstr1 ) ;
3550 types.push_back( SrcType::FLOOFF ) ;
3551 sel.setTypes( types ) ;
3552 try {
3553 s->setSelection( sel ) ;
3554 }
3555 catch ( AipsError &e ) {
3556 apexcalmode = 0 ;
3557 }
3558 sel.reset() ;
3559 }
3560 s->unsetSelection() ;
3561 types.clear() ;
3562
3563 vector<bool> masks = s->getMask( 0 ) ;
3564 CountedPtr<Scantable> ssig, sref ;
3565 //CountedPtr<Scantable> out ;
3566 bool insitu = insitu_ ;
3567 insitu_ = False ;
3568 CountedPtr<Scantable> out = getScantable( s, true ) ;
3569 insitu_ = insitu ;
3570
3571 if ( antname.find( "APEX" ) != string::npos ) {
3572 // APEX calibration
3573 // sky scan
3574 out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FLOSKY ) ;
3575 out->attach() ;
3576 CountedPtr<Scantable> askylo = averageWithinSession( out,
3577 masks,
3578 "TINT" ) ;
3579 out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FHISKY ) ;
3580 out->attach() ;
3581 CountedPtr<Scantable> askyhi = averageWithinSession( out,
3582 masks,
3583 "TINT" ) ;
3584
3585 // hot scan
3586 out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FLOHOT ) ;
3587 out->attach() ;
3588 CountedPtr<Scantable> ahotlo = averageWithinSession( out,
3589 masks,
3590 "TINT" ) ;
3591 out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FHIHOT ) ;
3592 out->attach() ;
3593 CountedPtr<Scantable> ahothi = averageWithinSession( out,
3594 masks,
3595 "TINT" ) ;
3596
3597 // cold scan
3598 CountedPtr<Scantable> acoldlo, acoldhi ;
3599// out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FLOCOLD ) ;
3600// out->attach() ;
3601// CountedPtr<Scantable> acoldlo = averageWithinSession( out,
3602// masks,
3603// "TINT" ) ;
3604// out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FHICOLD ) ;
3605// out->attach() ;
3606// CountedPtr<Scantable> acoldhi = averageWithinSession( out,
3607// masks,
3608// "TINT" ) ;
3609
3610 // ref scan
3611 insitu_ = false ;
3612 sref = getScantable( s, true ) ;
3613 CountedPtr<Scantable> rref = getScantable( s, true ) ;
3614 insitu_ = insitu ;
3615 rref->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FSLO ) ;
3616 rref->attach() ;
3617 copyRows( sref->table_, rref->table_, 0, 0, rref->nrow(), False, True, False ) ;
3618
3619 // sig scan
3620 insitu_ = false ;
3621 ssig = getScantable( s, true ) ;
3622 CountedPtr<Scantable> rsig = getScantable( s, true ) ;
3623 insitu_ = insitu ;
3624 rsig->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FSHI ) ;
3625 rsig->attach() ;
3626 copyRows( ssig->table_, rsig->table_, 0, 0, rsig->nrow(), False, True, False ) ;
3627
3628 if ( apexcalmode == 0 ) {
3629 // using STIdxIterAcc
3630 vector<string> cols( 3 ) ;
3631 cols[0] = "BEAMNO" ;
3632 cols[1] = "POLNO" ;
3633 cols[2] = "IFNO" ;
3634 STIdxIter *iter = new STIdxIterAcc( ssig, cols ) ;
3635 STSelector sel ;
3636 vector< CountedPtr<Scantable> > on( 2 ) ;
3637 on[0] = rsig ;
3638 on[1] = rref ;
3639 vector< CountedPtr<Scantable> > sky( 2 ) ;
3640 sky[0] = askylo ;
3641 sky[1] = askyhi ;
3642 vector< CountedPtr<Scantable> > hot( 2 ) ;
3643 hot[0] = ahotlo ;
3644 hot[1] = ahothi ;
3645 vector< CountedPtr<Scantable> > cold( 2 ) ;
3646 while ( !iter->pastEnd() ) {
3647 Vector<uInt> ids = iter->current() ;
3648 stringstream ss ;
3649 ss << "SELECT FROM $1 WHERE "
3650 << "BEAMNO==" << ids[0] << "&&"
3651 << "POLNO==" << ids[1] << "&&"
3652 << "IFNO==" << ids[2] ;
3653 //cout << "TaQL string: " << ss.str() << endl ;
3654 sel.setTaQL( ss.str() ) ;
3655 sky[0]->setSelection( sel ) ;
3656 sky[1]->setSelection( sel ) ;
3657 hot[0]->setSelection( sel ) ;
3658 hot[1]->setSelection( sel ) ;
3659 Vector<uInt> rows = iter->getRows( SHARE ) ;
3660 calibrateAPEXFS( ssig, sref, on, sky, hot, cold, rows ) ;
3661 sky[0]->unsetSelection() ;
3662 sky[1]->unsetSelection() ;
3663 hot[0]->unsetSelection() ;
3664 hot[1]->unsetSelection() ;
3665 sel.reset() ;
3666 iter->next() ;
3667 }
3668 delete iter ;
3669
3670 }
3671 else if ( apexcalmode == 1 ) {
3672 // APEX fs data with off scan
3673 // off scan
3674 out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FLOOFF ) ;
3675 out->attach() ;
3676 CountedPtr<Scantable> aofflo = averageWithinSession( out,
3677 masks,
3678 "TINT" ) ;
3679 out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FHIOFF ) ;
3680 out->attach() ;
3681 CountedPtr<Scantable> aoffhi = averageWithinSession( out,
3682 masks,
3683 "TINT" ) ;
3684
3685 // process each sig and ref scan
3686// STSelector sel ;
3687 vector<string> cols( 3 ) ;
3688 cols[0] = "BEAMNO" ;
3689 cols[1] = "POLNO" ;
3690 cols[2] = "IFNO" ;
3691 STIdxIter *iter = new STIdxIterAcc( ssig, cols ) ;
3692 STSelector sel ;
3693 while ( !iter->pastEnd() ) {
3694 Vector<uInt> ids = iter->current() ;
3695 stringstream ss ;
3696 ss << "SELECT FROM $1 WHERE "
3697 << "BEAMNO==" << ids[0] << "&&"
3698 << "POLNO==" << ids[1] << "&&"
3699 << "IFNO==" << ids[2] ;
3700 //cout << "TaQL string: " << ss.str() << endl ;
3701 sel.setTaQL( ss.str() ) ;
3702 aofflo->setSelection( sel ) ;
3703 ahotlo->setSelection( sel ) ;
3704 askylo->setSelection( sel ) ;
3705 Vector<uInt> rows = iter->getRows( SHARE ) ;
3706 calibrateCW( ssig, rsig, aofflo, askylo, ahotlo, acoldlo, rows, antname ) ;
3707 aofflo->unsetSelection() ;
3708 ahotlo->unsetSelection() ;
3709 askylo->unsetSelection() ;
3710 sel.reset() ;
3711 iter->next() ;
3712 }
3713 delete iter ;
3714 iter = new STIdxIterAcc( sref, cols ) ;
3715 while ( !iter->pastEnd() ) {
3716 Vector<uInt> ids = iter->current() ;
3717 stringstream ss ;
3718 ss << "SELECT FROM $1 WHERE "
3719 << "BEAMNO==" << ids[0] << "&&"
3720 << "POLNO==" << ids[1] << "&&"
3721 << "IFNO==" << ids[2] ;
3722 //cout << "TaQL string: " << ss.str() << endl ;
3723 sel.setTaQL( ss.str() ) ;
3724 aoffhi->setSelection( sel ) ;
3725 ahothi->setSelection( sel ) ;
3726 askyhi->setSelection( sel ) ;
3727 Vector<uInt> rows = iter->getRows( SHARE ) ;
3728 calibrateCW( sref, rref, aoffhi, askyhi, ahothi, acoldhi, rows, antname ) ;
3729 aoffhi->unsetSelection() ;
3730 ahothi->unsetSelection() ;
3731 askyhi->unsetSelection() ;
3732 sel.reset() ;
3733 iter->next() ;
3734 }
3735 delete iter ;
3736 }
3737 }
3738 else {
3739 // non-APEX fs data
3740 // sky scan
3741 out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::SKY ) ;
3742 out->attach() ;
3743 CountedPtr<Scantable> asky = averageWithinSession( out,
3744 masks,
3745 "TINT" ) ;
3746 STSelector sel = STSelector() ;
3747
3748 // hot scan
3749 out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::HOT ) ;
3750 out->attach() ;
3751 CountedPtr<Scantable> ahot = averageWithinSession( out,
3752 masks,
3753 "TINT" ) ;
3754
3755 // cold scan
3756 CountedPtr<Scantable> acold ;
3757// out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::COLD ) ;
3758// out->attach() ;
3759// CountedPtr<Scantable> acold = averageWithinSession( out,
3760// masks,
3761// "TINT" ) ;
3762
3763 // ref scan
3764 bool insitu = insitu_ ;
3765 insitu_ = false ;
3766 sref = getScantable( s, true ) ;
3767 CountedPtr<Scantable> rref = getScantable( s, true ) ;
3768 insitu_ = insitu ;
3769 rref->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::PSOFF ) ;
3770 rref->attach() ;
3771 copyRows( sref->table_, rref->table_, 0, 0, rref->nrow(), False, True, False ) ;
3772
3773 // sig scan
3774 insitu_ = false ;
3775 ssig = getScantable( s, true ) ;
3776 CountedPtr<Scantable> rsig = getScantable( s, true ) ;
3777 insitu_ = insitu ;
3778 rsig->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::PSON ) ;
3779 rsig->attach() ;
3780 copyRows( ssig->table_, rsig->table_, 0, 0, rsig->nrow(), False, True, False ) ;
3781
3782 // process each sig and ref scan
3783 vector<string> cols( 3 ) ;
3784 cols[0] = "BEAMNO" ;
3785 cols[1] = "POLNO" ;
3786 cols[2] = "IFNO" ;
3787 STIdxIter *iter = new STIdxIterAcc( ssig, cols ) ;
3788 while ( !iter->pastEnd() ) {
3789 Vector<uInt> ids = iter->current() ;
3790 stringstream ss ;
3791 ss << "SELECT FROM $1 WHERE "
3792 << "BEAMNO==" << ids[0] << "&&"
3793 << "POLNO==" << ids[1] << "&&"
3794 << "IFNO==" << ids[2] ;
3795 //cout << "TaQL string: " << ss.str() << endl ;
3796 sel.setTaQL( ss.str() ) ;
3797 ahot->setSelection( sel ) ;
3798 asky->setSelection( sel ) ;
3799 Vector<uInt> rows = iter->getRows( SHARE ) ;
3800 // out should be an exact copy of s except that SPECTRA column is empty
3801 calibrateFS( ssig, sref, rsig, rref, asky, ahot, acold, rows ) ;
3802 ahot->unsetSelection() ;
3803 asky->unsetSelection() ;
3804 sel.reset() ;
3805 iter->next() ;
3806 }
3807 delete iter ;
3808 }
3809
3810 // do folding if necessary
3811 Table sigtab = ssig->table() ;
3812 Table reftab = sref->table() ;
3813 ScalarColumn<uInt> reffidCol ;
3814 Int nchan = (Int)ssig->nchan() ;
3815 reffidCol.attach( reftab, "FREQ_ID" ) ;
3816 Vector<uInt> sfids = ssig->mfreqidCol_.getColumn() ;
3817 Vector<uInt> rfids = sref->mfreqidCol_.getColumn() ;
3818 vector<uInt> sfids_unique ;
3819 vector<uInt> rfids_unique ;
3820 vector<uInt> sifno_unique ;
3821 vector<uInt> rifno_unique ;
3822 for ( uInt i = 0 ; i < sfids.nelements() ; i++ ) {
3823 if ( count( sfids_unique.begin(), sfids_unique.end(), sfids[i] ) == 0 ) {
3824 sfids_unique.push_back( sfids[i] ) ;
3825 sifno_unique.push_back( ssig->getIF( i ) ) ;
3826 }
3827 if ( count( rfids_unique.begin(), rfids_unique.end(), rfids[i] ) == 0 ) {
3828 rfids_unique.push_back( rfids[i] ) ;
3829 rifno_unique.push_back( sref->getIF( i ) ) ;
3830 }
3831 }
3832 double refpix_sig, refval_sig, increment_sig ;
3833 double refpix_ref, refval_ref, increment_ref ;
3834 vector< CountedPtr<Scantable> > tmp( sfids_unique.size() ) ;
3835 for ( uInt i = 0 ; i < sfids_unique.size() ; i++ ) {
3836 ssig->frequencies().getEntry( refpix_sig, refval_sig, increment_sig, sfids_unique[i] ) ;
3837 sref->frequencies().getEntry( refpix_ref, refval_ref, increment_ref, rfids_unique[i] ) ;
3838 if ( refpix_sig == refpix_ref ) {
3839 double foffset = refval_ref - refval_sig ;
3840 int choffset = static_cast<int>(foffset/increment_sig) ;
3841 double doffset = foffset / increment_sig ;
3842 if ( abs(choffset) >= nchan ) {
3843 LogIO os( LogOrigin( "STMath", "cwcalfs", WHERE ) ) ;
3844 os << "FREQ_ID=[" << sfids_unique[i] << "," << rfids_unique[i] << "]: out-band frequency switching, no folding" << LogIO::POST ;
3845 os << "Just return signal data" << LogIO::POST ;
3846 //std::vector< CountedPtr<Scantable> > tabs ;
3847 //tabs.push_back( ssig ) ;
3848 //tabs.push_back( sref ) ;
3849 //out = merge( tabs ) ;
3850 tmp[i] = ssig ;
3851 }
3852 else {
3853 STSelector sel = STSelector() ;
3854 vector<int> v( 1, sifno_unique[i] ) ;
3855 sel.setIFs( v ) ;
3856 ssig->setSelection( sel ) ;
3857 sel.reset() ;
3858 v[0] = rifno_unique[i] ;
3859 sel.setIFs( v ) ;
3860 sref->setSelection( sel ) ;
3861 sel.reset() ;
3862 if ( antname.find( "APEX" ) != string::npos ) {
3863 tmp[i] = dofold( ssig, sref, 0.5*doffset, -0.5*doffset ) ;
3864 //tmp[i] = dofold( ssig, sref, doffset ) ;
3865 }
3866 else {
3867 tmp[i] = dofold( ssig, sref, doffset ) ;
3868 }
3869 ssig->unsetSelection() ;
3870 sref->unsetSelection() ;
3871 }
3872 }
3873 }
3874
3875 if ( tmp.size() > 1 ) {
3876 out = merge( tmp ) ;
3877 }
3878 else {
3879 out = tmp[0] ;
3880 }
3881
3882 // flux unit
3883 out->setFluxUnit( "K" ) ;
3884
3885 return out ;
3886}
3887
3888CountedPtr<Scantable> STMath::almacalfs( const CountedPtr<Scantable>& s )
3889{
3890 (void) s; //currently unused
3891 CountedPtr<Scantable> out ;
3892
3893 return out ;
3894}
3895
3896Vector<Float> STMath::getSpectrumFromTime( double reftime,
3897 const Vector<Double> &timeVec,
3898 const vector<int> &idx,
3899 const Matrix<Float>& spectra,
3900 string mode )
3901{
3902 LogIO os( LogOrigin( "STMath", "getSpectrumFromTime", WHERE ) ) ;
3903 Vector<Float> sp ;
3904 uInt ncol = spectra.ncolumn() ;
3905
3906 if ( ncol == 0 ) {
3907 os << LogIO::SEVERE << "No spectra in the input scantable. Return empty spectrum." << LogIO::POST ;
3908 return sp ;
3909 }
3910 else if ( ncol == 1 ) {
3911 //os << "use row " << 0 << " (scanno = " << s->getScan( 0 ) << ")" << LogIO::POST ;
3912 sp.reference( spectra.column( 0 ) ) ;
3913 return sp ;
3914 }
3915 else {
3916 if ( mode == "before" ) {
3917 int id = -1 ;
3918 if ( idx[0] != -1 ) {
3919 id = idx[0] ;
3920 }
3921 else if ( idx[1] != -1 ) {
3922 os << LogIO::WARN << "Failed to find a scan before reftime. return a spectrum just after the reftime." << LogIO::POST ;
3923 id = idx[1] ;
3924 }
3925 //os << "use row " << id << " (scanno = " << s->getScan( id ) << ")" << LogIO::POST ;
3926 sp.reference( spectra.column( id ) ) ;
3927 }
3928 else if ( mode == "after" ) {
3929 int id = -1 ;
3930 if ( idx[1] != -1 ) {
3931 id = idx[1] ;
3932 }
3933 else if ( idx[0] != -1 ) {
3934 os << LogIO::WARN << "Failed to find a scan after reftime. return a spectrum just before the reftime." << LogIO::POST ;
3935 id = idx[1] ;
3936 }
3937 //os << "use row " << id << " (scanno = " << s->getScan( id ) << ")" << LogIO::POST ;
3938 sp.reference( spectra.column( id ) ) ;
3939 }
3940 else if ( mode == "nearest" ) {
3941 int id = -1 ;
3942 if ( idx[0] == -1 ) {
3943 id = idx[1] ;
3944 }
3945 else if ( idx[1] == -1 ) {
3946 id = idx[0] ;
3947 }
3948 else if ( idx[0] == idx[1] ) {
3949 id = idx[0] ;
3950 }
3951 else {
3952 double t0 = timeVec[idx[0]] ;
3953 double t1 = timeVec[idx[1]] ;
3954 double tref = reftime ;
3955 if ( abs( t0 - tref ) > abs( t1 - tref ) ) {
3956 id = idx[1] ;
3957 }
3958 else {
3959 id = idx[0] ;
3960 }
3961 }
3962 //os << "use row " << id << " (scanno = " << s->getScan( id ) << ")" << LogIO::POST ;
3963 sp.reference( spectra.column( id ) ) ;
3964 }
3965 else if ( mode == "linear" ) {
3966 if ( idx[0] == -1 ) {
3967 // use after
3968 os << LogIO::WARN << "Failed to interpolate. return a spectrum just after the reftime." << LogIO::POST ;
3969 int id = idx[1] ;
3970 //os << "use row " << id << " (scanno = " << s->getScan( id ) << ")" << LogIO::POST ;
3971 sp.reference( spectra.column( id ) ) ;
3972 }
3973 else if ( idx[1] == -1 ) {
3974 // use before
3975 os << LogIO::WARN << "Failed to interpolate. return a spectrum just before the reftime." << LogIO::POST ;
3976 int id = idx[0] ;
3977 //os << "use row " << id << " (scanno = " << s->getScan( id ) << ")" << LogIO::POST ;
3978 sp.reference( spectra.column( id ) ) ;
3979 }
3980 else if ( idx[0] == idx[1] ) {
3981 // use before
3982 //os << "No need to interporate." << LogIO::POST ;
3983 int id = idx[0] ;
3984 //os << "use row " << id << " (scanno = " << s->getScan( id ) << ")" << LogIO::POST ;
3985 sp.reference( spectra.column( id ) ) ;
3986 }
3987 else {
3988 // do interpolation
3989 //os << "interpolate between " << idx[0] << " and " << idx[1] << " (scanno: " << s->getScan( idx[0] ) << ", " << s->getScan( idx[1] ) << ")" << LogIO::POST ;
3990 double t0 = timeVec[idx[0]] ;
3991 double t1 = timeVec[idx[1]] ;
3992 double tref = reftime ;
3993 sp = spectra.column( idx[0] ).copy() ;
3994 Vector<Float> sp1( spectra.column( idx[1] ) ) ;
3995 double tfactor = ( tref - t0 ) / ( t1 - t0 ) ;
3996 for ( unsigned int i = 0 ; i < sp.size() ; i++ ) {
3997 sp[i] = ( sp1[i] - sp[i] ) * tfactor + sp[i] ;
3998 }
3999 }
4000 }
4001 else {
4002 os << LogIO::SEVERE << "Unknown mode" << LogIO::POST ;
4003 }
4004 return sp ;
4005 }
4006}
4007
4008vector<int> STMath::getRowIdFromTime( double reftime, const Vector<Double> &t )
4009{
4010// double reft = reftime ;
4011 double dtmin = 1.0e100 ;
4012 double dtmax = -1.0e100 ;
4013// vector<double> dt ;
4014 int just_before = -1 ;
4015 int just_after = -1 ;
4016 Vector<Double> dt = t - reftime ;
4017 for ( unsigned int i = 0 ; i < dt.size() ; i++ ) {
4018 if ( dt[i] > 0.0 ) {
4019 // after reftime
4020 if ( dt[i] < dtmin ) {
4021 just_after = i ;
4022 dtmin = dt[i] ;
4023 }
4024 }
4025 else if ( dt[i] < 0.0 ) {
4026 // before reftime
4027 if ( dt[i] > dtmax ) {
4028 just_before = i ;
4029 dtmax = dt[i] ;
4030 }
4031 }
4032 else {
4033 // just a reftime
4034 just_before = i ;
4035 just_after = i ;
4036 dtmax = 0 ;
4037 dtmin = 0 ;
4038 break ;
4039 }
4040 }
4041
4042 vector<int> v(2) ;
4043 v[0] = just_before ;
4044 v[1] = just_after ;
4045
4046 return v ;
4047}
4048
4049Vector<Float> STMath::getTcalFromTime( double reftime,
4050 const Vector<Double> &timeVec,
4051 const vector<int> &idx,
4052 const CountedPtr<Scantable>& s,
4053 string mode )
4054{
4055 LogIO os( LogOrigin( "STMath", "getTcalFromTime", WHERE ) ) ;
4056 STTcal tcalTable = s->tcal() ;
4057 String time ;
4058 Vector<Float> tcalval ;
4059 if ( s->nrow() == 0 ) {
4060 os << LogIO::SEVERE << "No row in the input scantable. Return empty tcal." << LogIO::POST ;
4061 return tcalval ;
4062 }
4063 else if ( s->nrow() == 1 ) {
4064 uInt tcalid = s->getTcalId( 0 ) ;
4065 //os << "use row " << 0 << " (tcalid = " << tcalid << ")" << LogIO::POST ;
4066 tcalTable.getEntry( time, tcalval, tcalid ) ;
4067 return tcalval ;
4068 }
4069 else {
4070 if ( mode == "before" ) {
4071 int id = -1 ;
4072 if ( idx[0] != -1 ) {
4073 id = idx[0] ;
4074 }
4075 else if ( idx[1] != -1 ) {
4076 os << LogIO::WARN << "Failed to find a scan before reftime. return a spectrum just after the reftime." << LogIO::POST ;
4077 id = idx[1] ;
4078 }
4079 uInt tcalid = s->getTcalId( id ) ;
4080 //os << "use row " << id << " (tcalid = " << tcalid << ")" << LogIO::POST ;
4081 tcalTable.getEntry( time, tcalval, tcalid ) ;
4082 }
4083 else if ( mode == "after" ) {
4084 int id = -1 ;
4085 if ( idx[1] != -1 ) {
4086 id = idx[1] ;
4087 }
4088 else if ( idx[0] != -1 ) {
4089 os << LogIO::WARN << "Failed to find a scan after reftime. return a spectrum just before the reftime." << LogIO::POST ;
4090 id = idx[1] ;
4091 }
4092 uInt tcalid = s->getTcalId( id ) ;
4093 //os << "use row " << id << " (tcalid = " << tcalid << ")" << LogIO::POST ;
4094 tcalTable.getEntry( time, tcalval, tcalid ) ;
4095 }
4096 else if ( mode == "nearest" ) {
4097 int id = -1 ;
4098 if ( idx[0] == -1 ) {
4099 id = idx[1] ;
4100 }
4101 else if ( idx[1] == -1 ) {
4102 id = idx[0] ;
4103 }
4104 else if ( idx[0] == idx[1] ) {
4105 id = idx[0] ;
4106 }
4107 else {
4108 double t0 = timeVec[idx[0]] ;
4109 double t1 = timeVec[idx[1]] ;
4110 if ( abs( t0 - reftime ) > abs( t1 - reftime ) ) {
4111 id = idx[1] ;
4112 }
4113 else {
4114 id = idx[0] ;
4115 }
4116 }
4117 uInt tcalid = s->getTcalId( id ) ;
4118 //os << "use row " << id << " (tcalid = " << tcalid << ")" << LogIO::POST ;
4119 tcalTable.getEntry( time, tcalval, tcalid ) ;
4120 }
4121 else if ( mode == "linear" ) {
4122 if ( idx[0] == -1 ) {
4123 // use after
4124 os << LogIO::WARN << "Failed to interpolate. return a spectrum just after the reftime." << LogIO::POST ;
4125 int id = idx[1] ;
4126 uInt tcalid = s->getTcalId( id ) ;
4127 //os << "use row " << id << " (tcalid = " << tcalid << ")" << LogIO::POST ;
4128 tcalTable.getEntry( time, tcalval, tcalid ) ;
4129 }
4130 else if ( idx[1] == -1 ) {
4131 // use before
4132 os << LogIO::WARN << "Failed to interpolate. return a spectrum just before the reftime." << LogIO::POST ;
4133 int id = idx[0] ;
4134 uInt tcalid = s->getTcalId( id ) ;
4135 //os << "use row " << id << " (tcalid = " << tcalid << ")" << LogIO::POST ;
4136 tcalTable.getEntry( time, tcalval, tcalid ) ;
4137 }
4138 else if ( idx[0] == idx[1] ) {
4139 // use before
4140 //os << "No need to interporate." << LogIO::POST ;
4141 int id = idx[0] ;
4142 uInt tcalid = s->getTcalId( id ) ;
4143 //os << "use row " << id << " (tcalid = " << tcalid << ")" << LogIO::POST ;
4144 tcalTable.getEntry( time, tcalval, tcalid ) ;
4145 }
4146 else {
4147 // do interpolation
4148 //os << "interpolate between " << idx[0] << " and " << idx[1] << " (scanno: " << s->getScan( idx[0] ) << ", " << s->getScan( idx[1] ) << ")" << LogIO::POST ;
4149 double t0 = timeVec[idx[0]] ;
4150 double t1 = timeVec[idx[1]] ;
4151 Vector<Float> tcal0 ;
4152 uInt tcalid0 = s->getTcalId( idx[0] ) ;
4153 uInt tcalid1 = s->getTcalId( idx[1] ) ;
4154 tcalTable.getEntry( time, tcal0, tcalid0 ) ;
4155 tcalTable.getEntry( time, tcalval, tcalid1 ) ;
4156 double tfactor = (reftime - t0) / (t1 - t0) ;
4157 for ( unsigned int i = 0 ; i < tcal0.size() ; i++ ) {
4158 tcalval[i] = ( tcalval[i] - tcal0[i] ) * tfactor + tcal0[i] ;
4159 }
4160 }
4161 }
4162 else {
4163 os << LogIO::SEVERE << "Unknown mode" << LogIO::POST ;
4164 }
4165 return tcalval ;
4166 }
4167}
4168
4169Vector<Float> STMath::getTsysFromTime( double reftime,
4170 const Vector<Double> &timeVec,
4171 const vector<int> &idx,
4172 const CountedPtr<Scantable> &s,
4173 string mode )
4174{
4175 LogIO os( LogOrigin( "STMath", "getTsysFromTime", WHERE ) ) ;
4176 ArrayColumn<Float> tsysCol ;
4177 tsysCol.attach( s->table(), "TSYS" ) ;
4178 Vector<Float> tsysval ;
4179 if ( s->nrow() == 0 ) {
4180 os << LogIO::SEVERE << "No row in the input scantable. Return empty tsys." << LogIO::POST ;
4181 return tsysval ;
4182 }
4183 else if ( s->nrow() == 1 ) {
4184 //os << "use row " << 0 << LogIO::POST ;
4185 tsysval = tsysCol( 0 ) ;
4186 return tsysval ;
4187 }
4188 else {
4189 if ( mode == "before" ) {
4190 int id = -1 ;
4191 if ( idx[0] != -1 ) {
4192 id = idx[0] ;
4193 }
4194 else if ( idx[1] != -1 ) {
4195 os << LogIO::WARN << "Failed to find a scan before reftime. return a spectrum just after the reftime." << LogIO::POST ;
4196 id = idx[1] ;
4197 }
4198 //os << "use row " << id << LogIO::POST ;
4199 tsysval = tsysCol( id ) ;
4200 }
4201 else if ( mode == "after" ) {
4202 int id = -1 ;
4203 if ( idx[1] != -1 ) {
4204 id = idx[1] ;
4205 }
4206 else if ( idx[0] != -1 ) {
4207 os << LogIO::WARN << "Failed to find a scan after reftime. return a spectrum just before the reftime." << LogIO::POST ;
4208 id = idx[1] ;
4209 }
4210 //os << "use row " << id << LogIO::POST ;
4211 tsysval = tsysCol( id ) ;
4212 }
4213 else if ( mode == "nearest" ) {
4214 int id = -1 ;
4215 if ( idx[0] == -1 ) {
4216 id = idx[1] ;
4217 }
4218 else if ( idx[1] == -1 ) {
4219 id = idx[0] ;
4220 }
4221 else if ( idx[0] == idx[1] ) {
4222 id = idx[0] ;
4223 }
4224 else {
4225 double t0 = timeVec[idx[0]] ;
4226 double t1 = timeVec[idx[1]] ;
4227 if ( abs( t0 - reftime ) > abs( t1 - reftime ) ) {
4228 id = idx[1] ;
4229 }
4230 else {
4231 id = idx[0] ;
4232 }
4233 }
4234 //os << "use row " << id << LogIO::POST ;
4235 tsysval = tsysCol( id ) ;
4236 }
4237 else if ( mode == "linear" ) {
4238 if ( idx[0] == -1 ) {
4239 // use after
4240 os << LogIO::WARN << "Failed to interpolate. return a spectrum just after the reftime." << LogIO::POST ;
4241 int id = idx[1] ;
4242 //os << "use row " << id << LogIO::POST ;
4243 tsysval = tsysCol( id ) ;
4244 }
4245 else if ( idx[1] == -1 ) {
4246 // use before
4247 os << LogIO::WARN << "Failed to interpolate. return a spectrum just before the reftime." << LogIO::POST ;
4248 int id = idx[0] ;
4249 //os << "use row " << id << LogIO::POST ;
4250 tsysval = tsysCol( id ) ;
4251 }
4252 else if ( idx[0] == idx[1] ) {
4253 // use before
4254 //os << "No need to interporate." << LogIO::POST ;
4255 int id = idx[0] ;
4256 //os << "use row " << id << LogIO::POST ;
4257 tsysval = tsysCol( id ) ;
4258 }
4259 else {
4260 // do interpolation
4261 //os << "interpolate between " << idx[0] << " and " << idx[1] << " (scanno: " << s->getScan( idx[0] ) << ", " << s->getScan( idx[1] ) << ")" << LogIO::POST ;
4262 double t0 = timeVec[idx[0]] ;
4263 double t1 = timeVec[idx[1]] ;
4264 Vector<Float> tsys0 ;
4265 tsys0 = tsysCol( idx[0] ) ;
4266 tsysval = tsysCol( idx[1] ) ;
4267 double tfactor = (reftime - t0) / (t1 - t0) ;
4268 for ( unsigned int i = 0 ; i < tsys0.size() ; i++ ) {
4269 tsysval[i] = ( tsysval[i] - tsys0[i] ) * tfactor + tsys0[i] ;
4270 }
4271 }
4272 }
4273 else {
4274 os << LogIO::SEVERE << "Unknown mode" << LogIO::POST ;
4275 }
4276 return tsysval ;
4277 }
4278}
4279
4280void STMath::calibrateCW( CountedPtr<Scantable> &out,
4281 const CountedPtr<Scantable>& on,
4282 const CountedPtr<Scantable>& off,
4283 const CountedPtr<Scantable>& sky,
4284 const CountedPtr<Scantable>& hot,
4285 const CountedPtr<Scantable>& cold,
4286 const Vector<uInt> &rows,
4287 const String &antname )
4288{
4289 // 2012/05/22 TN
4290 // Assume that out has empty SPECTRA column
4291
4292 // if rows is empty, just return
4293 if ( rows.nelements() == 0 )
4294 return ;
4295 ROScalarColumn<Double> timeCol( off->table(), "TIME" ) ;
4296 Vector<Double> timeOff = timeCol.getColumn() ;
4297 timeCol.attach( sky->table(), "TIME" ) ;
4298 Vector<Double> timeSky = timeCol.getColumn() ;
4299 timeCol.attach( hot->table(), "TIME" ) ;
4300 Vector<Double> timeHot = timeCol.getColumn() ;
4301 timeCol.attach( on->table(), "TIME" ) ;
4302 ROArrayColumn<Float> arrayFloatCol( off->table(), "SPECTRA" ) ;
4303 Matrix<Float> offspectra = arrayFloatCol.getColumn() ;
4304 arrayFloatCol.attach( sky->table(), "SPECTRA" ) ;
4305 Matrix<Float> skyspectra = arrayFloatCol.getColumn() ;
4306 arrayFloatCol.attach( hot->table(), "SPECTRA" ) ;
4307 Matrix<Float> hotspectra = arrayFloatCol.getColumn() ;
4308 unsigned int spsize = on->nchan( on->getIF(rows[0]) ) ;
4309 // I know that the data is contiguous
4310 const uInt *p = rows.data() ;
4311 vector<int> ids( 2 ) ;
4312 Block<uInt> flagchan( spsize ) ;
4313 uInt nflag = 0 ;
4314 for ( int irow = 0 ; irow < rows.nelements() ; irow++ ) {
4315 double reftime = timeCol.asdouble(*p) ;
4316 ids = getRowIdFromTime( reftime, timeOff ) ;
4317 Vector<Float> spoff = getSpectrumFromTime( reftime, timeOff, ids, offspectra, "linear" ) ;
4318 ids = getRowIdFromTime( reftime, timeSky ) ;
4319 Vector<Float> spsky = getSpectrumFromTime( reftime, timeSky, ids, skyspectra, "linear" ) ;
4320 Vector<Float> tcal = getTcalFromTime( reftime, timeSky, ids, sky, "linear" ) ;
4321 Vector<Float> tsys = getTsysFromTime( reftime, timeSky, ids, sky, "linear" ) ;
4322 ids = getRowIdFromTime( reftime, timeHot ) ;
4323 Vector<Float> sphot = getSpectrumFromTime( reftime, timeHot, ids, hotspectra, "linear" ) ;
4324 Vector<Float> spec = on->specCol_( *p ) ;
4325 if ( antname.find( "APEX" ) != String::npos ) {
4326 // using gain array
4327 for ( unsigned int j = 0 ; j < tcal.size() ; j++ ) {
4328 if ( spoff[j] == 0.0 || (sphot[j]-spsky[j]) == 0.0 ) {
4329 spec[j] = 0.0 ;
4330 flagchan[nflag++] = j ;
4331 }
4332 else {
4333 spec[j] = ( ( spec[j] - spoff[j] ) / spoff[j] )
4334 * ( spsky[j] / ( sphot[j] - spsky[j] ) ) * tcal[j] ;
4335 }
4336 }
4337 }
4338 else {
4339 // Chopper-Wheel calibration (Ulich & Haas 1976)
4340 for ( unsigned int j = 0 ; j < tcal.size() ; j++ ) {
4341 if ( (sphot[j]-spsky[j]) == 0.0 ) {
4342 spec[j] = 0.0 ;
4343 flagchan[nflag++] = j ;
4344 }
4345 else {
4346 spec[j] = ( spec[j] - spoff[j] ) / ( sphot[j] - spsky[j] ) * tcal[j] ;
4347 }
4348 }
4349 }
4350 out->specCol_.put( *p, spec ) ;
4351 out->tsysCol_.put( *p, tsys ) ;
4352 if ( nflag > 0 ) {
4353 Vector<uChar> fl = out->flagsCol_( *p ) ;
4354 for ( unsigned int j = 0 ; j < nflag ; j++ ) {
4355 fl[flagchan[j]] = (uChar)True ;
4356 }
4357 out->flagsCol_.put( *p, fl ) ;
4358 }
4359 nflag = 0 ;
4360 p++ ;
4361 }
4362}
4363
4364void STMath::calibrateALMA( CountedPtr<Scantable>& out,
4365 const CountedPtr<Scantable>& on,
4366 const CountedPtr<Scantable>& off,
4367 const Vector<uInt>& rows )
4368{
4369 // 2012/05/22 TN
4370 // Assume that out has empty SPECTRA column
4371
4372 // if rows is empty, just return
4373 if ( rows.nelements() == 0 )
4374 return ;
4375 ROScalarColumn<Double> timeCol( off->table(), "TIME" ) ;
4376 Vector<Double> timeVec = timeCol.getColumn() ;
4377 timeCol.attach( on->table(), "TIME" ) ;
4378 ROArrayColumn<Float> arrayFloatCol( off->table(), "SPECTRA" ) ;
4379 Matrix<Float> offspectra = arrayFloatCol.getColumn() ;
4380 unsigned int spsize = on->nchan( on->getIF(rows[0]) ) ;
4381 // I know that the data is contiguous
4382 const uInt *p = rows.data() ;
4383 vector<int> ids( 2 ) ;
4384 Block<uInt> flagchan( spsize ) ;
4385 uInt nflag = 0 ;
4386 for ( int irow = 0 ; irow < rows.nelements() ; irow++ ) {
4387 double reftime = timeCol.asdouble(*p) ;
4388 ids = getRowIdFromTime( reftime, timeVec ) ;
4389 Vector<Float> spoff = getSpectrumFromTime( reftime, timeVec, ids, offspectra, "linear" ) ;
4390 //Vector<Float> spoff = getSpectrumFromTime( reftime, timeVec, off, "linear" ) ;
4391 Vector<Float> spec = on->specCol_( *p ) ;
4392 Vector<Float> tsys = on->tsysCol_( *p ) ;
4393 // ALMA Calibration
4394 //
4395 // Ta* = Tsys * ( ON - OFF ) / OFF
4396 //
4397 // 2010/01/07 Takeshi Nakazato
4398 unsigned int tsyssize = tsys.nelements() ;
4399 for ( unsigned int j = 0 ; j < spsize ; j++ ) {
4400 if ( spoff[j] == 0.0 ) {
4401 spec[j] = 0.0 ;
4402 flagchan[nflag++] = j ;
4403 }
4404 else {
4405 spec[j] = ( spec[j] - spoff[j] ) / spoff[j] ;
4406 }
4407 if ( tsyssize == spsize )
4408 spec[j] *= tsys[j] ;
4409 else
4410 spec[j] *= tsys[0] ;
4411 }
4412 out->specCol_.put( *p, spec ) ;
4413 if ( nflag > 0 ) {
4414 Vector<uChar> fl = out->flagsCol_( *p ) ;
4415 for ( unsigned int j = 0 ; j < nflag ; j++ ) {
4416 fl[flagchan[j]] = (uChar)True ;
4417 }
4418 out->flagsCol_.put( *p, fl ) ;
4419 }
4420 nflag = 0 ;
4421 p++ ;
4422 }
4423}
4424
4425void STMath::calibrateAPEXFS( CountedPtr<Scantable> &sig,
4426 CountedPtr<Scantable> &ref,
4427 const vector< CountedPtr<Scantable> >& on,
4428 const vector< CountedPtr<Scantable> >& sky,
4429 const vector< CountedPtr<Scantable> >& hot,
4430 const vector< CountedPtr<Scantable> >& cold,
4431 const Vector<uInt> &rows )
4432{
4433 // if rows is empty, just return
4434 if ( rows.nelements() == 0 )
4435 return ;
4436 ROScalarColumn<Double> timeCol( sky[0]->table(), "TIME" ) ;
4437 Vector<Double> timeSkyS = timeCol.getColumn() ;
4438 timeCol.attach( sky[1]->table(), "TIME" ) ;
4439 Vector<Double> timeSkyR = timeCol.getColumn() ;
4440 timeCol.attach( hot[0]->table(), "TIME" ) ;
4441 Vector<Double> timeHotS = timeCol.getColumn() ;
4442 timeCol.attach( hot[1]->table(), "TIME" ) ;
4443 Vector<Double> timeHotR = timeCol.getColumn() ;
4444 timeCol.attach( sig->table(), "TIME" ) ;
4445 ROScalarColumn<Double> timeCol2( ref->table(), "TIME" ) ;
4446 ROArrayColumn<Float> arrayFloatCol( sky[0]->table(), "SPECTRA" ) ;
4447 Matrix<Float> skyspectraS = arrayFloatCol.getColumn() ;
4448 arrayFloatCol.attach( sky[1]->table(), "SPECTRA" ) ;
4449 Matrix<Float> skyspectraR = arrayFloatCol.getColumn() ;
4450 arrayFloatCol.attach( hot[0]->table(), "SPECTRA" ) ;
4451 Matrix<Float> hotspectraS = arrayFloatCol.getColumn() ;
4452 arrayFloatCol.attach( hot[1]->table(), "SPECTRA" ) ;
4453 Matrix<Float> hotspectraR = arrayFloatCol.getColumn() ;
4454 unsigned int spsize = sig->nchan( sig->getIF(rows[0]) ) ;
4455 Vector<Float> spec( spsize ) ;
4456 // I know that the data is contiguous
4457 const uInt *p = rows.data() ;
4458 vector<int> ids( 2 ) ;
4459 Block<uInt> flagchan( spsize ) ;
4460 uInt nflag = 0 ;
4461 for ( int irow = 0 ; irow < rows.nelements() ; irow++ ) {
4462 double reftime = timeCol.asdouble(*p) ;
4463 ids = getRowIdFromTime( reftime, timeSkyS ) ;
4464 Vector<Float> spskyS = getSpectrumFromTime( reftime, timeSkyS, ids, skyspectraS, "linear" ) ;
4465 Vector<Float> tcalS = getTcalFromTime( reftime, timeSkyS, ids, sky[0], "linear" ) ;
4466 Vector<Float> tsysS = getTsysFromTime( reftime, timeSkyS, ids, sky[0], "linear" ) ;
4467 ids = getRowIdFromTime( reftime, timeHotS ) ;
4468 Vector<Float> sphotS = getSpectrumFromTime( reftime, timeHotS, ids, hotspectraS ) ;
4469 reftime = timeCol2.asdouble(*p) ;
4470 ids = getRowIdFromTime( reftime, timeSkyR ) ;
4471 Vector<Float> spskyR = getSpectrumFromTime( reftime, timeSkyR, ids, skyspectraR, "linear" ) ;
4472 Vector<Float> tcalR = getTcalFromTime( reftime, timeSkyR, ids, sky[1], "linear" ) ;
4473 Vector<Float> tsysR = getTsysFromTime( reftime, timeSkyR, ids, sky[1], "linear" ) ;
4474 ids = getRowIdFromTime( reftime, timeHotR ) ;
4475 Vector<Float> sphotR = getSpectrumFromTime( reftime, timeHotR, ids, hotspectraR ) ;
4476 Vector<Float> spsig = on[0]->specCol_( *p ) ;
4477 Vector<Float> spref = on[1]->specCol_( *p ) ;
4478 for ( unsigned int j = 0 ; j < spsize ; j++ ) {
4479 if ( (sphotS[j]-spskyS[j]) == 0.0 || (sphotR[j]-spskyR[j]) == 0.0 ) {
4480 spec[j] = 0.0 ;
4481 flagchan[nflag++] = j ;
4482 }
4483 else {
4484 spec[j] = tcalS[j] * spsig[j] / ( sphotS[j] - spskyS[j] )
4485 - tcalR[j] * spref[j] / ( sphotR[j] - spskyR[j] ) ;
4486 }
4487 }
4488 sig->specCol_.put( *p, spec ) ;
4489 sig->tsysCol_.put( *p, tsysS ) ;
4490 spec *= (Float)-1.0 ;
4491 ref->specCol_.put( *p, spec ) ;
4492 ref->tsysCol_.put( *p, tsysR ) ;
4493 if ( nflag > 0 ) {
4494 Vector<uChar> flsig = sig->flagsCol_( *p ) ;
4495 Vector<uChar> flref = ref->flagsCol_( *p ) ;
4496 for ( unsigned int j = 0 ; j < nflag ; j++ ) {
4497 flsig[flagchan[j]] = (uChar)True ;
4498 flref[flagchan[j]] = (uChar)True ;
4499 }
4500 sig->flagsCol_.put( *p, flsig ) ;
4501 ref->flagsCol_.put( *p, flref ) ;
4502 }
4503 nflag = 0 ;
4504 p++ ;
4505 }
4506}
4507
4508void STMath::calibrateFS( CountedPtr<Scantable> &sig,
4509 CountedPtr<Scantable> &ref,
4510 const CountedPtr<Scantable>& rsig,
4511 const CountedPtr<Scantable>& rref,
4512 const CountedPtr<Scantable>& sky,
4513 const CountedPtr<Scantable>& hot,
4514 const CountedPtr<Scantable>& cold,
4515 const Vector<uInt> &rows )
4516{
4517 // if rows is empty, just return
4518 if ( rows.nelements() == 0 )
4519 return ;
4520 ROScalarColumn<Double> timeCol( sky->table(), "TIME" ) ;
4521 Vector<Double> timeSky = timeCol.getColumn() ;
4522 timeCol.attach( hot->table(), "TIME" ) ;
4523 Vector<Double> timeHot = timeCol.getColumn() ;
4524 timeCol.attach( sig->table(), "TIME" ) ;
4525 ROScalarColumn<Double> timeCol2( ref->table(), "TIME" ) ;
4526 ROArrayColumn<Float> arrayFloatCol( sky->table(), "SPECTRA" ) ;
4527 Matrix<Float> skyspectra = arrayFloatCol.getColumn() ;
4528 arrayFloatCol.attach( hot->table(), "SPECTRA" ) ;
4529 Matrix<Float> hotspectra = arrayFloatCol.getColumn() ;
4530 unsigned int spsize = sig->nchan( sig->getIF(rows[0]) ) ;
4531 Vector<Float> spec( spsize ) ;
4532 // I know that the data is contiguous
4533 const uInt *p = rows.data() ;
4534 vector<int> ids( 2 ) ;
4535 Block<uInt> flagchan( spsize ) ;
4536 uInt nflag = 0 ;
4537 for ( int irow = 0 ; irow < rows.nelements() ; irow++ ) {
4538 double reftime = timeCol.asdouble(*p) ;
4539 ids = getRowIdFromTime( reftime, timeSky ) ;
4540 Vector<Float> spsky = getSpectrumFromTime( reftime, timeSky, ids, skyspectra, "linear" ) ;
4541 Vector<Float> tcal = getTcalFromTime( reftime, timeSky, ids, sky, "linear" ) ;
4542 Vector<Float> tsys = getTsysFromTime( reftime, timeSky, ids, sky, "linear" ) ;
4543 ids = getRowIdFromTime( reftime, timeHot ) ;
4544 Vector<Float> sphot = getSpectrumFromTime( reftime, timeHot, ids, hotspectra ) ;
4545 Vector<Float> spsig = rsig->specCol_( *p ) ;
4546 Vector<Float> spref = rref->specCol_( *p ) ;
4547 // using gain array
4548 for ( unsigned int j = 0 ; j < spsize ; j++ ) {
4549 if ( spref[j] == 0.0 || (sphot[j]-spsky[j]) == 0.0 ) {
4550 spec[j] = 0.0 ;
4551 flagchan[nflag++] = j ;
4552 }
4553 else {
4554 spec[j] = ( ( spsig[j] - spref[j] ) / spref[j] )
4555 * ( spsky[j] / ( sphot[j] - spsky[j] ) ) * tcal[j] ;
4556 }
4557 }
4558 sig->specCol_.put( *p, spec ) ;
4559 sig->tsysCol_.put( *p, tsys ) ;
4560 if ( nflag > 0 ) {
4561 Vector<uChar> fl = sig->flagsCol_( *p ) ;
4562 for ( unsigned int j = 0 ; j < nflag ; j++ ) {
4563 fl[flagchan[j]] = (uChar)True ;
4564 }
4565 sig->flagsCol_.put( *p, fl ) ;
4566 }
4567 nflag = 0 ;
4568
4569 reftime = timeCol2.asdouble(*p) ;
4570 spsky = getSpectrumFromTime( reftime, timeSky, ids, skyspectra, "linear" ) ;
4571 tcal = getTcalFromTime( reftime, timeSky, ids, sky, "linear" ) ;
4572 tsys = getTsysFromTime( reftime, timeSky, ids, sky, "linear" ) ;
4573 ids = getRowIdFromTime( reftime, timeHot ) ;
4574 sphot = getSpectrumFromTime( reftime, timeHot, ids, hotspectra ) ;
4575 // using gain array
4576 for ( unsigned int j = 0 ; j < spsize ; j++ ) {
4577 if ( spsig[j] == 0.0 || (sphot[j]-spsky[j]) == 0.0 ) {
4578 spec[j] = 0.0 ;
4579 flagchan[nflag++] = j ;
4580 }
4581 else {
4582 spec[j] = ( ( spref[j] - spsig[j] ) / spsig[j] )
4583 * ( spsky[j] / ( sphot[j] - spsky[j] ) ) * tcal[j] ;
4584 }
4585 }
4586 ref->specCol_.put( *p, spec ) ;
4587 ref->tsysCol_.put( *p, tsys ) ;
4588 if ( nflag > 0 ) {
4589 Vector<uChar> fl = ref->flagsCol_( *p ) ;
4590 for ( unsigned int j = 0 ; j < nflag ; j++ ) {
4591 fl[flagchan[j]] = (uChar)True ;
4592 }
4593 ref->flagsCol_.put( *p, fl ) ;
4594 }
4595 nflag = 0 ;
4596 p++ ;
4597 }
4598}
4599
4600void STMath::copyRows( Table &out,
4601 const Table &in,
4602 uInt startout,
4603 uInt startin,
4604 uInt nrow,
4605 Bool copySpectra,
4606 Bool copyFlagtra,
4607 Bool copyTsys )
4608{
4609 uInt nexclude = 0 ;
4610 Block<String> excludeColsBlock( 3 ) ;
4611 if ( !copySpectra ) {
4612 excludeColsBlock[nexclude] = "SPECTRA" ;
4613 nexclude++ ;
4614 }
4615 if ( !copyFlagtra ) {
4616 excludeColsBlock[nexclude] = "FLAGTRA" ;
4617 nexclude++ ;
4618 }
4619 if ( !copyTsys ) {
4620 excludeColsBlock[nexclude] = "TSYS" ;
4621 nexclude++ ;
4622 }
4623 // if ( nexclude < 3 ) {
4624 // excludeCols.resize( nexclude, True ) ;
4625 // }
4626 Vector<String> excludeCols( IPosition(1,nexclude),
4627 excludeColsBlock.storage(),
4628 SHARE ) ;
4629// cout << "excludeCols=" << excludeCols << endl ;
4630 TableRow rowout( out, excludeCols, True ) ;
4631 ROTableRow rowin( in, excludeCols, True ) ;
4632 uInt rin = startin ;
4633 uInt rout = startout ;
4634 for ( uInt i = 0 ; i < nrow ; i++ ) {
4635 rowin.get( rin ) ;
4636 rowout.putMatchingFields( rout, rowin.record() ) ;
4637 rin++ ;
4638 rout++ ;
4639 }
4640}
4641
4642CountedPtr<Scantable> STMath::averageWithinSession( CountedPtr<Scantable> &s,
4643 vector<bool> &mask,
4644 string weight )
4645{
4646 // prepare output table
4647 bool insitu = insitu_ ;
4648 insitu_ = false ;
4649 CountedPtr<Scantable> a = getScantable( s, true ) ;
4650 insitu_ = insitu ;
4651 Table &atab = a->table() ;
4652 ScalarColumn<Double> timeColOut( atab, "TIME" ) ;
4653
4654 if ( s->nrow() == 0 )
4655 return a ;
4656
4657 // setup RowAccumulator
4658 WeightType wtype = stringToWeight( weight ) ;
4659 RowAccumulator acc( wtype ) ;
4660 Vector<Bool> cmask( mask ) ;
4661 acc.setUserMask( cmask ) ;
4662
4663 vector<string> cols( 3 ) ;
4664 cols[0] = "IFNO" ;
4665 cols[1] = "POLNO" ;
4666 cols[2] = "BEAMNO" ;
4667 STIdxIterAcc iter( s, cols ) ;
4668
4669 Table ttab = s->table() ;
4670 ROScalarColumn<Double> *timeCol = new ROScalarColumn<Double>( ttab, "TIME" ) ;
4671 Vector<Double> timeVec = timeCol->getColumn() ;
4672 delete timeCol ;
4673 Vector<Double> interval = s->integrCol_.getColumn() ;
4674 uInt nrow = timeVec.nelements() ;
4675 uInt outrow = 0 ;
4676
4677 while( !iter.pastEnd() ) {
4678
4679 Vector<uInt> rows = iter.getRows( SHARE ) ;
4680
4681 uInt nchan = s->nchan(s->getIF(rows[0])) ;
4682 Vector<uChar> flag( nchan ) ;
4683 Vector<Bool> bflag( nchan ) ;
4684 Vector<Float> spec( nchan ) ;
4685 Vector<Float> tsys( nchan ) ;
4686
4687 uInt len = rows.nelements() ;
4688
4689 Vector<Double> timeSep( len-1 ) ;
4690 for ( uInt i = 0 ; i < len-1 ; i++ ) {
4691 timeSep[i] = timeVec[rows[i+1]] - timeVec[rows[i]] ;
4692 }
4693
4694 uInt irow ;
4695 uInt jrow ;
4696 for ( uInt i = 0 ; i < len-1 ; i++ ) {
4697 irow = rows[i] ;
4698 jrow = rows[i+1] ;
4699 // accumulate data
4700 s->flagsCol_.get( irow, flag ) ;
4701 convertArray( bflag, flag ) ;
4702 s->specCol_.get( irow, spec ) ;
4703 tsys.assign( s->tsysCol_( irow ) ) ;
4704 if ( !allEQ(bflag,True) )
4705 acc.add( spec, !bflag, tsys, interval[irow], timeVec[irow] ) ;
4706 double gap = 2.0 * 86400.0 * timeSep[i] / ( interval[jrow] + interval[irow] ) ;
4707 //cout << "gap[" << i << "]=" << setw(5) << gap << endl ;
4708 if ( gap > 1.1 ) {
4709 //cout << "detected gap between " << i << " and " << i+1 << endl ;
4710 // put data to output table
4711 // reset RowAccumulator
4712 if ( acc.state() ) {
4713 atab.addRow() ;
4714 copyRows( atab, ttab, outrow, irow, 1, False, False, False ) ;
4715 acc.replaceNaN() ;
4716 const Vector<Bool> &msk = acc.getMask() ;
4717 convertArray( flag, !msk ) ;
4718 for (uInt k = 0; k < nchan; ++k) {
4719 uChar userFlag = 1 << 7;
4720 if (msk[k]==True) userFlag = 0 << 7;
4721 flag(k) = userFlag;
4722 }
4723 a->flagsCol_.put( outrow, flag ) ;
4724 a->specCol_.put( outrow, acc.getSpectrum() ) ;
4725 a->tsysCol_.put( outrow, acc.getTsys() ) ;
4726 a->integrCol_.put( outrow, acc.getInterval() ) ;
4727 timeColOut.put( outrow, acc.getTime() ) ;
4728 a->cycleCol_.put( outrow, 0 ) ;
4729 }
4730 acc.reset() ;
4731 outrow++ ;
4732 }
4733 }
4734
4735 // accumulate and add last data
4736 irow = rows[len-1] ;
4737 s->flagsCol_.get( irow, flag ) ;
4738 convertArray( bflag, flag ) ;
4739 s->specCol_.get( irow, spec ) ;
4740 tsys.assign( s->tsysCol_( irow ) ) ;
4741 if (!allEQ(bflag,True) )
4742 acc.add( spec, !bflag, tsys, interval[irow], timeVec[irow] ) ;
4743 if ( acc.state() ) {
4744 atab.addRow() ;
4745 copyRows( atab, ttab, outrow, irow, 1, False, False, False ) ;
4746 acc.replaceNaN() ;
4747 const Vector<Bool> &msk = acc.getMask() ;
4748 convertArray( flag, !msk ) ;
4749 for (uInt k = 0; k < nchan; ++k) {
4750 uChar userFlag = 1 << 7;
4751 if (msk[k]==True) userFlag = 0 << 7;
4752 flag(k) = userFlag;
4753 }
4754 a->flagsCol_.put( outrow, flag ) ;
4755 a->specCol_.put( outrow, acc.getSpectrum() ) ;
4756 a->tsysCol_.put( outrow, acc.getTsys() ) ;
4757 a->integrCol_.put( outrow, acc.getInterval() ) ;
4758 timeColOut.put( outrow, acc.getTime() ) ;
4759 a->cycleCol_.put( outrow, 0 ) ;
4760 }
4761 acc.reset() ;
4762 outrow++ ;
4763
4764 iter.next() ;
4765 }
4766
4767 return a ;
4768}
Note: See TracBrowser for help on using the repository browser.