source: branches/Release2.0/src/Scantable.cpp@ 2841

Last change on this file since 2841 was 1048, checked in by mar637, 18 years ago

merge from trunk

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 29.6 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
14#include <casa/aips.h>
15#include <casa/iostream.h>
16#include <casa/iomanip.h>
17#include <casa/OS/Path.h>
18#include <casa/OS/File.h>
19#include <casa/Arrays/Array.h>
20#include <casa/Arrays/ArrayMath.h>
21#include <casa/Arrays/MaskArrMath.h>
22#include <casa/Arrays/ArrayLogical.h>
23#include <casa/Arrays/ArrayAccessor.h>
24#include <casa/Arrays/VectorSTLIterator.h>
25#include <casa/Arrays/Vector.h>
26#include <casa/BasicMath/Math.h>
27#include <casa/BasicSL/Constants.h>
28#include <casa/Quanta/MVAngle.h>
29#include <casa/Containers/RecordField.h>
30#include <casa/Utilities/GenSort.h>
31
32#include <tables/Tables/TableParse.h>
33#include <tables/Tables/TableDesc.h>
34#include <tables/Tables/TableCopy.h>
35#include <tables/Tables/SetupNewTab.h>
36#include <tables/Tables/ScaColDesc.h>
37#include <tables/Tables/ArrColDesc.h>
38#include <tables/Tables/TableRow.h>
39#include <tables/Tables/TableVector.h>
40#include <tables/Tables/TableIter.h>
41
42#include <tables/Tables/ExprNode.h>
43#include <tables/Tables/TableRecord.h>
44#include <measures/Measures/MFrequency.h>
45#include <measures/Measures/MEpoch.h>
46#include <measures/Measures/MeasTable.h>
47#include <measures/Measures/MeasRef.h>
48#include <measures/TableMeasures/TableMeasRefDesc.h>
49#include <measures/TableMeasures/TableMeasValueDesc.h>
50#include <measures/TableMeasures/TableMeasDesc.h>
51#include <measures/TableMeasures/ScalarMeasColumn.h>
52#include <coordinates/Coordinates/CoordinateUtil.h>
53#include <casa/Quanta/MVTime.h>
54#include <casa/Quanta/MVAngle.h>
55
56#include "Scantable.h"
57#include "STPolLinear.h"
58#include "STPolStokes.h"
59#include "STAttr.h"
60#include "MathUtils.h"
61
62using namespace casa;
63
64namespace asap {
65
66std::map<std::string, STPol::STPolFactory *> Scantable::factories_;
67
68void Scantable::initFactories() {
69 if ( factories_.empty() ) {
70 Scantable::factories_["linear"] = &STPolLinear::myFactory;
71 Scantable::factories_["stokes"] = &STPolStokes::myFactory;
72 }
73}
74
75Scantable::Scantable(Table::TableType ttype) :
76 type_(ttype)
77{
78 initFactories();
79 setupMainTable();
80 freqTable_ = STFrequencies(*this);
81 table_.rwKeywordSet().defineTable("FREQUENCIES", freqTable_.table());
82 weatherTable_ = STWeather(*this);
83 table_.rwKeywordSet().defineTable("WEATHER", weatherTable_.table());
84 focusTable_ = STFocus(*this);
85 table_.rwKeywordSet().defineTable("FOCUS", focusTable_.table());
86 tcalTable_ = STTcal(*this);
87 table_.rwKeywordSet().defineTable("TCAL", tcalTable_.table());
88 moleculeTable_ = STMolecules(*this);
89 table_.rwKeywordSet().defineTable("MOLECULES", moleculeTable_.table());
90 historyTable_ = STHistory(*this);
91 table_.rwKeywordSet().defineTable("HISTORY", historyTable_.table());
92 fitTable_ = STFit(*this);
93 table_.rwKeywordSet().defineTable("FIT", fitTable_.table());
94 originalTable_ = table_;
95 attach();
96}
97
98Scantable::Scantable(const std::string& name, Table::TableType ttype) :
99 type_(ttype)
100{
101 initFactories();
102 Table tab(name, Table::Update);
103 uInt version = tab.keywordSet().asuInt("VERSION");
104 if (version != version_) {
105 throw(AipsError("Unsupported version of ASAP file."));
106 }
107 if ( type_ == Table::Memory ) {
108 table_ = tab.copyToMemoryTable(generateName());
109 } else {
110 table_ = tab;
111 }
112
113 attachSubtables();
114 originalTable_ = table_;
115 attach();
116}
117
118Scantable::Scantable( const Scantable& other, bool clear )
119{
120 // with or without data
121 String newname = String(generateName());
122 type_ = other.table_.tableType();
123 if ( other.table_.tableType() == Table::Memory ) {
124 if ( clear ) {
125 table_ = TableCopy::makeEmptyMemoryTable(newname,
126 other.table_, True);
127 } else
128 table_ = other.table_.copyToMemoryTable(newname);
129 } else {
130 other.table_.deepCopy(newname, Table::New, False,
131 other.table_.endianFormat(),
132 Bool(clear));
133 table_ = Table(newname, Table::Update);
134 table_.markForDelete();
135 }
136
137 if ( clear ) copySubtables(other);
138 attachSubtables();
139 originalTable_ = table_;
140 attach();
141}
142
143void Scantable::copySubtables(const Scantable& other) {
144 Table t = table_.rwKeywordSet().asTable("FREQUENCIES");
145 TableCopy::copyRows(t, other.freqTable_.table());
146 t = table_.rwKeywordSet().asTable("FOCUS");
147 TableCopy::copyRows(t, other.focusTable_.table());
148 t = table_.rwKeywordSet().asTable("WEATHER");
149 TableCopy::copyRows(t, other.weatherTable_.table());
150 t = table_.rwKeywordSet().asTable("TCAL");
151 TableCopy::copyRows(t, other.tcalTable_.table());
152 t = table_.rwKeywordSet().asTable("MOLECULES");
153 TableCopy::copyRows(t, other.moleculeTable_.table());
154 t = table_.rwKeywordSet().asTable("HISTORY");
155 TableCopy::copyRows(t, other.historyTable_.table());
156 t = table_.rwKeywordSet().asTable("FIT");
157 TableCopy::copyRows(t, other.fitTable_.table());
158}
159
160void Scantable::attachSubtables()
161{
162 freqTable_ = STFrequencies(table_);
163 focusTable_ = STFocus(table_);
164 weatherTable_ = STWeather(table_);
165 tcalTable_ = STTcal(table_);
166 moleculeTable_ = STMolecules(table_);
167 historyTable_ = STHistory(table_);
168 fitTable_ = STFit(table_);
169}
170
171Scantable::~Scantable()
172{
173 //cout << "~Scantable() " << this << endl;
174}
175
176void Scantable::setupMainTable()
177{
178 TableDesc td("", "1", TableDesc::Scratch);
179 td.comment() = "An ASAP Scantable";
180 td.rwKeywordSet().define("VERSION", uInt(version_));
181
182 // n Cycles
183 td.addColumn(ScalarColumnDesc<uInt>("SCANNO"));
184 // new index every nBeam x nIF x nPol
185 td.addColumn(ScalarColumnDesc<uInt>("CYCLENO"));
186
187 td.addColumn(ScalarColumnDesc<uInt>("BEAMNO"));
188 td.addColumn(ScalarColumnDesc<uInt>("IFNO"));
189 // linear, circular, stokes
190 td.rwKeywordSet().define("POLTYPE", String("linear"));
191 td.addColumn(ScalarColumnDesc<uInt>("POLNO"));
192
193 td.addColumn(ScalarColumnDesc<uInt>("FREQ_ID"));
194 td.addColumn(ScalarColumnDesc<uInt>("MOLECULE_ID"));
195 td.addColumn(ScalarColumnDesc<Int>("REFBEAMNO"));
196
197 td.addColumn(ScalarColumnDesc<Double>("TIME"));
198 TableMeasRefDesc measRef(MEpoch::UTC); // UTC as default
199 TableMeasValueDesc measVal(td, "TIME");
200 TableMeasDesc<MEpoch> mepochCol(measVal, measRef);
201 mepochCol.write(td);
202
203 td.addColumn(ScalarColumnDesc<Double>("INTERVAL"));
204
205 td.addColumn(ScalarColumnDesc<String>("SRCNAME"));
206 // Type of source (on=0, off=1, other=-1)
207 td.addColumn(ScalarColumnDesc<Int>("SRCTYPE", Int(-1)));
208 td.addColumn(ScalarColumnDesc<String>("FIELDNAME"));
209
210 //The actual Data Vectors
211 td.addColumn(ArrayColumnDesc<Float>("SPECTRA"));
212 td.addColumn(ArrayColumnDesc<uChar>("FLAGTRA"));
213 td.addColumn(ArrayColumnDesc<Float>("TSYS"));
214
215 td.addColumn(ArrayColumnDesc<Double>("DIRECTION",
216 IPosition(1,2),
217 ColumnDesc::Direct));
218 TableMeasRefDesc mdirRef(MDirection::J2000); // default
219 TableMeasValueDesc tmvdMDir(td, "DIRECTION");
220 // the TableMeasDesc gives the column a type
221 TableMeasDesc<MDirection> mdirCol(tmvdMDir, mdirRef);
222 // a uder set table type e.g. GALCTIC, B1950 ...
223 td.rwKeywordSet().define("DIRECTIONREF", String("J2000"));
224 // writing create the measure column
225 mdirCol.write(td);
226 td.addColumn(ScalarColumnDesc<Float>("AZIMUTH"));
227 td.addColumn(ScalarColumnDesc<Float>("ELEVATION"));
228 td.addColumn(ScalarColumnDesc<Float>("PARANGLE"));
229 td.addColumn(ScalarColumnDesc<Float>("OPACITY"));
230
231 td.addColumn(ScalarColumnDesc<uInt>("TCAL_ID"));
232 ScalarColumnDesc<Int> fitColumn("FIT_ID");
233 fitColumn.setDefault(Int(-1));
234 td.addColumn(fitColumn);
235
236 td.addColumn(ScalarColumnDesc<uInt>("FOCUS_ID"));
237 td.addColumn(ScalarColumnDesc<uInt>("WEATHER_ID"));
238
239 // columns which just get dragged along, as they aren't used in asap
240 td.addColumn(ScalarColumnDesc<Double>("SRCVELOCITY"));
241 td.addColumn(ArrayColumnDesc<Double>("SRCPROPERMOTION"));
242 td.addColumn(ArrayColumnDesc<Double>("SRCDIRECTION"));
243 td.addColumn(ArrayColumnDesc<Double>("SCANRATE"));
244
245 td.rwKeywordSet().define("OBSMODE", String(""));
246
247 // Now create Table SetUp from the description.
248 SetupNewTable aNewTab(generateName(), td, Table::Scratch);
249 table_ = Table(aNewTab, type_, 0);
250 originalTable_ = table_;
251}
252
253
254void Scantable::attach()
255{
256 timeCol_.attach(table_, "TIME");
257 srcnCol_.attach(table_, "SRCNAME");
258 specCol_.attach(table_, "SPECTRA");
259 flagsCol_.attach(table_, "FLAGTRA");
260 tsysCol_.attach(table_, "TSYS");
261 cycleCol_.attach(table_,"CYCLENO");
262 scanCol_.attach(table_, "SCANNO");
263 beamCol_.attach(table_, "BEAMNO");
264 ifCol_.attach(table_, "IFNO");
265 polCol_.attach(table_, "POLNO");
266 integrCol_.attach(table_, "INTERVAL");
267 azCol_.attach(table_, "AZIMUTH");
268 elCol_.attach(table_, "ELEVATION");
269 dirCol_.attach(table_, "DIRECTION");
270 paraCol_.attach(table_, "PARANGLE");
271 fldnCol_.attach(table_, "FIELDNAME");
272 rbeamCol_.attach(table_, "REFBEAMNO");
273
274 mfitidCol_.attach(table_,"FIT_ID");
275 mfreqidCol_.attach(table_, "FREQ_ID");
276 mtcalidCol_.attach(table_, "TCAL_ID");
277 mfocusidCol_.attach(table_, "FOCUS_ID");
278 mmolidCol_.attach(table_, "MOLECULE_ID");
279}
280
281void Scantable::setHeader(const STHeader& sdh)
282{
283 table_.rwKeywordSet().define("nIF", sdh.nif);
284 table_.rwKeywordSet().define("nBeam", sdh.nbeam);
285 table_.rwKeywordSet().define("nPol", sdh.npol);
286 table_.rwKeywordSet().define("nChan", sdh.nchan);
287 table_.rwKeywordSet().define("Observer", sdh.observer);
288 table_.rwKeywordSet().define("Project", sdh.project);
289 table_.rwKeywordSet().define("Obstype", sdh.obstype);
290 table_.rwKeywordSet().define("AntennaName", sdh.antennaname);
291 table_.rwKeywordSet().define("AntennaPosition", sdh.antennaposition);
292 table_.rwKeywordSet().define("Equinox", sdh.equinox);
293 table_.rwKeywordSet().define("FreqRefFrame", sdh.freqref);
294 table_.rwKeywordSet().define("FreqRefVal", sdh.reffreq);
295 table_.rwKeywordSet().define("Bandwidth", sdh.bandwidth);
296 table_.rwKeywordSet().define("UTC", sdh.utc);
297 table_.rwKeywordSet().define("FluxUnit", sdh.fluxunit);
298 table_.rwKeywordSet().define("Epoch", sdh.epoch);
299 table_.rwKeywordSet().define("POLTYPE", sdh.poltype);
300}
301
302STHeader Scantable::getHeader() const
303{
304 STHeader sdh;
305 table_.keywordSet().get("nBeam",sdh.nbeam);
306 table_.keywordSet().get("nIF",sdh.nif);
307 table_.keywordSet().get("nPol",sdh.npol);
308 table_.keywordSet().get("nChan",sdh.nchan);
309 table_.keywordSet().get("Observer", sdh.observer);
310 table_.keywordSet().get("Project", sdh.project);
311 table_.keywordSet().get("Obstype", sdh.obstype);
312 table_.keywordSet().get("AntennaName", sdh.antennaname);
313 table_.keywordSet().get("AntennaPosition", sdh.antennaposition);
314 table_.keywordSet().get("Equinox", sdh.equinox);
315 table_.keywordSet().get("FreqRefFrame", sdh.freqref);
316 table_.keywordSet().get("FreqRefVal", sdh.reffreq);
317 table_.keywordSet().get("Bandwidth", sdh.bandwidth);
318 table_.keywordSet().get("UTC", sdh.utc);
319 table_.keywordSet().get("FluxUnit", sdh.fluxunit);
320 table_.keywordSet().get("Epoch", sdh.epoch);
321 table_.keywordSet().get("POLTYPE", sdh.poltype);
322 return sdh;
323}
324
325bool Scantable::conformant( const Scantable& other )
326{
327 return this->getHeader().conformant(other.getHeader());
328}
329
330
331int Scantable::nscan() const {
332 Vector<uInt> scannos(scanCol_.getColumn());
333 uInt nout = GenSort<uInt>::sort( scannos, Sort::Ascending,
334 Sort::QuickSort|Sort::NoDuplicates );
335 return int(nout);
336}
337
338std::string Scantable::formatSec(Double x) const
339{
340 Double xcop = x;
341 MVTime mvt(xcop/24./3600.); // make days
342
343 if (x < 59.95)
344 return String(" ") + mvt.string(MVTime::TIME_CLEAN_NO_HM, 7)+"s";
345 else if (x < 3599.95)
346 return String(" ") + mvt.string(MVTime::TIME_CLEAN_NO_H,7)+" ";
347 else {
348 ostringstream oss;
349 oss << setw(2) << std::right << setprecision(1) << mvt.hour();
350 oss << ":" << mvt.string(MVTime::TIME_CLEAN_NO_H,7) << " ";
351 return String(oss);
352 }
353};
354
355std::string Scantable::formatDirection(const MDirection& md) const
356{
357 Vector<Double> t = md.getAngle(Unit(String("rad"))).getValue();
358 Int prec = 7;
359
360 MVAngle mvLon(t[0]);
361 String sLon = mvLon.string(MVAngle::TIME,prec);
362 uInt tp = md.getRef().getType();
363 if (tp == MDirection::GALACTIC ||
364 tp == MDirection::SUPERGAL ) {
365 sLon = mvLon(0.0).string(MVAngle::ANGLE_CLEAN,prec);
366 }
367 MVAngle mvLat(t[1]);
368 String sLat = mvLat.string(MVAngle::ANGLE+MVAngle::DIG2,prec);
369 return sLon + String(" ") + sLat;
370}
371
372
373std::string Scantable::getFluxUnit() const
374{
375 return table_.keywordSet().asString("FluxUnit");
376}
377
378void Scantable::setFluxUnit(const std::string& unit)
379{
380 String tmp(unit);
381 Unit tU(tmp);
382 if (tU==Unit("K") || tU==Unit("Jy")) {
383 table_.rwKeywordSet().define(String("FluxUnit"), tmp);
384 } else {
385 throw AipsError("Illegal unit - must be compatible with Jy or K");
386 }
387}
388
389void Scantable::setInstrument(const std::string& name)
390{
391 bool throwIt = true;
392 // create an Instrument to see if this is valid
393 STAttr::convertInstrument(name, throwIt);
394 String nameU(name);
395 nameU.upcase();
396 table_.rwKeywordSet().define(String("AntennaName"), nameU);
397}
398
399MPosition Scantable::getAntennaPosition () const
400{
401 Vector<Double> antpos;
402 table_.keywordSet().get("AntennaPosition", antpos);
403 MVPosition mvpos(antpos(0),antpos(1),antpos(2));
404 return MPosition(mvpos);
405}
406
407void Scantable::makePersistent(const std::string& filename)
408{
409 String inname(filename);
410 Path path(inname);
411 inname = path.expandedName();
412 table_.deepCopy(inname, Table::New);
413}
414
415int Scantable::nbeam( int scanno ) const
416{
417 if ( scanno < 0 ) {
418 Int n;
419 table_.keywordSet().get("nBeam",n);
420 return int(n);
421 } else {
422 // take the first POLNO,IFNO,CYCLENO as nbeam shouldn't vary with these
423 Table t = table_(table_.col("SCANNO") == scanno);
424 ROTableRow row(t);
425 const TableRecord& rec = row.get(0);
426 Table subt = t( t.col("IFNO") == Int(rec.asuInt("IFNO"))
427 && t.col("POLNO") == Int(rec.asuInt("POLNO"))
428 && t.col("CYCLENO") == Int(rec.asuInt("CYCLENO")) );
429 ROTableVector<uInt> v(subt, "BEAMNO");
430 return int(v.nelements());
431 }
432 return 0;
433}
434
435int Scantable::nif( int scanno ) const
436{
437 if ( scanno < 0 ) {
438 Int n;
439 table_.keywordSet().get("nIF",n);
440 return int(n);
441 } else {
442 // take the first POLNO,BEAMNO,CYCLENO as nbeam shouldn't vary with these
443 Table t = table_(table_.col("SCANNO") == scanno);
444 ROTableRow row(t);
445 const TableRecord& rec = row.get(0);
446 Table subt = t( t.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
447 && t.col("POLNO") == Int(rec.asuInt("POLNO"))
448 && t.col("CYCLENO") == Int(rec.asuInt("CYCLENO")) );
449 if ( subt.nrow() == 0 ) return 0;
450 ROTableVector<uInt> v(subt, "IFNO");
451 return int(v.nelements());
452 }
453 return 0;
454}
455
456int Scantable::npol( int scanno ) const
457{
458 if ( scanno < 0 ) {
459 Int n;
460 table_.keywordSet().get("nPol",n);
461 return n;
462 } else {
463 // take the first POLNO,IFNO,CYCLENO as nbeam shouldn't vary with these
464 Table t = table_(table_.col("SCANNO") == scanno);
465 ROTableRow row(t);
466 const TableRecord& rec = row.get(0);
467 Table subt = t( t.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
468 && t.col("IFNO") == Int(rec.asuInt("IFNO"))
469 && t.col("CYCLENO") == Int(rec.asuInt("CYCLENO")) );
470 if ( subt.nrow() == 0 ) return 0;
471 ROTableVector<uInt> v(subt, "POLNO");
472 return int(v.nelements());
473 }
474 return 0;
475}
476
477int Scantable::ncycle( int scanno ) const
478{
479 if ( scanno < 0 ) {
480 Block<String> cols(2);
481 cols[0] = "SCANNO";
482 cols[1] = "CYCLENO";
483 TableIterator it(table_, cols);
484 int n = 0;
485 while ( !it.pastEnd() ) {
486 ++n;
487 ++it;
488 }
489 return n;
490 } else {
491 Table t = table_(table_.col("SCANNO") == scanno);
492 ROTableRow row(t);
493 const TableRecord& rec = row.get(0);
494 Table subt = t( t.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
495 && t.col("POLNO") == Int(rec.asuInt("POLNO"))
496 && t.col("IFNO") == Int(rec.asuInt("IFNO")) );
497 if ( subt.nrow() == 0 ) return 0;
498 return int(subt.nrow());
499 }
500 return 0;
501}
502
503
504int Scantable::nrow( int scanno ) const
505{
506 return int(table_.nrow());
507}
508
509int Scantable::nchan( int ifno ) const
510{
511 if ( ifno < 0 ) {
512 Int n;
513 table_.keywordSet().get("nChan",n);
514 return int(n);
515 } else {
516 // take the first SCANNO,POLNO,BEAMNO,CYCLENO as nbeam shouldn't vary with these
517 Table t = table_(table_.col("IFNO") == ifno);
518 if ( t.nrow() == 0 ) return 0;
519 ROArrayColumn<Float> v(t, "SPECTRA");
520 return v.shape(0)(0);
521 }
522 return 0;
523}
524
525int Scantable::getChannels(int whichrow) const
526{
527 return specCol_.shape(whichrow)(0);
528}
529
530int Scantable::getBeam(int whichrow) const
531{
532 return beamCol_(whichrow);
533}
534
535int Scantable::getIF(int whichrow) const
536{
537 return ifCol_(whichrow);
538}
539
540int Scantable::getPol(int whichrow) const
541{
542 return polCol_(whichrow);
543}
544
545std::string Scantable::formatTime(const MEpoch& me, bool showdate) const
546{
547 MVTime mvt(me.getValue());
548 if (showdate)
549 mvt.setFormat(MVTime::YMD);
550 else
551 mvt.setFormat(MVTime::TIME);
552 ostringstream oss;
553 oss << mvt;
554 return String(oss);
555}
556
557void Scantable::calculateAZEL()
558{
559 MPosition mp = getAntennaPosition();
560 MEpoch::ROScalarColumn timeCol(table_, "TIME");
561 ostringstream oss;
562 oss << "Computed azimuth/elevation using " << endl
563 << mp << endl;
564 for (Int i=0; i<nrow(); ++i) {
565 MEpoch me = timeCol(i);
566 MDirection md = getDirection(i);
567 oss << " Time: " << formatTime(me,False) << " Direction: " << formatDirection(md)
568 << endl << " => ";
569 MeasFrame frame(mp, me);
570 Vector<Double> azel =
571 MDirection::Convert(md, MDirection::Ref(MDirection::AZEL,
572 frame)
573 )().getAngle("rad").getValue();
574 azCol_.put(i,Float(azel[0]));
575 elCol_.put(i,Float(azel[1]));
576 oss << "azel: " << azel[0]/C::pi*180.0 << " "
577 << azel[1]/C::pi*180.0 << " (deg)" << endl;
578 }
579 pushLog(String(oss));
580}
581
582void Scantable::flag(const std::vector<bool>& msk)
583{
584 if ( selector_.empty() && msk.size() == 0 )
585 throw(AipsError("Trying to flag whole scantable."));
586 if ( msk.size() == 0 ) {
587 uChar userflag = 1 << 7;
588 for ( uInt i=0; i<table_.nrow(); ++i) {
589 Vector<uChar> flgs = flagsCol_(i);
590 flgs = userflag;
591 flagsCol_.put(i, flgs);
592 }
593 return;
594 }
595 if ( int(msk.size()) != nchan() ) {
596 throw(AipsError("Mask has incorrect number of channels."));
597 }
598 for ( uInt i=0; i<table_.nrow(); ++i) {
599 Vector<uChar> flgs = flagsCol_(i);
600 if ( flgs.nelements() != msk.size() ) {
601 throw(AipsError("Mask has incorrect number of channels."
602 " Probably varying with IF. Please flag per IF"));
603 }
604 std::vector<bool>::const_iterator it;
605 uInt j = 0;
606 uChar userflag = 1 << 7;
607 for (it = msk.begin(); it != msk.end(); ++it) {
608 if ( *it ) {
609 flgs(j) = userflag;
610 }
611 ++j;
612 }
613 flagsCol_.put(i, flgs);
614 }
615}
616
617std::vector<bool> Scantable::getMask(int whichrow) const
618{
619 Vector<uChar> flags;
620 flagsCol_.get(uInt(whichrow), flags);
621 Vector<Bool> bflag(flags.shape());
622 convertArray(bflag, flags);
623 bflag = !bflag;
624 std::vector<bool> mask;
625 bflag.tovector(mask);
626 return mask;
627}
628
629std::vector<float> Scantable::getSpectrum( int whichrow,
630 const std::string& poltype ) const
631{
632 String ptype = poltype;
633 if (poltype == "" ) ptype = getPolType();
634 if ( whichrow < 0 || whichrow >= nrow() )
635 throw(AipsError("Illegal row number."));
636 std::vector<float> out;
637 Vector<Float> arr;
638 uInt requestedpol = polCol_(whichrow);
639 String basetype = getPolType();
640 if ( ptype == basetype ) {
641 specCol_.get(whichrow, arr);
642 } else {
643 STPol* stpol = 0;
644 stpol =STPol::getPolClass(Scantable::factories_, basetype);
645 try {
646 uInt row = uInt(whichrow);
647 stpol->setSpectra(getPolMatrix(row));
648 Float fang,fhand,parang;
649 fang = focusTable_.getTotalFeedAngle(mfocusidCol_(row));
650 fhand = focusTable_.getFeedHand(mfocusidCol_(row));
651 parang = paraCol_(row);
652 /// @todo re-enable this
653 // disable total feed angle to support paralactifying Caswell style
654 stpol->setPhaseCorrections(parang, -parang, fhand);
655 arr = stpol->getSpectrum(requestedpol, ptype);
656 delete stpol;
657 } catch (AipsError& e) {
658 delete stpol;
659 throw(e);
660 }
661 }
662 if ( arr.nelements() == 0 )
663 pushLog("Not enough polarisations present to do the conversion.");
664 arr.tovector(out);
665 return out;
666}
667
668void asap::Scantable::setSpectrum( const std::vector<float>& spec,
669 int whichrow )
670{
671 Vector<Float> spectrum(spec);
672 Vector<Float> arr;
673 specCol_.get(whichrow, arr);
674 if ( spectrum.nelements() != arr.nelements() )
675 throw AipsError("The spectrum has incorrect number of channels.");
676 specCol_.put(whichrow, spectrum);
677}
678
679
680String Scantable::generateName()
681{
682 return (File::newUniqueName("./","temp")).baseName();
683}
684
685const casa::Table& Scantable::table( ) const
686{
687 return table_;
688}
689
690casa::Table& Scantable::table( )
691{
692 return table_;
693}
694
695std::string Scantable::getPolType() const
696{
697 return table_.keywordSet().asString("POLTYPE");
698}
699
700void Scantable::unsetSelection()
701{
702 table_ = originalTable_;
703 attach();
704 selector_.reset();
705}
706
707void Scantable::setSelection( const STSelector& selection )
708{
709 Table tab = const_cast<STSelector&>(selection).apply(originalTable_);
710 if ( tab.nrow() == 0 ) {
711 throw(AipsError("Selection contains no data. Not applying it."));
712 }
713 table_ = tab;
714 attach();
715 selector_ = selection;
716}
717
718std::string Scantable::summary( bool verbose )
719{
720 // Format header info
721 ostringstream oss;
722 oss << endl;
723 oss << asap::SEPERATOR << endl;
724 oss << " Scan Table Summary" << endl;
725 oss << asap::SEPERATOR << endl;
726 oss.flags(std::ios_base::left);
727 oss << setw(15) << "Beams:" << setw(4) << nbeam() << endl
728 << setw(15) << "IFs:" << setw(4) << nif() << endl
729 << setw(15) << "Polarisations:" << setw(4) << npol()
730 << "(" << getPolType() << ")" << endl
731 << setw(15) << "Channels:" << setw(4) << nchan() << endl;
732 oss << endl;
733 String tmp;
734 oss << setw(15) << "Observer:"
735 << table_.keywordSet().asString("Observer") << endl;
736 oss << setw(15) << "Obs Date:" << getTime(-1,true) << endl;
737 table_.keywordSet().get("Project", tmp);
738 oss << setw(15) << "Project:" << tmp << endl;
739 table_.keywordSet().get("Obstype", tmp);
740 oss << setw(15) << "Obs. Type:" << tmp << endl;
741 table_.keywordSet().get("AntennaName", tmp);
742 oss << setw(15) << "Antenna Name:" << tmp << endl;
743 table_.keywordSet().get("FluxUnit", tmp);
744 oss << setw(15) << "Flux Unit:" << tmp << endl;
745 Vector<Double> vec(moleculeTable_.getRestFrequencies());
746 oss << setw(15) << "Rest Freqs:";
747 if (vec.nelements() > 0) {
748 oss << setprecision(10) << vec << " [Hz]" << endl;
749 } else {
750 oss << "none" << endl;
751 }
752
753 oss << setw(15) << "Abcissa:" << getAbcissaLabel(0) << endl;
754 oss << selector_.print() << endl;
755 oss << endl;
756 // main table
757 String dirtype = "Position ("
758 + getDirectionRefString()
759 + ")";
760 oss << setw(5) << "Scan" << setw(15) << "Source"
761 << setw(10) << "Time" << setw(18) << "Integration" << endl;
762 oss << setw(5) << "" << setw(5) << "Beam" << setw(3) << "" << dirtype << endl;
763 oss << setw(10) << "" << setw(3) << "IF" << setw(6) << ""
764 << setw(8) << "Frame" << setw(16)
765 << "RefVal" << setw(10) << "RefPix" << setw(12) << "Increment" <<endl;
766 oss << asap::SEPERATOR << endl;
767 TableIterator iter(table_, "SCANNO");
768 while (!iter.pastEnd()) {
769 Table subt = iter.table();
770 ROTableRow row(subt);
771 MEpoch::ROScalarColumn timeCol(subt,"TIME");
772 const TableRecord& rec = row.get(0);
773 oss << setw(4) << std::right << rec.asuInt("SCANNO")
774 << std::left << setw(1) << ""
775 << setw(15) << rec.asString("SRCNAME")
776 << setw(10) << formatTime(timeCol(0), false);
777 // count the cycles in the scan
778 TableIterator cyciter(subt, "CYCLENO");
779 int nint = 0;
780 while (!cyciter.pastEnd()) {
781 ++nint;
782 ++cyciter;
783 }
784 oss << setw(3) << std::right << nint << setw(3) << " x " << std::left
785 << setw(6) << formatSec(rec.asFloat("INTERVAL")) << endl;
786
787 TableIterator biter(subt, "BEAMNO");
788 while (!biter.pastEnd()) {
789 Table bsubt = biter.table();
790 ROTableRow brow(bsubt);
791 const TableRecord& brec = brow.get(0);
792 uInt row0 = bsubt.rowNumbers(table_)[0];
793 oss << setw(5) << "" << setw(4) << std::right << brec.asuInt("BEAMNO")<< std::left;
794 oss << setw(4) << "" << formatDirection(getDirection(row0)) << endl;
795 TableIterator iiter(bsubt, "IFNO");
796 while (!iiter.pastEnd()) {
797 Table isubt = iiter.table();
798 ROTableRow irow(isubt);
799 const TableRecord& irec = irow.get(0);
800 oss << setw(10) << "";
801 oss << setw(3) << std::right << irec.asuInt("IFNO") << std::left
802 << setw(2) << "" << frequencies().print(irec.asuInt("FREQ_ID"));
803
804 ++iiter;
805 }
806 ++biter;
807 }
808 ++iter;
809 }
810 /// @todo implement verbose mode
811 return String(oss);
812}
813
814std::string Scantable::getTime(int whichrow, bool showdate) const
815{
816 MEpoch::ROScalarColumn timeCol(table_, "TIME");
817 MEpoch me;
818 if (whichrow > -1) {
819 me = timeCol(uInt(whichrow));
820 } else {
821 Double tm;
822 table_.keywordSet().get("UTC",tm);
823 me = MEpoch(MVEpoch(tm));
824 }
825 return formatTime(me, showdate);
826}
827
828std::vector< double > asap::Scantable::getAbcissa( int whichrow ) const
829{
830 if ( whichrow > int(table_.nrow()) ) throw(AipsError("Illegal ro number"));
831 std::vector<double> stlout;
832 int nchan = specCol_(whichrow).nelements();
833 String us = freqTable_.getUnitString();
834 if ( us == "" || us == "pixel" || us == "channel" ) {
835 for (int i=0; i<nchan; ++i) {
836 stlout.push_back(double(i));
837 }
838 return stlout;
839 }
840
841 const MPosition& mp = getAntennaPosition();
842 const MDirection& md = getDirection(whichrow);
843 const MEpoch& me = timeCol_(whichrow);
844 Double rf = moleculeTable_.getRestFrequency(mmolidCol_(whichrow));
845 SpectralCoordinate spc =
846 freqTable_.getSpectralCoordinate(md, mp, me, rf, mfreqidCol_(whichrow));
847 Vector<Double> pixel(nchan);
848 Vector<Double> world;
849 indgen(pixel);
850 if ( Unit(us) == Unit("Hz") ) {
851 for ( int i=0; i < nchan; ++i) {
852 Double world;
853 spc.toWorld(world, pixel[i]);
854 stlout.push_back(double(world));
855 }
856 } else if ( Unit(us) == Unit("km/s") ) {
857 Vector<Double> world;
858 spc.pixelToVelocity(world, pixel);
859 world.tovector(stlout);
860 }
861 return stlout;
862}
863void asap::Scantable::setDirectionRefString( const std::string & refstr )
864{
865 MDirection::Types mdt;
866 if (refstr != "" && !MDirection::getType(mdt, refstr)) {
867 throw(AipsError("Illegal Direction frame."));
868 }
869 if ( refstr == "" ) {
870 String defaultstr = MDirection::showType(dirCol_.getMeasRef().getType());
871 table_.rwKeywordSet().define("DIRECTIONREF", defaultstr);
872 } else {
873 table_.rwKeywordSet().define("DIRECTIONREF", String(refstr));
874 }
875}
876
877std::string asap::Scantable::getDirectionRefString( ) const
878{
879 return table_.keywordSet().asString("DIRECTIONREF");
880}
881
882MDirection Scantable::getDirection(int whichrow ) const
883{
884 String usertype = table_.keywordSet().asString("DIRECTIONREF");
885 String type = MDirection::showType(dirCol_.getMeasRef().getType());
886 if ( usertype != type ) {
887 MDirection::Types mdt;
888 if (!MDirection::getType(mdt, usertype)) {
889 throw(AipsError("Illegal Direction frame."));
890 }
891 return dirCol_.convert(uInt(whichrow), mdt);
892 } else {
893 return dirCol_(uInt(whichrow));
894 }
895}
896
897std::string Scantable::getAbcissaLabel( int whichrow ) const
898{
899 if ( whichrow > int(table_.nrow()) ) throw(AipsError("Illegal ro number"));
900 const MPosition& mp = getAntennaPosition();
901 const MDirection& md = getDirection(whichrow);
902 const MEpoch& me = timeCol_(whichrow);
903 const Double& rf = mmolidCol_(whichrow);
904 SpectralCoordinate spc =
905 freqTable_.getSpectralCoordinate(md, mp, me, rf, mfreqidCol_(whichrow));
906
907 String s = "Channel";
908 Unit u = Unit(freqTable_.getUnitString());
909 if (u == Unit("km/s")) {
910 s = CoordinateUtil::axisLabel(spc,0,True,True,True);
911 } else if (u == Unit("Hz")) {
912 Vector<String> wau(1);wau = u.getName();
913 spc.setWorldAxisUnits(wau);
914 s = CoordinateUtil::axisLabel(spc,0,True,True,False);
915 }
916 return s;
917
918}
919
920void asap::Scantable::setRestFrequencies( double rf, const std::string& unit )
921{
922 ///@todo lookup in line table to fill in name and formattedname
923 Unit u(unit);
924 Quantum<Double> urf(rf, u);
925 uInt id = moleculeTable_.addEntry(urf.getValue("Hz"), "", "");
926 TableVector<uInt> tabvec(table_, "MOLECULE_ID");
927 tabvec = id;
928}
929
930void asap::Scantable::setRestFrequencies( const std::string& name )
931{
932 throw(AipsError("setRestFrequencies( const std::string& name ) NYI"));
933 ///@todo implement
934}
935
936std::vector< unsigned int > asap::Scantable::rownumbers( ) const
937{
938 std::vector<unsigned int> stlout;
939 Vector<uInt> vec = table_.rowNumbers();
940 vec.tovector(stlout);
941 return stlout;
942}
943
944
945Matrix<Float> asap::Scantable::getPolMatrix( uInt whichrow ) const
946{
947 ROTableRow row(table_);
948 const TableRecord& rec = row.get(whichrow);
949 Table t =
950 originalTable_( originalTable_.col("SCANNO") == Int(rec.asuInt("SCANNO"))
951 && originalTable_.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
952 && originalTable_.col("IFNO") == Int(rec.asuInt("IFNO"))
953 && originalTable_.col("CYCLENO") == Int(rec.asuInt("CYCLENO")) );
954 ROArrayColumn<Float> speccol(t, "SPECTRA");
955 return speccol.getColumn();
956}
957
958std::vector< std::string > asap::Scantable::columnNames( ) const
959{
960 Vector<String> vec = table_.tableDesc().columnNames();
961 return mathutil::tovectorstring(vec);
962}
963
964casa::MEpoch::Types asap::Scantable::getTimeReference( ) const
965{
966 return MEpoch::castType(timeCol_.getMeasRef().getType());
967}
968
969void asap::Scantable::addFit( const STFitEntry & fit, int row )
970{
971 cout << mfitidCol_(uInt(row)) << endl;
972 uInt id = fitTable_.addEntry(fit, mfitidCol_(uInt(row)));
973 mfitidCol_.put(uInt(row), id);
974}
975
976
977}
978 //namespace asap
Note: See TracBrowser for help on using the repository browser.