[2] | 1 | //#---------------------------------------------------------------------------
|
---|
| 2 | //# SDMemTable.cc: A MemoryTable container for single dish integrations
|
---|
| 3 | //#---------------------------------------------------------------------------
|
---|
| 4 | //# Copyright (C) 2004
|
---|
[125] | 5 | //# ATNF
|
---|
[2] | 6 | //#
|
---|
| 7 | //# This program is free software; you can redistribute it and/or modify it
|
---|
| 8 | //# under the terms of the GNU General Public License as published by the Free
|
---|
| 9 | //# Software Foundation; either version 2 of the License, or (at your option)
|
---|
| 10 | //# any later version.
|
---|
| 11 | //#
|
---|
| 12 | //# This program is distributed in the hope that it will be useful, but
|
---|
| 13 | //# WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | //# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
---|
| 15 | //# Public License for more details.
|
---|
| 16 | //#
|
---|
| 17 | //# You should have received a copy of the GNU General Public License along
|
---|
| 18 | //# with this program; if not, write to the Free Software Foundation, Inc.,
|
---|
| 19 | //# 675 Massachusetts Ave, Cambridge, MA 02139, USA.
|
---|
| 20 | //#
|
---|
| 21 | //# Correspondence concerning this software should be addressed as follows:
|
---|
| 22 | //# Internet email: Malte.Marquarding@csiro.au
|
---|
| 23 | //# Postal address: Malte Marquarding,
|
---|
| 24 | //# Australia Telescope National Facility,
|
---|
| 25 | //# P.O. Box 76,
|
---|
| 26 | //# Epping, NSW, 2121,
|
---|
| 27 | //# AUSTRALIA
|
---|
| 28 | //#
|
---|
| 29 | //# $Id:
|
---|
| 30 | //#---------------------------------------------------------------------------
|
---|
| 31 |
|
---|
[206] | 32 | #include <map>
|
---|
| 33 |
|
---|
[125] | 34 | #include <casa/aips.h>
|
---|
[80] | 35 | #include <casa/iostream.h>
|
---|
| 36 | #include <casa/iomanip.h>
|
---|
| 37 | #include <casa/Arrays/Array.h>
|
---|
| 38 | #include <casa/Arrays/ArrayMath.h>
|
---|
| 39 | #include <casa/Arrays/MaskArrMath.h>
|
---|
| 40 | #include <casa/Arrays/ArrayLogical.h>
|
---|
| 41 | #include <casa/Arrays/ArrayAccessor.h>
|
---|
[206] | 42 | #include <casa/Arrays/Vector.h>
|
---|
[2] | 43 |
|
---|
[80] | 44 | #include <tables/Tables/TableParse.h>
|
---|
| 45 | #include <tables/Tables/TableDesc.h>
|
---|
| 46 | #include <tables/Tables/SetupNewTab.h>
|
---|
| 47 | #include <tables/Tables/ScaColDesc.h>
|
---|
| 48 | #include <tables/Tables/ArrColDesc.h>
|
---|
[2] | 49 |
|
---|
[80] | 50 | #include <tables/Tables/ExprNode.h>
|
---|
| 51 | #include <tables/Tables/ScalarColumn.h>
|
---|
| 52 | #include <tables/Tables/ArrayColumn.h>
|
---|
| 53 | #include <tables/Tables/TableRecord.h>
|
---|
| 54 | #include <measures/Measures/MFrequency.h>
|
---|
| 55 | #include <measures/Measures/MeasTable.h>
|
---|
[105] | 56 | #include <coordinates/Coordinates/CoordinateUtil.h>
|
---|
[80] | 57 | #include <casa/Quanta/MVTime.h>
|
---|
[2] | 58 |
|
---|
[215] | 59 | #include "SDDefs.h"
|
---|
[2] | 60 | #include "SDMemTable.h"
|
---|
| 61 | #include "SDContainer.h"
|
---|
| 62 |
|
---|
[206] | 63 |
|
---|
[125] | 64 | using namespace casa;
|
---|
[83] | 65 | using namespace asap;
|
---|
[2] | 66 |
|
---|
[18] | 67 | SDMemTable::SDMemTable() :
|
---|
| 68 | IFSel_(0),
|
---|
| 69 | beamSel_(0),
|
---|
[206] | 70 | polSel_(0)
|
---|
| 71 | {
|
---|
[18] | 72 | setup();
|
---|
| 73 | }
|
---|
[206] | 74 |
|
---|
[2] | 75 | SDMemTable::SDMemTable(const std::string& name) :
|
---|
| 76 | IFSel_(0),
|
---|
| 77 | beamSel_(0),
|
---|
[206] | 78 | polSel_(0)
|
---|
| 79 | {
|
---|
[50] | 80 | Table tab(name);
|
---|
[22] | 81 | table_ = tab.copyToMemoryTable("dummy");
|
---|
[206] | 82 | //cerr << "hello from C SDMemTable @ " << this << endl;
|
---|
[2] | 83 | }
|
---|
| 84 |
|
---|
[206] | 85 | SDMemTable::SDMemTable(const SDMemTable& other, Bool clear)
|
---|
| 86 | {
|
---|
[148] | 87 | IFSel_= other.IFSel_;
|
---|
| 88 | beamSel_= other.beamSel_;
|
---|
| 89 | polSel_= other.polSel_;
|
---|
| 90 | chanMask_ = other.chanMask_;
|
---|
| 91 | table_ = other.table_.copyToMemoryTable(String("dummy"));
|
---|
[2] | 92 | // clear all rows()
|
---|
[16] | 93 | if (clear) {
|
---|
[148] | 94 | table_.removeRow(this->table_.rowNumbers());
|
---|
[16] | 95 | } else {
|
---|
[148] | 96 | IFSel_ = other.IFSel_;
|
---|
| 97 | beamSel_ = other.beamSel_;
|
---|
| 98 | polSel_ = other.polSel_;
|
---|
[16] | 99 | }
|
---|
[206] | 100 | //cerr << "hello from CC SDMemTable @ " << this << endl;
|
---|
[2] | 101 | }
|
---|
| 102 |
|
---|
[80] | 103 | SDMemTable::SDMemTable(const Table& tab, const std::string& exprs) :
|
---|
[2] | 104 | IFSel_(0),
|
---|
| 105 | beamSel_(0),
|
---|
[206] | 106 | polSel_(0)
|
---|
| 107 | {
|
---|
[2] | 108 | Table t = tableCommand(exprs,tab);
|
---|
[89] | 109 | if (t.nrow() == 0)
|
---|
| 110 | throw(AipsError("Query unsuccessful."));
|
---|
[22] | 111 | table_ = t.copyToMemoryTable("dummy");
|
---|
[2] | 112 | }
|
---|
| 113 |
|
---|
[206] | 114 | SDMemTable::~SDMemTable()
|
---|
| 115 | {
|
---|
[105] | 116 | //cerr << "goodbye from SDMemTable @ " << this << endl;
|
---|
[2] | 117 | }
|
---|
| 118 |
|
---|
[206] | 119 | SDMemTable SDMemTable::getScan(Int scanID) const
|
---|
| 120 | {
|
---|
[80] | 121 | String cond("SELECT * from $1 WHERE SCANID == ");
|
---|
| 122 | cond += String::toString(scanID);
|
---|
| 123 | return SDMemTable(table_, cond);
|
---|
[2] | 124 | }
|
---|
| 125 |
|
---|
[206] | 126 | SDMemTable &SDMemTable::operator=(const SDMemTable& other)
|
---|
| 127 | {
|
---|
[148] | 128 | if (this != &other) {
|
---|
| 129 | IFSel_= other.IFSel_;
|
---|
| 130 | beamSel_= other.beamSel_;
|
---|
| 131 | polSel_= other.polSel_;
|
---|
| 132 | chanMask_.resize(0);
|
---|
| 133 | chanMask_ = other.chanMask_;
|
---|
| 134 | table_ = other.table_.copyToMemoryTable(String("dummy"));
|
---|
[206] | 135 | }
|
---|
| 136 | //cerr << "hello from ASS SDMemTable @ " << this << endl;
|
---|
[138] | 137 | return *this;
|
---|
| 138 | }
|
---|
| 139 |
|
---|
[206] | 140 | SDMemTable SDMemTable::getSource(const std::string& source) const
|
---|
| 141 | {
|
---|
[80] | 142 | String cond("SELECT * from $1 WHERE SRCNAME == ");
|
---|
| 143 | cond += source;
|
---|
| 144 | return SDMemTable(table_, cond);
|
---|
| 145 | }
|
---|
| 146 |
|
---|
[206] | 147 | void SDMemTable::setup()
|
---|
| 148 | {
|
---|
[2] | 149 | TableDesc td("", "1", TableDesc::Scratch);
|
---|
| 150 | td.comment() = "A SDMemTable";
|
---|
| 151 | td.addColumn(ScalarColumnDesc<Double>("TIME"));
|
---|
| 152 | td.addColumn(ScalarColumnDesc<String>("SRCNAME"));
|
---|
| 153 | td.addColumn(ArrayColumnDesc<Float>("SPECTRA"));
|
---|
| 154 | td.addColumn(ArrayColumnDesc<uChar>("FLAGTRA"));
|
---|
[89] | 155 | td.addColumn(ArrayColumnDesc<Float>("TSYS"));
|
---|
| 156 | td.addColumn(ScalarColumnDesc<Int>("SCANID"));
|
---|
| 157 | td.addColumn(ScalarColumnDesc<Double>("INTERVAL"));
|
---|
[39] | 158 | td.addColumn(ArrayColumnDesc<uInt>("FREQID"));
|
---|
[78] | 159 | td.addColumn(ArrayColumnDesc<Double>("DIRECTION"));
|
---|
[105] | 160 | td.addColumn(ScalarColumnDesc<String>("FIELDNAME"));
|
---|
| 161 | td.addColumn(ScalarColumnDesc<String>("TCALTIME"));
|
---|
| 162 | td.addColumn(ArrayColumnDesc<Float>("TCAL"));
|
---|
| 163 | td.addColumn(ScalarColumnDesc<Float>("AZIMUTH"));
|
---|
| 164 | td.addColumn(ScalarColumnDesc<Float>("ELEVATION"));
|
---|
| 165 | td.addColumn(ScalarColumnDesc<Float>("PARANGLE"));
|
---|
| 166 | td.addColumn(ScalarColumnDesc<Int>("REFBEAM"));
|
---|
[206] | 167 | td.addColumn(ArrayColumnDesc<String>("HISTORY"));
|
---|
[105] | 168 |
|
---|
[2] | 169 | // Now create a new table from the description.
|
---|
[18] | 170 |
|
---|
[22] | 171 | SetupNewTable aNewTab("dummy", td, Table::New);
|
---|
[89] | 172 | table_ = Table(aNewTab, Table::Memory, 0);
|
---|
[2] | 173 | }
|
---|
| 174 |
|
---|
[206] | 175 | std::string SDMemTable::getSourceName(Int whichRow) const
|
---|
| 176 | {
|
---|
[2] | 177 | ROScalarColumn<String> src(table_, "SRCNAME");
|
---|
| 178 | String name;
|
---|
| 179 | src.get(whichRow, name);
|
---|
| 180 | return name;
|
---|
| 181 | }
|
---|
| 182 |
|
---|
[206] | 183 | std::string SDMemTable::getTime(Int whichRow) const
|
---|
| 184 | {
|
---|
[2] | 185 | ROScalarColumn<Double> src(table_, "TIME");
|
---|
| 186 | Double tm;
|
---|
| 187 | src.get(whichRow, tm);
|
---|
[50] | 188 | MVTime mvt(tm);
|
---|
[105] | 189 | mvt.setFormat(MVTime::TIME);
|
---|
[50] | 190 | ostringstream oss;
|
---|
| 191 | oss << mvt;
|
---|
| 192 | String str(oss);
|
---|
| 193 | return str;
|
---|
[2] | 194 | }
|
---|
[206] | 195 | double SDMemTable::getInterval(Int whichRow) const
|
---|
| 196 | {
|
---|
[50] | 197 | ROScalarColumn<Double> src(table_, "INTERVAL");
|
---|
| 198 | Double intval;
|
---|
| 199 | src.get(whichRow, intval);
|
---|
| 200 | return intval;
|
---|
| 201 | }
|
---|
[2] | 202 |
|
---|
[206] | 203 | bool SDMemTable::setIF(Int whichIF)
|
---|
| 204 | {
|
---|
[50] | 205 | if ( whichIF >= 0 && whichIF < nIF()) {
|
---|
[2] | 206 | IFSel_ = whichIF;
|
---|
| 207 | return true;
|
---|
[50] | 208 | }
|
---|
| 209 | return false;
|
---|
[2] | 210 | }
|
---|
[50] | 211 |
|
---|
[206] | 212 | bool SDMemTable::setBeam(Int whichBeam)
|
---|
| 213 | {
|
---|
[50] | 214 | if ( whichBeam >= 0 && whichBeam < nBeam()) {
|
---|
[2] | 215 | beamSel_ = whichBeam;
|
---|
| 216 | return true;
|
---|
[50] | 217 | }
|
---|
| 218 | return false;
|
---|
| 219 | }
|
---|
[2] | 220 |
|
---|
[206] | 221 | bool SDMemTable::setPol(Int whichPol)
|
---|
| 222 | {
|
---|
[50] | 223 | if ( whichPol >= 0 && whichPol < nPol()) {
|
---|
[2] | 224 | polSel_ = whichPol;
|
---|
| 225 | return true;
|
---|
[50] | 226 | }
|
---|
| 227 | return false;
|
---|
[2] | 228 | }
|
---|
| 229 |
|
---|
[206] | 230 | bool SDMemTable::setMask(std::vector<int> whichChans)
|
---|
| 231 | {
|
---|
[16] | 232 | ROArrayColumn<uChar> spec(table_, "FLAGTRA");
|
---|
| 233 | std::vector<int>::iterator it;
|
---|
| 234 | uInt n = spec.shape(0)(3);
|
---|
[105] | 235 | if (whichChans.empty()) {
|
---|
| 236 | chanMask_ = std::vector<bool>(n,true);
|
---|
| 237 | return true;
|
---|
| 238 | }
|
---|
[16] | 239 | chanMask_.resize(n,true);
|
---|
[39] | 240 | for (it = whichChans.begin(); it != whichChans.end(); ++it) {
|
---|
[105] | 241 | if (*it < n) {
|
---|
[16] | 242 | chanMask_[*it] = false;
|
---|
[105] | 243 | }
|
---|
[16] | 244 | }
|
---|
[2] | 245 | return true;
|
---|
| 246 | }
|
---|
| 247 |
|
---|
[16] | 248 | std::vector<bool> SDMemTable::getMask(Int whichRow) const {
|
---|
| 249 | std::vector<bool> mask;
|
---|
| 250 | ROArrayColumn<uChar> spec(table_, "FLAGTRA");
|
---|
| 251 | Array<uChar> arr;
|
---|
| 252 | spec.get(whichRow, arr);
|
---|
[206] | 253 | ArrayAccessor<uChar, Axis<asap::BeamAxis> > aa0(arr);
|
---|
[16] | 254 | aa0.reset(aa0.begin(uInt(beamSel_)));//go to beam
|
---|
[206] | 255 | ArrayAccessor<uChar, Axis<asap::IFAxis> > aa1(aa0);
|
---|
[16] | 256 | aa1.reset(aa1.begin(uInt(IFSel_)));// go to IF
|
---|
[206] | 257 | ArrayAccessor<uChar, Axis<asap::PolAxis> > aa2(aa1);
|
---|
[16] | 258 | aa2.reset(aa2.begin(uInt(polSel_)));// go to pol
|
---|
| 259 |
|
---|
| 260 | Bool useUserMask = ( chanMask_.size() == arr.shape()(3) );
|
---|
| 261 |
|
---|
| 262 | std::vector<bool> tmp;
|
---|
| 263 | tmp = chanMask_; // WHY the fxxx do I have to make a copy here
|
---|
| 264 | std::vector<bool>::iterator miter;
|
---|
| 265 | miter = tmp.begin();
|
---|
| 266 |
|
---|
[206] | 267 | for (ArrayAccessor<uChar, Axis<asap::ChanAxis> > i(aa2); i != i.end(); ++i) {
|
---|
[16] | 268 | bool out =!static_cast<bool>(*i);
|
---|
| 269 | if (useUserMask) {
|
---|
| 270 | out = out && (*miter);
|
---|
| 271 | miter++;
|
---|
| 272 | }
|
---|
| 273 | mask.push_back(out);
|
---|
[89] | 274 | }
|
---|
[16] | 275 | return mask;
|
---|
[2] | 276 | }
|
---|
[206] | 277 | std::vector<float> SDMemTable::getSpectrum(Int whichRow) const
|
---|
| 278 | {
|
---|
[2] | 279 | std::vector<float> spectrum;
|
---|
| 280 | ROArrayColumn<Float> spec(table_, "SPECTRA");
|
---|
| 281 | Array<Float> arr;
|
---|
| 282 | spec.get(whichRow, arr);
|
---|
[206] | 283 | ArrayAccessor<Float, Axis<asap::BeamAxis> > aa0(arr);
|
---|
[2] | 284 | aa0.reset(aa0.begin(uInt(beamSel_)));//go to beam
|
---|
[206] | 285 | ArrayAccessor<Float, Axis<asap::IFAxis> > aa1(aa0);
|
---|
[2] | 286 | aa1.reset(aa1.begin(uInt(IFSel_)));// go to IF
|
---|
[206] | 287 | ArrayAccessor<Float, Axis<asap::PolAxis> > aa2(aa1);
|
---|
[16] | 288 | aa2.reset(aa2.begin(uInt(polSel_)));// go to pol
|
---|
[206] | 289 | for (ArrayAccessor<Float, Axis<asap::ChanAxis> > i(aa2); i != i.end(); ++i) {
|
---|
[16] | 290 | spectrum.push_back(*i);
|
---|
[2] | 291 | }
|
---|
| 292 | return spectrum;
|
---|
| 293 | }
|
---|
[206] | 294 | std::vector<string> SDMemTable::getCoordInfo() const
|
---|
| 295 | {
|
---|
[105] | 296 | String un;
|
---|
| 297 | Table t = table_.keywordSet().asTable("FREQUENCIES");
|
---|
| 298 | String sunit;
|
---|
| 299 | t.keywordSet().get("UNIT",sunit);
|
---|
| 300 | String dpl;
|
---|
| 301 | t.keywordSet().get("DOPPLER",dpl);
|
---|
| 302 | if (dpl == "") dpl = "RADIO";
|
---|
| 303 | String rfrm;
|
---|
| 304 | t.keywordSet().get("REFFRAME",rfrm);
|
---|
| 305 | std::vector<string> inf;
|
---|
| 306 | inf.push_back(sunit);
|
---|
| 307 | inf.push_back(rfrm);
|
---|
| 308 | inf.push_back(dpl);
|
---|
| 309 | return inf;
|
---|
| 310 | }
|
---|
[39] | 311 |
|
---|
[206] | 312 | void SDMemTable::setCoordInfo(std::vector<string> theinfo)
|
---|
| 313 | {
|
---|
[105] | 314 | std::vector<string>::iterator it;
|
---|
| 315 | String un,rfrm,dpl;
|
---|
| 316 | un = theinfo[0];
|
---|
| 317 | rfrm = theinfo[1];
|
---|
| 318 | dpl = theinfo[2];
|
---|
| 319 |
|
---|
| 320 | Table t = table_.rwKeywordSet().asTable("FREQUENCIES");
|
---|
| 321 | Vector<Double> rstf;
|
---|
| 322 | t.keywordSet().get("RESTFREQS",rstf);
|
---|
| 323 | Bool canDo = True;
|
---|
| 324 | Unit u1("km/s");Unit u2("Hz");
|
---|
| 325 | if (Unit(un) == u1) {
|
---|
| 326 | Vector<Double> rstf;
|
---|
| 327 | t.keywordSet().get("RESTFREQS",rstf);
|
---|
| 328 | if (rstf.nelements() == 0) {
|
---|
| 329 | throw(AipsError("Can't set unit to km/s if no restfrequencies are specified"));
|
---|
| 330 | }
|
---|
| 331 | } else if (Unit(un) != u2 && un != "") {
|
---|
| 332 | throw(AipsError("Unit not conformant with Spectral Coordinates"));
|
---|
| 333 | }
|
---|
| 334 | t.rwKeywordSet().define("UNIT", un);
|
---|
| 335 |
|
---|
| 336 | MFrequency::Types mdr;
|
---|
| 337 | if (!MFrequency::getType(mdr, rfrm)) {
|
---|
| 338 |
|
---|
| 339 | Int a,b;const uInt* c;
|
---|
| 340 | const String* valid = MFrequency::allMyTypes(a, b, c);
|
---|
| 341 | String pfix = "Please specify a legal frame type. Types are\n";
|
---|
| 342 | throw(AipsError(pfix+(*valid)));
|
---|
| 343 | } else {
|
---|
| 344 | t.rwKeywordSet().define("REFFRAME",rfrm);
|
---|
| 345 | }
|
---|
| 346 |
|
---|
| 347 | }
|
---|
| 348 |
|
---|
[206] | 349 | std::vector<double> SDMemTable::getAbcissa(Int whichRow) const
|
---|
| 350 | {
|
---|
[39] | 351 | std::vector<double> absc(nChan());
|
---|
[89] | 352 | Vector<Double> absc1(nChan());
|
---|
[39] | 353 | indgen(absc1);
|
---|
| 354 | ROArrayColumn<uInt> fid(table_, "FREQID");
|
---|
| 355 | Vector<uInt> v;
|
---|
| 356 | fid.get(whichRow, v);
|
---|
| 357 | uInt specidx = v(IFSel_);
|
---|
| 358 | SpectralCoordinate spc = getCoordinate(specidx);
|
---|
[78] | 359 | Table t = table_.keywordSet().asTable("FREQUENCIES");
|
---|
[206] | 360 |
|
---|
| 361 | MDirection direct = getDirection(whichRow);
|
---|
| 362 |
|
---|
[78] | 363 | ROScalarColumn<Double> tme(table_, "TIME");
|
---|
| 364 | Double obstime;
|
---|
| 365 | tme.get(whichRow,obstime);
|
---|
[89] | 366 | MVEpoch tm2(Quantum<Double>(obstime, Unit(String("d"))));
|
---|
[212] | 367 | MEpoch::Types met = getTimeReference();
|
---|
[206] | 368 | MEpoch epoch(tm2, met);
|
---|
| 369 |
|
---|
[78] | 370 | Vector<Double> antpos;
|
---|
| 371 | table_.keywordSet().get("AntennaPosition", antpos);
|
---|
| 372 | MVPosition mvpos(antpos(0),antpos(1),antpos(2));
|
---|
| 373 | MPosition pos(mvpos);
|
---|
[105] | 374 | String sunit;
|
---|
| 375 | t.keywordSet().get("UNIT",sunit);
|
---|
| 376 | if (sunit == "") sunit = "pixel";
|
---|
| 377 | Unit u(sunit);
|
---|
| 378 | String frm;
|
---|
| 379 | t.keywordSet().get("REFFRAME",frm);
|
---|
| 380 | if (frm == "") frm = "TOPO";
|
---|
| 381 | String dpl;
|
---|
| 382 | t.keywordSet().get("DOPPLER",dpl);
|
---|
| 383 | if (dpl == "") dpl = "RADIO";
|
---|
[78] | 384 | MFrequency::Types mtype;
|
---|
[105] | 385 | if (!MFrequency::getType(mtype, frm)) {
|
---|
[89] | 386 | cout << "Frequency type unknown assuming TOPO" << endl;
|
---|
[78] | 387 | mtype = MFrequency::TOPO;
|
---|
| 388 | }
|
---|
[105] | 389 |
|
---|
| 390 | if (!spc.setReferenceConversion(mtype,epoch,pos,direct)) {
|
---|
| 391 | throw(AipsError("Couldn't convert frequency frame."));
|
---|
| 392 | }
|
---|
[78] | 393 |
|
---|
[39] | 394 | if ( u == Unit("km/s") ) {
|
---|
[89] | 395 | Vector<Double> rstf;
|
---|
| 396 | t.keywordSet().get("RESTFREQS",rstf);
|
---|
| 397 | if (rstf.nelements() > 0) {
|
---|
[121] | 398 | if (rstf.nelements() >= nIF())
|
---|
[125] | 399 | spc.selectRestFrequency(uInt(IFSel_));
|
---|
[89] | 400 | spc.setVelocity(u.getName());
|
---|
[39] | 401 | Vector<Double> wrld;
|
---|
| 402 | spc.pixelToVelocity(wrld,absc1);
|
---|
| 403 | std::vector<double>::iterator it;
|
---|
| 404 | uInt i = 0;
|
---|
| 405 | for (it = absc.begin(); it != absc.end(); ++it) {
|
---|
[89] | 406 | (*it) = wrld[i];
|
---|
| 407 | i++;
|
---|
[39] | 408 | }
|
---|
| 409 | }
|
---|
| 410 | } else if (u == Unit("Hz")) {
|
---|
| 411 | Vector<String> wau(1); wau = u.getName();
|
---|
| 412 | spc.setWorldAxisUnits(wau);
|
---|
| 413 | std::vector<double>::iterator it;
|
---|
| 414 | Double tmp;
|
---|
| 415 | uInt i = 0;
|
---|
[89] | 416 | for (it = absc.begin(); it != absc.end(); ++it) {
|
---|
[39] | 417 | spc.toWorld(tmp,absc1[i]);
|
---|
| 418 | (*it) = tmp;
|
---|
| 419 | i++;
|
---|
| 420 | }
|
---|
[105] | 421 |
|
---|
| 422 | } else {
|
---|
| 423 | // assume channels/pixels
|
---|
| 424 | std::vector<double>::iterator it;
|
---|
| 425 | uInt i=0;
|
---|
| 426 | for (it = absc.begin(); it != absc.end(); ++it) {
|
---|
| 427 | (*it) = Double(i++);
|
---|
| 428 | }
|
---|
[39] | 429 | }
|
---|
| 430 | return absc;
|
---|
| 431 | }
|
---|
| 432 |
|
---|
[164] | 433 | std::string SDMemTable::getAbcissaString(Int whichRow) const
|
---|
[105] | 434 | {
|
---|
| 435 | ROArrayColumn<uInt> fid(table_, "FREQID");
|
---|
| 436 | Table t = table_.keywordSet().asTable("FREQUENCIES");
|
---|
| 437 | String sunit;
|
---|
| 438 | t.keywordSet().get("UNIT",sunit);
|
---|
| 439 | if (sunit == "") sunit = "pixel";
|
---|
| 440 | Unit u(sunit);
|
---|
| 441 | Vector<uInt> v;
|
---|
| 442 | fid.get(whichRow, v);
|
---|
| 443 | uInt specidx = v(IFSel_);
|
---|
| 444 | SpectralCoordinate spc = getCoordinate(specidx);
|
---|
| 445 | String frm;
|
---|
| 446 | t.keywordSet().get("REFFRAME",frm);
|
---|
| 447 | MFrequency::Types mtype;
|
---|
| 448 | if (!MFrequency::getType(mtype, frm)) {
|
---|
| 449 | cout << "Frequency type unknown assuming TOPO" << endl;
|
---|
| 450 | mtype = MFrequency::TOPO;
|
---|
| 451 | }
|
---|
| 452 | spc.setFrequencySystem(mtype);
|
---|
| 453 | String s = "Channel";
|
---|
| 454 | if (u == Unit("km/s")) {
|
---|
| 455 | spc.setVelocity(u.getName());
|
---|
| 456 | s = CoordinateUtil::axisLabel(spc,0,True,True,True);
|
---|
| 457 | } else if (u == Unit("Hz")) {
|
---|
| 458 | Vector<String> wau(1);wau = u.getName();
|
---|
| 459 | spc.setWorldAxisUnits(wau);
|
---|
| 460 | s = CoordinateUtil::axisLabel(spc);
|
---|
| 461 | }
|
---|
| 462 | return s;
|
---|
| 463 | }
|
---|
| 464 |
|
---|
[206] | 465 | void SDMemTable::setSpectrum(std::vector<float> spectrum, int whichRow)
|
---|
| 466 | {
|
---|
[89] | 467 | ArrayColumn<Float> spec(table_, "SPECTRA");
|
---|
| 468 | Array<Float> arr;
|
---|
| 469 | spec.get(whichRow, arr);
|
---|
| 470 | if (spectrum.size() != arr.shape()(3)) {
|
---|
| 471 | throw(AipsError("Attempting to set spectrum with incorrect length."));
|
---|
| 472 | }
|
---|
| 473 |
|
---|
[206] | 474 | ArrayAccessor<Float, Axis<asap::BeamAxis> > aa0(arr);
|
---|
[89] | 475 | aa0.reset(aa0.begin(uInt(beamSel_)));//go to beam
|
---|
[206] | 476 | ArrayAccessor<Float, Axis<asap::IFAxis> > aa1(aa0);
|
---|
[89] | 477 | aa1.reset(aa1.begin(uInt(IFSel_)));// go to IF
|
---|
[206] | 478 | ArrayAccessor<Float, Axis<asap::PolAxis> > aa2(aa1);
|
---|
[89] | 479 | aa2.reset(aa2.begin(uInt(polSel_)));// go to pol
|
---|
| 480 |
|
---|
| 481 | std::vector<float>::iterator it = spectrum.begin();
|
---|
[206] | 482 | for (ArrayAccessor<Float, Axis<asap::ChanAxis> > i(aa2); i != i.end(); ++i) {
|
---|
[89] | 483 | (*i) = Float(*it);
|
---|
| 484 | it++;
|
---|
| 485 | }
|
---|
| 486 | spec.put(whichRow, arr);
|
---|
| 487 | }
|
---|
| 488 |
|
---|
[206] | 489 | void SDMemTable::getSpectrum(Vector<Float>& spectrum, Int whichRow) const
|
---|
| 490 | {
|
---|
[21] | 491 | ROArrayColumn<Float> spec(table_, "SPECTRA");
|
---|
| 492 | Array<Float> arr;
|
---|
| 493 | spec.get(whichRow, arr);
|
---|
| 494 | spectrum.resize(arr.shape()(3));
|
---|
[206] | 495 | ArrayAccessor<Float, Axis<asap::BeamAxis> > aa0(arr);
|
---|
[21] | 496 | aa0.reset(aa0.begin(uInt(beamSel_)));//go to beam
|
---|
[206] | 497 | ArrayAccessor<Float, Axis<asap::IFAxis> > aa1(aa0);
|
---|
[21] | 498 | aa1.reset(aa1.begin(uInt(IFSel_)));// go to IF
|
---|
[206] | 499 | ArrayAccessor<Float, Axis<asap::PolAxis> > aa2(aa1);
|
---|
[21] | 500 | aa2.reset(aa2.begin(uInt(polSel_)));// go to pol
|
---|
[2] | 501 |
|
---|
[206] | 502 | ArrayAccessor<Float, Axis<asap::BeamAxis> > va(spectrum);
|
---|
| 503 | for (ArrayAccessor<Float, Axis<asap::ChanAxis> > i(aa2); i != i.end(); ++i) {
|
---|
[21] | 504 | (*va) = (*i);
|
---|
| 505 | va++;
|
---|
| 506 | }
|
---|
| 507 | }
|
---|
[89] | 508 | /*
|
---|
[68] | 509 | void SDMemTable::getMask(Vector<Bool>& mask, Int whichRow) const {
|
---|
[21] | 510 | ROArrayColumn<uChar> spec(table_, "FLAGTRA");
|
---|
| 511 | Array<uChar> arr;
|
---|
| 512 | spec.get(whichRow, arr);
|
---|
| 513 | mask.resize(arr.shape()(3));
|
---|
| 514 |
|
---|
[206] | 515 | ArrayAccessor<uChar, Axis<asap::BeamAxis> > aa0(arr);
|
---|
[21] | 516 | aa0.reset(aa0.begin(uInt(beamSel_)));//go to beam
|
---|
[206] | 517 | ArrayAccessor<uChar, Axis<asap::IFAxis> > aa1(aa0);
|
---|
[21] | 518 | aa1.reset(aa1.begin(uInt(IFSel_)));// go to IF
|
---|
[206] | 519 | ArrayAccessor<uChar, Axis<asap::PolAxis> > aa2(aa1);
|
---|
[21] | 520 | aa2.reset(aa2.begin(uInt(polSel_)));// go to pol
|
---|
| 521 |
|
---|
| 522 | Bool useUserMask = ( chanMask_.size() == arr.shape()(3) );
|
---|
[89] | 523 |
|
---|
[206] | 524 | ArrayAccessor<Bool, Axis<asap::BeamAxis> > va(mask);
|
---|
[21] | 525 | std::vector<bool> tmp;
|
---|
| 526 | tmp = chanMask_; // WHY the fxxx do I have to make a copy here. The
|
---|
[89] | 527 | // iterator should work on chanMask_??
|
---|
[21] | 528 | std::vector<bool>::iterator miter;
|
---|
| 529 | miter = tmp.begin();
|
---|
| 530 |
|
---|
[206] | 531 | for (ArrayAccessor<uChar, Axis<asap::ChanAxis> > i(aa2); i != i.end(); ++i) {
|
---|
[21] | 532 | bool out =!static_cast<bool>(*i);
|
---|
| 533 | if (useUserMask) {
|
---|
| 534 | out = out && (*miter);
|
---|
| 535 | miter++;
|
---|
| 536 | }
|
---|
| 537 | (*va) = out;
|
---|
| 538 | va++;
|
---|
[89] | 539 | }
|
---|
[21] | 540 | }
|
---|
[89] | 541 | */
|
---|
[16] | 542 | MaskedArray<Float> SDMemTable::rowAsMaskedArray(uInt whichRow,
|
---|
[164] | 543 | Bool useSelection) const
|
---|
| 544 | {
|
---|
[2] | 545 | ROArrayColumn<Float> spec(table_, "SPECTRA");
|
---|
| 546 | Array<Float> arr;
|
---|
| 547 | ROArrayColumn<uChar> flag(table_, "FLAGTRA");
|
---|
| 548 | Array<uChar> farr;
|
---|
| 549 | spec.get(whichRow, arr);
|
---|
| 550 | flag.get(whichRow, farr);
|
---|
| 551 | Array<Bool> barr(farr.shape());convertArray(barr, farr);
|
---|
| 552 | MaskedArray<Float> marr;
|
---|
[16] | 553 | if (useSelection) {
|
---|
[206] | 554 | ArrayAccessor<Float, Axis<asap::BeamAxis> > aa0(arr);
|
---|
[16] | 555 | aa0.reset(aa0.begin(uInt(beamSel_)));//go to beam
|
---|
[206] | 556 | ArrayAccessor<Float, Axis<asap::IFAxis> > aa1(aa0);
|
---|
[16] | 557 | aa1.reset(aa1.begin(uInt(IFSel_)));// go to IF
|
---|
[206] | 558 | ArrayAccessor<Float, Axis<asap::PolAxis> > aa2(aa1);
|
---|
[16] | 559 | aa2.reset(aa2.begin(uInt(polSel_)));// go to pol
|
---|
[89] | 560 |
|
---|
[206] | 561 | ArrayAccessor<Bool, Axis<asap::BeamAxis> > baa0(barr);
|
---|
[16] | 562 | baa0.reset(baa0.begin(uInt(beamSel_)));//go to beam
|
---|
[206] | 563 | ArrayAccessor<Bool, Axis<asap::IFAxis> > baa1(baa0);
|
---|
[16] | 564 | baa1.reset(baa1.begin(uInt(IFSel_)));// go to IF
|
---|
[206] | 565 | ArrayAccessor<Bool, Axis<asap::PolAxis> > baa2(baa1);
|
---|
[16] | 566 | baa2.reset(baa2.begin(uInt(polSel_)));// go to pol
|
---|
| 567 |
|
---|
| 568 | Vector<Float> a(arr.shape()(3));
|
---|
| 569 | Vector<Bool> b(barr.shape()(3));
|
---|
[206] | 570 | ArrayAccessor<Float, Axis<asap::BeamAxis> > a0(a);
|
---|
| 571 | ArrayAccessor<Bool, Axis<asap::BeamAxis> > b0(b);
|
---|
[16] | 572 |
|
---|
[206] | 573 | ArrayAccessor<Bool, Axis<asap::ChanAxis> > j(baa2);
|
---|
| 574 | for (ArrayAccessor<Float, Axis<asap::ChanAxis> > i(aa2);
|
---|
| 575 | i != i.end(); ++i) {
|
---|
[16] | 576 | (*a0) = (*i);
|
---|
| 577 | (*b0) = !(*j);
|
---|
| 578 | j++;
|
---|
| 579 | a0++;
|
---|
| 580 | b0++;
|
---|
| 581 | }
|
---|
| 582 | marr.setData(a,b);
|
---|
| 583 | } else {
|
---|
| 584 | marr.setData(arr,!barr);
|
---|
| 585 | }
|
---|
[2] | 586 | return marr;
|
---|
| 587 | }
|
---|
| 588 |
|
---|
[206] | 589 | Float SDMemTable::getTsys(Int whichRow) const
|
---|
| 590 | {
|
---|
[2] | 591 | ROArrayColumn<Float> ts(table_, "TSYS");
|
---|
| 592 | Array<Float> arr;
|
---|
| 593 | ts.get(whichRow, arr);
|
---|
| 594 | Float out;
|
---|
| 595 | IPosition ip(arr.shape());
|
---|
[16] | 596 | ip(0) = beamSel_;ip(1) = IFSel_;ip(2) = polSel_;ip(3)=0;
|
---|
[2] | 597 | out = arr(ip);
|
---|
| 598 | return out;
|
---|
| 599 | }
|
---|
| 600 |
|
---|
[206] | 601 | MDirection SDMemTable::getDirection(Int whichRow) const
|
---|
| 602 | {
|
---|
[212] | 603 | MDirection::Types mdr = getDirectionReference();
|
---|
[206] | 604 | ROArrayColumn<Double> dir(table_, "DIRECTION");
|
---|
| 605 | Array<Double> posit;
|
---|
| 606 | dir.get(whichRow,posit);
|
---|
| 607 | Vector<Double> wpos(2);
|
---|
| 608 | wpos[0] = posit(IPosition(2,beamSel_,0));
|
---|
| 609 | wpos[1] = posit(IPosition(2,beamSel_,1));
|
---|
| 610 | Quantum<Double> lon(wpos[0],Unit(String("rad")));
|
---|
| 611 | Quantum<Double> lat(wpos[1],Unit(String("rad")));
|
---|
| 612 | MDirection direct(lon, lat, mdr);
|
---|
| 613 | return direct;
|
---|
| 614 | }
|
---|
[39] | 615 |
|
---|
[206] | 616 | SpectralCoordinate SDMemTable::getCoordinate(uInt whichIdx) const
|
---|
| 617 | {
|
---|
| 618 |
|
---|
[39] | 619 | Table t = table_.keywordSet().asTable("FREQUENCIES");
|
---|
| 620 | if (whichIdx > t.nrow() ) {
|
---|
[206] | 621 | throw(AipsError("SDMemTable::getCoordinate - whichIdx out of range"));
|
---|
[39] | 622 | }
|
---|
[89] | 623 |
|
---|
[39] | 624 | Double rp,rv,inc;
|
---|
| 625 | String rf;
|
---|
[89] | 626 | Vector<Double> vec;
|
---|
[39] | 627 | ROScalarColumn<Double> rpc(t, "REFPIX");
|
---|
| 628 | ROScalarColumn<Double> rvc(t, "REFVAL");
|
---|
| 629 | ROScalarColumn<Double> incc(t, "INCREMENT");
|
---|
[89] | 630 | t.keywordSet().get("RESTFREQS",vec);
|
---|
[105] | 631 | t.keywordSet().get("BASEREFFRAME",rf);
|
---|
[89] | 632 |
|
---|
[39] | 633 | MFrequency::Types mft;
|
---|
| 634 | if (!MFrequency::getType(mft, rf)) {
|
---|
| 635 | cerr << "Frequency type unknown assuming TOPO" << endl;
|
---|
[89] | 636 | mft = MFrequency::TOPO;
|
---|
| 637 | }
|
---|
[39] | 638 | rpc.get(whichIdx, rp);
|
---|
| 639 | rvc.get(whichIdx, rv);
|
---|
| 640 | incc.get(whichIdx, inc);
|
---|
| 641 | SpectralCoordinate spec(mft,rv,inc,rp);
|
---|
[89] | 642 | if (vec.nelements() > 0)
|
---|
| 643 | spec.setRestFrequencies(vec);
|
---|
[39] | 644 | return spec;
|
---|
| 645 | }
|
---|
| 646 |
|
---|
[89] | 647 | Bool SDMemTable::setCoordinate(const SpectralCoordinate& speccord,
|
---|
| 648 | uInt whichIdx) {
|
---|
[50] | 649 | Table t = table_.rwKeywordSet().asTable("FREQUENCIES");
|
---|
| 650 | if (whichIdx > t.nrow() ) {
|
---|
[89] | 651 | throw(AipsError("SDMemTable::setCoordinate - coord no out of range"));
|
---|
[50] | 652 | }
|
---|
| 653 | ScalarColumn<Double> rpc(t, "REFPIX");
|
---|
| 654 | ScalarColumn<Double> rvc(t, "REFVAL");
|
---|
| 655 | ScalarColumn<Double> incc(t, "INCREMENT");
|
---|
[89] | 656 |
|
---|
[50] | 657 | rpc.put(whichIdx, speccord.referencePixel()[0]);
|
---|
| 658 | rvc.put(whichIdx, speccord.referenceValue()[0]);
|
---|
| 659 | incc.put(whichIdx, speccord.increment()[0]);
|
---|
| 660 |
|
---|
| 661 | return True;
|
---|
| 662 | }
|
---|
| 663 |
|
---|
[89] | 664 | Int SDMemTable::nCoordinates() const
|
---|
| 665 | {
|
---|
| 666 | return table_.keywordSet().asTable("FREQUENCIES").nrow();
|
---|
| 667 | }
|
---|
[50] | 668 |
|
---|
[206] | 669 | void SDMemTable::setRestFreqs(std::vector<double> freqs,
|
---|
| 670 | const std::string& theunit)
|
---|
[89] | 671 | {
|
---|
| 672 | Vector<Double> tvec(freqs);
|
---|
| 673 | Quantum<Vector<Double> > q(tvec, String(theunit));
|
---|
| 674 | tvec.resize();
|
---|
| 675 | tvec = q.getValue("Hz");
|
---|
| 676 | Table t = table_.keywordSet().asTable("FREQUENCIES");
|
---|
| 677 | t.rwKeywordSet().define("RESTFREQS",tvec);
|
---|
| 678 | }
|
---|
| 679 |
|
---|
[206] | 680 | bool SDMemTable::putSDFreqTable(const SDFrequencyTable& sdft)
|
---|
| 681 | {
|
---|
[39] | 682 | TableDesc td("", "1", TableDesc::Scratch);
|
---|
| 683 | td.addColumn(ScalarColumnDesc<Double>("REFPIX"));
|
---|
| 684 | td.addColumn(ScalarColumnDesc<Double>("REFVAL"));
|
---|
| 685 | td.addColumn(ScalarColumnDesc<Double>("INCREMENT"));
|
---|
| 686 | SetupNewTable aNewTab("freqs", td, Table::New);
|
---|
| 687 | Table aTable (aNewTab, Table::Memory, sdft.length());
|
---|
| 688 | ScalarColumn<Double> sc0(aTable, "REFPIX");
|
---|
| 689 | ScalarColumn<Double> sc1(aTable, "REFVAL");
|
---|
| 690 | ScalarColumn<Double> sc2(aTable, "INCREMENT");
|
---|
| 691 | for (uInt i=0; i < sdft.length(); ++i) {
|
---|
| 692 | sc0.put(i,sdft.referencePixel(i));
|
---|
| 693 | sc1.put(i,sdft.referenceValue(i));
|
---|
| 694 | sc2.put(i,sdft.increment(i));
|
---|
| 695 | }
|
---|
[105] | 696 | String rf = sdft.refFrame();
|
---|
| 697 | if (rf.contains("TOPO")) rf = "TOPO";
|
---|
| 698 |
|
---|
| 699 | aTable.rwKeywordSet().define("BASEREFFRAME", rf);
|
---|
| 700 | aTable.rwKeywordSet().define("REFFRAME", rf);
|
---|
[39] | 701 | aTable.rwKeywordSet().define("EQUINOX", sdft.equinox());
|
---|
[105] | 702 | aTable.rwKeywordSet().define("UNIT", String(""));
|
---|
| 703 | aTable.rwKeywordSet().define("DOPPLER", String("RADIO"));
|
---|
[89] | 704 | Vector<Double> rfvec;
|
---|
[206] | 705 | String rfunit;
|
---|
| 706 | sdft.restFrequencies(rfvec,rfunit);
|
---|
| 707 | Quantum<Vector<Double> > q(rfvec, rfunit);
|
---|
| 708 | rfvec.resize();
|
---|
| 709 | rfvec = q.getValue("Hz");
|
---|
[89] | 710 | aTable.rwKeywordSet().define("RESTFREQS", rfvec);
|
---|
[39] | 711 | table_.rwKeywordSet().defineTable ("FREQUENCIES", aTable);
|
---|
| 712 | return True;
|
---|
| 713 | }
|
---|
| 714 |
|
---|
[206] | 715 | SDFrequencyTable SDMemTable::getSDFreqTable() const
|
---|
| 716 | {
|
---|
[39] | 717 | SDFrequencyTable sdft;
|
---|
[89] | 718 |
|
---|
[39] | 719 | return sdft;
|
---|
| 720 | }
|
---|
| 721 |
|
---|
[206] | 722 | bool SDMemTable::putSDContainer(const SDContainer& sdc)
|
---|
| 723 | {
|
---|
[2] | 724 | ScalarColumn<Double> mjd(table_, "TIME");
|
---|
| 725 | ScalarColumn<String> srcn(table_, "SRCNAME");
|
---|
[105] | 726 | ScalarColumn<String> fldn(table_, "FIELDNAME");
|
---|
[2] | 727 | ArrayColumn<Float> spec(table_, "SPECTRA");
|
---|
| 728 | ArrayColumn<uChar> flags(table_, "FLAGTRA");
|
---|
| 729 | ArrayColumn<Float> ts(table_, "TSYS");
|
---|
| 730 | ScalarColumn<Int> scan(table_, "SCANID");
|
---|
[16] | 731 | ScalarColumn<Double> integr(table_, "INTERVAL");
|
---|
[39] | 732 | ArrayColumn<uInt> freqid(table_, "FREQID");
|
---|
[78] | 733 | ArrayColumn<Double> dir(table_, "DIRECTION");
|
---|
[105] | 734 | ScalarColumn<Int> rbeam(table_, "REFBEAM");
|
---|
| 735 | ArrayColumn<Float> tcal(table_, "TCAL");
|
---|
| 736 | ScalarColumn<String> tcalt(table_, "TCALTIME");
|
---|
| 737 | ScalarColumn<Float> az(table_, "AZIMUTH");
|
---|
| 738 | ScalarColumn<Float> el(table_, "ELEVATION");
|
---|
| 739 | ScalarColumn<Float> para(table_, "PARANGLE");
|
---|
[206] | 740 | ArrayColumn<String> hist(table_, "HISTORY");
|
---|
[2] | 741 |
|
---|
| 742 | uInt rno = table_.nrow();
|
---|
| 743 | table_.addRow();
|
---|
[89] | 744 |
|
---|
[2] | 745 | mjd.put(rno, sdc.timestamp);
|
---|
| 746 | srcn.put(rno, sdc.sourcename);
|
---|
[105] | 747 | fldn.put(rno, sdc.fieldname);
|
---|
[2] | 748 | spec.put(rno, sdc.getSpectrum());
|
---|
| 749 | flags.put(rno, sdc.getFlags());
|
---|
| 750 | ts.put(rno, sdc.getTsys());
|
---|
| 751 | scan.put(rno, sdc.scanid);
|
---|
[16] | 752 | integr.put(rno, sdc.interval);
|
---|
[39] | 753 | freqid.put(rno, sdc.getFreqMap());
|
---|
[78] | 754 | dir.put(rno, sdc.getDirection());
|
---|
[105] | 755 | rbeam.put(rno, sdc.refbeam);
|
---|
| 756 | tcal.put(rno, sdc.tcal);
|
---|
| 757 | tcalt.put(rno, sdc.tcaltime);
|
---|
| 758 | az.put(rno, sdc.azimuth);
|
---|
| 759 | el.put(rno, sdc.elevation);
|
---|
| 760 | para.put(rno, sdc.parangle);
|
---|
[206] | 761 | hist.put(rno, sdc.getHistory());
|
---|
[89] | 762 |
|
---|
[2] | 763 | return true;
|
---|
| 764 | }
|
---|
[18] | 765 |
|
---|
[206] | 766 | SDContainer SDMemTable::getSDContainer(uInt whichRow) const
|
---|
| 767 | {
|
---|
[21] | 768 | ROScalarColumn<Double> mjd(table_, "TIME");
|
---|
| 769 | ROScalarColumn<String> srcn(table_, "SRCNAME");
|
---|
[105] | 770 | ROScalarColumn<String> fldn(table_, "FIELDNAME");
|
---|
[21] | 771 | ROArrayColumn<Float> spec(table_, "SPECTRA");
|
---|
| 772 | ROArrayColumn<uChar> flags(table_, "FLAGTRA");
|
---|
| 773 | ROArrayColumn<Float> ts(table_, "TSYS");
|
---|
| 774 | ROScalarColumn<Int> scan(table_, "SCANID");
|
---|
| 775 | ROScalarColumn<Double> integr(table_, "INTERVAL");
|
---|
[39] | 776 | ROArrayColumn<uInt> freqid(table_, "FREQID");
|
---|
[78] | 777 | ROArrayColumn<Double> dir(table_, "DIRECTION");
|
---|
[105] | 778 | ROScalarColumn<Int> rbeam(table_, "REFBEAM");
|
---|
| 779 | ROArrayColumn<Float> tcal(table_, "TCAL");
|
---|
| 780 | ROScalarColumn<String> tcalt(table_, "TCALTIME");
|
---|
| 781 | ROScalarColumn<Float> az(table_, "AZIMUTH");
|
---|
| 782 | ROScalarColumn<Float> el(table_, "ELEVATION");
|
---|
| 783 | ROScalarColumn<Float> para(table_, "PARANGLE");
|
---|
[206] | 784 | ROArrayColumn<String> hist(table_, "HISTORY");
|
---|
[21] | 785 |
|
---|
| 786 | SDContainer sdc(nBeam(),nIF(),nPol(),nChan());
|
---|
| 787 | mjd.get(whichRow, sdc.timestamp);
|
---|
| 788 | srcn.get(whichRow, sdc.sourcename);
|
---|
| 789 | integr.get(whichRow, sdc.interval);
|
---|
| 790 | scan.get(whichRow, sdc.scanid);
|
---|
[105] | 791 | fldn.get(whichRow, sdc.fieldname);
|
---|
| 792 | rbeam.get(whichRow, sdc.refbeam);
|
---|
| 793 | az.get(whichRow, sdc.azimuth);
|
---|
| 794 | el.get(whichRow, sdc.elevation);
|
---|
| 795 | para.get(whichRow, sdc.parangle);
|
---|
| 796 | Vector<Float> tc;
|
---|
| 797 | tcal.get(whichRow, tc);
|
---|
| 798 | sdc.tcal[0] = tc[0];sdc.tcal[1] = tc[1];
|
---|
| 799 | tcalt.get(whichRow, sdc.tcaltime);
|
---|
[21] | 800 | Array<Float> spectrum;
|
---|
| 801 | Array<Float> tsys;
|
---|
| 802 | Array<uChar> flagtrum;
|
---|
[39] | 803 | Vector<uInt> fmap;
|
---|
[78] | 804 | Array<Double> direction;
|
---|
[206] | 805 | Vector<String> histo;
|
---|
[21] | 806 | spec.get(whichRow, spectrum);
|
---|
| 807 | sdc.putSpectrum(spectrum);
|
---|
| 808 | flags.get(whichRow, flagtrum);
|
---|
| 809 | sdc.putFlags(flagtrum);
|
---|
| 810 | ts.get(whichRow, tsys);
|
---|
| 811 | sdc.putTsys(tsys);
|
---|
[39] | 812 | freqid.get(whichRow, fmap);
|
---|
| 813 | sdc.putFreqMap(fmap);
|
---|
[78] | 814 | dir.get(whichRow, direction);
|
---|
| 815 | sdc.putDirection(direction);
|
---|
[206] | 816 | hist.get(whichRow, histo);
|
---|
| 817 | sdc.putHistory(histo);
|
---|
[21] | 818 | return sdc;
|
---|
| 819 | }
|
---|
[78] | 820 |
|
---|
[206] | 821 | bool SDMemTable::putSDHeader(const SDHeader& sdh)
|
---|
| 822 | {
|
---|
[18] | 823 | table_.rwKeywordSet().define("nIF", sdh.nif);
|
---|
| 824 | table_.rwKeywordSet().define("nBeam", sdh.nbeam);
|
---|
| 825 | table_.rwKeywordSet().define("nPol", sdh.npol);
|
---|
| 826 | table_.rwKeywordSet().define("nChan", sdh.nchan);
|
---|
| 827 | table_.rwKeywordSet().define("Observer", sdh.observer);
|
---|
| 828 | table_.rwKeywordSet().define("Project", sdh.project);
|
---|
| 829 | table_.rwKeywordSet().define("Obstype", sdh.obstype);
|
---|
| 830 | table_.rwKeywordSet().define("AntennaName", sdh.antennaname);
|
---|
| 831 | table_.rwKeywordSet().define("AntennaPosition", sdh.antennaposition);
|
---|
| 832 | table_.rwKeywordSet().define("Equinox", sdh.equinox);
|
---|
| 833 | table_.rwKeywordSet().define("FreqRefFrame", sdh.freqref);
|
---|
| 834 | table_.rwKeywordSet().define("FreqRefVal", sdh.reffreq);
|
---|
| 835 | table_.rwKeywordSet().define("Bandwidth", sdh.bandwidth);
|
---|
| 836 | table_.rwKeywordSet().define("UTC", sdh.utc);
|
---|
[206] | 837 | table_.rwKeywordSet().define("FluxUnit", sdh.fluxunit);
|
---|
| 838 | table_.rwKeywordSet().define("Epoch", sdh.epoch);
|
---|
[18] | 839 | return true;
|
---|
[50] | 840 | }
|
---|
[21] | 841 |
|
---|
[206] | 842 | SDHeader SDMemTable::getSDHeader() const
|
---|
| 843 | {
|
---|
[21] | 844 | SDHeader sdh;
|
---|
| 845 | table_.keywordSet().get("nBeam",sdh.nbeam);
|
---|
| 846 | table_.keywordSet().get("nIF",sdh.nif);
|
---|
| 847 | table_.keywordSet().get("nPol",sdh.npol);
|
---|
| 848 | table_.keywordSet().get("nChan",sdh.nchan);
|
---|
| 849 | table_.keywordSet().get("Observer", sdh.observer);
|
---|
| 850 | table_.keywordSet().get("Project", sdh.project);
|
---|
| 851 | table_.keywordSet().get("Obstype", sdh.obstype);
|
---|
| 852 | table_.keywordSet().get("AntennaName", sdh.antennaname);
|
---|
| 853 | table_.keywordSet().get("AntennaPosition", sdh.antennaposition);
|
---|
| 854 | table_.keywordSet().get("Equinox", sdh.equinox);
|
---|
| 855 | table_.keywordSet().get("FreqRefFrame", sdh.freqref);
|
---|
| 856 | table_.keywordSet().get("FreqRefVal", sdh.reffreq);
|
---|
| 857 | table_.keywordSet().get("Bandwidth", sdh.bandwidth);
|
---|
| 858 | table_.keywordSet().get("UTC", sdh.utc);
|
---|
[206] | 859 | table_.keywordSet().get("FluxUnit", sdh.fluxunit);
|
---|
| 860 | table_.keywordSet().get("Epoch", sdh.epoch);
|
---|
[21] | 861 | return sdh;
|
---|
[18] | 862 | }
|
---|
[206] | 863 | void SDMemTable::makePersistent(const std::string& filename)
|
---|
| 864 | {
|
---|
[2] | 865 | table_.deepCopy(filename,Table::New);
|
---|
| 866 | }
|
---|
| 867 |
|
---|
[89] | 868 | Int SDMemTable::nScan() const {
|
---|
[50] | 869 | Int n = 0;
|
---|
| 870 | ROScalarColumn<Int> scans(table_, "SCANID");
|
---|
| 871 | Int previous = -1;Int current=0;
|
---|
| 872 | for (uInt i=0; i< scans.nrow();i++) {
|
---|
| 873 | scans.getScalar(i,current);
|
---|
| 874 | if (previous != current) {
|
---|
[89] | 875 | previous = current;
|
---|
[50] | 876 | n++;
|
---|
| 877 | }
|
---|
| 878 | }
|
---|
| 879 | return n;
|
---|
| 880 | }
|
---|
| 881 |
|
---|
[206] | 882 | String SDMemTable::formatSec(Double x)
|
---|
| 883 | {
|
---|
[105] | 884 | Double xcop = x;
|
---|
| 885 | MVTime mvt(xcop/24./3600.); // make days
|
---|
| 886 | if (x < 59.95)
|
---|
| 887 | return String(" ") + mvt.string(MVTime::TIME_CLEAN_NO_HM, 7)+"s";
|
---|
| 888 | return mvt.string(MVTime::TIME_CLEAN_NO_H, 7)+" ";
|
---|
| 889 | };
|
---|
| 890 |
|
---|
[206] | 891 | std::string SDMemTable::getFluxUnit() const
|
---|
| 892 | {
|
---|
| 893 | String tmp;
|
---|
| 894 | table_.keywordSet().get("FluxUnit", tmp);
|
---|
| 895 | return tmp;
|
---|
| 896 | }
|
---|
| 897 |
|
---|
[218] | 898 | void SDMemTable::setFluxUnit(const std::string& unit)
|
---|
| 899 | {
|
---|
| 900 | String tmp(unit);
|
---|
| 901 | Unit tU(tmp);
|
---|
| 902 | if (tU==Unit("K") || tU==Unit("Jy")) {
|
---|
| 903 | table_.rwKeywordSet().define(String("FluxUnit"), tmp);
|
---|
| 904 | } else {
|
---|
| 905 | throw AipsError("Illegal unit - must be compatible with Jy or K");
|
---|
| 906 | }
|
---|
| 907 | }
|
---|
| 908 |
|
---|
[236] | 909 | void SDMemTable::setInstrument(const std::string& name)
|
---|
| 910 | {
|
---|
| 911 | Bool throwIt = True;
|
---|
| 912 | Instrument ins = convertInstrument (name, throwIt);
|
---|
| 913 | String nameU(name);
|
---|
| 914 | nameU.upcase();
|
---|
| 915 | table_.rwKeywordSet().define(String("AntennaName"), nameU);
|
---|
| 916 | }
|
---|
| 917 |
|
---|
[164] | 918 | std::string SDMemTable::summary() {
|
---|
[2] | 919 | ROScalarColumn<Int> scans(table_, "SCANID");
|
---|
| 920 | ROScalarColumn<String> srcs(table_, "SRCNAME");
|
---|
[89] | 921 | ostringstream oss;
|
---|
| 922 | oss << endl;
|
---|
| 923 | oss << "--------------------------------------------------" << endl;
|
---|
| 924 | oss << " Scan Table Summary" << endl;
|
---|
| 925 | oss << "--------------------------------------------------" << endl;
|
---|
| 926 | oss.flags(std::ios_base::left);
|
---|
| 927 | oss << setw(15) << "Beams:" << setw(4) << nBeam() << endl
|
---|
| 928 | << setw(15) << "IFs:" << setw(4) << nIF() << endl
|
---|
| 929 | << setw(15) << "Polarisations:" << setw(4) << nPol() << endl
|
---|
| 930 | << setw(15) << "Channels:" << setw(4) << nChan() << endl;
|
---|
| 931 | oss << endl;
|
---|
| 932 | String tmp;
|
---|
| 933 | table_.keywordSet().get("Observer", tmp);
|
---|
| 934 | oss << setw(15) << "Observer:" << tmp << endl;
|
---|
| 935 | table_.keywordSet().get("Project", tmp);
|
---|
| 936 | oss << setw(15) << "Project:" << tmp << endl;
|
---|
| 937 | table_.keywordSet().get("Obstype", tmp);
|
---|
| 938 | oss << setw(15) << "Obs. Type:" << tmp << endl;
|
---|
| 939 | table_.keywordSet().get("AntennaName", tmp);
|
---|
| 940 | oss << setw(15) << "Antenna Name:" << tmp << endl;
|
---|
[206] | 941 | table_.keywordSet().get("FluxUnit", tmp);
|
---|
| 942 | oss << setw(15) << "Flux Unit:" << tmp << endl;
|
---|
[105] | 943 | Table t = table_.rwKeywordSet().asTable("FREQUENCIES");
|
---|
| 944 | Vector<Double> vec;
|
---|
| 945 | t.keywordSet().get("RESTFREQS",vec);
|
---|
| 946 | oss << setw(15) << "Rest Freqs:";
|
---|
| 947 | if (vec.nelements() > 0) {
|
---|
| 948 | oss << setprecision(0) << vec << " [Hz]" << endl;
|
---|
| 949 | } else {
|
---|
| 950 | oss << "None set" << endl;
|
---|
| 951 | }
|
---|
[158] | 952 | oss << setw(15) << "Abcissa:" << getAbcissaString() << endl;
|
---|
[105] | 953 | oss << setw(15) << "Cursor:" << "Beam[" << getBeam() << "] "
|
---|
| 954 | << "IF[" << getIF() << "] " << "Pol[" << getPol() << "]" << endl;
|
---|
[89] | 955 | oss << endl;
|
---|
[2] | 956 | uInt count = 0;
|
---|
| 957 | String name;
|
---|
| 958 | Int previous = -1;Int current=0;
|
---|
[89] | 959 | Int integ = 0;
|
---|
| 960 | oss << setw(6) << "Scan"
|
---|
| 961 | << setw(12) << "Source"
|
---|
| 962 | << setw(21) << "Time"
|
---|
| 963 | << setw(11) << "Integration" << endl;
|
---|
[105] | 964 | oss << "--------------------------------------------------" << endl;
|
---|
[2] | 965 | for (uInt i=0; i< scans.nrow();i++) {
|
---|
| 966 | scans.getScalar(i,current);
|
---|
| 967 | if (previous != current) {
|
---|
| 968 | srcs.getScalar(i,name);
|
---|
[50] | 969 | previous = current;
|
---|
[105] | 970 | String t = formatSec(Double(getInterval(i)));
|
---|
[89] | 971 | oss << setw(6) << count << setw(12) << name << setw(21) << getTime(i)
|
---|
[105] | 972 | << setw(2) << setprecision(1)
|
---|
| 973 | << t << endl;
|
---|
[50] | 974 | count++;
|
---|
[89] | 975 | } else {
|
---|
| 976 | integ++;
|
---|
[2] | 977 | }
|
---|
| 978 | }
|
---|
[89] | 979 | oss << endl;
|
---|
| 980 | oss << "Table contains " << table_.nrow() << " integration(s)." << endl;
|
---|
| 981 | oss << "in " << count << " scan(s)." << endl;
|
---|
| 982 | oss << "--------------------------------------------------";
|
---|
| 983 | return String(oss);
|
---|
[2] | 984 | }
|
---|
[18] | 985 |
|
---|
[206] | 986 | Int SDMemTable::nBeam() const
|
---|
| 987 | {
|
---|
[18] | 988 | Int n;
|
---|
| 989 | table_.keywordSet().get("nBeam",n);
|
---|
| 990 | return n;
|
---|
| 991 | }
|
---|
| 992 | Int SDMemTable::nIF() const {
|
---|
| 993 | Int n;
|
---|
| 994 | table_.keywordSet().get("nIF",n);
|
---|
| 995 | return n;
|
---|
| 996 | }
|
---|
| 997 | Int SDMemTable::nPol() const {
|
---|
| 998 | Int n;
|
---|
| 999 | table_.keywordSet().get("nPol",n);
|
---|
| 1000 | return n;
|
---|
| 1001 | }
|
---|
| 1002 | Int SDMemTable::nChan() const {
|
---|
| 1003 | Int n;
|
---|
| 1004 | table_.keywordSet().get("nChan",n);
|
---|
| 1005 | return n;
|
---|
| 1006 | }
|
---|
[206] | 1007 | bool SDMemTable::appendHistory(const std::string& hist, int whichRow)
|
---|
| 1008 | {
|
---|
| 1009 | ArrayColumn<String> histo(table_, "HISTORY");
|
---|
| 1010 | Vector<String> history;
|
---|
| 1011 | histo.get(whichRow, history);
|
---|
| 1012 | history.resize(history.nelements()+1,True);
|
---|
| 1013 | history[history.nelements()-1] = hist;
|
---|
| 1014 | histo.put(whichRow, history);
|
---|
| 1015 | }
|
---|
| 1016 |
|
---|
| 1017 | std::vector<std::string> SDMemTable::history(int whichRow) const
|
---|
| 1018 | {
|
---|
| 1019 | ROArrayColumn<String> hist(table_, "HISTORY");
|
---|
| 1020 | Vector<String> history;
|
---|
| 1021 | hist.get(whichRow, history);
|
---|
| 1022 | std::vector<std::string> stlout;
|
---|
| 1023 | // there is no Array<String>.tovector(std::vector<std::string>), so
|
---|
| 1024 | // do it by hand
|
---|
| 1025 | for (uInt i=0; i<history.nelements(); ++i) {
|
---|
| 1026 | stlout.push_back(history[i]);
|
---|
| 1027 | }
|
---|
| 1028 | return stlout;
|
---|
| 1029 | }
|
---|
[16] | 1030 | /*
|
---|
[18] | 1031 | void SDMemTable::maskChannels(const std::vector<Int>& whichChans ) {
|
---|
[89] | 1032 |
|
---|
[16] | 1033 | std::vector<int>::iterator it;
|
---|
[206] | 1034 | ArrayAccessor<uChar, Axis<asap::PolAxis> > j(flags_);
|
---|
[16] | 1035 | for (it = whichChans.begin(); it != whichChans.end(); it++) {
|
---|
| 1036 | j.reset(j.begin(uInt(*it)));
|
---|
[206] | 1037 | for (ArrayAccessor<uChar, Axis<asap::BeamAxis> > i(j); i != i.end(); ++i) {
|
---|
| 1038 | for (ArrayAccessor<uChar, Axis<asap::IFAxis> > ii(i); ii != ii.end(); ++ii) {
|
---|
| 1039 | for (ArrayAccessor<uChar, Axis<asap::ChanAxis> > iii(ii);
|
---|
[89] | 1040 | iii != iii.end(); ++iii) {
|
---|
| 1041 | (*iii) =
|
---|
| 1042 | }
|
---|
[16] | 1043 | }
|
---|
| 1044 | }
|
---|
| 1045 | }
|
---|
[89] | 1046 |
|
---|
[16] | 1047 | }
|
---|
| 1048 | */
|
---|
[206] | 1049 | void SDMemTable::flag(int whichRow)
|
---|
| 1050 | {
|
---|
[89] | 1051 | ArrayColumn<uChar> spec(table_, "FLAGTRA");
|
---|
| 1052 | Array<uChar> arr;
|
---|
| 1053 | spec.get(whichRow, arr);
|
---|
| 1054 |
|
---|
[206] | 1055 | ArrayAccessor<uChar, Axis<asap::BeamAxis> > aa0(arr);
|
---|
[89] | 1056 | aa0.reset(aa0.begin(uInt(beamSel_)));//go to beam
|
---|
[206] | 1057 | ArrayAccessor<uChar, Axis<asap::IFAxis> > aa1(aa0);
|
---|
[89] | 1058 | aa1.reset(aa1.begin(uInt(IFSel_)));// go to IF
|
---|
[206] | 1059 | ArrayAccessor<uChar, Axis<asap::PolAxis> > aa2(aa1);
|
---|
[89] | 1060 | aa2.reset(aa2.begin(uInt(polSel_)));// go to pol
|
---|
| 1061 |
|
---|
[206] | 1062 | for (ArrayAccessor<uChar, Axis<asap::ChanAxis> > i(aa2); i != i.end(); ++i) {
|
---|
[89] | 1063 | (*i) = uChar(True);
|
---|
| 1064 | }
|
---|
| 1065 |
|
---|
| 1066 | spec.put(whichRow, arr);
|
---|
| 1067 | }
|
---|
[212] | 1068 |
|
---|
| 1069 | MDirection::Types SDMemTable::getDirectionReference () const
|
---|
| 1070 | {
|
---|
| 1071 | Float eq;
|
---|
| 1072 | table_.keywordSet().get("Equinox",eq);
|
---|
| 1073 | std::map<float,string> mp;
|
---|
| 1074 | mp[2000.0] = "J2000";
|
---|
| 1075 | mp[1950.0] = "B1950";
|
---|
| 1076 | MDirection::Types mdr;
|
---|
| 1077 | if (!MDirection::getType(mdr, mp[eq])) {
|
---|
| 1078 | mdr = MDirection::J2000;
|
---|
| 1079 | cerr << "Unknown equinox using J2000" << endl;
|
---|
| 1080 | }
|
---|
| 1081 | //
|
---|
| 1082 | return mdr;
|
---|
| 1083 | }
|
---|
| 1084 |
|
---|
| 1085 | MEpoch::Types SDMemTable::getTimeReference () const
|
---|
| 1086 | {
|
---|
| 1087 | MEpoch::Types met;
|
---|
| 1088 | String ep;
|
---|
| 1089 | table_.keywordSet().get("Epoch",ep);
|
---|
| 1090 | if (!MEpoch::getType(met, ep)) {
|
---|
| 1091 | cerr << "Epoch type uknown - using UTC" << endl;
|
---|
| 1092 | met = MEpoch::UTC;
|
---|
| 1093 | }
|
---|
| 1094 | //
|
---|
| 1095 | return met;
|
---|
| 1096 | }
|
---|
| 1097 |
|
---|
[236] | 1098 |
|
---|
| 1099 | Instrument SDMemTable::convertInstrument (const String& instrument,
|
---|
| 1100 | Bool throwIt)
|
---|
| 1101 | {
|
---|
| 1102 | String t(instrument);
|
---|
| 1103 | t.upcase();
|
---|
| 1104 | //
|
---|
| 1105 | Instrument inst = asap::UNKNOWN;
|
---|
| 1106 | if (t==String("TID")) {
|
---|
| 1107 | inst = TIDBINBILLA;
|
---|
| 1108 | } else if (t==String("ATPKSMB")) {
|
---|
| 1109 | inst = PKSMULTIBEAM;
|
---|
| 1110 | } else if (t==String("ATPKSSB")) {
|
---|
| 1111 | inst = PKSSINGLEBEAM;
|
---|
| 1112 | } else if (t==String("MOPRA")) {
|
---|
| 1113 | inst = MOPRA;
|
---|
| 1114 | } else {
|
---|
| 1115 | if (throwIt) {
|
---|
| 1116 | throw AipsError("Unrecognized instrument - use function scan.set_instrument to set");
|
---|
| 1117 | }
|
---|
| 1118 | }
|
---|
| 1119 | return inst;
|
---|
| 1120 | }
|
---|
| 1121 |
|
---|