source: branches/alma/src/Scantable.cpp@ 1702

Last change on this file since 1702 was 1700, checked in by WataruKawasaki, 15 years ago

New Development: Yes

JIRA Issue: Yes (CAS-1800 + CAS-1807)

Ready to Release: Yes

Interface Changes: Yes

What Interface Changed: added parameters fitfunc for sdfit and clip, clipmaxmin, clipoutside for sdflag

Test Programs:

Put in Release Notes: No

Module(s): sdfit, sdflag

Description: Added a parameter for enabling Lorentzian line fitting with sdfit, and parameters for y-axis clipping with sdflag. Also 4 files for Lorentzian function class are (Lorentzian1D*) added.


  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 51.8 KB
Line 
1//
2// C++ Implementation: Scantable
3//
4// Description:
5//
6//
7// Author: Malte Marquarding <asap@atnf.csiro.au>, (C) 2005
8//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
12#include <map>
13#include <fstream>
14
15#include <casa/aips.h>
16#include <casa/iostream.h>
17#include <casa/iomanip.h>
18#include <casa/OS/Path.h>
19#include <casa/OS/File.h>
20#include <casa/Arrays/Array.h>
21#include <casa/Arrays/ArrayMath.h>
22#include <casa/Arrays/MaskArrMath.h>
23#include <casa/Arrays/ArrayLogical.h>
24#include <casa/Arrays/ArrayAccessor.h>
25#include <casa/Arrays/Vector.h>
26#include <casa/Arrays/VectorSTLIterator.h>
27#include <casa/Arrays/Slice.h>
28#include <casa/BasicMath/Math.h>
29#include <casa/BasicSL/Constants.h>
30#include <casa/Quanta/MVAngle.h>
31#include <casa/Containers/RecordField.h>
32#include <casa/Utilities/GenSort.h>
33#include <casa/Logging/LogIO.h>
34
35#include <tables/Tables/TableParse.h>
36#include <tables/Tables/TableDesc.h>
37#include <tables/Tables/TableCopy.h>
38#include <tables/Tables/SetupNewTab.h>
39#include <tables/Tables/ScaColDesc.h>
40#include <tables/Tables/ArrColDesc.h>
41#include <tables/Tables/TableRow.h>
42#include <tables/Tables/TableVector.h>
43#include <tables/Tables/TableIter.h>
44
45#include <tables/Tables/ExprNode.h>
46#include <tables/Tables/TableRecord.h>
47#include <casa/Quanta/MVTime.h>
48#include <casa/Quanta/MVAngle.h>
49#include <measures/Measures/MeasRef.h>
50#include <measures/Measures/MeasTable.h>
51// needed to avoid error in .tcc
52#include <measures/Measures/MCDirection.h>
53//
54#include <measures/Measures/MDirection.h>
55#include <measures/Measures/MFrequency.h>
56#include <measures/Measures/MEpoch.h>
57#include <measures/TableMeasures/TableMeasRefDesc.h>
58#include <measures/TableMeasures/TableMeasValueDesc.h>
59#include <measures/TableMeasures/TableMeasDesc.h>
60#include <measures/TableMeasures/ScalarMeasColumn.h>
61#include <coordinates/Coordinates/CoordinateUtil.h>
62
63#include "Scantable.h"
64#include "STPolLinear.h"
65#include "STPolCircular.h"
66#include "STPolStokes.h"
67#include "STAttr.h"
68#include "MathUtils.h"
69
70using namespace casa;
71
72namespace asap {
73
74std::map<std::string, STPol::STPolFactory *> Scantable::factories_;
75
76void Scantable::initFactories() {
77 if ( factories_.empty() ) {
78 Scantable::factories_["linear"] = &STPolLinear::myFactory;
79 Scantable::factories_["circular"] = &STPolCircular::myFactory;
80 Scantable::factories_["stokes"] = &STPolStokes::myFactory;
81 }
82}
83
84Scantable::Scantable(Table::TableType ttype) :
85 type_(ttype)
86{
87 initFactories();
88 setupMainTable();
89 freqTable_ = STFrequencies(*this);
90 table_.rwKeywordSet().defineTable("FREQUENCIES", freqTable_.table());
91 weatherTable_ = STWeather(*this);
92 table_.rwKeywordSet().defineTable("WEATHER", weatherTable_.table());
93 focusTable_ = STFocus(*this);
94 table_.rwKeywordSet().defineTable("FOCUS", focusTable_.table());
95 tcalTable_ = STTcal(*this);
96 table_.rwKeywordSet().defineTable("TCAL", tcalTable_.table());
97 moleculeTable_ = STMolecules(*this);
98 table_.rwKeywordSet().defineTable("MOLECULES", moleculeTable_.table());
99 historyTable_ = STHistory(*this);
100 table_.rwKeywordSet().defineTable("HISTORY", historyTable_.table());
101 fitTable_ = STFit(*this);
102 table_.rwKeywordSet().defineTable("FIT", fitTable_.table());
103 originalTable_ = table_;
104 attach();
105}
106
107Scantable::Scantable(const std::string& name, Table::TableType ttype) :
108 type_(ttype)
109{
110 initFactories();
111
112 Table tab(name, Table::Update);
113 uInt version = tab.keywordSet().asuInt("VERSION");
114 if (version != version_) {
115 throw(AipsError("Unsupported version of ASAP file."));
116 }
117 if ( type_ == Table::Memory ) {
118 table_ = tab.copyToMemoryTable(generateName());
119 } else {
120 table_ = tab;
121 }
122
123 attachSubtables();
124 originalTable_ = table_;
125 attach();
126}
127/*
128Scantable::Scantable(const std::string& name, Table::TableType ttype) :
129 type_(ttype)
130{
131 initFactories();
132 Table tab(name, Table::Update);
133 uInt version = tab.keywordSet().asuInt("VERSION");
134 if (version != version_) {
135 throw(AipsError("Unsupported version of ASAP file."));
136 }
137 if ( type_ == Table::Memory ) {
138 table_ = tab.copyToMemoryTable(generateName());
139 } else {
140 table_ = tab;
141 }
142
143 attachSubtables();
144 originalTable_ = table_;
145 attach();
146}
147*/
148
149Scantable::Scantable( const Scantable& other, bool clear )
150{
151 // with or without data
152 String newname = String(generateName());
153 type_ = other.table_.tableType();
154 if ( other.table_.tableType() == Table::Memory ) {
155 if ( clear ) {
156 table_ = TableCopy::makeEmptyMemoryTable(newname,
157 other.table_, True);
158 } else
159 table_ = other.table_.copyToMemoryTable(newname);
160 } else {
161 other.table_.deepCopy(newname, Table::New, False,
162 other.table_.endianFormat(),
163 Bool(clear));
164 table_ = Table(newname, Table::Update);
165 table_.markForDelete();
166 }
167 /// @todo reindex SCANNO, recompute nbeam, nif, npol
168 if ( clear ) copySubtables(other);
169 attachSubtables();
170 originalTable_ = table_;
171 attach();
172}
173
174void Scantable::copySubtables(const Scantable& other) {
175 Table t = table_.rwKeywordSet().asTable("FREQUENCIES");
176 TableCopy::copyRows(t, other.freqTable_.table());
177 t = table_.rwKeywordSet().asTable("FOCUS");
178 TableCopy::copyRows(t, other.focusTable_.table());
179 t = table_.rwKeywordSet().asTable("WEATHER");
180 TableCopy::copyRows(t, other.weatherTable_.table());
181 t = table_.rwKeywordSet().asTable("TCAL");
182 TableCopy::copyRows(t, other.tcalTable_.table());
183 t = table_.rwKeywordSet().asTable("MOLECULES");
184 TableCopy::copyRows(t, other.moleculeTable_.table());
185 t = table_.rwKeywordSet().asTable("HISTORY");
186 TableCopy::copyRows(t, other.historyTable_.table());
187 t = table_.rwKeywordSet().asTable("FIT");
188 TableCopy::copyRows(t, other.fitTable_.table());
189}
190
191void Scantable::attachSubtables()
192{
193 freqTable_ = STFrequencies(table_);
194 focusTable_ = STFocus(table_);
195 weatherTable_ = STWeather(table_);
196 tcalTable_ = STTcal(table_);
197 moleculeTable_ = STMolecules(table_);
198 historyTable_ = STHistory(table_);
199 fitTable_ = STFit(table_);
200}
201
202Scantable::~Scantable()
203{
204 //cout << "~Scantable() " << this << endl;
205}
206
207void Scantable::setupMainTable()
208{
209 TableDesc td("", "1", TableDesc::Scratch);
210 td.comment() = "An ASAP Scantable";
211 td.rwKeywordSet().define("VERSION", uInt(version_));
212
213 // n Cycles
214 td.addColumn(ScalarColumnDesc<uInt>("SCANNO"));
215 // new index every nBeam x nIF x nPol
216 td.addColumn(ScalarColumnDesc<uInt>("CYCLENO"));
217
218 td.addColumn(ScalarColumnDesc<uInt>("BEAMNO"));
219 td.addColumn(ScalarColumnDesc<uInt>("IFNO"));
220 // linear, circular, stokes
221 td.rwKeywordSet().define("POLTYPE", String("linear"));
222 td.addColumn(ScalarColumnDesc<uInt>("POLNO"));
223
224 td.addColumn(ScalarColumnDesc<uInt>("FREQ_ID"));
225 td.addColumn(ScalarColumnDesc<uInt>("MOLECULE_ID"));
226 td.addColumn(ScalarColumnDesc<Int>("REFBEAMNO"));
227
228 td.addColumn(ScalarColumnDesc<uInt>("FLAGROW"));
229
230 td.addColumn(ScalarColumnDesc<Double>("TIME"));
231 TableMeasRefDesc measRef(MEpoch::UTC); // UTC as default
232 TableMeasValueDesc measVal(td, "TIME");
233 TableMeasDesc<MEpoch> mepochCol(measVal, measRef);
234 mepochCol.write(td);
235
236 td.addColumn(ScalarColumnDesc<Double>("INTERVAL"));
237
238 td.addColumn(ScalarColumnDesc<String>("SRCNAME"));
239 // Type of source (on=0, off=1, other=-1)
240 ScalarColumnDesc<Int> stypeColumn("SRCTYPE");
241 stypeColumn.setDefault(Int(-1));
242 td.addColumn(stypeColumn);
243 td.addColumn(ScalarColumnDesc<String>("FIELDNAME"));
244
245 //The actual Data Vectors
246 td.addColumn(ArrayColumnDesc<Float>("SPECTRA"));
247 td.addColumn(ArrayColumnDesc<uChar>("FLAGTRA"));
248 td.addColumn(ArrayColumnDesc<Float>("TSYS"));
249
250 td.addColumn(ArrayColumnDesc<Double>("DIRECTION",
251 IPosition(1,2),
252 ColumnDesc::Direct));
253 TableMeasRefDesc mdirRef(MDirection::J2000); // default
254 TableMeasValueDesc tmvdMDir(td, "DIRECTION");
255 // the TableMeasDesc gives the column a type
256 TableMeasDesc<MDirection> mdirCol(tmvdMDir, mdirRef);
257 // a uder set table type e.g. GALCTIC, B1950 ...
258 td.rwKeywordSet().define("DIRECTIONREF", String("J2000"));
259 // writing create the measure column
260 mdirCol.write(td);
261 td.addColumn(ScalarColumnDesc<Float>("AZIMUTH"));
262 td.addColumn(ScalarColumnDesc<Float>("ELEVATION"));
263 td.addColumn(ScalarColumnDesc<Float>("PARANGLE"));
264 td.addColumn(ScalarColumnDesc<Float>("OPACITY"));
265
266 td.addColumn(ScalarColumnDesc<uInt>("TCAL_ID"));
267 ScalarColumnDesc<Int> fitColumn("FIT_ID");
268 fitColumn.setDefault(Int(-1));
269 td.addColumn(fitColumn);
270
271 td.addColumn(ScalarColumnDesc<uInt>("FOCUS_ID"));
272 td.addColumn(ScalarColumnDesc<uInt>("WEATHER_ID"));
273
274 // columns which just get dragged along, as they aren't used in asap
275 td.addColumn(ScalarColumnDesc<Double>("SRCVELOCITY"));
276 td.addColumn(ArrayColumnDesc<Double>("SRCPROPERMOTION"));
277 td.addColumn(ArrayColumnDesc<Double>("SRCDIRECTION"));
278 td.addColumn(ArrayColumnDesc<Double>("SCANRATE"));
279
280 td.rwKeywordSet().define("OBSMODE", String(""));
281
282 // Now create Table SetUp from the description.
283 SetupNewTable aNewTab(generateName(), td, Table::Scratch);
284 table_ = Table(aNewTab, type_, 0);
285 originalTable_ = table_;
286}
287
288void Scantable::attach()
289{
290 timeCol_.attach(table_, "TIME");
291 srcnCol_.attach(table_, "SRCNAME");
292 srctCol_.attach(table_, "SRCTYPE");
293 specCol_.attach(table_, "SPECTRA");
294 flagsCol_.attach(table_, "FLAGTRA");
295 tsysCol_.attach(table_, "TSYS");
296 cycleCol_.attach(table_,"CYCLENO");
297 scanCol_.attach(table_, "SCANNO");
298 beamCol_.attach(table_, "BEAMNO");
299 ifCol_.attach(table_, "IFNO");
300 polCol_.attach(table_, "POLNO");
301 integrCol_.attach(table_, "INTERVAL");
302 azCol_.attach(table_, "AZIMUTH");
303 elCol_.attach(table_, "ELEVATION");
304 dirCol_.attach(table_, "DIRECTION");
305 paraCol_.attach(table_, "PARANGLE");
306 fldnCol_.attach(table_, "FIELDNAME");
307 rbeamCol_.attach(table_, "REFBEAMNO");
308
309 mfitidCol_.attach(table_,"FIT_ID");
310 mfreqidCol_.attach(table_, "FREQ_ID");
311 mtcalidCol_.attach(table_, "TCAL_ID");
312 mfocusidCol_.attach(table_, "FOCUS_ID");
313 mmolidCol_.attach(table_, "MOLECULE_ID");
314
315 //Add auxiliary column for row-based flagging (CAS-1433 Wataru Kawasaki)
316 attachAuxColumnDef(flagrowCol_, "FLAGROW", 0);
317
318}
319
320template<class T, class T2>
321void Scantable::attachAuxColumnDef(ScalarColumn<T>& col,
322 const String& colName,
323 const T2& defValue)
324{
325 try {
326 col.attach(table_, colName);
327 } catch (TableError& err) {
328 String errMesg = err.getMesg();
329 if (errMesg == "Table column " + colName + " is unknown") {
330 table_.addColumn(ScalarColumnDesc<T>(colName));
331 col.attach(table_, colName);
332 col.fillColumn(static_cast<T>(defValue));
333 } else {
334 throw;
335 }
336 } catch (...) {
337 throw;
338 }
339}
340
341template<class T, class T2>
342void Scantable::attachAuxColumnDef(ArrayColumn<T>& col,
343 const String& colName,
344 const Array<T2>& defValue)
345{
346 try {
347 col.attach(table_, colName);
348 } catch (TableError& err) {
349 String errMesg = err.getMesg();
350 if (errMesg == "Table column " + colName + " is unknown") {
351 table_.addColumn(ArrayColumnDesc<T>(colName));
352 col.attach(table_, colName);
353
354 int size = 0;
355 ArrayIterator<T2>& it = defValue.begin();
356 while (it != defValue.end()) {
357 ++size;
358 ++it;
359 }
360 IPosition ip(1, size);
361 Array<T>& arr(ip);
362 for (int i = 0; i < size; ++i)
363 arr[i] = static_cast<T>(defValue[i]);
364
365 col.fillColumn(arr);
366 } else {
367 throw;
368 }
369 } catch (...) {
370 throw;
371 }
372}
373
374void Scantable::setHeader(const STHeader& sdh)
375{
376 table_.rwKeywordSet().define("nIF", sdh.nif);
377 table_.rwKeywordSet().define("nBeam", sdh.nbeam);
378 table_.rwKeywordSet().define("nPol", sdh.npol);
379 table_.rwKeywordSet().define("nChan", sdh.nchan);
380 table_.rwKeywordSet().define("Observer", sdh.observer);
381 table_.rwKeywordSet().define("Project", sdh.project);
382 table_.rwKeywordSet().define("Obstype", sdh.obstype);
383 table_.rwKeywordSet().define("AntennaName", sdh.antennaname);
384 table_.rwKeywordSet().define("AntennaPosition", sdh.antennaposition);
385 table_.rwKeywordSet().define("Equinox", sdh.equinox);
386 table_.rwKeywordSet().define("FreqRefFrame", sdh.freqref);
387 table_.rwKeywordSet().define("FreqRefVal", sdh.reffreq);
388 table_.rwKeywordSet().define("Bandwidth", sdh.bandwidth);
389 table_.rwKeywordSet().define("UTC", sdh.utc);
390 table_.rwKeywordSet().define("FluxUnit", sdh.fluxunit);
391 table_.rwKeywordSet().define("Epoch", sdh.epoch);
392 table_.rwKeywordSet().define("POLTYPE", sdh.poltype);
393}
394
395STHeader Scantable::getHeader() const
396{
397 STHeader sdh;
398 table_.keywordSet().get("nBeam",sdh.nbeam);
399 table_.keywordSet().get("nIF",sdh.nif);
400 table_.keywordSet().get("nPol",sdh.npol);
401 table_.keywordSet().get("nChan",sdh.nchan);
402 table_.keywordSet().get("Observer", sdh.observer);
403 table_.keywordSet().get("Project", sdh.project);
404 table_.keywordSet().get("Obstype", sdh.obstype);
405 table_.keywordSet().get("AntennaName", sdh.antennaname);
406 table_.keywordSet().get("AntennaPosition", sdh.antennaposition);
407 table_.keywordSet().get("Equinox", sdh.equinox);
408 table_.keywordSet().get("FreqRefFrame", sdh.freqref);
409 table_.keywordSet().get("FreqRefVal", sdh.reffreq);
410 table_.keywordSet().get("Bandwidth", sdh.bandwidth);
411 table_.keywordSet().get("UTC", sdh.utc);
412 table_.keywordSet().get("FluxUnit", sdh.fluxunit);
413 table_.keywordSet().get("Epoch", sdh.epoch);
414 table_.keywordSet().get("POLTYPE", sdh.poltype);
415 return sdh;
416}
417
418void Scantable::setSourceType( int stype )
419{
420 if ( stype < 0 || stype > 1 )
421 throw(AipsError("Illegal sourcetype."));
422 TableVector<Int> tabvec(table_, "SRCTYPE");
423 tabvec = Int(stype);
424}
425
426bool Scantable::conformant( const Scantable& other )
427{
428 return this->getHeader().conformant(other.getHeader());
429}
430
431
432
433std::string Scantable::formatSec(Double x) const
434{
435 Double xcop = x;
436 MVTime mvt(xcop/24./3600.); // make days
437
438 if (x < 59.95)
439 return String(" ") + mvt.string(MVTime::TIME_CLEAN_NO_HM, 7)+"s";
440 else if (x < 3599.95)
441 return String(" ") + mvt.string(MVTime::TIME_CLEAN_NO_H,7)+" ";
442 else {
443 ostringstream oss;
444 oss << setw(2) << std::right << setprecision(1) << mvt.hour();
445 oss << ":" << mvt.string(MVTime::TIME_CLEAN_NO_H,7) << " ";
446 return String(oss);
447 }
448};
449
450std::string Scantable::formatDirection(const MDirection& md) const
451{
452 Vector<Double> t = md.getAngle(Unit(String("rad"))).getValue();
453 Int prec = 7;
454
455 MVAngle mvLon(t[0]);
456 String sLon = mvLon.string(MVAngle::TIME,prec);
457 uInt tp = md.getRef().getType();
458 if (tp == MDirection::GALACTIC ||
459 tp == MDirection::SUPERGAL ) {
460 sLon = mvLon(0.0).string(MVAngle::ANGLE_CLEAN,prec);
461 }
462 MVAngle mvLat(t[1]);
463 String sLat = mvLat.string(MVAngle::ANGLE+MVAngle::DIG2,prec);
464 return sLon + String(" ") + sLat;
465}
466
467
468std::string Scantable::getFluxUnit() const
469{
470 return table_.keywordSet().asString("FluxUnit");
471}
472
473void Scantable::setFluxUnit(const std::string& unit)
474{
475 String tmp(unit);
476 Unit tU(tmp);
477 if (tU==Unit("K") || tU==Unit("Jy")) {
478 table_.rwKeywordSet().define(String("FluxUnit"), tmp);
479 } else {
480 throw AipsError("Illegal unit - must be compatible with Jy or K");
481 }
482}
483
484void Scantable::setInstrument(const std::string& name)
485{
486 bool throwIt = true;
487 // create an Instrument to see if this is valid
488 STAttr::convertInstrument(name, throwIt);
489 String nameU(name);
490 nameU.upcase();
491 table_.rwKeywordSet().define(String("AntennaName"), nameU);
492}
493
494void Scantable::setFeedType(const std::string& feedtype)
495{
496 if ( Scantable::factories_.find(feedtype) == Scantable::factories_.end() ) {
497 std::string msg = "Illegal feed type "+ feedtype;
498 throw(casa::AipsError(msg));
499 }
500 table_.rwKeywordSet().define(String("POLTYPE"), feedtype);
501}
502
503MPosition Scantable::getAntennaPosition () const
504{
505 Vector<Double> antpos;
506 table_.keywordSet().get("AntennaPosition", antpos);
507 MVPosition mvpos(antpos(0),antpos(1),antpos(2));
508 return MPosition(mvpos);
509}
510
511void Scantable::makePersistent(const std::string& filename)
512{
513 String inname(filename);
514 Path path(inname);
515 /// @todo reindex SCANNO, recompute nbeam, nif, npol
516 inname = path.expandedName();
517 table_.deepCopy(inname, Table::New);
518}
519
520int Scantable::nbeam( int scanno ) const
521{
522 if ( scanno < 0 ) {
523 Int n;
524 table_.keywordSet().get("nBeam",n);
525 return int(n);
526 } else {
527 // take the first POLNO,IFNO,CYCLENO as nbeam shouldn't vary with these
528 Table t = table_(table_.col("SCANNO") == scanno);
529 ROTableRow row(t);
530 const TableRecord& rec = row.get(0);
531 Table subt = t( t.col("IFNO") == Int(rec.asuInt("IFNO"))
532 && t.col("POLNO") == Int(rec.asuInt("POLNO"))
533 && t.col("CYCLENO") == Int(rec.asuInt("CYCLENO")) );
534 ROTableVector<uInt> v(subt, "BEAMNO");
535 return int(v.nelements());
536 }
537 return 0;
538}
539
540int Scantable::nif( int scanno ) const
541{
542 if ( scanno < 0 ) {
543 Int n;
544 table_.keywordSet().get("nIF",n);
545 return int(n);
546 } else {
547 // take the first POLNO,BEAMNO,CYCLENO as nbeam shouldn't vary with these
548 Table t = table_(table_.col("SCANNO") == scanno);
549 ROTableRow row(t);
550 const TableRecord& rec = row.get(0);
551 Table subt = t( t.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
552 && t.col("POLNO") == Int(rec.asuInt("POLNO"))
553 && t.col("CYCLENO") == Int(rec.asuInt("CYCLENO")) );
554 if ( subt.nrow() == 0 ) return 0;
555 ROTableVector<uInt> v(subt, "IFNO");
556 return int(v.nelements());
557 }
558 return 0;
559}
560
561int Scantable::npol( int scanno ) const
562{
563 if ( scanno < 0 ) {
564 Int n;
565 table_.keywordSet().get("nPol",n);
566 return n;
567 } else {
568 // take the first POLNO,IFNO,CYCLENO as nbeam shouldn't vary with these
569 Table t = table_(table_.col("SCANNO") == scanno);
570 ROTableRow row(t);
571 const TableRecord& rec = row.get(0);
572 Table subt = t( t.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
573 && t.col("IFNO") == Int(rec.asuInt("IFNO"))
574 && t.col("CYCLENO") == Int(rec.asuInt("CYCLENO")) );
575 if ( subt.nrow() == 0 ) return 0;
576 ROTableVector<uInt> v(subt, "POLNO");
577 return int(v.nelements());
578 }
579 return 0;
580}
581
582int Scantable::ncycle( int scanno ) const
583{
584 if ( scanno < 0 ) {
585 Block<String> cols(2);
586 cols[0] = "SCANNO";
587 cols[1] = "CYCLENO";
588 TableIterator it(table_, cols);
589 int n = 0;
590 while ( !it.pastEnd() ) {
591 ++n;
592 ++it;
593 }
594 return n;
595 } else {
596 Table t = table_(table_.col("SCANNO") == scanno);
597 ROTableRow row(t);
598 const TableRecord& rec = row.get(0);
599 Table subt = t( t.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
600 && t.col("POLNO") == Int(rec.asuInt("POLNO"))
601 && t.col("IFNO") == Int(rec.asuInt("IFNO")) );
602 if ( subt.nrow() == 0 ) return 0;
603 return int(subt.nrow());
604 }
605 return 0;
606}
607
608
609int Scantable::nrow( int scanno ) const
610{
611 return int(table_.nrow());
612}
613
614int Scantable::nchan( int ifno ) const
615{
616 if ( ifno < 0 ) {
617 Int n;
618 table_.keywordSet().get("nChan",n);
619 return int(n);
620 } else {
621 // take the first SCANNO,POLNO,BEAMNO,CYCLENO as nbeam shouldn't
622 // vary with these
623 Table t = table_(table_.col("IFNO") == ifno);
624 if ( t.nrow() == 0 ) return 0;
625 ROArrayColumn<Float> v(t, "SPECTRA");
626 return v.shape(0)(0);
627 }
628 return 0;
629}
630
631int Scantable::nscan() const {
632 Vector<uInt> scannos(scanCol_.getColumn());
633 uInt nout = genSort( scannos, Sort::Ascending,
634 Sort::QuickSort|Sort::NoDuplicates );
635 return int(nout);
636}
637
638int Scantable::getChannels(int whichrow) const
639{
640 return specCol_.shape(whichrow)(0);
641}
642
643int Scantable::getBeam(int whichrow) const
644{
645 return beamCol_(whichrow);
646}
647
648std::vector<uint> Scantable::getNumbers(ScalarColumn<uInt>& col)
649{
650 Vector<uInt> nos(col.getColumn());
651 uInt n = genSort( nos, Sort::Ascending, Sort::QuickSort|Sort::NoDuplicates );
652 nos.resize(n, True);
653 std::vector<uint> stlout;
654 nos.tovector(stlout);
655 return stlout;
656}
657
658int Scantable::getIF(int whichrow) const
659{
660 return ifCol_(whichrow);
661}
662
663int Scantable::getPol(int whichrow) const
664{
665 return polCol_(whichrow);
666}
667
668std::string Scantable::formatTime(const MEpoch& me, bool showdate) const
669{
670 MVTime mvt(me.getValue());
671 if (showdate)
672 mvt.setFormat(MVTime::YMD);
673 else
674 mvt.setFormat(MVTime::TIME);
675 ostringstream oss;
676 oss << mvt;
677 return String(oss);
678}
679
680void Scantable::calculateAZEL()
681{
682 MPosition mp = getAntennaPosition();
683 MEpoch::ROScalarColumn timeCol(table_, "TIME");
684 ostringstream oss;
685 oss << "Computed azimuth/elevation using " << endl
686 << mp << endl;
687 for (Int i=0; i<nrow(); ++i) {
688 MEpoch me = timeCol(i);
689 MDirection md = getDirection(i);
690 oss << " Time: " << formatTime(me,False) << " Direction: " << formatDirection(md)
691 << endl << " => ";
692 MeasFrame frame(mp, me);
693 Vector<Double> azel =
694 MDirection::Convert(md, MDirection::Ref(MDirection::AZEL,
695 frame)
696 )().getAngle("rad").getValue();
697 azCol_.put(i,Float(azel[0]));
698 elCol_.put(i,Float(azel[1]));
699 oss << "azel: " << azel[0]/C::pi*180.0 << " "
700 << azel[1]/C::pi*180.0 << " (deg)" << endl;
701 }
702 pushLog(String(oss));
703}
704
705void Scantable::clip(const Float uthres, const Float dthres, bool clipoutside, bool unflag)
706{
707 for (uInt i=0; i<table_.nrow(); ++i) {
708 Vector<Float> spcs = specCol_(i);
709 Vector<uChar> flgs = flagsCol_(i);
710 if (spcs.nelements() != nchan) {
711 throw(AipsError("Data has incorrect number of channels"));
712 }
713 uChar userflag = 1 << 7;
714 if (unflag) {
715 userflag = 0 << 7;
716 }
717 if (clipoutside) {
718 for (uInt j = 0; j < nchan; ++j) {
719 Float spc = spcs(j);
720 if ((spc >= uthres) || (spc <= dthres)) {
721 flgs(j) = userflag;
722 }
723 }
724 } else {
725 for (uInt j = 0; j < nchan; ++j) {
726 Float spc = spcs(j);
727 if ((spc < uthres) && (spc > dthres)) {
728 flgs(j) = userflag;
729 }
730 }
731 }
732 flagsCol_.put(i, flgs);
733 }
734}
735
736void Scantable::flag(const std::vector<bool>& msk, bool unflag)
737{
738 std::vector<bool>::const_iterator it;
739 uInt ntrue = 0;
740 for (it = msk.begin(); it != msk.end(); ++it) {
741 if ( *it ) {
742 ntrue++;
743 }
744 }
745 if ( selector_.empty() && (msk.size() == 0 || msk.size() == ntrue) )
746 throw(AipsError("Trying to flag whole scantable."));
747 if ( msk.size() == 0 ) {
748 uChar userflag = 1 << 7;
749 if ( unflag ) {
750 userflag = 0 << 7;
751 }
752 for ( uInt i=0; i<table_.nrow(); ++i) {
753 Vector<uChar> flgs = flagsCol_(i);
754 flgs = userflag;
755 flagsCol_.put(i, flgs);
756 }
757 return;
758 }
759 if ( int(msk.size()) != nchan() ) {
760 throw(AipsError("Mask has incorrect number of channels."));
761 }
762 for ( uInt i=0; i<table_.nrow(); ++i) {
763 Vector<uChar> flgs = flagsCol_(i);
764 if ( flgs.nelements() != msk.size() ) {
765 throw(AipsError("Mask has incorrect number of channels."
766 " Probably varying with IF. Please flag per IF"));
767 }
768 std::vector<bool>::const_iterator it;
769 uInt j = 0;
770 uChar userflag = 1 << 7;
771 if ( unflag ) {
772 userflag = 0 << 7;
773 }
774 for (it = msk.begin(); it != msk.end(); ++it) {
775 if ( *it ) {
776 flgs(j) = userflag;
777 }
778 ++j;
779 }
780 flagsCol_.put(i, flgs);
781 }
782}
783
784void Scantable::flagRow(const std::vector<uInt>& rows, bool unflag)
785{
786 if ( selector_.empty() && (rows.size() == table_.nrow()) )
787 throw(AipsError("Trying to flag whole scantable."));
788
789 uInt rowflag = (unflag ? 0 : 1);
790 std::vector<uInt>::const_iterator it;
791 for (it = rows.begin(); it != rows.end(); ++it)
792 flagrowCol_.put(*it, rowflag);
793}
794
795std::vector<bool> Scantable::getMask(int whichrow) const
796{
797 Vector<uChar> flags;
798 flagsCol_.get(uInt(whichrow), flags);
799 Vector<Bool> bflag(flags.shape());
800 convertArray(bflag, flags);
801 bflag = !bflag;
802 std::vector<bool> mask;
803 bflag.tovector(mask);
804 return mask;
805}
806
807std::vector<float> Scantable::getSpectrum( int whichrow,
808 const std::string& poltype ) const
809{
810 String ptype = poltype;
811 if (poltype == "" ) ptype = getPolType();
812 if ( whichrow < 0 || whichrow >= nrow() )
813 throw(AipsError("Illegal row number."));
814 std::vector<float> out;
815 Vector<Float> arr;
816 uInt requestedpol = polCol_(whichrow);
817 String basetype = getPolType();
818 if ( ptype == basetype ) {
819 specCol_.get(whichrow, arr);
820 } else {
821 CountedPtr<STPol> stpol(STPol::getPolClass(Scantable::factories_, basetype));
822 uInt row = uInt(whichrow);
823 stpol->setSpectra(getPolMatrix(row));
824 Float fang,fhand,parang;
825 fang = focusTable_.getTotalFeedAngle(mfocusidCol_(row));
826 fhand = focusTable_.getFeedHand(mfocusidCol_(row));
827 parang = paraCol_(row);
828 /// @todo re-enable this
829 // disable total feed angle to support paralactifying Caswell style
830 stpol->setPhaseCorrections(parang, -parang, fhand);
831 arr = stpol->getSpectrum(requestedpol, ptype);
832 }
833 if ( arr.nelements() == 0 )
834 pushLog("Not enough polarisations present to do the conversion.");
835 arr.tovector(out);
836 return out;
837}
838
839void Scantable::setSpectrum( const std::vector<float>& spec,
840 int whichrow )
841{
842 Vector<Float> spectrum(spec);
843 Vector<Float> arr;
844 specCol_.get(whichrow, arr);
845 if ( spectrum.nelements() != arr.nelements() )
846 throw AipsError("The spectrum has incorrect number of channels.");
847 specCol_.put(whichrow, spectrum);
848}
849
850
851String Scantable::generateName()
852{
853 return (File::newUniqueName("./","temp")).baseName();
854}
855
856const casa::Table& Scantable::table( ) const
857{
858 return table_;
859}
860
861casa::Table& Scantable::table( )
862{
863 return table_;
864}
865
866std::string Scantable::getPolType() const
867{
868 return table_.keywordSet().asString("POLTYPE");
869}
870
871void Scantable::unsetSelection()
872{
873 table_ = originalTable_;
874 attach();
875 selector_.reset();
876}
877
878void Scantable::setSelection( const STSelector& selection )
879{
880 Table tab = const_cast<STSelector&>(selection).apply(originalTable_);
881 if ( tab.nrow() == 0 ) {
882 throw(AipsError("Selection contains no data. Not applying it."));
883 }
884 table_ = tab;
885 attach();
886 selector_ = selection;
887}
888
889std::string Scantable::summary( bool verbose )
890{
891 // Format header info
892 ostringstream oss;
893 oss << endl;
894 oss << asap::SEPERATOR << endl;
895 oss << " Scan Table Summary" << endl;
896 oss << asap::SEPERATOR << endl;
897 oss.flags(std::ios_base::left);
898 oss << setw(15) << "Beams:" << setw(4) << nbeam() << endl
899 << setw(15) << "IFs:" << setw(4) << nif() << endl
900 << setw(15) << "Polarisations:" << setw(4) << npol()
901 << "(" << getPolType() << ")" << endl
902 << setw(15) << "Channels:" << setw(4) << nchan() << endl;
903 oss << endl;
904 String tmp;
905 oss << setw(15) << "Observer:"
906 << table_.keywordSet().asString("Observer") << endl;
907 oss << setw(15) << "Obs Date:" << getTime(-1,true) << endl;
908 table_.keywordSet().get("Project", tmp);
909 oss << setw(15) << "Project:" << tmp << endl;
910 table_.keywordSet().get("Obstype", tmp);
911 oss << setw(15) << "Obs. Type:" << tmp << endl;
912 table_.keywordSet().get("AntennaName", tmp);
913 oss << setw(15) << "Antenna Name:" << tmp << endl;
914 table_.keywordSet().get("FluxUnit", tmp);
915 oss << setw(15) << "Flux Unit:" << tmp << endl;
916 //Vector<Double> vec(moleculeTable_.getRestFrequencies());
917 int nid = moleculeTable_.nrow();
918 Bool firstline = True;
919 oss << setw(15) << "Rest Freqs:";
920 for (int i=0; i<nid; i++) {
921 Table t = table_(table_.col("MOLECULE_ID") == i);
922 if (t.nrow() > 0) {
923 Vector<Double> vec(moleculeTable_.getRestFrequency(i));
924 if (vec.nelements() > 0) {
925 if (firstline) {
926 oss << setprecision(10) << vec << " [Hz]" << endl;
927 firstline=False;
928 }
929 else{
930 oss << setw(15)<<" " << setprecision(10) << vec << " [Hz]" << endl;
931 }
932 } else {
933 oss << "none" << endl;
934 }
935 }
936 }
937
938 oss << setw(15) << "Abcissa:" << getAbcissaLabel(0) << endl;
939 oss << selector_.print() << endl;
940 oss << endl;
941 // main table
942 String dirtype = "Position ("
943 + getDirectionRefString()
944 + ")";
945 oss << setw(5) << "Scan" << setw(15) << "Source"
946 << setw(10) << "Time" << setw(18) << "Integration" << endl;
947 oss << setw(5) << "" << setw(5) << "Beam" << setw(3) << "" << dirtype << endl;
948 oss << setw(10) << "" << setw(3) << "IF" << setw(6) << ""
949 << setw(8) << "Frame" << setw(16)
950 << "RefVal" << setw(10) << "RefPix" << setw(12) << "Increment" <<endl;
951 oss << asap::SEPERATOR << endl;
952 TableIterator iter(table_, "SCANNO");
953 while (!iter.pastEnd()) {
954 Table subt = iter.table();
955 ROTableRow row(subt);
956 MEpoch::ROScalarColumn timeCol(subt,"TIME");
957 const TableRecord& rec = row.get(0);
958 oss << setw(4) << std::right << rec.asuInt("SCANNO")
959 << std::left << setw(1) << ""
960 << setw(15) << rec.asString("SRCNAME")
961 << setw(10) << formatTime(timeCol(0), false);
962 // count the cycles in the scan
963 TableIterator cyciter(subt, "CYCLENO");
964 int nint = 0;
965 while (!cyciter.pastEnd()) {
966 ++nint;
967 ++cyciter;
968 }
969 oss << setw(3) << std::right << nint << setw(3) << " x " << std::left
970 << setw(6) << formatSec(rec.asFloat("INTERVAL")) << endl;
971
972 TableIterator biter(subt, "BEAMNO");
973 while (!biter.pastEnd()) {
974 Table bsubt = biter.table();
975 ROTableRow brow(bsubt);
976 const TableRecord& brec = brow.get(0);
977 uInt row0 = bsubt.rowNumbers(table_)[0];
978 oss << setw(5) << "" << setw(4) << std::right << brec.asuInt("BEAMNO")<< std::left;
979 oss << setw(4) << "" << formatDirection(getDirection(row0)) << endl;
980 TableIterator iiter(bsubt, "IFNO");
981 while (!iiter.pastEnd()) {
982 Table isubt = iiter.table();
983 ROTableRow irow(isubt);
984 const TableRecord& irec = irow.get(0);
985 oss << setw(10) << "";
986 oss << setw(3) << std::right << irec.asuInt("IFNO") << std::left
987 << setw(2) << "" << frequencies().print(irec.asuInt("FREQ_ID"))
988 << endl;
989
990 ++iiter;
991 }
992 ++biter;
993 }
994 ++iter;
995 }
996 /// @todo implement verbose mode
997 return String(oss);
998}
999
1000std::string Scantable::getTime(int whichrow, bool showdate) const
1001{
1002 MEpoch::ROScalarColumn timeCol(table_, "TIME");
1003 MEpoch me;
1004 if (whichrow > -1) {
1005 me = timeCol(uInt(whichrow));
1006 } else {
1007 Double tm;
1008 table_.keywordSet().get("UTC",tm);
1009 me = MEpoch(MVEpoch(tm));
1010 }
1011 return formatTime(me, showdate);
1012}
1013
1014MEpoch Scantable::getEpoch(int whichrow) const
1015{
1016 if (whichrow > -1) {
1017 return timeCol_(uInt(whichrow));
1018 } else {
1019 Double tm;
1020 table_.keywordSet().get("UTC",tm);
1021 return MEpoch(MVEpoch(tm));
1022 }
1023}
1024
1025std::string Scantable::getDirectionString(int whichrow) const
1026{
1027 return formatDirection(getDirection(uInt(whichrow)));
1028}
1029
1030std::vector< double > Scantable::getAbcissa( int whichrow ) const
1031{
1032 if ( whichrow > int(table_.nrow()) ) throw(AipsError("Illegal row number"));
1033 std::vector<double> stlout;
1034 int nchan = specCol_(whichrow).nelements();
1035 String us = freqTable_.getUnitString();
1036 if ( us == "" || us == "pixel" || us == "channel" ) {
1037 for (int i=0; i<nchan; ++i) {
1038 stlout.push_back(double(i));
1039 }
1040 return stlout;
1041 }
1042
1043 const MPosition& mp = getAntennaPosition();
1044 const MDirection& md = getDirection(whichrow);
1045 const MEpoch& me = timeCol_(whichrow);
1046 //Double rf = moleculeTable_.getRestFrequency(mmolidCol_(whichrow));
1047 Vector<Double> rf = moleculeTable_.getRestFrequency(mmolidCol_(whichrow));
1048 SpectralCoordinate spc =
1049 freqTable_.getSpectralCoordinate(md, mp, me, rf, mfreqidCol_(whichrow));
1050 Vector<Double> pixel(nchan);
1051 Vector<Double> world;
1052 indgen(pixel);
1053 if ( Unit(us) == Unit("Hz") ) {
1054 for ( int i=0; i < nchan; ++i) {
1055 Double world;
1056 spc.toWorld(world, pixel[i]);
1057 stlout.push_back(double(world));
1058 }
1059 } else if ( Unit(us) == Unit("km/s") ) {
1060 Vector<Double> world;
1061 spc.pixelToVelocity(world, pixel);
1062 world.tovector(stlout);
1063 }
1064 return stlout;
1065}
1066void Scantable::setDirectionRefString( const std::string & refstr )
1067{
1068 MDirection::Types mdt;
1069 if (refstr != "" && !MDirection::getType(mdt, refstr)) {
1070 throw(AipsError("Illegal Direction frame."));
1071 }
1072 if ( refstr == "" ) {
1073 String defaultstr = MDirection::showType(dirCol_.getMeasRef().getType());
1074 table_.rwKeywordSet().define("DIRECTIONREF", defaultstr);
1075 } else {
1076 table_.rwKeywordSet().define("DIRECTIONREF", String(refstr));
1077 }
1078}
1079
1080std::string Scantable::getDirectionRefString( ) const
1081{
1082 return table_.keywordSet().asString("DIRECTIONREF");
1083}
1084
1085MDirection Scantable::getDirection(int whichrow ) const
1086{
1087 String usertype = table_.keywordSet().asString("DIRECTIONREF");
1088 String type = MDirection::showType(dirCol_.getMeasRef().getType());
1089 if ( usertype != type ) {
1090 MDirection::Types mdt;
1091 if (!MDirection::getType(mdt, usertype)) {
1092 throw(AipsError("Illegal Direction frame."));
1093 }
1094 return dirCol_.convert(uInt(whichrow), mdt);
1095 } else {
1096 return dirCol_(uInt(whichrow));
1097 }
1098}
1099
1100std::string Scantable::getAbcissaLabel( int whichrow ) const
1101{
1102 if ( whichrow > int(table_.nrow()) ) throw(AipsError("Illegal ro number"));
1103 const MPosition& mp = getAntennaPosition();
1104 const MDirection& md = getDirection(whichrow);
1105 const MEpoch& me = timeCol_(whichrow);
1106 //const Double& rf = mmolidCol_(whichrow);
1107 const Vector<Double> rf = moleculeTable_.getRestFrequency(mmolidCol_(whichrow));
1108 SpectralCoordinate spc =
1109 freqTable_.getSpectralCoordinate(md, mp, me, rf, mfreqidCol_(whichrow));
1110
1111 String s = "Channel";
1112 Unit u = Unit(freqTable_.getUnitString());
1113 if (u == Unit("km/s")) {
1114 s = CoordinateUtil::axisLabel(spc, 0, True,True, True);
1115 } else if (u == Unit("Hz")) {
1116 Vector<String> wau(1);wau = u.getName();
1117 spc.setWorldAxisUnits(wau);
1118 s = CoordinateUtil::axisLabel(spc, 0, True, True, False);
1119 }
1120 return s;
1121
1122}
1123
1124/**
1125void asap::Scantable::setRestFrequencies( double rf, const std::string& name,
1126 const std::string& unit )
1127**/
1128void Scantable::setRestFrequencies( vector<double> rf, const vector<std::string>& name,
1129 const std::string& unit )
1130
1131{
1132 ///@todo lookup in line table to fill in name and formattedname
1133 Unit u(unit);
1134 //Quantum<Double> urf(rf, u);
1135 Quantum<Vector<Double> >urf(rf, u);
1136 Vector<String> formattedname(0);
1137 //cerr<<"Scantable::setRestFrequnecies="<<urf<<endl;
1138
1139 //uInt id = moleculeTable_.addEntry(urf.getValue("Hz"), name, "");
1140 uInt id = moleculeTable_.addEntry(urf.getValue("Hz"), mathutil::toVectorString(name), formattedname);
1141 TableVector<uInt> tabvec(table_, "MOLECULE_ID");
1142 tabvec = id;
1143}
1144
1145/**
1146void asap::Scantable::setRestFrequencies( const std::string& name )
1147{
1148 throw(AipsError("setRestFrequencies( const std::string& name ) NYI"));
1149 ///@todo implement
1150}
1151**/
1152void Scantable::setRestFrequencies( const vector<std::string>& name )
1153{
1154 throw(AipsError("setRestFrequencies( const vector<std::string>& name ) NYI"));
1155 ///@todo implement
1156}
1157
1158std::vector< unsigned int > Scantable::rownumbers( ) const
1159{
1160 std::vector<unsigned int> stlout;
1161 Vector<uInt> vec = table_.rowNumbers();
1162 vec.tovector(stlout);
1163 return stlout;
1164}
1165
1166
1167Matrix<Float> Scantable::getPolMatrix( uInt whichrow ) const
1168{
1169 ROTableRow row(table_);
1170 const TableRecord& rec = row.get(whichrow);
1171 Table t =
1172 originalTable_( originalTable_.col("SCANNO") == Int(rec.asuInt("SCANNO"))
1173 && originalTable_.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
1174 && originalTable_.col("IFNO") == Int(rec.asuInt("IFNO"))
1175 && originalTable_.col("CYCLENO") == Int(rec.asuInt("CYCLENO")) );
1176 ROArrayColumn<Float> speccol(t, "SPECTRA");
1177 return speccol.getColumn();
1178}
1179
1180std::vector< std::string > Scantable::columnNames( ) const
1181{
1182 Vector<String> vec = table_.tableDesc().columnNames();
1183 return mathutil::tovectorstring(vec);
1184}
1185
1186MEpoch::Types Scantable::getTimeReference( ) const
1187{
1188 return MEpoch::castType(timeCol_.getMeasRef().getType());
1189}
1190
1191void Scantable::addFit( const STFitEntry& fit, int row )
1192{
1193 //cout << mfitidCol_(uInt(row)) << endl;
1194 LogIO os( LogOrigin( "Scantable", "addFit()", WHERE ) ) ;
1195 os << mfitidCol_(uInt(row)) << LogIO::POST ;
1196 uInt id = fitTable_.addEntry(fit, mfitidCol_(uInt(row)));
1197 mfitidCol_.put(uInt(row), id);
1198}
1199
1200void Scantable::shift(int npix)
1201{
1202 Vector<uInt> fids(mfreqidCol_.getColumn());
1203 genSort( fids, Sort::Ascending,
1204 Sort::QuickSort|Sort::NoDuplicates );
1205 for (uInt i=0; i<fids.nelements(); ++i) {
1206 frequencies().shiftRefPix(npix, i);
1207 }
1208}
1209
1210std::string asap::Scantable::getAntennaName() const
1211{
1212 String out;
1213 table_.keywordSet().get("AntennaName", out);
1214 return out;
1215}
1216
1217int asap::Scantable::checkScanInfo(const std::vector<int>& scanlist) const
1218{
1219 String tbpath;
1220 int ret = 0;
1221 if ( table_.keywordSet().isDefined("GBT_GO") ) {
1222 table_.keywordSet().get("GBT_GO", tbpath);
1223 Table t(tbpath,Table::Old);
1224 // check each scan if other scan of the pair exist
1225 int nscan = scanlist.size();
1226 for (int i = 0; i < nscan; i++) {
1227 Table subt = t( t.col("SCAN") == scanlist[i]+1 );
1228 if (subt.nrow()==0) {
1229 //cerr <<"Scan "<<scanlist[i]<<" cannot be found in the scantable."<<endl;
1230 LogIO os( LogOrigin( "Scantable", "checkScanInfo()", WHERE ) ) ;
1231 os <<LogIO::WARN<<"Scan "<<scanlist[i]<<" cannot be found in the scantable."<<LogIO::POST;
1232 ret = 1;
1233 break;
1234 }
1235 ROTableRow row(subt);
1236 const TableRecord& rec = row.get(0);
1237 int scan1seqn = rec.asuInt("PROCSEQN");
1238 int laston1 = rec.asuInt("LASTON");
1239 if ( rec.asuInt("PROCSIZE")==2 ) {
1240 if ( i < nscan-1 ) {
1241 Table subt2 = t( t.col("SCAN") == scanlist[i+1]+1 );
1242 if ( subt2.nrow() == 0) {
1243 LogIO os( LogOrigin( "Scantable", "checkScanInfo()", WHERE ) ) ;
1244
1245 //cerr<<"Scan "<<scanlist[i+1]<<" cannot be found in the scantable."<<endl;
1246 os<<LogIO::WARN<<"Scan "<<scanlist[i+1]<<" cannot be found in the scantable."<<LogIO::POST;
1247 ret = 1;
1248 break;
1249 }
1250 ROTableRow row2(subt2);
1251 const TableRecord& rec2 = row2.get(0);
1252 int scan2seqn = rec2.asuInt("PROCSEQN");
1253 int laston2 = rec2.asuInt("LASTON");
1254 if (scan1seqn == 1 && scan2seqn == 2) {
1255 if (laston1 == laston2) {
1256 LogIO os( LogOrigin( "Scantable", "checkScanInfo()", WHERE ) ) ;
1257 //cerr<<"A valid scan pair ["<<scanlist[i]<<","<<scanlist[i+1]<<"]"<<endl;
1258 os<<"A valid scan pair ["<<scanlist[i]<<","<<scanlist[i+1]<<"]"<<LogIO::POST;
1259 i +=1;
1260 }
1261 else {
1262 LogIO os( LogOrigin( "Scantable", "checkScanInfo()", WHERE ) ) ;
1263 //cerr<<"Incorrect scan pair ["<<scanlist[i]<<","<<scanlist[i+1]<<"]"<<endl;
1264 os<<LogIO::WARN<<"Incorrect scan pair ["<<scanlist[i]<<","<<scanlist[i+1]<<"]"<<LogIO::POST;
1265 }
1266 }
1267 else if (scan1seqn==2 && scan2seqn == 1) {
1268 if (laston1 == laston2) {
1269 LogIO os( LogOrigin( "Scantable", "checkScanInfo()", WHERE ) ) ;
1270 //cerr<<"["<<scanlist[i]<<","<<scanlist[i+1]<<"] is a valid scan pair but in incorrect order."<<endl;
1271 os<<LogIO::WARN<<"["<<scanlist[i]<<","<<scanlist[i+1]<<"] is a valid scan pair but in incorrect order."<<LogIO::POST;
1272 ret = 1;
1273 break;
1274 }
1275 }
1276 else {
1277 LogIO os( LogOrigin( "Scantable", "checkScanInfo()", WHERE ) ) ;
1278 //cerr<<"The other scan for "<<scanlist[i]<<" appears to be missing. Check the input scan numbers."<<endl;
1279 os<<LogIO::WARN<<"The other scan for "<<scanlist[i]<<" appears to be missing. Check the input scan numbers."<<LogIO::POST;
1280 ret = 1;
1281 break;
1282 }
1283 }
1284 }
1285 else {
1286 LogIO os( LogOrigin( "Scantable", "checkScanInfo()", WHERE ) ) ;
1287 //cerr<<"The scan does not appear to be standard obsevation."<<endl;
1288 os<<LogIO::WARN<<"The scan does not appear to be standard obsevation."<<LogIO::POST;
1289 }
1290 //if ( i >= nscan ) break;
1291 }
1292 }
1293 else {
1294 LogIO os( LogOrigin( "Scantable", "checkScanInfo()", WHERE ) ) ;
1295 //cerr<<"No reference to GBT_GO table."<<endl;
1296 os<<LogIO::WARN<<"No reference to GBT_GO table."<<LogIO::POST;
1297 ret = 1;
1298 }
1299 return ret;
1300}
1301
1302std::vector<double> asap::Scantable::getDirectionVector(int whichrow) const
1303{
1304 Vector<Double> Dir = dirCol_(whichrow).getAngle("rad").getValue();
1305 std::vector<double> dir;
1306 Dir.tovector(dir);
1307 return dir;
1308}
1309
1310void asap::Scantable::reshapeSpectrum( int nmin, int nmax )
1311 throw( casa::AipsError )
1312{
1313 // assumed that all rows have same nChan
1314 Vector<Float> arr = specCol_( 0 ) ;
1315 int nChan = arr.nelements() ;
1316
1317 // if nmin < 0 or nmax < 0, nothing to do
1318 if ( nmin < 0 ) {
1319 throw( casa::indexError<int>( nmin, "asap::Scantable::reshapeSpectrum: Invalid range. Negative index is specified." ) ) ;
1320 }
1321 if ( nmax < 0 ) {
1322 throw( casa::indexError<int>( nmax, "asap::Scantable::reshapeSpectrum: Invalid range. Negative index is specified." ) ) ;
1323 }
1324
1325 // if nmin > nmax, exchange values
1326 if ( nmin > nmax ) {
1327 int tmp = nmax ;
1328 nmax = nmin ;
1329 nmin = tmp ;
1330 LogIO os( LogOrigin( "Scantable", "reshapeSpectrum()", WHERE ) ) ;
1331 os << "Swap values. Applied range is ["
1332 << nmin << ", " << nmax << "]" << LogIO::POST ;
1333 }
1334
1335 // if nmin exceeds nChan, nothing to do
1336 if ( nmin >= nChan ) {
1337 throw( casa::indexError<int>( nmin, "asap::Scantable::reshapeSpectrum: Invalid range. Specified minimum exceeds nChan." ) ) ;
1338 }
1339
1340 // if nmax exceeds nChan, reset nmax to nChan
1341 if ( nmax >= nChan ) {
1342 if ( nmin == 0 ) {
1343 // nothing to do
1344 LogIO os( LogOrigin( "Scantable", "reshapeSpectrum()", WHERE ) ) ;
1345 os << "Whole range is selected. Nothing to do." << LogIO::POST ;
1346 return ;
1347 }
1348 else {
1349 LogIO os( LogOrigin( "Scantable", "reshapeSpectrum()", WHERE ) ) ;
1350 os << "Specified maximum exceeds nChan. Applied range is ["
1351 << nmin << ", " << nChan-1 << "]." << LogIO::POST ;
1352 nmax = nChan - 1 ;
1353 }
1354 }
1355
1356 // reshape specCol_ and flagCol_
1357 for ( int irow = 0 ; irow < nrow() ; irow++ ) {
1358 reshapeSpectrum( nmin, nmax, irow ) ;
1359 }
1360
1361 // update FREQUENCIES subtable
1362 Double refpix ;
1363 Double refval ;
1364 Double increment ;
1365 int freqnrow = freqTable_.table().nrow() ;
1366 Vector<uInt> oldId( freqnrow ) ;
1367 Vector<uInt> newId( freqnrow ) ;
1368 for ( int irow = 0 ; irow < freqnrow ; irow++ ) {
1369 freqTable_.getEntry( refpix, refval, increment, irow ) ;
1370 /***
1371 * need to shift refpix to nmin
1372 * note that channel nmin in old index will be channel 0 in new one
1373 ***/
1374 refval = refval - ( refpix - nmin ) * increment ;
1375 refpix = 0 ;
1376 freqTable_.setEntry( refpix, refval, increment, irow ) ;
1377 }
1378
1379 // update nchan
1380 int newsize = nmax - nmin + 1 ;
1381 table_.rwKeywordSet().define( "nChan", newsize ) ;
1382
1383 // update bandwidth
1384 // assumed all spectra in the scantable have same bandwidth
1385 table_.rwKeywordSet().define( "Bandwidth", increment * newsize ) ;
1386
1387 return ;
1388}
1389
1390void asap::Scantable::reshapeSpectrum( int nmin, int nmax, int irow )
1391{
1392 // reshape specCol_ and flagCol_
1393 Vector<Float> oldspec = specCol_( irow ) ;
1394 Vector<uChar> oldflag = flagsCol_( irow ) ;
1395 uInt newsize = nmax - nmin + 1 ;
1396 specCol_.put( irow, oldspec( Slice( nmin, newsize, 1 ) ) ) ;
1397 flagsCol_.put( irow, oldflag( Slice( nmin, newsize, 1 ) ) ) ;
1398
1399 return ;
1400}
1401
1402void asap::Scantable::regridChannel( int nChan, double dnu )
1403{
1404 LogIO os( LogOrigin( "Scantable", "regridChannel()", WHERE ) ) ;
1405 os << "Regrid abcissa with channel number " << nChan << " and spectral resoultion " << dnu << "Hz." << LogIO::POST ;
1406 // assumed that all rows have same nChan
1407 Vector<Float> arr = specCol_( 0 ) ;
1408 int oldsize = arr.nelements() ;
1409
1410 // if oldsize == nChan, nothing to do
1411 if ( oldsize == nChan ) {
1412 os << "Specified channel number is same as current one. Nothing to do." << LogIO::POST ;
1413 return ;
1414 }
1415
1416 // if oldChan < nChan, unphysical operation
1417 if ( oldsize < nChan ) {
1418 os << "Unphysical operation. Nothing to do." << LogIO::POST ;
1419 return ;
1420 }
1421
1422 // change channel number for specCol_ and flagCol_
1423 Vector<Float> newspec( nChan, 0 ) ;
1424 Vector<uChar> newflag( nChan, false ) ;
1425 vector<string> coordinfo = getCoordInfo() ;
1426 string oldinfo = coordinfo[0] ;
1427 coordinfo[0] = "Hz" ;
1428 setCoordInfo( coordinfo ) ;
1429 for ( int irow = 0 ; irow < nrow() ; irow++ ) {
1430 regridChannel( nChan, dnu, irow ) ;
1431 }
1432 coordinfo[0] = oldinfo ;
1433 setCoordInfo( coordinfo ) ;
1434
1435
1436 // NOTE: this method does not update metadata such as
1437 // FREQUENCIES subtable, nChan, Bandwidth, etc.
1438
1439 return ;
1440}
1441
1442void asap::Scantable::regridChannel( int nChan, double dnu, int irow )
1443{
1444 // logging
1445 //ofstream ofs( "average.log", std::ios::out | std::ios::app ) ;
1446 //ofs << "IFNO = " << getIF( irow ) << " irow = " << irow << endl ;
1447
1448 Vector<Float> oldspec = specCol_( irow ) ;
1449 Vector<uChar> oldflag = flagsCol_( irow ) ;
1450 Vector<Float> newspec( nChan, 0 ) ;
1451 Vector<uChar> newflag( nChan, false ) ;
1452
1453 // regrid
1454 vector<double> abcissa = getAbcissa( irow ) ;
1455 int oldsize = abcissa.size() ;
1456 double olddnu = abcissa[1] - abcissa[0] ;
1457 //int refChan = 0 ;
1458 //double frac = 0.0 ;
1459 //double wedge = 0.0 ;
1460 //double pile = 0.0 ;
1461 int ichan = 0 ;
1462 double wsum = 0.0 ;
1463 Vector<Float> z( nChan ) ;
1464 z[0] = abcissa[0] - 0.5 * olddnu + 0.5 * dnu ;
1465 for ( int ii = 1 ; ii < nChan ; ii++ )
1466 z[ii] = z[ii-1] + dnu ;
1467 Vector<Float> zi( nChan+1 ) ;
1468 Vector<Float> yi( oldsize + 1 ) ;
1469 zi[0] = z[0] - 0.5 * dnu ;
1470 zi[1] = z[0] + 0.5 * dnu ;
1471 for ( int ii = 2 ; ii < nChan ; ii++ )
1472 zi[ii] = zi[ii-1] + dnu ;
1473 zi[nChan] = z[nChan-1] + 0.5 * dnu ;
1474 yi[0] = abcissa[0] - 0.5 * olddnu ;
1475 yi[1] = abcissa[1] + 0.5 * olddnu ;
1476 for ( int ii = 2 ; ii < oldsize ; ii++ )
1477 yi[ii] = abcissa[ii-1] + olddnu ;
1478 yi[oldsize] = abcissa[oldsize-1] + 0.5 * olddnu ;
1479 if ( dnu > 0.0 ) {
1480 for ( int ii = 0 ; ii < nChan ; ii++ ) {
1481 double zl = zi[ii] ;
1482 double zr = zi[ii+1] ;
1483 for ( int j = ichan ; j < oldsize ; j++ ) {
1484 double yl = yi[j] ;
1485 double yr = yi[j+1] ;
1486 if ( yl <= zl ) {
1487 if ( yr <= zl ) {
1488 continue ;
1489 }
1490 else if ( yr <= zr ) {
1491 newspec[ii] += oldspec[j] * ( yr - zl ) ;
1492 newflag[ii] = newflag[ii] || oldflag[j] ;
1493 wsum += ( yr - zl ) ;
1494 }
1495 else {
1496 newspec[ii] += oldspec[j] * dnu ;
1497 newflag[ii] = newflag[ii] || oldflag[j] ;
1498 wsum += dnu ;
1499 ichan = j ;
1500 break ;
1501 }
1502 }
1503 else if ( yl < zr ) {
1504 if ( yr <= zr ) {
1505 newspec[ii] += oldspec[j] * ( yr - yl ) ;
1506 newflag[ii] = newflag[ii] || oldflag[j] ;
1507 wsum += ( yr - yl ) ;
1508 }
1509 else {
1510 newspec[ii] += oldspec[j] * ( zr - yl ) ;
1511 newflag[ii] = newflag[ii] || oldflag[j] ;
1512 wsum += ( zr - yl ) ;
1513 ichan = j ;
1514 break ;
1515 }
1516 }
1517 else {
1518 ichan = j - 1 ;
1519 break ;
1520 }
1521 }
1522 newspec[ii] /= wsum ;
1523 wsum = 0.0 ;
1524 }
1525 }
1526 else if ( dnu < 0.0 ) {
1527 for ( int ii = 0 ; ii < nChan ; ii++ ) {
1528 double zl = zi[ii] ;
1529 double zr = zi[ii+1] ;
1530 for ( int j = ichan ; j < oldsize ; j++ ) {
1531 double yl = yi[j] ;
1532 double yr = yi[j+1] ;
1533 if ( yl >= zl ) {
1534 if ( yr >= zl ) {
1535 continue ;
1536 }
1537 else if ( yr >= zr ) {
1538 newspec[ii] += oldspec[j] * abs( yr - zl ) ;
1539 newflag[ii] = newflag[ii] || oldflag[j] ;
1540 wsum += abs( yr - zl ) ;
1541 }
1542 else {
1543 newspec[ii] += oldspec[j] * abs( dnu ) ;
1544 newflag[ii] = newflag[ii] || oldflag[j] ;
1545 wsum += abs( dnu ) ;
1546 ichan = j ;
1547 break ;
1548 }
1549 }
1550 else if ( yl > zr ) {
1551 if ( yr >= zr ) {
1552 newspec[ii] += oldspec[j] * abs( yr - yl ) ;
1553 newflag[ii] = newflag[ii] || oldflag[j] ;
1554 wsum += abs( yr - yl ) ;
1555 }
1556 else {
1557 newspec[ii] += oldspec[j] * abs( zr - yl ) ;
1558 newflag[ii] = newflag[ii] || oldflag[j] ;
1559 wsum += abs( zr - yl ) ;
1560 ichan = j ;
1561 break ;
1562 }
1563 }
1564 else {
1565 ichan = j - 1 ;
1566 break ;
1567 }
1568 }
1569 newspec[ii] /= wsum ;
1570 wsum = 0.0 ;
1571 }
1572 }
1573// * ichan = 0
1574// ***/
1575// //ofs << "olddnu = " << olddnu << ", dnu = " << dnu << endl ;
1576// pile += dnu ;
1577// wedge = olddnu * ( refChan + 1 ) ;
1578// while ( wedge < pile ) {
1579// newspec[0] += olddnu * oldspec[refChan] ;
1580// newflag[0] = newflag[0] || oldflag[refChan] ;
1581// //ofs << "channel " << refChan << " is included in new channel 0" << endl ;
1582// refChan++ ;
1583// wedge += olddnu ;
1584// wsum += olddnu ;
1585// //ofs << "newspec[0] = " << newspec[0] << " wsum = " << wsum << endl ;
1586// }
1587// frac = ( wedge - pile ) / olddnu ;
1588// wsum += ( 1.0 - frac ) * olddnu ;
1589// newspec[0] += ( 1.0 - frac ) * olddnu * oldspec[refChan] ;
1590// newflag[0] = newflag[0] || oldflag[refChan] ;
1591// //ofs << "channel " << refChan << " is partly included in new channel 0" << " with fraction of " << ( 1.0 - frac ) << endl ;
1592// //ofs << "newspec[0] = " << newspec[0] << " wsum = " << wsum << endl ;
1593// newspec[0] /= wsum ;
1594// //ofs << "newspec[0] = " << newspec[0] << endl ;
1595// //ofs << "wedge = " << wedge << ", pile = " << pile << endl ;
1596
1597// /***
1598// * ichan = 1 - nChan-2
1599// ***/
1600// for ( int ichan = 1 ; ichan < nChan - 1 ; ichan++ ) {
1601// pile += dnu ;
1602// newspec[ichan] += frac * olddnu * oldspec[refChan] ;
1603// newflag[ichan] = newflag[ichan] || oldflag[refChan] ;
1604// //ofs << "channel " << refChan << " is partly included in new channel " << ichan << " with fraction of " << frac << endl ;
1605// refChan++ ;
1606// wedge += olddnu ;
1607// wsum = frac * olddnu ;
1608// //ofs << "newspec[" << ichan << "] = " << newspec[ichan] << " wsum = " << wsum << endl ;
1609// while ( wedge < pile ) {
1610// newspec[ichan] += olddnu * oldspec[refChan] ;
1611// newflag[ichan] = newflag[ichan] || oldflag[refChan] ;
1612// //ofs << "channel " << refChan << " is included in new channel " << ichan << endl ;
1613// refChan++ ;
1614// wedge += olddnu ;
1615// wsum += olddnu ;
1616// //ofs << "newspec[" << ichan << "] = " << newspec[ichan] << " wsum = " << wsum << endl ;
1617// }
1618// frac = ( wedge - pile ) / olddnu ;
1619// wsum += ( 1.0 - frac ) * olddnu ;
1620// newspec[ichan] += ( 1.0 - frac ) * olddnu * oldspec[refChan] ;
1621// newflag[ichan] = newflag[ichan] || oldflag[refChan] ;
1622// //ofs << "channel " << refChan << " is partly included in new channel " << ichan << " with fraction of " << ( 1.0 - frac ) << endl ;
1623// //ofs << "wedge = " << wedge << ", pile = " << pile << endl ;
1624// //ofs << "newspec[" << ichan << "] = " << newspec[ichan] << " wsum = " << wsum << endl ;
1625// newspec[ichan] /= wsum ;
1626// //ofs << "newspec[" << ichan << "] = " << newspec[ichan] << endl ;
1627// }
1628
1629// /***
1630// * ichan = nChan-1
1631// ***/
1632// // NOTE: Assumed that all spectra have the same bandwidth
1633// pile += dnu ;
1634// newspec[nChan-1] += frac * olddnu * oldspec[refChan] ;
1635// newflag[nChan-1] = newflag[nChan-1] || oldflag[refChan] ;
1636// //ofs << "channel " << refChan << " is partly included in new channel " << nChan-1 << " with fraction of " << frac << endl ;
1637// refChan++ ;
1638// wedge += olddnu ;
1639// wsum = frac * olddnu ;
1640// //ofs << "newspec[" << nChan - 1 << "] = " << newspec[nChan-1] << " wsum = " << wsum << endl ;
1641// for ( int jchan = refChan ; jchan < oldsize ; jchan++ ) {
1642// newspec[nChan-1] += olddnu * oldspec[jchan] ;
1643// newflag[nChan-1] = newflag[nChan-1] || oldflag[jchan] ;
1644// wsum += olddnu ;
1645// //ofs << "channel " << jchan << " is included in new channel " << nChan-1 << " with fraction of " << frac << endl ;
1646// //ofs << "newspec[" << nChan - 1 << "] = " << newspec[nChan-1] << " wsum = " << wsum << endl ;
1647// }
1648// //ofs << "wedge = " << wedge << ", pile = " << pile << endl ;
1649// //ofs << "newspec[" << nChan - 1 << "] = " << newspec[nChan-1] << " wsum = " << wsum << endl ;
1650// newspec[nChan-1] /= wsum ;
1651// //ofs << "newspec[" << nChan - 1 << "] = " << newspec[nChan-1] << endl ;
1652
1653// specCol_.put( irow, newspec ) ;
1654// flagsCol_.put( irow, newflag ) ;
1655
1656// // ofs.close() ;
1657
1658
1659 return ;
1660}
1661
1662}
1663//namespace asap
Note: See TracBrowser for help on using the repository browser.