source: tags/Release2.1.0b/src/STMath.cpp@ 1294

Last change on this file since 1294 was 1255, checked in by mar637, 18 years ago

Fix for Ticket #78 - auto_quotient was not handling the case where no closest in tiem was found. Added 0.5s width around min(delta_t)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 47.4 KB
RevLine 
[805]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//
[38]12
[330]13#include <casa/iomanip.h>
[805]14#include <casa/Exceptions/Error.h>
15#include <casa/Containers/Block.h>
[81]16#include <casa/BasicSL/String.h>
[805]17#include <casa/Arrays/MaskArrLogi.h>
18#include <casa/Arrays/MaskArrMath.h>
19#include <casa/Arrays/ArrayLogical.h>
[81]20#include <casa/Arrays/ArrayMath.h>
[1066]21#include <casa/Arrays/Slice.h>
22#include <casa/Arrays/Slicer.h>
[805]23#include <casa/Containers/RecordField.h>
24#include <tables/Tables/TableRow.h>
25#include <tables/Tables/TableVector.h>
[917]26#include <tables/Tables/TabVecMath.h>
[805]27#include <tables/Tables/ExprNode.h>
28#include <tables/Tables/TableRecord.h>
[1140]29#include <tables/Tables/TableParse.h>
[805]30#include <tables/Tables/ReadAsciiTable.h>
[1140]31#include <tables/Tables/TableIter.h>
32#include <tables/Tables/TableCopy.h>
[1192]33#include <scimath/Mathematics/FFTServer.h>
[2]34
[262]35#include <lattices/Lattices/LatticeUtilities.h>
36
[917]37#include <coordinates/Coordinates/SpectralCoordinate.h>
38#include <coordinates/Coordinates/CoordinateSystem.h>
39#include <coordinates/Coordinates/CoordinateUtil.h>
40#include <coordinates/Coordinates/FrequencyAligner.h>
41
[177]42#include <scimath/Mathematics/VectorKernel.h>
43#include <scimath/Mathematics/Convolver.h>
[234]44#include <scimath/Functionals/Polynomial.h>
[177]45
[38]46#include "MathUtils.h"
[805]47#include "RowAccumulator.h"
[878]48#include "STAttr.h"
[805]49#include "STMath.h"
[2]50
[805]51using namespace casa;
[2]52
[83]53using namespace asap;
[2]54
[805]55STMath::STMath(bool insitu) :
56 insitu_(insitu)
[716]57{
58}
[170]59
60
[805]61STMath::~STMath()
[170]62{
63}
64
[805]65CountedPtr<Scantable>
[977]66STMath::average( const std::vector<CountedPtr<Scantable> >& in,
[858]67 const std::vector<bool>& mask,
[805]68 const std::string& weight,
[977]69 const std::string& avmode)
[262]70{
[977]71 if ( avmode == "SCAN" && in.size() != 1 )
[1066]72 throw(AipsError("Can't perform 'SCAN' averaging on multiple tables.\n"
73 "Use merge first."));
[805]74 WeightType wtype = stringToWeight(weight);
[926]75
[805]76 // output
77 // clone as this is non insitu
78 bool insitu = insitu_;
79 setInsitu(false);
[977]80 CountedPtr< Scantable > out = getScantable(in[0], true);
[805]81 setInsitu(insitu);
[977]82 std::vector<CountedPtr<Scantable> >::const_iterator stit = in.begin();
[862]83 ++stit;
[977]84 while ( stit != in.end() ) {
[862]85 out->appendToHistoryTable((*stit)->history());
86 ++stit;
87 }
[294]88
[805]89 Table& tout = out->table();
[701]90
[805]91 /// @todo check if all scantables are conformant
[294]92
[805]93 ArrayColumn<Float> specColOut(tout,"SPECTRA");
94 ArrayColumn<uChar> flagColOut(tout,"FLAGTRA");
95 ArrayColumn<Float> tsysColOut(tout,"TSYS");
96 ScalarColumn<Double> mjdColOut(tout,"TIME");
97 ScalarColumn<Double> intColOut(tout,"INTERVAL");
[1008]98 ScalarColumn<uInt> cycColOut(tout,"CYCLENO");
[1145]99 ScalarColumn<uInt> scanColOut(tout,"SCANNO");
[262]100
[805]101 // set up the output table rows. These are based on the structure of the
[862]102 // FIRST scantable in the vector
[977]103 const Table& baset = in[0]->table();
[262]104
[805]105 Block<String> cols(3);
106 cols[0] = String("BEAMNO");
107 cols[1] = String("IFNO");
108 cols[2] = String("POLNO");
109 if ( avmode == "SOURCE" ) {
110 cols.resize(4);
111 cols[3] = String("SRCNAME");
[488]112 }
[977]113 if ( avmode == "SCAN" && in.size() == 1) {
[805]114 cols.resize(4);
115 cols[3] = String("SCANNO");
[2]116 }
[805]117 uInt outrowCount = 0;
118 TableIterator iter(baset, cols);
119 while (!iter.pastEnd()) {
120 Table subt = iter.table();
121 // copy the first row of this selection into the new table
122 tout.addRow();
123 TableCopy::copyRows(tout, subt, outrowCount, 0, 1);
[1145]124 // re-index to 0
125 if ( avmode != "SCAN" && avmode != "SOURCE" ) {
126 scanColOut.put(outrowCount, uInt(0));
127 }
[805]128 ++outrowCount;
129 ++iter;
[144]130 }
[805]131 RowAccumulator acc(wtype);
[858]132 Vector<Bool> cmask(mask);
133 acc.setUserMask(cmask);
[805]134 ROTableRow row(tout);
135 ROArrayColumn<Float> specCol, tsysCol;
136 ROArrayColumn<uChar> flagCol;
137 ROScalarColumn<Double> mjdCol, intCol;
138 ROScalarColumn<Int> scanIDCol;
[144]139
[805]140 for (uInt i=0; i < tout.nrow(); ++i) {
[996]141 for ( int j=0; j < int(in.size()); ++j ) {
[977]142 const Table& tin = in[j]->table();
[805]143 const TableRecord& rec = row.get(i);
144 ROScalarColumn<Double> tmp(tin, "TIME");
145 Double td;tmp.get(0,td);
146 Table basesubt = tin(tin.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
147 && tin.col("IFNO") == Int(rec.asuInt("IFNO"))
148 && tin.col("POLNO") == Int(rec.asuInt("POLNO")) );
149 Table subt;
150 if ( avmode == "SOURCE") {
151 subt = basesubt( basesubt.col("SRCNAME") == rec.asString("SRCNAME") );
152 } else if (avmode == "SCAN") {
153 subt = basesubt( basesubt.col("SCANNO") == Int(rec.asuInt("SCANNO")) );
154 } else {
155 subt = basesubt;
156 }
157 specCol.attach(subt,"SPECTRA");
158 flagCol.attach(subt,"FLAGTRA");
159 tsysCol.attach(subt,"TSYS");
160 intCol.attach(subt,"INTERVAL");
161 mjdCol.attach(subt,"TIME");
162 Vector<Float> spec,tsys;
163 Vector<uChar> flag;
164 Double inter,time;
165 for (uInt k = 0; k < subt.nrow(); ++k ) {
166 flagCol.get(k, flag);
167 Vector<Bool> bflag(flag.shape());
168 convertArray(bflag, flag);
169 if ( allEQ(bflag, True) ) {
170 continue;//don't accumulate
[144]171 }
[805]172 specCol.get(k, spec);
173 tsysCol.get(k, tsys);
174 intCol.get(k, inter);
175 mjdCol.get(k, time);
176 // spectrum has to be added last to enable weighting by the other values
177 acc.add(spec, !bflag, tsys, inter, time);
178 }
179 }
180 //write out
181 specColOut.put(i, acc.getSpectrum());
182 const Vector<Bool>& msk = acc.getMask();
183 Vector<uChar> flg(msk.shape());
184 convertArray(flg, !msk);
185 flagColOut.put(i, flg);
186 tsysColOut.put(i, acc.getTsys());
187 intColOut.put(i, acc.getInterval());
188 mjdColOut.put(i, acc.getTime());
[1008]189 // we should only have one cycle now -> reset it to be 0
190 // frequency switched data has different CYCLENO for different IFNO
191 // which requires resetting this value
192 cycColOut.put(i, uInt(0));
[805]193 acc.reset();
[144]194 }
[805]195 return out;
[2]196}
[9]197
[1069]198CountedPtr< Scantable >
199 STMath::averageChannel( const CountedPtr < Scantable > & in,
[1078]200 const std::string & mode,
201 const std::string& avmode )
[1069]202{
203 // clone as this is non insitu
204 bool insitu = insitu_;
205 setInsitu(false);
206 CountedPtr< Scantable > out = getScantable(in, true);
207 setInsitu(insitu);
208 Table& tout = out->table();
209 ArrayColumn<Float> specColOut(tout,"SPECTRA");
210 ArrayColumn<uChar> flagColOut(tout,"FLAGTRA");
211 ArrayColumn<Float> tsysColOut(tout,"TSYS");
[1140]212 ScalarColumn<uInt> scanColOut(tout,"SCANNO");
[1225]213 ScalarColumn<Double> intColOut(tout, "INTERVAL");
[1140]214 Table tmp = in->table().sort("BEAMNO");
[1069]215 Block<String> cols(3);
216 cols[0] = String("BEAMNO");
217 cols[1] = String("IFNO");
218 cols[2] = String("POLNO");
[1078]219 if ( avmode == "SCAN") {
220 cols.resize(4);
221 cols[3] = String("SCANNO");
222 }
[1069]223 uInt outrowCount = 0;
224 uChar userflag = 1 << 7;
[1140]225 TableIterator iter(tmp, cols);
[1069]226 while (!iter.pastEnd()) {
227 Table subt = iter.table();
228 ROArrayColumn<Float> specCol, tsysCol;
229 ROArrayColumn<uChar> flagCol;
[1225]230 ROScalarColumn<Double> intCol(subt, "INTERVAL");
[1069]231 specCol.attach(subt,"SPECTRA");
232 flagCol.attach(subt,"FLAGTRA");
233 tsysCol.attach(subt,"TSYS");
234 tout.addRow();
235 TableCopy::copyRows(tout, subt, outrowCount, 0, 1);
[1140]236 if ( avmode != "SCAN") {
237 scanColOut.put(outrowCount, uInt(0));
238 }
[1069]239 Vector<Float> tmp;
240 specCol.get(0, tmp);
241 uInt nchan = tmp.nelements();
[1078]242 // have to do channel by channel here as MaskedArrMath
243 // doesn't have partialMedians
[1069]244 Vector<uChar> flags = flagCol.getColumn(Slicer(Slice(0)));
245 Vector<Float> outspec(nchan);
246 Vector<uChar> outflag(nchan,0);
247 Vector<Float> outtsys(1);/// @fixme when tsys is channel based
248 for (uInt i=0; i<nchan; ++i) {
249 Vector<Float> specs = specCol.getColumn(Slicer(Slice(i)));
250 MaskedArray<Float> ma = maskedArray(specs,flags);
251 outspec[i] = median(ma);
252 if ( allEQ(ma.getMask(), False) )
253 outflag[i] = userflag;// flag data
254 }
255 outtsys[0] = median(tsysCol.getColumn());
256 specColOut.put(outrowCount, outspec);
257 flagColOut.put(outrowCount, outflag);
258 tsysColOut.put(outrowCount, outtsys);
[1225]259 Double intsum = sum(intCol.getColumn());
260 intColOut.put(outrowCount, intsum);
[1069]261 ++outrowCount;
262 ++iter;
263 }
264 return out;
265}
266
[805]267CountedPtr< Scantable > STMath::getScantable(const CountedPtr< Scantable >& in,
268 bool droprows)
[185]269{
[805]270 if (insitu_) return in;
271 else {
272 // clone
273 Scantable* tabp = new Scantable(*in, Bool(droprows));
274 return CountedPtr<Scantable>(tabp);
[234]275 }
[805]276}
[234]277
[805]278CountedPtr< Scantable > STMath::unaryOperate( const CountedPtr< Scantable >& in,
279 float val,
280 const std::string& mode,
281 bool tsys )
282{
283 // modes are "ADD" and "MUL"
284 CountedPtr< Scantable > out = getScantable(in, false);
285 Table& tab = out->table();
286 ArrayColumn<Float> specCol(tab,"SPECTRA");
287 ArrayColumn<Float> tsysCol(tab,"TSYS");
288 for (uInt i=0; i<tab.nrow(); ++i) {
289 Vector<Float> spec;
290 Vector<Float> ts;
291 specCol.get(i, spec);
292 tsysCol.get(i, ts);
293 if (mode == "MUL") {
294 spec *= val;
295 specCol.put(i, spec);
296 if ( tsys ) {
297 ts *= val;
298 tsysCol.put(i, ts);
299 }
300 } else if ( mode == "ADD" ) {
301 spec += val;
302 specCol.put(i, spec);
303 if ( tsys ) {
304 ts += val;
305 tsysCol.put(i, ts);
306 }
307 }
[234]308 }
[805]309 return out;
310}
[234]311
[805]312MaskedArray<Float> STMath::maskedArray( const Vector<Float>& s,
313 const Vector<uChar>& f)
314{
315 Vector<Bool> mask;
316 mask.resize(f.shape());
317 convertArray(mask, f);
318 return MaskedArray<Float>(s,!mask);
319}
[248]320
[805]321Vector<uChar> STMath::flagsFromMA(const MaskedArray<Float>& ma)
322{
323 const Vector<Bool>& m = ma.getMask();
324 Vector<uChar> flags(m.shape());
325 convertArray(flags, !m);
326 return flags;
327}
[234]328
[1066]329CountedPtr< Scantable > STMath::autoQuotient( const CountedPtr< Scantable >& in,
330 const std::string & mode,
331 bool preserve )
[805]332{
333 /// @todo make other modes available
334 /// modes should be "nearest", "pair"
335 // make this operation non insitu
336 const Table& tin = in->table();
337 Table ons = tin(tin.col("SRCTYPE") == Int(0));
338 Table offs = tin(tin.col("SRCTYPE") == Int(1));
339 if ( offs.nrow() == 0 )
340 throw(AipsError("No 'off' scans present."));
341 // put all "on" scans into output table
[701]342
[805]343 bool insitu = insitu_;
344 setInsitu(false);
345 CountedPtr< Scantable > out = getScantable(in, true);
346 setInsitu(insitu);
347 Table& tout = out->table();
[248]348
[805]349 TableCopy::copyRows(tout, ons);
350 TableRow row(tout);
351 ROScalarColumn<Double> offtimeCol(offs, "TIME");
352 ArrayColumn<Float> outspecCol(tout, "SPECTRA");
353 ROArrayColumn<Float> outtsysCol(tout, "TSYS");
354 ArrayColumn<uChar> outflagCol(tout, "FLAGTRA");
355 for (uInt i=0; i < tout.nrow(); ++i) {
356 const TableRecord& rec = row.get(i);
357 Double ontime = rec.asDouble("TIME");
358 ROScalarColumn<Double> offtimeCol(offs, "TIME");
359 Double mindeltat = min(abs(offtimeCol.getColumn() - ontime));
[1255]360 // Timestamp may vary within a cycle ???!!!
361 // increase this by 0.5 sec in case of rounding errors...
362 // There might be a better way to do this.
363 mindeltat += 0.5;
364 Table sel = offs( abs(offs.col("TIME")-ontime) <= (mindeltat+0.5)
[805]365 && offs.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
366 && offs.col("IFNO") == Int(rec.asuInt("IFNO"))
367 && offs.col("POLNO") == Int(rec.asuInt("POLNO")) );
[780]368
[1255]369 if ( sel.nrow() < 1 ) {
370 throw(AipsError("No closest in time found... This could be a rounding "
371 "issue. Try quotient instead."));
372 }
[805]373 TableRow offrow(sel);
374 const TableRecord& offrec = offrow.get(0);//should only be one row
375 RORecordFieldPtr< Array<Float> > specoff(offrec, "SPECTRA");
376 RORecordFieldPtr< Array<Float> > tsysoff(offrec, "TSYS");
377 RORecordFieldPtr< Array<uChar> > flagoff(offrec, "FLAGTRA");
378 /// @fixme this assumes tsys is a scalar not vector
379 Float tsysoffscalar = (*tsysoff)(IPosition(1,0));
380 Vector<Float> specon, tsyson;
381 outtsysCol.get(i, tsyson);
382 outspecCol.get(i, specon);
383 Vector<uChar> flagon;
384 outflagCol.get(i, flagon);
385 MaskedArray<Float> mon = maskedArray(specon, flagon);
386 MaskedArray<Float> moff = maskedArray(*specoff, *flagoff);
387 MaskedArray<Float> quot = (tsysoffscalar * mon / moff);
388 if (preserve) {
389 quot -= tsysoffscalar;
390 } else {
391 quot -= tsyson[0];
[701]392 }
[805]393 outspecCol.put(i, quot.getArray());
394 outflagCol.put(i, flagsFromMA(quot));
395 }
[926]396 // renumber scanno
397 TableIterator it(tout, "SCANNO");
398 uInt i = 0;
399 while ( !it.pastEnd() ) {
400 Table t = it.table();
401 TableVector<uInt> vec(t, "SCANNO");
402 vec = i;
403 ++i;
404 ++it;
405 }
[805]406 return out;
407}
[234]408
[1066]409
410CountedPtr< Scantable > STMath::quotient( const CountedPtr< Scantable > & on,
411 const CountedPtr< Scantable > & off,
412 bool preserve )
413{
414 bool insitu = insitu_;
[1069]415 if ( ! on->conformant(*off) ) {
416 throw(AipsError("'on' and 'off' scantables are not conformant."));
417 }
[1066]418 setInsitu(false);
419 CountedPtr< Scantable > out = getScantable(on, false);
420 setInsitu(insitu);
421 Table& tout = out->table();
422 const Table& toff = off->table();
423 TableIterator sit(tout, "SCANNO");
424 TableIterator s2it(toff, "SCANNO");
425 while ( !sit.pastEnd() ) {
426 Table ton = sit.table();
427 TableRow row(ton);
428 Table t = s2it.table();
429 ArrayColumn<Float> outspecCol(ton, "SPECTRA");
430 ROArrayColumn<Float> outtsysCol(ton, "TSYS");
431 ArrayColumn<uChar> outflagCol(ton, "FLAGTRA");
432 for (uInt i=0; i < ton.nrow(); ++i) {
433 const TableRecord& rec = row.get(i);
434 Table offsel = t( t.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
435 && t.col("IFNO") == Int(rec.asuInt("IFNO"))
436 && t.col("POLNO") == Int(rec.asuInt("POLNO")) );
[1145]437 if ( offsel.nrow() == 0 )
438 throw AipsError("STMath::quotient: no matching off");
[1066]439 TableRow offrow(offsel);
440 const TableRecord& offrec = offrow.get(0);//should be ncycles - take first
441 RORecordFieldPtr< Array<Float> > specoff(offrec, "SPECTRA");
442 RORecordFieldPtr< Array<Float> > tsysoff(offrec, "TSYS");
443 RORecordFieldPtr< Array<uChar> > flagoff(offrec, "FLAGTRA");
444 Float tsysoffscalar = (*tsysoff)(IPosition(1,0));
445 Vector<Float> specon, tsyson;
446 outtsysCol.get(i, tsyson);
447 outspecCol.get(i, specon);
448 Vector<uChar> flagon;
449 outflagCol.get(i, flagon);
450 MaskedArray<Float> mon = maskedArray(specon, flagon);
451 MaskedArray<Float> moff = maskedArray(*specoff, *flagoff);
452 MaskedArray<Float> quot = (tsysoffscalar * mon / moff);
453 if (preserve) {
454 quot -= tsysoffscalar;
455 } else {
456 quot -= tsyson[0];
457 }
458 outspecCol.put(i, quot.getArray());
459 outflagCol.put(i, flagsFromMA(quot));
460 }
461 ++sit;
462 ++s2it;
463 // take the first off for each on scan which doesn't have a
464 // matching off scan
465 // non <= noff: matching pairs, non > noff matching pairs then first off
466 if ( s2it.pastEnd() ) s2it.reset();
467 }
468 return out;
469}
470
471
[805]472CountedPtr< Scantable > STMath::freqSwitch( const CountedPtr< Scantable >& in )
473{
474 // make copy or reference
475 CountedPtr< Scantable > out = getScantable(in, false);
476 Table& tout = out->table();
[1008]477 Block<String> cols(4);
[805]478 cols[0] = String("SCANNO");
[1008]479 cols[1] = String("CYCLENO");
480 cols[2] = String("BEAMNO");
481 cols[3] = String("POLNO");
[805]482 TableIterator iter(tout, cols);
483 while (!iter.pastEnd()) {
484 Table subt = iter.table();
485 // this should leave us with two rows for the two IFs....if not ignore
486 if (subt.nrow() != 2 ) {
487 continue;
[701]488 }
[1008]489 ArrayColumn<Float> specCol(subt, "SPECTRA");
490 ArrayColumn<Float> tsysCol(subt, "TSYS");
491 ArrayColumn<uChar> flagCol(subt, "FLAGTRA");
[805]492 Vector<Float> onspec,offspec, ontsys, offtsys;
493 Vector<uChar> onflag, offflag;
494 tsysCol.get(0, ontsys); tsysCol.get(1, offtsys);
495 specCol.get(0, onspec); specCol.get(1, offspec);
496 flagCol.get(0, onflag); flagCol.get(1, offflag);
497 MaskedArray<Float> on = maskedArray(onspec, onflag);
498 MaskedArray<Float> off = maskedArray(offspec, offflag);
499 MaskedArray<Float> oncopy = on.copy();
[248]500
[805]501 on /= off; on -= 1.0f;
502 on *= ontsys[0];
503 off /= oncopy; off -= 1.0f;
504 off *= offtsys[0];
505 specCol.put(0, on.getArray());
506 const Vector<Bool>& m0 = on.getMask();
507 Vector<uChar> flags0(m0.shape());
508 convertArray(flags0, !m0);
509 flagCol.put(0, flags0);
[234]510
[805]511 specCol.put(1, off.getArray());
512 const Vector<Bool>& m1 = off.getMask();
513 Vector<uChar> flags1(m1.shape());
514 convertArray(flags1, !m1);
515 flagCol.put(1, flags1);
[867]516 ++iter;
[130]517 }
[780]518
[805]519 return out;
[9]520}
[48]521
[805]522std::vector< float > STMath::statistic( const CountedPtr< Scantable > & in,
523 const std::vector< bool > & mask,
524 const std::string& which )
[130]525{
526
[805]527 Vector<Bool> m(mask);
528 const Table& tab = in->table();
529 ROArrayColumn<Float> specCol(tab, "SPECTRA");
530 ROArrayColumn<uChar> flagCol(tab, "FLAGTRA");
531 std::vector<float> out;
532 for (uInt i=0; i < tab.nrow(); ++i ) {
533 Vector<Float> spec; specCol.get(i, spec);
[867]534 Vector<uChar> flag; flagCol.get(i, flag);
535 MaskedArray<Float> ma = maskedArray(spec, flag);
536 float outstat = 0.0;
[805]537 if ( spec.nelements() == m.nelements() ) {
538 outstat = mathutil::statistics(which, ma(m));
539 } else {
540 outstat = mathutil::statistics(which, ma);
541 }
542 out.push_back(outstat);
[234]543 }
[805]544 return out;
[130]545}
546
[805]547CountedPtr< Scantable > STMath::bin( const CountedPtr< Scantable > & in,
548 int width )
[144]549{
[841]550 if ( !in->getSelection().empty() ) throw(AipsError("Can't bin subset of the data."));
[805]551 CountedPtr< Scantable > out = getScantable(in, false);
552 Table& tout = out->table();
553 out->frequencies().rescale(width, "BIN");
554 ArrayColumn<Float> specCol(tout, "SPECTRA");
555 ArrayColumn<uChar> flagCol(tout, "FLAGTRA");
556 for (uInt i=0; i < tout.nrow(); ++i ) {
557 MaskedArray<Float> main = maskedArray(specCol(i), flagCol(i));
558 MaskedArray<Float> maout;
559 LatticeUtilities::bin(maout, main, 0, Int(width));
560 /// @todo implement channel based tsys binning
561 specCol.put(i, maout.getArray());
562 flagCol.put(i, flagsFromMA(maout));
563 // take only the first binned spectrum's length for the deprecated
564 // global header item nChan
565 if (i==0) tout.rwKeywordSet().define(String("nChan"),
566 Int(maout.getArray().nelements()));
[169]567 }
[805]568 return out;
[146]569}
570
[805]571CountedPtr< Scantable > STMath::resample( const CountedPtr< Scantable >& in,
572 const std::string& method,
573 float width )
[299]574//
575// Should add the possibility of width being specified in km/s. This means
[780]576// that for each freqID (SpectralCoordinate) we will need to convert to an
577// average channel width (say at the reference pixel). Then we would need
578// to be careful to make sure each spectrum (of different freqID)
[299]579// is the same length.
580//
581{
[996]582 //InterpolateArray1D<Double,Float>::InterpolationMethod interp;
[805]583 Int interpMethod(stringToIMethod(method));
[299]584
[805]585 CountedPtr< Scantable > out = getScantable(in, false);
586 Table& tout = out->table();
[299]587
588// Resample SpectralCoordinates (one per freqID)
[805]589 out->frequencies().rescale(width, "RESAMPLE");
590 TableIterator iter(tout, "IFNO");
591 TableRow row(tout);
592 while ( !iter.pastEnd() ) {
593 Table tab = iter.table();
594 ArrayColumn<Float> specCol(tab, "SPECTRA");
595 //ArrayColumn<Float> tsysCol(tout, "TSYS");
596 ArrayColumn<uChar> flagCol(tab, "FLAGTRA");
597 Vector<Float> spec;
598 Vector<uChar> flag;
599 specCol.get(0,spec); // the number of channels should be constant per IF
600 uInt nChanIn = spec.nelements();
601 Vector<Float> xIn(nChanIn); indgen(xIn);
602 Int fac = Int(nChanIn/width);
603 Vector<Float> xOut(fac+10); // 10 to be safe - resize later
604 uInt k = 0;
605 Float x = 0.0;
606 while (x < Float(nChanIn) ) {
607 xOut(k) = x;
608 k++;
609 x += width;
610 }
611 uInt nChanOut = k;
612 xOut.resize(nChanOut, True);
613 // process all rows for this IFNO
614 Vector<Float> specOut;
615 Vector<Bool> maskOut;
616 Vector<uChar> flagOut;
617 for (uInt i=0; i < tab.nrow(); ++i) {
618 specCol.get(i, spec);
619 flagCol.get(i, flag);
620 Vector<Bool> mask(flag.nelements());
621 convertArray(mask, flag);
[299]622
[805]623 IPosition shapeIn(spec.shape());
624 //sh.nchan = nChanOut;
625 InterpolateArray1D<Float,Float>::interpolate(specOut, maskOut, xOut,
626 xIn, spec, mask,
627 interpMethod, True, True);
628 /// @todo do the same for channel based Tsys
629 flagOut.resize(maskOut.nelements());
630 convertArray(flagOut, maskOut);
631 specCol.put(i, specOut);
632 flagCol.put(i, flagOut);
633 }
634 ++iter;
[299]635 }
636
[805]637 return out;
638}
[299]639
[805]640STMath::imethod STMath::stringToIMethod(const std::string& in)
641{
642 static STMath::imap lookup;
[299]643
[805]644 // initialize the lookup table if necessary
645 if ( lookup.empty() ) {
[926]646 lookup["nearest"] = InterpolateArray1D<Double,Float>::nearestNeighbour;
647 lookup["linear"] = InterpolateArray1D<Double,Float>::linear;
648 lookup["cubic"] = InterpolateArray1D<Double,Float>::cubic;
649 lookup["spline"] = InterpolateArray1D<Double,Float>::spline;
[299]650 }
651
[805]652 STMath::imap::const_iterator iter = lookup.find(in);
[299]653
[805]654 if ( lookup.end() == iter ) {
655 std::string message = in;
656 message += " is not a valid interpolation mode";
657 throw(AipsError(message));
[299]658 }
[805]659 return iter->second;
[299]660}
661
[805]662WeightType STMath::stringToWeight(const std::string& in)
[146]663{
[805]664 static std::map<std::string, WeightType> lookup;
[434]665
[805]666 // initialize the lookup table if necessary
667 if ( lookup.empty() ) {
668 lookup["NONE"] = asap::NONE;
669 lookup["TINT"] = asap::TINT;
670 lookup["TINTSYS"] = asap::TINTSYS;
671 lookup["TSYS"] = asap::TSYS;
672 lookup["VAR"] = asap::VAR;
673 }
[434]674
[805]675 std::map<std::string, WeightType>::const_iterator iter = lookup.find(in);
[294]676
[805]677 if ( lookup.end() == iter ) {
678 std::string message = in;
679 message += " is not a valid weighting mode";
680 throw(AipsError(message));
681 }
682 return iter->second;
[146]683}
684
[805]685CountedPtr< Scantable > STMath::gainElevation( const CountedPtr< Scantable >& in,
[867]686 const vector< float > & coeff,
[805]687 const std::string & filename,
688 const std::string& method)
[165]689{
[805]690 // Get elevation data from Scantable and convert to degrees
691 CountedPtr< Scantable > out = getScantable(in, false);
[926]692 Table& tab = out->table();
[805]693 ROScalarColumn<Float> elev(tab, "ELEVATION");
694 Vector<Float> x = elev.getColumn();
695 x *= Float(180 / C::pi); // Degrees
[165]696
[867]697 Vector<Float> coeffs(coeff);
[805]698 const uInt nc = coeffs.nelements();
699 if ( filename.length() > 0 && nc > 0 ) {
700 throw(AipsError("You must choose either polynomial coefficients or an ascii file, not both"));
[315]701 }
[165]702
[805]703 // Correct
704 if ( nc > 0 || filename.length() == 0 ) {
705 // Find instrument
706 Bool throwit = True;
707 Instrument inst =
[878]708 STAttr::convertInstrument(tab.keywordSet().asString("AntennaName"),
[805]709 throwit);
[165]710
[805]711 // Set polynomial
712 Polynomial<Float>* ppoly = 0;
713 Vector<Float> coeff;
714 String msg;
715 if ( nc > 0 ) {
716 ppoly = new Polynomial<Float>(nc);
717 coeff = coeffs;
718 msg = String("user");
719 } else {
[878]720 STAttr sdAttr;
[805]721 coeff = sdAttr.gainElevationPoly(inst);
722 ppoly = new Polynomial<Float>(3);
723 msg = String("built in");
724 }
[532]725
[805]726 if ( coeff.nelements() > 0 ) {
727 ppoly->setCoefficients(coeff);
728 } else {
729 delete ppoly;
730 throw(AipsError("There is no known gain-elevation polynomial known for this instrument"));
731 }
732 ostringstream oss;
733 oss << "Making polynomial correction with " << msg << " coefficients:" << endl;
734 oss << " " << coeff;
735 pushLog(String(oss));
736 const uInt nrow = tab.nrow();
737 Vector<Float> factor(nrow);
738 for ( uInt i=0; i < nrow; ++i ) {
739 factor[i] = 1.0 / (*ppoly)(x[i]);
740 }
741 delete ppoly;
742 scaleByVector(tab, factor, true);
[532]743
[805]744 } else {
745 // Read and correct
746 pushLog("Making correction from ascii Table");
747 scaleFromAsciiTable(tab, filename, method, x, true);
[532]748 }
[805]749 return out;
750}
[165]751
[805]752void STMath::scaleFromAsciiTable(Table& in, const std::string& filename,
753 const std::string& method,
754 const Vector<Float>& xout, bool dotsys)
755{
[165]756
[805]757// Read gain-elevation ascii file data into a Table.
[165]758
[805]759 String formatString;
760 Table tbl = readAsciiTable(formatString, Table::Memory, filename, "", "", False);
761 scaleFromTable(in, tbl, method, xout, dotsys);
762}
[165]763
[805]764void STMath::scaleFromTable(Table& in,
765 const Table& table,
766 const std::string& method,
767 const Vector<Float>& xout, bool dotsys)
768{
[780]769
[805]770 ROScalarColumn<Float> geElCol(table, "ELEVATION");
771 ROScalarColumn<Float> geFacCol(table, "FACTOR");
772 Vector<Float> xin = geElCol.getColumn();
773 Vector<Float> yin = geFacCol.getColumn();
774 Vector<Bool> maskin(xin.nelements(),True);
[165]775
[805]776 // Interpolate (and extrapolate) with desired method
[532]777
[996]778 InterpolateArray1D<Double,Float>::InterpolationMethod interp = stringToIMethod(method);
[165]779
[805]780 Vector<Float> yout;
781 Vector<Bool> maskout;
782 InterpolateArray1D<Float,Float>::interpolate(yout, maskout, xout,
[996]783 xin, yin, maskin, interp,
[805]784 True, True);
[165]785
[805]786 scaleByVector(in, Float(1.0)/yout, dotsys);
[165]787}
[167]788
[805]789void STMath::scaleByVector( Table& in,
790 const Vector< Float >& factor,
791 bool dotsys )
[177]792{
[805]793 uInt nrow = in.nrow();
794 if ( factor.nelements() != nrow ) {
795 throw(AipsError("factors.nelements() != table.nelements()"));
796 }
797 ArrayColumn<Float> specCol(in, "SPECTRA");
798 ArrayColumn<uChar> flagCol(in, "FLAGTRA");
799 ArrayColumn<Float> tsysCol(in, "TSYS");
800 for (uInt i=0; i < nrow; ++i) {
801 MaskedArray<Float> ma = maskedArray(specCol(i), flagCol(i));
802 ma *= factor[i];
803 specCol.put(i, ma.getArray());
804 flagCol.put(i, flagsFromMA(ma));
805 if ( dotsys ) {
[926]806 Vector<Float> tsys = tsysCol(i);
[805]807 tsys *= factor[i];
[926]808 tsysCol.put(i,tsys);
[805]809 }
810 }
[177]811}
812
[805]813CountedPtr< Scantable > STMath::convertFlux( const CountedPtr< Scantable >& in,
814 float d, float etaap,
815 float jyperk )
[221]816{
[805]817 CountedPtr< Scantable > out = getScantable(in, false);
818 Table& tab = in->table();
819 Unit fluxUnit(tab.keywordSet().asString("FluxUnit"));
[221]820 Unit K(String("K"));
821 Unit JY(String("Jy"));
[701]822
[805]823 bool tokelvin = true;
824 Double cfac = 1.0;
[716]825
[805]826 if ( fluxUnit == JY ) {
[716]827 pushLog("Converting to K");
[701]828 Quantum<Double> t(1.0,fluxUnit);
829 Quantum<Double> t2 = t.get(JY);
[805]830 cfac = (t2 / t).getValue(); // value to Jy
[780]831
[805]832 tokelvin = true;
833 out->setFluxUnit("K");
834 } else if ( fluxUnit == K ) {
[716]835 pushLog("Converting to Jy");
[701]836 Quantum<Double> t(1.0,fluxUnit);
837 Quantum<Double> t2 = t.get(K);
[805]838 cfac = (t2 / t).getValue(); // value to K
[780]839
[805]840 tokelvin = false;
841 out->setFluxUnit("Jy");
[221]842 } else {
[701]843 throw(AipsError("Unrecognized brightness units in Table - must be consistent with Jy or K"));
[221]844 }
[701]845 // Make sure input values are converted to either Jy or K first...
[805]846 Float factor = cfac;
[221]847
[701]848 // Select method
[805]849 if (jyperk > 0.0) {
850 factor *= jyperk;
851 if ( tokelvin ) factor = 1.0 / jyperk;
[716]852 ostringstream oss;
[805]853 oss << "Jy/K = " << jyperk;
[716]854 pushLog(String(oss));
[805]855 Vector<Float> factors(tab.nrow(), factor);
856 scaleByVector(tab,factors, false);
857 } else if ( etaap > 0.0) {
858 Instrument inst =
[878]859 STAttr::convertInstrument(tab.keywordSet().asString("AntennaName"), True);
860 STAttr sda;
[805]861 if (d < 0) d = sda.diameter(inst);
[996]862 jyperk = STAttr::findJyPerK(etaap, d);
[716]863 ostringstream oss;
[805]864 oss << "Jy/K = " << jyperk;
[716]865 pushLog(String(oss));
[805]866 factor *= jyperk;
867 if ( tokelvin ) {
[701]868 factor = 1.0 / factor;
869 }
[805]870 Vector<Float> factors(tab.nrow(), factor);
871 scaleByVector(tab, factors, False);
[354]872 } else {
[780]873
[701]874 // OK now we must deal with automatic look up of values.
875 // We must also deal with the fact that the factors need
876 // to be computed per IF and may be different and may
877 // change per integration.
[780]878
[716]879 pushLog("Looking up conversion factors");
[805]880 convertBrightnessUnits(out, tokelvin, cfac);
[701]881 }
[805]882
883 return out;
[221]884}
885
[805]886void STMath::convertBrightnessUnits( CountedPtr<Scantable>& in,
887 bool tokelvin, float cfac )
[227]888{
[805]889 Table& table = in->table();
890 Instrument inst =
[878]891 STAttr::convertInstrument(table.keywordSet().asString("AntennaName"), True);
[805]892 TableIterator iter(table, "FREQ_ID");
893 STFrequencies stfreqs = in->frequencies();
[878]894 STAttr sdAtt;
[805]895 while (!iter.pastEnd()) {
896 Table tab = iter.table();
897 ArrayColumn<Float> specCol(tab, "SPECTRA");
898 ArrayColumn<uChar> flagCol(tab, "FLAGTRA");
899 ROScalarColumn<uInt> freqidCol(tab, "FREQ_ID");
900 MEpoch::ROScalarColumn timeCol(tab, "TIME");
[234]901
[805]902 uInt freqid; freqidCol.get(0, freqid);
903 Vector<Float> tmpspec; specCol.get(0, tmpspec);
[878]904 // STAttr.JyPerK has a Vector interface... change sometime.
[805]905 Vector<Float> freqs(1,stfreqs.getRefFreq(freqid, tmpspec.nelements()));
906 for ( uInt i=0; i<tab.nrow(); ++i) {
907 Float jyperk = (sdAtt.JyPerK(inst, timeCol(i), freqs))[0];
908 Float factor = cfac * jyperk;
909 if ( tokelvin ) factor = Float(1.0) / factor;
910 MaskedArray<Float> ma = maskedArray(specCol(i), flagCol(i));
911 ma *= factor;
912 specCol.put(i, ma.getArray());
913 flagCol.put(i, flagsFromMA(ma));
914 }
[867]915 ++iter;
[234]916 }
[230]917}
[227]918
[805]919CountedPtr< Scantable > STMath::opacity( const CountedPtr< Scantable > & in,
920 float tau )
[234]921{
[805]922 CountedPtr< Scantable > out = getScantable(in, false);
[926]923
924 Table tab = out->table();
[234]925 ROScalarColumn<Float> elev(tab, "ELEVATION");
[805]926 ArrayColumn<Float> specCol(tab, "SPECTRA");
927 ArrayColumn<uChar> flagCol(tab, "FLAGTRA");
928 for ( uInt i=0; i<tab.nrow(); ++i) {
929 Float zdist = Float(C::pi_2) - elev(i);
930 Float factor = exp(tau)/cos(zdist);
[926]931 MaskedArray<Float> ma = maskedArray(specCol(i), flagCol(i));
[805]932 ma *= factor;
933 specCol.put(i, ma.getArray());
934 flagCol.put(i, flagsFromMA(ma));
[234]935 }
[805]936 return out;
[234]937}
938
[805]939CountedPtr< Scantable > STMath::smooth( const CountedPtr< Scantable >& in,
940 const std::string& kernel, float width )
[457]941{
[805]942 CountedPtr< Scantable > out = getScantable(in, false);
[1033]943 Table& table = out->table();
[805]944 VectorKernel::KernelTypes type = VectorKernel::toKernelType(kernel);
945 // same IFNO should have same no of channels
946 // this saves overhead
947 TableIterator iter(table, "IFNO");
948 while (!iter.pastEnd()) {
949 Table tab = iter.table();
950 ArrayColumn<Float> specCol(tab, "SPECTRA");
951 ArrayColumn<uChar> flagCol(tab, "FLAGTRA");
952 Vector<Float> tmpspec; specCol.get(0, tmpspec);
953 uInt nchan = tmpspec.nelements();
954 Vector<Float> kvec = VectorKernel::make(type, width, nchan, True, False);
955 Convolver<Float> conv(kvec, IPosition(1,nchan));
956 Vector<Float> spec;
957 Vector<uChar> flag;
958 for ( uInt i=0; i<tab.nrow(); ++i) {
959 specCol.get(i, spec);
960 flagCol.get(i, flag);
961 Vector<Bool> mask(flag.nelements());
962 convertArray(mask, flag);
963 Vector<Float> specout;
964 if ( type == VectorKernel::HANNING ) {
965 Vector<Bool> maskout;
[1033]966 mathutil::hanning(specout, maskout, spec , !mask);
967 convertArray(flag, !maskout);
[805]968 flagCol.put(i, flag);
[1033]969 specCol.put(i, specout);
970 } else {
[805]971 mathutil::replaceMaskByZero(specout, mask);
972 conv.linearConv(specout, spec);
[1033]973 specCol.put(i, specout);
[354]974 }
[805]975 }
[867]976 ++iter;
[701]977 }
[805]978 return out;
[701]979}
[841]980
981CountedPtr< Scantable >
982 STMath::merge( const std::vector< CountedPtr < Scantable > >& in )
983{
984 if ( in.size() < 2 ) {
[862]985 throw(AipsError("Need at least two scantables to perform a merge."));
[841]986 }
987 std::vector<CountedPtr < Scantable > >::const_iterator it = in.begin();
988 bool insitu = insitu_;
989 setInsitu(false);
[862]990 CountedPtr< Scantable > out = getScantable(*it, false);
[841]991 setInsitu(insitu);
992 Table& tout = out->table();
993 ScalarColumn<uInt> freqidcol(tout,"FREQ_ID"), molidcol(tout, "MOLECULE_ID");
[917]994 ScalarColumn<uInt> scannocol(tout,"SCANNO"), focusidcol(tout,"FOCUS_ID");
995 // Renumber SCANNO to be 0-based
[926]996 Vector<uInt> scannos = scannocol.getColumn();
997 uInt offset = min(scannos);
[917]998 scannos -= offset;
[926]999 scannocol.putColumn(scannos);
1000 uInt newscanno = max(scannos)+1;
[862]1001 ++it;
[841]1002 while ( it != in.end() ){
1003 if ( ! (*it)->conformant(*out) ) {
1004 // log message: "ignoring scantable i, as it isn't
1005 // conformant with the other(s)"
1006 cerr << "oh oh" << endl;
1007 ++it;
1008 continue;
1009 }
[862]1010 out->appendToHistoryTable((*it)->history());
[841]1011 const Table& tab = (*it)->table();
1012 TableIterator scanit(tab, "SCANNO");
1013 while (!scanit.pastEnd()) {
1014 TableIterator freqit(scanit.table(), "FREQ_ID");
1015 while ( !freqit.pastEnd() ) {
1016 Table thetab = freqit.table();
1017 uInt nrow = tout.nrow();
1018 //tout.addRow(thetab.nrow());
1019 TableCopy::copyRows(tout, thetab, nrow, 0, thetab.nrow());
1020 ROTableRow row(thetab);
1021 for ( uInt i=0; i<thetab.nrow(); ++i) {
1022 uInt k = nrow+i;
1023 scannocol.put(k, newscanno);
1024 const TableRecord& rec = row.get(i);
1025 Double rv,rp,inc;
1026 (*it)->frequencies().getEntry(rp, rv, inc, rec.asuInt("FREQ_ID"));
1027 uInt id;
1028 id = out->frequencies().addEntry(rp, rv, inc);
1029 freqidcol.put(k,id);
1030 String name,fname;Double rf;
1031 (*it)->molecules().getEntry(rf, name, fname, rec.asuInt("MOLECULE_ID"));
1032 id = out->molecules().addEntry(rf, name, fname);
1033 molidcol.put(k, id);
[961]1034 Float frot,fax,ftan,fhand,fmount,fuser, fxy, fxyp;
1035 (*it)->focus().getEntry(fax, ftan, frot, fhand,
1036 fmount,fuser, fxy, fxyp,
1037 rec.asuInt("FOCUS_ID"));
1038 id = out->focus().addEntry(fax, ftan, frot, fhand,
1039 fmount,fuser, fxy, fxyp);
[841]1040 focusidcol.put(k, id);
1041 }
1042 ++freqit;
1043 }
1044 ++newscanno;
1045 ++scanit;
1046 }
1047 ++it;
1048 }
1049 return out;
1050}
[896]1051
1052CountedPtr< Scantable >
1053 STMath::invertPhase( const CountedPtr < Scantable >& in )
1054{
[996]1055 return applyToPol(in, &STPol::invertPhase, Float(0.0));
[896]1056}
1057
1058CountedPtr< Scantable >
1059 STMath::rotateXYPhase( const CountedPtr < Scantable >& in, float phase )
1060{
1061 return applyToPol(in, &STPol::rotatePhase, Float(phase));
1062}
1063
1064CountedPtr< Scantable >
1065 STMath::rotateLinPolPhase( const CountedPtr < Scantable >& in, float phase )
1066{
1067 return applyToPol(in, &STPol::rotateLinPolPhase, Float(phase));
1068}
1069
1070CountedPtr< Scantable > STMath::applyToPol( const CountedPtr<Scantable>& in,
1071 STPol::polOperation fptr,
1072 Float phase )
1073{
1074 CountedPtr< Scantable > out = getScantable(in, false);
1075 Table& tout = out->table();
1076 Block<String> cols(4);
1077 cols[0] = String("SCANNO");
1078 cols[1] = String("BEAMNO");
1079 cols[2] = String("IFNO");
1080 cols[3] = String("CYCLENO");
1081 TableIterator iter(tout, cols);
[1015]1082 STPol* stpol = STPol::getPolClass(out->factories_, out->getPolType() );
[896]1083 while (!iter.pastEnd()) {
1084 Table t = iter.table();
1085 ArrayColumn<Float> speccol(t, "SPECTRA");
[1015]1086 ScalarColumn<uInt> focidcol(t, "FOCUS_ID");
1087 ScalarColumn<Float> parancol(t, "PARANGLE");
[896]1088 Matrix<Float> pols = speccol.getColumn();
1089 try {
1090 stpol->setSpectra(pols);
[1015]1091 Float fang,fhand,parang;
1092 fang = in->focusTable_.getTotalFeedAngle(focidcol(0));
1093 fhand = in->focusTable_.getFeedHand(focidcol(0));
1094 parang = parancol(0);
1095 /// @todo re-enable this
1096 // disable total feed angle to support paralactifying Caswell style
1097 stpol->setPhaseCorrections(parang, -parang, fhand);
[896]1098 (stpol->*fptr)(phase);
1099 speccol.putColumn(stpol->getSpectra());
[1015]1100 Matrix<Float> tmp = stpol->getSpectra();
[896]1101 } catch (AipsError& e) {
1102 delete stpol;stpol=0;
1103 throw(e);
1104 }
1105 ++iter;
1106 }
[934]1107 delete stpol;stpol=0;
[896]1108 return out;
1109}
1110
1111CountedPtr< Scantable >
1112 STMath::swapPolarisations( const CountedPtr< Scantable > & in )
1113{
1114 CountedPtr< Scantable > out = getScantable(in, false);
1115 Table& tout = out->table();
1116 Table t0 = tout(tout.col("POLNO") == 0);
1117 Table t1 = tout(tout.col("POLNO") == 1);
1118 if ( t0.nrow() != t1.nrow() )
1119 throw(AipsError("Inconsistent number of polarisations"));
1120 ArrayColumn<Float> speccol0(t0, "SPECTRA");
1121 ArrayColumn<uChar> flagcol0(t0, "FLAGTRA");
1122 ArrayColumn<Float> speccol1(t1, "SPECTRA");
1123 ArrayColumn<uChar> flagcol1(t1, "FLAGTRA");
1124 Matrix<Float> s0 = speccol0.getColumn();
1125 Matrix<uChar> f0 = flagcol0.getColumn();
1126 speccol0.putColumn(speccol1.getColumn());
1127 flagcol0.putColumn(flagcol1.getColumn());
1128 speccol1.putColumn(s0);
1129 flagcol1.putColumn(f0);
1130 return out;
1131}
[917]1132
1133CountedPtr< Scantable >
[940]1134 STMath::averagePolarisations( const CountedPtr< Scantable > & in,
1135 const std::vector<bool>& mask,
1136 const std::string& weight )
1137{
[1226]1138 if (in->npol() < 2 )
[1222]1139 throw(AipsError("averagePolarisations can only be applied to two or more"
1140 "polarisations"));
[1010]1141 bool insitu = insitu_;
1142 setInsitu(false);
[1222]1143 CountedPtr< Scantable > pols = getScantable(in, true);
[1010]1144 setInsitu(insitu);
1145 Table& tout = pols->table();
[1222]1146 std::string taql = "SELECT FROM $1 WHERE POLNO IN [0,1]";
1147 Table tab = tableCommand(taql, in->table());
1148 if (tab.nrow() == 0 )
1149 throw(AipsError("Could not find any rows with POLNO==0 and POLNO==1"));
1150 TableCopy::copyRows(tout, tab);
[1145]1151 TableVector<uInt> vec(tout, "POLNO");
[940]1152 vec = 0;
[1145]1153 pols->table_.rwKeywordSet().define("nPol", Int(1));
[1227]1154 pols->table_.rwKeywordSet().define("POLTYPE", String("stokes"));
[1010]1155 std::vector<CountedPtr<Scantable> > vpols;
1156 vpols.push_back(pols);
[1224]1157 CountedPtr< Scantable > out = average(vpols, mask, weight, "SCAN");
[940]1158 return out;
1159}
1160
[1145]1161CountedPtr< Scantable >
1162 STMath::averageBeams( const CountedPtr< Scantable > & in,
1163 const std::vector<bool>& mask,
1164 const std::string& weight )
1165{
1166 bool insitu = insitu_;
1167 setInsitu(false);
1168 CountedPtr< Scantable > beams = getScantable(in, false);
1169 setInsitu(insitu);
1170 Table& tout = beams->table();
1171 // give all rows the same BEAMNO
1172 TableVector<uInt> vec(tout, "BEAMNO");
1173 vec = 0;
1174 beams->table_.rwKeywordSet().define("nBeam", Int(1));
1175 std::vector<CountedPtr<Scantable> > vbeams;
1176 vbeams.push_back(beams);
[1224]1177 CountedPtr< Scantable > out = average(vbeams, mask, weight, "SCAN");
[1145]1178 return out;
1179}
[940]1180
[1145]1181
[940]1182CountedPtr< Scantable >
[917]1183 asap::STMath::frequencyAlign( const CountedPtr< Scantable > & in,
1184 const std::string & refTime,
[926]1185 const std::string & method)
[917]1186{
[940]1187 // clone as this is not working insitu
1188 bool insitu = insitu_;
1189 setInsitu(false);
[917]1190 CountedPtr< Scantable > out = getScantable(in, false);
[940]1191 setInsitu(insitu);
[917]1192 Table& tout = out->table();
1193 // Get reference Epoch to time of first row or given String
1194 Unit DAY(String("d"));
1195 MEpoch::Ref epochRef(in->getTimeReference());
1196 MEpoch refEpoch;
1197 if (refTime.length()>0) {
1198 Quantum<Double> qt;
1199 if (MVTime::read(qt,refTime)) {
1200 MVEpoch mv(qt);
1201 refEpoch = MEpoch(mv, epochRef);
1202 } else {
1203 throw(AipsError("Invalid format for Epoch string"));
1204 }
1205 } else {
1206 refEpoch = in->timeCol_(0);
1207 }
1208 MPosition refPos = in->getAntennaPosition();
[940]1209
[996]1210 InterpolateArray1D<Double,Float>::InterpolationMethod interp = stringToIMethod(method);
[917]1211 // test if user frame is different to base frame
1212 if ( in->frequencies().getFrameString(true)
1213 == in->frequencies().getFrameString(false) ) {
[985]1214 throw(AipsError("Can't convert as no output frame has been set"
1215 " (use set_freqframe) or it is aligned already."));
[917]1216 }
1217 MFrequency::Types system = in->frequencies().getFrame();
[940]1218 MVTime mvt(refEpoch.getValue());
1219 String epochout = mvt.string(MVTime::YMD) + String(" (") + refEpoch.getRefString() + String(")");
1220 ostringstream oss;
1221 oss << "Aligned at reference Epoch " << epochout
1222 << " in frame " << MFrequency::showType(system);
1223 pushLog(String(oss));
[917]1224 // set up the iterator
[926]1225 Block<String> cols(4);
1226 // select by constant direction
[917]1227 cols[0] = String("SRCNAME");
1228 cols[1] = String("BEAMNO");
1229 // select by IF ( no of channels varies over this )
1230 cols[2] = String("IFNO");
[926]1231 // select by restfrequency
1232 cols[3] = String("MOLECULE_ID");
[917]1233 TableIterator iter(tout, cols);
[926]1234 while ( !iter.pastEnd() ) {
[917]1235 Table t = iter.table();
1236 MDirection::ROScalarColumn dirCol(t, "DIRECTION");
[926]1237 TableIterator fiter(t, "FREQ_ID");
[917]1238 // determine nchan from the first row. This should work as
[926]1239 // we are iterating over BEAMNO and IFNO // we should have constant direction
1240
[917]1241 ROArrayColumn<Float> sCol(t, "SPECTRA");
[926]1242 MDirection direction = dirCol(0);
[917]1243 uInt nchan = sCol(0).nelements();
[926]1244 while ( !fiter.pastEnd() ) {
1245 Table ftab = fiter.table();
1246 ScalarColumn<uInt> freqidCol(ftab, "FREQ_ID");
1247 // get the SpectralCoordinate for the freqid, which we are iterating over
1248 SpectralCoordinate sC = in->frequencies().getSpectralCoordinate(freqidCol(0));
1249 FrequencyAligner<Float> fa( sC, nchan, refEpoch,
1250 direction, refPos, system );
1251 // realign the SpectralCoordinate and put into the output Scantable
1252 Vector<String> units(1);
1253 units = String("Hz");
1254 Bool linear=True;
1255 SpectralCoordinate sc2 = fa.alignedSpectralCoordinate(linear);
1256 sc2.setWorldAxisUnits(units);
[934]1257 uInt id = out->frequencies().addEntry(sc2.referencePixel()[0],
1258 sc2.referenceValue()[0],
1259 sc2.increment()[0]);
1260 TableVector<uInt> tvec(ftab, "FREQ_ID");
1261 tvec = id;
[926]1262 // create the "global" abcissa for alignment with same FREQ_ID
1263 Vector<Double> abc(nchan);
[917]1264 Double w;
1265 for (uInt i=0; i<nchan; i++) {
1266 sC.toWorld(w,Double(i));
1267 abc[i] = w;
1268 }
[926]1269 // cache abcissa for same time stamps, so iterate over those
1270 TableIterator timeiter(ftab, "TIME");
1271 while ( !timeiter.pastEnd() ) {
1272 Table tab = timeiter.table();
1273 ArrayColumn<Float> specCol(tab, "SPECTRA");
1274 ArrayColumn<uChar> flagCol(tab, "FLAGTRA");
1275 MEpoch::ROScalarColumn timeCol(tab, "TIME");
1276 // use align abcissa cache after the first row
1277 bool first = true;
1278 // these rows should be just be POLNO
[996]1279 for (int i=0; i<int(tab.nrow()); ++i) {
[926]1280 // input values
1281 Vector<uChar> flag = flagCol(i);
1282 Vector<Bool> mask(flag.shape());
1283 Vector<Float> specOut, spec;
1284 spec = specCol(i);
1285 Vector<Bool> maskOut;Vector<uChar> flagOut;
1286 convertArray(mask, flag);
1287 // alignment
1288 Bool ok = fa.align(specOut, maskOut, abc, spec,
1289 mask, timeCol(i), !first,
1290 interp, False);
1291 // back into scantable
1292 flagOut.resize(maskOut.nelements());
1293 convertArray(flagOut, maskOut);
1294 flagCol.put(i, flagOut);
1295 specCol.put(i, specOut);
1296 // start abcissa caching
1297 first = false;
[917]1298 }
[926]1299 // next timestamp
1300 ++timeiter;
[917]1301 }
[940]1302 // next FREQ_ID
[926]1303 ++fiter;
[917]1304 }
1305 // next aligner
1306 ++iter;
1307 }
[940]1308 // set this afterwards to ensure we are doing insitu correctly.
1309 out->frequencies().setFrame(system, true);
[917]1310 return out;
1311}
[992]1312
1313CountedPtr<Scantable>
1314 asap::STMath::convertPolarisation( const CountedPtr<Scantable>& in,
1315 const std::string & newtype )
1316{
1317 if (in->npol() != 2 && in->npol() != 4)
1318 throw(AipsError("Can only convert two or four polarisations."));
1319 if ( in->getPolType() == newtype )
1320 throw(AipsError("No need to convert."));
[1000]1321 if ( ! in->selector_.empty() )
1322 throw(AipsError("Can only convert whole scantable. Unset the selection."));
[992]1323 bool insitu = insitu_;
1324 setInsitu(false);
1325 CountedPtr< Scantable > out = getScantable(in, true);
1326 setInsitu(insitu);
1327 Table& tout = out->table();
1328 tout.rwKeywordSet().define("POLTYPE", String(newtype));
1329
1330 Block<String> cols(4);
1331 cols[0] = "SCANNO";
1332 cols[1] = "CYCLENO";
1333 cols[2] = "BEAMNO";
1334 cols[3] = "IFNO";
1335 TableIterator it(in->originalTable_, cols);
1336 String basetype = in->getPolType();
1337 STPol* stpol = STPol::getPolClass(in->factories_, basetype);
1338 try {
1339 while ( !it.pastEnd() ) {
1340 Table tab = it.table();
1341 uInt row = tab.rowNumbers()[0];
1342 stpol->setSpectra(in->getPolMatrix(row));
1343 Float fang,fhand,parang;
1344 fang = in->focusTable_.getTotalFeedAngle(in->mfocusidCol_(row));
1345 fhand = in->focusTable_.getFeedHand(in->mfocusidCol_(row));
1346 parang = in->paraCol_(row);
1347 /// @todo re-enable this
1348 // disable total feed angle to support paralactifying Caswell style
1349 stpol->setPhaseCorrections(parang, -parang, fhand);
1350 Int npolout = 0;
1351 for (uInt i=0; i<tab.nrow(); ++i) {
1352 Vector<Float> outvec = stpol->getSpectrum(i, newtype);
1353 if ( outvec.nelements() > 0 ) {
1354 tout.addRow();
1355 TableCopy::copyRows(tout, tab, tout.nrow()-1, 0, 1);
1356 ArrayColumn<Float> sCol(tout,"SPECTRA");
1357 ScalarColumn<uInt> pCol(tout,"POLNO");
1358 sCol.put(tout.nrow()-1 ,outvec);
1359 pCol.put(tout.nrow()-1 ,uInt(npolout));
1360 npolout++;
1361 }
1362 }
1363 tout.rwKeywordSet().define("nPol", npolout);
1364 ++it;
1365 }
1366 } catch (AipsError& e) {
1367 delete stpol;
1368 throw(e);
1369 }
1370 delete stpol;
1371 return out;
1372}
[1066]1373
[1143]1374CountedPtr< Scantable >
[1140]1375 asap::STMath::mxExtract( const CountedPtr< Scantable > & in,
1376 const std::string & scantype )
1377{
1378 bool insitu = insitu_;
1379 setInsitu(false);
1380 CountedPtr< Scantable > out = getScantable(in, true);
1381 setInsitu(insitu);
1382 Table& tout = out->table();
1383 std::string taql = "SELECT FROM $1 WHERE BEAMNO != REFBEAMNO";
1384 if (scantype == "on") {
1385 taql = "SELECT FROM $1 WHERE BEAMNO == REFBEAMNO";
1386 }
1387 Table tab = tableCommand(taql, in->table());
1388 TableCopy::copyRows(tout, tab);
1389 if (scantype == "on") {
[1143]1390 // re-index SCANNO to 0
[1140]1391 TableVector<uInt> vec(tout, "SCANNO");
1392 vec = 0;
1393 }
1394 return out;
1395}
[1192]1396
1397CountedPtr< Scantable >
1398 asap::STMath::lagFlag( const CountedPtr< Scantable > & in,
[1199]1399 double frequency, double width )
[1192]1400{
1401 CountedPtr< Scantable > out = getScantable(in, false);
1402 Table& tout = out->table();
1403 TableIterator iter(tout, "FREQ_ID");
1404 FFTServer<Float,Complex> ffts;
1405 while ( !iter.pastEnd() ) {
1406 Table tab = iter.table();
1407 Double rp,rv,inc;
1408 ROTableRow row(tab);
1409 const TableRecord& rec = row.get(0);
1410 uInt freqid = rec.asuInt("FREQ_ID");
1411 out->frequencies().getEntry(rp, rv, inc, freqid);
1412 ArrayColumn<Float> specCol(tab, "SPECTRA");
1413 ArrayColumn<uChar> flagCol(tab, "FLAGTRA");
1414 for (int i=0; i<int(tab.nrow()); ++i) {
1415 Vector<Float> spec = specCol(i);
1416 Vector<uChar> flag = flagCol(i);
[1199]1417 Int lag0 = Int(spec.nelements()*abs(inc)/(frequency+width)+0.5);
1418 Int lag1 = Int(spec.nelements()*abs(inc)/(frequency-width)+0.5);
[1192]1419 for (int k=0; k < flag.nelements(); ++k ) {
1420 if (flag[k] > 0) {
1421 spec[k] = 0.0;
1422 }
1423 }
1424 Vector<Complex> lags;
[1204]1425 ffts.fft0(lags, spec);
[1199]1426 Int start = max(0, lag0);
1427 Int end = min(Int(lags.nelements()-1), lag1);
[1192]1428 if (start == end) {
1429 lags[start] = Complex(0.0);
1430 } else {
1431 for (int j=start; j <=end ;++j) {
1432 lags[j] = Complex(0.0);
1433 }
1434 }
[1204]1435 ffts.fft0(spec, lags);
[1192]1436 specCol.put(i, spec);
1437 }
1438 ++iter;
1439 }
1440 return out;
1441}
Note: See TracBrowser for help on using the repository browser.