1 | //#---------------------------------------------------------------------------
|
---|
2 | //# SDMemTable.cc: A MemoryTable container for single dish integrations
|
---|
3 | //#---------------------------------------------------------------------------
|
---|
4 | //# Copyright (C) 2004
|
---|
5 | //# ATNF
|
---|
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 |
|
---|
32 | #include <map>
|
---|
33 |
|
---|
34 | #include <casa/aips.h>
|
---|
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>
|
---|
42 | #include <casa/Arrays/Vector.h>
|
---|
43 | #include <casa/BasicMath/Math.h>
|
---|
44 | #include <casa/Quanta/MVAngle.h>
|
---|
45 |
|
---|
46 | #include <tables/Tables/TableParse.h>
|
---|
47 | #include <tables/Tables/TableDesc.h>
|
---|
48 | #include <tables/Tables/SetupNewTab.h>
|
---|
49 | #include <tables/Tables/ScaColDesc.h>
|
---|
50 | #include <tables/Tables/ArrColDesc.h>
|
---|
51 |
|
---|
52 | #include <tables/Tables/ExprNode.h>
|
---|
53 | #include <tables/Tables/TableRecord.h>
|
---|
54 | #include <measures/Measures/MFrequency.h>
|
---|
55 | #include <measures/Measures/MeasTable.h>
|
---|
56 | #include <coordinates/Coordinates/CoordinateUtil.h>
|
---|
57 | #include <casa/Quanta/MVTime.h>
|
---|
58 | #include <casa/Quanta/MVAngle.h>
|
---|
59 |
|
---|
60 | #include "SDDefs.h"
|
---|
61 | #include "SDMemTable.h"
|
---|
62 | #include "SDContainer.h"
|
---|
63 | #include "MathUtils.h"
|
---|
64 | #include "SDPol.h"
|
---|
65 |
|
---|
66 |
|
---|
67 | using namespace casa;
|
---|
68 | using namespace asap;
|
---|
69 |
|
---|
70 | SDMemTable::SDMemTable() :
|
---|
71 | IFSel_(0),
|
---|
72 | beamSel_(0),
|
---|
73 | polSel_(0)
|
---|
74 | {
|
---|
75 | setup();
|
---|
76 | attach();
|
---|
77 | }
|
---|
78 |
|
---|
79 | SDMemTable::SDMemTable(const std::string& name) :
|
---|
80 | IFSel_(0),
|
---|
81 | beamSel_(0),
|
---|
82 | polSel_(0)
|
---|
83 | {
|
---|
84 | Table tab(name);
|
---|
85 | table_ = tab.copyToMemoryTable("dummy");
|
---|
86 | //cerr << "hello from C SDMemTable @ " << this << endl;
|
---|
87 | attach();
|
---|
88 | }
|
---|
89 |
|
---|
90 | SDMemTable::SDMemTable(const SDMemTable& other, Bool clear)
|
---|
91 | {
|
---|
92 | IFSel_= other.IFSel_;
|
---|
93 | beamSel_= other.beamSel_;
|
---|
94 | polSel_= other.polSel_;
|
---|
95 | chanMask_ = other.chanMask_;
|
---|
96 | table_ = other.table_.copyToMemoryTable(String("dummy"));
|
---|
97 | // clear all rows()
|
---|
98 | if (clear) {
|
---|
99 | table_.removeRow(this->table_.rowNumbers());
|
---|
100 | } else {
|
---|
101 | IFSel_ = other.IFSel_;
|
---|
102 | beamSel_ = other.beamSel_;
|
---|
103 | polSel_ = other.polSel_;
|
---|
104 | }
|
---|
105 | //
|
---|
106 | attach();
|
---|
107 | //cerr << "hello from CC SDMemTable @ " << this << endl;
|
---|
108 | }
|
---|
109 |
|
---|
110 | SDMemTable::SDMemTable(const Table& tab, const std::string& exprs) :
|
---|
111 | IFSel_(0),
|
---|
112 | beamSel_(0),
|
---|
113 | polSel_(0)
|
---|
114 | {
|
---|
115 | cout << exprs << endl;
|
---|
116 | Table t = tableCommand(exprs,tab);
|
---|
117 | if (t.nrow() == 0)
|
---|
118 | throw(AipsError("Query unsuccessful."));
|
---|
119 | table_ = t.copyToMemoryTable("dummy");
|
---|
120 | attach();
|
---|
121 | renumber();
|
---|
122 | }
|
---|
123 |
|
---|
124 | SDMemTable::~SDMemTable()
|
---|
125 | {
|
---|
126 | //cerr << "goodbye from SDMemTable @ " << this << endl;
|
---|
127 | }
|
---|
128 |
|
---|
129 | SDMemTable SDMemTable::getScan(Int scanID) const
|
---|
130 | {
|
---|
131 | String cond("SELECT * from $1 WHERE SCANID == ");
|
---|
132 | cond += String::toString(scanID);
|
---|
133 | return SDMemTable(table_, cond);
|
---|
134 | }
|
---|
135 |
|
---|
136 | SDMemTable &SDMemTable::operator=(const SDMemTable& other)
|
---|
137 | {
|
---|
138 | if (this != &other) {
|
---|
139 | IFSel_= other.IFSel_;
|
---|
140 | beamSel_= other.beamSel_;
|
---|
141 | polSel_= other.polSel_;
|
---|
142 | chanMask_.resize(0);
|
---|
143 | chanMask_ = other.chanMask_;
|
---|
144 | table_ = other.table_.copyToMemoryTable(String("dummy"));
|
---|
145 | attach();
|
---|
146 | }
|
---|
147 | //cerr << "hello from ASS SDMemTable @ " << this << endl;
|
---|
148 | return *this;
|
---|
149 | }
|
---|
150 |
|
---|
151 | SDMemTable SDMemTable::getSource(const std::string& source) const
|
---|
152 | {
|
---|
153 | String cond("SELECT * from $1 WHERE SRCNAME == ");
|
---|
154 | cond += source;
|
---|
155 | return SDMemTable(table_, cond);
|
---|
156 | }
|
---|
157 |
|
---|
158 | void SDMemTable::setup()
|
---|
159 | {
|
---|
160 | TableDesc td("", "1", TableDesc::Scratch);
|
---|
161 | td.comment() = "A SDMemTable";
|
---|
162 | //
|
---|
163 | td.addColumn(ScalarColumnDesc<Double>("TIME"));
|
---|
164 | td.addColumn(ScalarColumnDesc<String>("SRCNAME"));
|
---|
165 | td.addColumn(ArrayColumnDesc<Float>("SPECTRA"));
|
---|
166 | td.addColumn(ArrayColumnDesc<uChar>("FLAGTRA"));
|
---|
167 | td.addColumn(ArrayColumnDesc<Float>("TSYS"));
|
---|
168 | td.addColumn(ArrayColumnDesc<Float>("STOKES"));
|
---|
169 | td.addColumn(ScalarColumnDesc<Int>("SCANID"));
|
---|
170 | td.addColumn(ScalarColumnDesc<Double>("INTERVAL"));
|
---|
171 | td.addColumn(ArrayColumnDesc<uInt>("FREQID"));
|
---|
172 | td.addColumn(ArrayColumnDesc<uInt>("RESTFREQID"));
|
---|
173 | td.addColumn(ArrayColumnDesc<Double>("DIRECTION"));
|
---|
174 | td.addColumn(ScalarColumnDesc<String>("FIELDNAME"));
|
---|
175 | td.addColumn(ScalarColumnDesc<String>("TCALTIME"));
|
---|
176 | td.addColumn(ArrayColumnDesc<Float>("TCAL"));
|
---|
177 | td.addColumn(ScalarColumnDesc<Float>("AZIMUTH"));
|
---|
178 | td.addColumn(ScalarColumnDesc<Float>("ELEVATION"));
|
---|
179 | td.addColumn(ScalarColumnDesc<Float>("PARANGLE"));
|
---|
180 | td.addColumn(ScalarColumnDesc<Int>("REFBEAM"));
|
---|
181 | td.addColumn(ArrayColumnDesc<String>("HISTORY"));
|
---|
182 |
|
---|
183 | // Now create Table SetUp from the description.
|
---|
184 |
|
---|
185 | SetupNewTable aNewTab("dummy", td, Table::New);
|
---|
186 |
|
---|
187 | // Bind the Stokes Virtual machine to the STOKES column
|
---|
188 | // Because we don't know how many polarizations will
|
---|
189 | // be in the data at this point, we must bind the
|
---|
190 | // Virtual Engine regardless. The STOKES column won't
|
---|
191 | // be accessed if not appropriate (nPol=4)
|
---|
192 |
|
---|
193 | SDStokesEngine stokesEngine(String("STOKES"), String("SPECTRA"));
|
---|
194 | aNewTab.bindColumn ("STOKES", stokesEngine);
|
---|
195 |
|
---|
196 | // Create Table
|
---|
197 |
|
---|
198 | table_ = Table(aNewTab, Table::Memory, 0);
|
---|
199 | }
|
---|
200 |
|
---|
201 |
|
---|
202 | void SDMemTable::attach()
|
---|
203 | {
|
---|
204 | timeCol_.attach(table_, "TIME");
|
---|
205 | srcnCol_.attach(table_, "SRCNAME");
|
---|
206 | specCol_.attach(table_, "SPECTRA");
|
---|
207 | flagsCol_.attach(table_, "FLAGTRA");
|
---|
208 | tsCol_.attach(table_, "TSYS");
|
---|
209 | stokesCol_.attach(table_, "STOKES");
|
---|
210 | scanCol_.attach(table_, "SCANID");
|
---|
211 | integrCol_.attach(table_, "INTERVAL");
|
---|
212 | freqidCol_.attach(table_, "FREQID");
|
---|
213 | restfreqidCol_.attach(table_, "RESTFREQID");
|
---|
214 | dirCol_.attach(table_, "DIRECTION");
|
---|
215 | fldnCol_.attach(table_, "FIELDNAME");
|
---|
216 | tcaltCol_.attach(table_, "TCALTIME");
|
---|
217 | tcalCol_.attach(table_, "TCAL");
|
---|
218 | azCol_.attach(table_, "AZIMUTH");
|
---|
219 | elCol_.attach(table_, "ELEVATION");
|
---|
220 | paraCol_.attach(table_, "PARANGLE");
|
---|
221 | rbeamCol_.attach(table_, "REFBEAM");
|
---|
222 | histCol_.attach(table_, "HISTORY");
|
---|
223 | }
|
---|
224 |
|
---|
225 |
|
---|
226 | std::string SDMemTable::getSourceName(Int whichRow) const
|
---|
227 | {
|
---|
228 | String name;
|
---|
229 | srcnCol_.get(whichRow, name);
|
---|
230 | return name;
|
---|
231 | }
|
---|
232 |
|
---|
233 | std::string SDMemTable::getTime(Int whichRow, Bool showDate) const
|
---|
234 | {
|
---|
235 | Double tm;
|
---|
236 | if (whichRow > -1) {
|
---|
237 | timeCol_.get(whichRow, tm);
|
---|
238 | } else {
|
---|
239 | table_.keywordSet().get("UTC",tm);
|
---|
240 | }
|
---|
241 | MVTime mvt(tm);
|
---|
242 | if (showDate)
|
---|
243 | mvt.setFormat(MVTime::YMD);
|
---|
244 | else
|
---|
245 | mvt.setFormat(MVTime::TIME);
|
---|
246 | ostringstream oss;
|
---|
247 | oss << mvt;
|
---|
248 | return String(oss);
|
---|
249 | }
|
---|
250 |
|
---|
251 | double SDMemTable::getInterval(Int whichRow) const
|
---|
252 | {
|
---|
253 | Double intval;
|
---|
254 | integrCol_.get(whichRow, intval);
|
---|
255 | return intval;
|
---|
256 | }
|
---|
257 |
|
---|
258 | bool SDMemTable::setIF(Int whichIF)
|
---|
259 | {
|
---|
260 | if ( whichIF >= 0 && whichIF < nIF()) {
|
---|
261 | IFSel_ = whichIF;
|
---|
262 | return true;
|
---|
263 | }
|
---|
264 | return false;
|
---|
265 | }
|
---|
266 |
|
---|
267 | bool SDMemTable::setBeam(Int whichBeam)
|
---|
268 | {
|
---|
269 | if ( whichBeam >= 0 && whichBeam < nBeam()) {
|
---|
270 | beamSel_ = whichBeam;
|
---|
271 | return true;
|
---|
272 | }
|
---|
273 | return false;
|
---|
274 | }
|
---|
275 |
|
---|
276 | bool SDMemTable::setPol(Int whichPol)
|
---|
277 | {
|
---|
278 | if ( whichPol >= 0 && whichPol < nPol()) {
|
---|
279 | polSel_ = whichPol;
|
---|
280 | return true;
|
---|
281 | }
|
---|
282 | return false;
|
---|
283 | }
|
---|
284 |
|
---|
285 | void SDMemTable::resetCursor()
|
---|
286 | {
|
---|
287 | polSel_ = 0;
|
---|
288 | IFSel_ = 0;
|
---|
289 | beamSel_ = 0;
|
---|
290 | }
|
---|
291 |
|
---|
292 | bool SDMemTable::setMask(std::vector<int> whichChans)
|
---|
293 | {
|
---|
294 | std::vector<int>::iterator it;
|
---|
295 | uInt n = flagsCol_.shape(0)(3);
|
---|
296 | if (whichChans.empty()) {
|
---|
297 | chanMask_ = std::vector<bool>(n,true);
|
---|
298 | return true;
|
---|
299 | }
|
---|
300 | chanMask_.resize(n,true);
|
---|
301 | for (it = whichChans.begin(); it != whichChans.end(); ++it) {
|
---|
302 | if (*it < n) {
|
---|
303 | chanMask_[*it] = false;
|
---|
304 | }
|
---|
305 | }
|
---|
306 | return true;
|
---|
307 | }
|
---|
308 |
|
---|
309 | std::vector<bool> SDMemTable::getMask(Int whichRow) const {
|
---|
310 | std::vector<bool> mask;
|
---|
311 | Array<uChar> arr;
|
---|
312 | flagsCol_.get(whichRow, arr);
|
---|
313 | ArrayAccessor<uChar, Axis<asap::BeamAxis> > aa0(arr);
|
---|
314 | aa0.reset(aa0.begin(uInt(beamSel_)));//go to beam
|
---|
315 | ArrayAccessor<uChar, Axis<asap::IFAxis> > aa1(aa0);
|
---|
316 | aa1.reset(aa1.begin(uInt(IFSel_)));// go to IF
|
---|
317 | ArrayAccessor<uChar, Axis<asap::PolAxis> > aa2(aa1);
|
---|
318 | aa2.reset(aa2.begin(uInt(polSel_)));// go to pol
|
---|
319 |
|
---|
320 | Bool useUserMask = ( chanMask_.size() == arr.shape()(3) );
|
---|
321 |
|
---|
322 | std::vector<bool> tmp;
|
---|
323 | tmp = chanMask_; // WHY the fxxx do I have to make a copy here
|
---|
324 | std::vector<bool>::iterator miter;
|
---|
325 | miter = tmp.begin();
|
---|
326 |
|
---|
327 | for (ArrayAccessor<uChar, Axis<asap::ChanAxis> > i(aa2); i != i.end(); ++i) {
|
---|
328 | bool out =!static_cast<bool>(*i);
|
---|
329 | if (useUserMask) {
|
---|
330 | out = out && (*miter);
|
---|
331 | miter++;
|
---|
332 | }
|
---|
333 | mask.push_back(out);
|
---|
334 | }
|
---|
335 | return mask;
|
---|
336 | }
|
---|
337 |
|
---|
338 |
|
---|
339 |
|
---|
340 | std::vector<float> SDMemTable::getSpectrum(Int whichRow) const
|
---|
341 | {
|
---|
342 |
|
---|
343 | Array<Float> arr;
|
---|
344 | specCol_.get(whichRow, arr);
|
---|
345 | return getFloatSpectrum (arr);
|
---|
346 | }
|
---|
347 |
|
---|
348 | std::vector<float> SDMemTable::getStokesSpectrum(Int whichRow, Bool doPol, Float paOffset) const
|
---|
349 | //
|
---|
350 | // Gets
|
---|
351 | // doPol=False : I,Q,U,V
|
---|
352 | // doPol=True : I,P,PA,V ; P = sqrt(Q**2+U**2), PA = 0.5*atan2(Q,U)
|
---|
353 | //
|
---|
354 | {
|
---|
355 | AlwaysAssert(asap::nAxes==4,AipsError);
|
---|
356 | if (nPol()!=1 && nPol()!=2 && nPol()!=4) {
|
---|
357 | throw (AipsError("You must have 1,2 or 4 polarizations to get the Stokes parameters"));
|
---|
358 | }
|
---|
359 | Array<Float> arr;
|
---|
360 | stokesCol_.get(whichRow, arr);
|
---|
361 | //
|
---|
362 | if (doPol && (polSel_==1 || polSel_==2)) { // Q,U --> P, P.A.
|
---|
363 |
|
---|
364 | // Set current cursor location
|
---|
365 |
|
---|
366 | const IPosition& shape = arr.shape();
|
---|
367 | IPosition start, end;
|
---|
368 | setCursorSlice (start, end, shape);
|
---|
369 |
|
---|
370 | // Get Q and U slices
|
---|
371 |
|
---|
372 | Array<Float> Q = SDPolUtil::getStokesSlice (arr,start,end,"Q");
|
---|
373 | Array<Float> U = SDPolUtil::getStokesSlice (arr,start,end,"U");
|
---|
374 |
|
---|
375 | // Compute output
|
---|
376 |
|
---|
377 | Array<Float> out;
|
---|
378 | if (polSel_==1) { // P
|
---|
379 | out = SDPolUtil::polarizedIntensity(Q,U);
|
---|
380 | } else if (polSel_==2) { // P.A.
|
---|
381 | out = SDPolUtil::positionAngle(Q,U) + paOffset;
|
---|
382 | }
|
---|
383 |
|
---|
384 | // Copy to output
|
---|
385 |
|
---|
386 | IPosition vecShape(1,shape(asap::ChanAxis));
|
---|
387 | Vector<Float> outV = out.reform(vecShape);
|
---|
388 | return convertVector(outV);
|
---|
389 | } else {
|
---|
390 |
|
---|
391 | // Selects at the cursor location
|
---|
392 |
|
---|
393 | return getFloatSpectrum (arr);
|
---|
394 | }
|
---|
395 | }
|
---|
396 |
|
---|
397 | std::vector<float> SDMemTable::getCircularSpectrum(Int whichRow, Bool doRR) const
|
---|
398 | //
|
---|
399 | // Gets
|
---|
400 | // RR = I + V
|
---|
401 | // LL = I - V
|
---|
402 | //
|
---|
403 | {
|
---|
404 | AlwaysAssert(asap::nAxes==4,AipsError);
|
---|
405 | if (nPol()!=4) {
|
---|
406 | throw (AipsError("You must have 4 polarizations to get RR or LL"));
|
---|
407 | }
|
---|
408 | Array<Float> arr;
|
---|
409 | stokesCol_.get(whichRow, arr);
|
---|
410 |
|
---|
411 | // Set current cursor location
|
---|
412 |
|
---|
413 | const IPosition& shape = arr.shape();
|
---|
414 | IPosition start, end;
|
---|
415 | setCursorSlice (start, end, shape);
|
---|
416 |
|
---|
417 | // Get I and V slices
|
---|
418 |
|
---|
419 | Array<Float> I = SDPolUtil::getStokesSlice (arr,start,end,"I");
|
---|
420 | Array<Float> V = SDPolUtil::getStokesSlice (arr,start,end,"V");
|
---|
421 |
|
---|
422 | // Compute output
|
---|
423 |
|
---|
424 | Array<Float> out = SDPolUtil::circularPolarizationFromStokes (I, V, doRR);
|
---|
425 |
|
---|
426 | // Copy to output
|
---|
427 |
|
---|
428 | IPosition vecShape(1,shape(asap::ChanAxis));
|
---|
429 | Vector<Float> outV = out.reform(vecShape);
|
---|
430 | return convertVector(outV);
|
---|
431 | }
|
---|
432 |
|
---|
433 | std::vector<float> SDMemTable::getFloatSpectrum (const Array<Float>& arr) const
|
---|
434 | //
|
---|
435 | // Get spectrum at cursor location
|
---|
436 | //
|
---|
437 | {
|
---|
438 |
|
---|
439 | // Iterate and extract
|
---|
440 |
|
---|
441 | ArrayAccessor<Float, Axis<asap::BeamAxis> > aa0(arr);
|
---|
442 | aa0.reset(aa0.begin(uInt(beamSel_)));//go to beam
|
---|
443 | ArrayAccessor<Float, Axis<asap::IFAxis> > aa1(aa0);
|
---|
444 | aa1.reset(aa1.begin(uInt(IFSel_)));// go to IF
|
---|
445 | ArrayAccessor<Float, Axis<asap::PolAxis> > aa2(aa1);
|
---|
446 | aa2.reset(aa2.begin(uInt(polSel_)));// go to pol
|
---|
447 | //
|
---|
448 | std::vector<float> spectrum;
|
---|
449 | for (ArrayAccessor<Float, Axis<asap::ChanAxis> > i(aa2); i != i.end(); ++i) {
|
---|
450 | spectrum.push_back(*i);
|
---|
451 | }
|
---|
452 | return spectrum;
|
---|
453 | }
|
---|
454 |
|
---|
455 |
|
---|
456 | std::vector<string> SDMemTable::getCoordInfo() const
|
---|
457 | {
|
---|
458 | String un;
|
---|
459 | Table t = table_.keywordSet().asTable("FREQUENCIES");
|
---|
460 | String sunit;
|
---|
461 | t.keywordSet().get("UNIT",sunit);
|
---|
462 | String dpl;
|
---|
463 | t.keywordSet().get("DOPPLER",dpl);
|
---|
464 | if (dpl == "") dpl = "RADIO";
|
---|
465 | String rfrm;
|
---|
466 | t.keywordSet().get("REFFRAME",rfrm);
|
---|
467 | std::vector<string> inf;
|
---|
468 | inf.push_back(sunit);
|
---|
469 | inf.push_back(rfrm);
|
---|
470 | inf.push_back(dpl);
|
---|
471 | t.keywordSet().get("BASEREFFRAME",rfrm);
|
---|
472 | inf.push_back(rfrm);
|
---|
473 | return inf;
|
---|
474 | }
|
---|
475 |
|
---|
476 | void SDMemTable::setCoordInfo(std::vector<string> theinfo)
|
---|
477 | {
|
---|
478 | std::vector<string>::iterator it;
|
---|
479 | String un,rfrm, brfrm,dpl;
|
---|
480 | un = theinfo[0]; // Abcissa unit
|
---|
481 | rfrm = theinfo[1]; // Active (or conversion) frame
|
---|
482 | dpl = theinfo[2]; // Doppler
|
---|
483 | brfrm = theinfo[3]; // Base frame
|
---|
484 | //
|
---|
485 | Table t = table_.rwKeywordSet().asTable("FREQUENCIES");
|
---|
486 | //
|
---|
487 | Vector<Double> rstf;
|
---|
488 | t.keywordSet().get("RESTFREQS",rstf);
|
---|
489 | //
|
---|
490 | Bool canDo = True;
|
---|
491 | Unit u1("km/s");Unit u2("Hz");
|
---|
492 | if (Unit(un) == u1) {
|
---|
493 | Vector<Double> rstf;
|
---|
494 | t.keywordSet().get("RESTFREQS",rstf);
|
---|
495 | if (rstf.nelements() == 0) {
|
---|
496 | throw(AipsError("Can't set unit to km/s if no restfrequencies are specified"));
|
---|
497 | }
|
---|
498 | } else if (Unit(un) != u2 && un != "") {
|
---|
499 | throw(AipsError("Unit not conformant with Spectral Coordinates"));
|
---|
500 | }
|
---|
501 | t.rwKeywordSet().define("UNIT", un);
|
---|
502 | //
|
---|
503 | MFrequency::Types mdr;
|
---|
504 | if (!MFrequency::getType(mdr, rfrm)) {
|
---|
505 |
|
---|
506 | Int a,b;const uInt* c;
|
---|
507 | const String* valid = MFrequency::allMyTypes(a, b, c);
|
---|
508 | String pfix = "Please specify a legal frame type. Types are\n";
|
---|
509 | throw(AipsError(pfix+(*valid)));
|
---|
510 | } else {
|
---|
511 | t.rwKeywordSet().define("REFFRAME",rfrm);
|
---|
512 | }
|
---|
513 | //
|
---|
514 | MDoppler::Types dtype;
|
---|
515 | dpl.upcase();
|
---|
516 | if (!MDoppler::getType(dtype, dpl)) {
|
---|
517 | throw(AipsError("Doppler type unknown"));
|
---|
518 | } else {
|
---|
519 | t.rwKeywordSet().define("DOPPLER",dpl);
|
---|
520 | }
|
---|
521 | //
|
---|
522 | if (!MFrequency::getType(mdr, brfrm)) {
|
---|
523 | Int a,b;const uInt* c;
|
---|
524 | const String* valid = MFrequency::allMyTypes(a, b, c);
|
---|
525 | String pfix = "Please specify a legal frame type. Types are\n";
|
---|
526 | throw(AipsError(pfix+(*valid)));
|
---|
527 | } else {
|
---|
528 | t.rwKeywordSet().define("BASEREFFRAME",brfrm);
|
---|
529 | }
|
---|
530 | }
|
---|
531 |
|
---|
532 |
|
---|
533 | std::vector<double> SDMemTable::getAbcissa(Int whichRow) const
|
---|
534 | {
|
---|
535 | std::vector<double> abc(nChan());
|
---|
536 |
|
---|
537 | // Get header units keyword
|
---|
538 |
|
---|
539 | Table t = table_.keywordSet().asTable("FREQUENCIES");
|
---|
540 | String sunit;
|
---|
541 | t.keywordSet().get("UNIT",sunit);
|
---|
542 | if (sunit == "") sunit = "pixel";
|
---|
543 | Unit u(sunit);
|
---|
544 |
|
---|
545 | // Easy if just wanting pixels
|
---|
546 |
|
---|
547 | if (sunit==String("pixel")) {
|
---|
548 | // assume channels/pixels
|
---|
549 | std::vector<double>::iterator it;
|
---|
550 | uInt i=0;
|
---|
551 | for (it = abc.begin(); it != abc.end(); ++it) {
|
---|
552 | (*it) = Double(i++);
|
---|
553 | }
|
---|
554 | //
|
---|
555 | return abc;
|
---|
556 | }
|
---|
557 |
|
---|
558 | // Continue with km/s or Hz. Get FreqIDs
|
---|
559 |
|
---|
560 | Vector<uInt> freqIDs;
|
---|
561 | freqidCol_.get(whichRow, freqIDs);
|
---|
562 | uInt freqID = freqIDs(IFSel_);
|
---|
563 | restfreqidCol_.get(whichRow, freqIDs);
|
---|
564 | uInt restFreqID = freqIDs(IFSel_);
|
---|
565 |
|
---|
566 | // Get SpectralCoordinate, set reference frame conversion,
|
---|
567 | // velocity conversion, and rest freq state
|
---|
568 |
|
---|
569 | SpectralCoordinate spc = getSpectralCoordinate(freqID, restFreqID, whichRow);
|
---|
570 | Vector<Double> pixel(nChan());
|
---|
571 | indgen(pixel);
|
---|
572 | //
|
---|
573 | if (u == Unit("km/s")) {
|
---|
574 | Vector<Double> world;
|
---|
575 | spc.pixelToVelocity(world,pixel);
|
---|
576 | std::vector<double>::iterator it;
|
---|
577 | uInt i = 0;
|
---|
578 | for (it = abc.begin(); it != abc.end(); ++it) {
|
---|
579 | (*it) = world[i];
|
---|
580 | i++;
|
---|
581 | }
|
---|
582 | } else if (u == Unit("Hz")) {
|
---|
583 |
|
---|
584 | // Set world axis units
|
---|
585 |
|
---|
586 | Vector<String> wau(1); wau = u.getName();
|
---|
587 | spc.setWorldAxisUnits(wau);
|
---|
588 | //
|
---|
589 | std::vector<double>::iterator it;
|
---|
590 | Double tmp;
|
---|
591 | uInt i = 0;
|
---|
592 | for (it = abc.begin(); it != abc.end(); ++it) {
|
---|
593 | spc.toWorld(tmp,pixel[i]);
|
---|
594 | (*it) = tmp;
|
---|
595 | i++;
|
---|
596 | }
|
---|
597 | }
|
---|
598 | return abc;
|
---|
599 | }
|
---|
600 |
|
---|
601 | std::string SDMemTable::getAbcissaString(Int whichRow) const
|
---|
602 | {
|
---|
603 | Table t = table_.keywordSet().asTable("FREQUENCIES");
|
---|
604 | //
|
---|
605 | String sunit;
|
---|
606 | t.keywordSet().get("UNIT",sunit);
|
---|
607 | if (sunit == "") sunit = "pixel";
|
---|
608 | Unit u(sunit);
|
---|
609 | //
|
---|
610 | Vector<uInt> freqIDs;
|
---|
611 | freqidCol_.get(whichRow, freqIDs);
|
---|
612 | uInt freqID = freqIDs(IFSel_);
|
---|
613 | restfreqidCol_.get(whichRow, freqIDs);
|
---|
614 | uInt restFreqID = freqIDs(IFSel_);
|
---|
615 |
|
---|
616 | // Get SpectralCoordinate, with frame, velocity, rest freq state set
|
---|
617 |
|
---|
618 | SpectralCoordinate spc = getSpectralCoordinate(freqID, restFreqID, whichRow);
|
---|
619 | //
|
---|
620 | String s = "Channel";
|
---|
621 | if (u == Unit("km/s")) {
|
---|
622 | s = CoordinateUtil::axisLabel(spc,0,True,True,True);
|
---|
623 | } else if (u == Unit("Hz")) {
|
---|
624 | Vector<String> wau(1);wau = u.getName();
|
---|
625 | spc.setWorldAxisUnits(wau);
|
---|
626 | //
|
---|
627 | s = CoordinateUtil::axisLabel(spc,0,True,True,False);
|
---|
628 | }
|
---|
629 | return s;
|
---|
630 | }
|
---|
631 |
|
---|
632 | void SDMemTable::setSpectrum(std::vector<float> spectrum, int whichRow)
|
---|
633 | {
|
---|
634 | Array<Float> arr;
|
---|
635 | specCol_.get(whichRow, arr);
|
---|
636 | if (spectrum.size() != arr.shape()(3)) {
|
---|
637 | throw(AipsError("Attempting to set spectrum with incorrect length."));
|
---|
638 | }
|
---|
639 |
|
---|
640 | ArrayAccessor<Float, Axis<asap::BeamAxis> > aa0(arr);
|
---|
641 | aa0.reset(aa0.begin(uInt(beamSel_)));//go to beam
|
---|
642 | ArrayAccessor<Float, Axis<asap::IFAxis> > aa1(aa0);
|
---|
643 | aa1.reset(aa1.begin(uInt(IFSel_)));// go to IF
|
---|
644 | ArrayAccessor<Float, Axis<asap::PolAxis> > aa2(aa1);
|
---|
645 | aa2.reset(aa2.begin(uInt(polSel_)));// go to pol
|
---|
646 |
|
---|
647 | std::vector<float>::iterator it = spectrum.begin();
|
---|
648 | for (ArrayAccessor<Float, Axis<asap::ChanAxis> > i(aa2); i != i.end(); ++i) {
|
---|
649 | (*i) = Float(*it);
|
---|
650 | it++;
|
---|
651 | }
|
---|
652 | specCol_.put(whichRow, arr);
|
---|
653 | }
|
---|
654 |
|
---|
655 | void SDMemTable::getSpectrum(Vector<Float>& spectrum, Int whichRow) const
|
---|
656 | {
|
---|
657 | Array<Float> arr;
|
---|
658 | specCol_.get(whichRow, arr);
|
---|
659 |
|
---|
660 | // Iterate and extract
|
---|
661 |
|
---|
662 | spectrum.resize(arr.shape()(3));
|
---|
663 | ArrayAccessor<Float, Axis<asap::BeamAxis> > aa0(arr);
|
---|
664 | aa0.reset(aa0.begin(uInt(beamSel_)));//go to beam
|
---|
665 | ArrayAccessor<Float, Axis<asap::IFAxis> > aa1(aa0);
|
---|
666 | aa1.reset(aa1.begin(uInt(IFSel_)));// go to IF
|
---|
667 | ArrayAccessor<Float, Axis<asap::PolAxis> > aa2(aa1);
|
---|
668 | aa2.reset(aa2.begin(uInt(polSel_)));// go to pol
|
---|
669 | //
|
---|
670 | ArrayAccessor<Float, Axis<asap::BeamAxis> > va(spectrum);
|
---|
671 | for (ArrayAccessor<Float, Axis<asap::ChanAxis> > i(aa2); i != i.end(); ++i) {
|
---|
672 | (*va) = (*i);
|
---|
673 | va++;
|
---|
674 | }
|
---|
675 | }
|
---|
676 |
|
---|
677 |
|
---|
678 | /*
|
---|
679 | void SDMemTable::getMask(Vector<Bool>& mask, Int whichRow) const {
|
---|
680 | Array<uChar> arr;
|
---|
681 | flagsCol_.get(whichRow, arr);
|
---|
682 | mask.resize(arr.shape()(3));
|
---|
683 |
|
---|
684 | ArrayAccessor<uChar, Axis<asap::BeamAxis> > aa0(arr);
|
---|
685 | aa0.reset(aa0.begin(uInt(beamSel_)));//go to beam
|
---|
686 | ArrayAccessor<uChar, Axis<asap::IFAxis> > aa1(aa0);
|
---|
687 | aa1.reset(aa1.begin(uInt(IFSel_)));// go to IF
|
---|
688 | ArrayAccessor<uChar, Axis<asap::PolAxis> > aa2(aa1);
|
---|
689 | aa2.reset(aa2.begin(uInt(polSel_)));// go to pol
|
---|
690 |
|
---|
691 | Bool useUserMask = ( chanMask_.size() == arr.shape()(3) );
|
---|
692 |
|
---|
693 | ArrayAccessor<Bool, Axis<asap::BeamAxis> > va(mask);
|
---|
694 | std::vector<bool> tmp;
|
---|
695 | tmp = chanMask_; // WHY the fxxx do I have to make a copy here. The
|
---|
696 | // iterator should work on chanMask_??
|
---|
697 | std::vector<bool>::iterator miter;
|
---|
698 | miter = tmp.begin();
|
---|
699 |
|
---|
700 | for (ArrayAccessor<uChar, Axis<asap::ChanAxis> > i(aa2); i != i.end(); ++i) {
|
---|
701 | bool out =!static_cast<bool>(*i);
|
---|
702 | if (useUserMask) {
|
---|
703 | out = out && (*miter);
|
---|
704 | miter++;
|
---|
705 | }
|
---|
706 | (*va) = out;
|
---|
707 | va++;
|
---|
708 | }
|
---|
709 | }
|
---|
710 | */
|
---|
711 | MaskedArray<Float> SDMemTable::rowAsMaskedArray(uInt whichRow,
|
---|
712 | Bool useSelection) const
|
---|
713 | {
|
---|
714 | Array<Float> arr;
|
---|
715 | Array<uChar> farr;
|
---|
716 | specCol_.get(whichRow, arr);
|
---|
717 | flagsCol_.get(whichRow, farr);
|
---|
718 | Array<Bool> barr(farr.shape());
|
---|
719 | convertArray(barr, farr);
|
---|
720 | MaskedArray<Float> marr;
|
---|
721 | if (useSelection) {
|
---|
722 | ArrayAccessor<Float, Axis<asap::BeamAxis> > aa0(arr);
|
---|
723 | aa0.reset(aa0.begin(uInt(beamSel_)));//go to beam
|
---|
724 | ArrayAccessor<Float, Axis<asap::IFAxis> > aa1(aa0);
|
---|
725 | aa1.reset(aa1.begin(uInt(IFSel_)));// go to IF
|
---|
726 | ArrayAccessor<Float, Axis<asap::PolAxis> > aa2(aa1);
|
---|
727 | aa2.reset(aa2.begin(uInt(polSel_)));// go to pol
|
---|
728 |
|
---|
729 | ArrayAccessor<Bool, Axis<asap::BeamAxis> > baa0(barr);
|
---|
730 | baa0.reset(baa0.begin(uInt(beamSel_)));//go to beam
|
---|
731 | ArrayAccessor<Bool, Axis<asap::IFAxis> > baa1(baa0);
|
---|
732 | baa1.reset(baa1.begin(uInt(IFSel_)));// go to IF
|
---|
733 | ArrayAccessor<Bool, Axis<asap::PolAxis> > baa2(baa1);
|
---|
734 | baa2.reset(baa2.begin(uInt(polSel_)));// go to pol
|
---|
735 |
|
---|
736 | Vector<Float> a(arr.shape()(3));
|
---|
737 | Vector<Bool> b(barr.shape()(3));
|
---|
738 | ArrayAccessor<Float, Axis<asap::BeamAxis> > a0(a);
|
---|
739 | ArrayAccessor<Bool, Axis<asap::BeamAxis> > b0(b);
|
---|
740 |
|
---|
741 | ArrayAccessor<Bool, Axis<asap::ChanAxis> > j(baa2);
|
---|
742 | for (ArrayAccessor<Float, Axis<asap::ChanAxis> > i(aa2);
|
---|
743 | i != i.end(); ++i) {
|
---|
744 | (*a0) = (*i);
|
---|
745 | (*b0) = !(*j);
|
---|
746 | j++;
|
---|
747 | a0++;
|
---|
748 | b0++;
|
---|
749 | }
|
---|
750 | marr.setData(a,b);
|
---|
751 | } else {
|
---|
752 | marr.setData(arr,!barr);
|
---|
753 | }
|
---|
754 | return marr;
|
---|
755 | }
|
---|
756 |
|
---|
757 | Float SDMemTable::getTsys(Int whichRow) const
|
---|
758 | {
|
---|
759 | Array<Float> arr;
|
---|
760 | tsCol_.get(whichRow, arr);
|
---|
761 | Float out;
|
---|
762 | //
|
---|
763 | IPosition ip(arr.shape());
|
---|
764 | ip(asap::BeamAxis) = beamSel_;
|
---|
765 | ip(asap::IFAxis) = IFSel_;
|
---|
766 | ip(asap::PolAxis) = polSel_;
|
---|
767 | ip(asap::ChanAxis)=0; // First channel only
|
---|
768 | //
|
---|
769 | out = arr(ip);
|
---|
770 | return out;
|
---|
771 | }
|
---|
772 |
|
---|
773 | MDirection SDMemTable::getDirection(Int whichRow, Bool refBeam) const
|
---|
774 | {
|
---|
775 | MDirection::Types mdr = getDirectionReference();
|
---|
776 | Array<Double> posit;
|
---|
777 | dirCol_.get(whichRow,posit);
|
---|
778 | Vector<Double> wpos(2);
|
---|
779 | Int rb;
|
---|
780 | rbeamCol_.get(whichRow,rb);
|
---|
781 | wpos[0] = posit(IPosition(2,beamSel_,0));
|
---|
782 | wpos[1] = posit(IPosition(2,beamSel_,1));
|
---|
783 | if (refBeam && rb > -1) { // use refBeam instead if it exists
|
---|
784 | wpos[0] = posit(IPosition(2,rb,0));
|
---|
785 | wpos[1] = posit(IPosition(2,rb,1));
|
---|
786 | }
|
---|
787 |
|
---|
788 | Quantum<Double> lon(wpos[0],Unit(String("rad")));
|
---|
789 | Quantum<Double> lat(wpos[1],Unit(String("rad")));
|
---|
790 | return MDirection(lon, lat, mdr);
|
---|
791 | }
|
---|
792 |
|
---|
793 | MEpoch SDMemTable::getEpoch(Int whichRow) const
|
---|
794 | {
|
---|
795 | MEpoch::Types met = getTimeReference();
|
---|
796 | //
|
---|
797 | Double obstime;
|
---|
798 | timeCol_.get(whichRow,obstime);
|
---|
799 | MVEpoch tm2(Quantum<Double>(obstime, Unit(String("d"))));
|
---|
800 | return MEpoch(tm2, met);
|
---|
801 | }
|
---|
802 |
|
---|
803 | MPosition SDMemTable::getAntennaPosition () const
|
---|
804 | {
|
---|
805 | Vector<Double> antpos;
|
---|
806 | table_.keywordSet().get("AntennaPosition", antpos);
|
---|
807 | MVPosition mvpos(antpos(0),antpos(1),antpos(2));
|
---|
808 | return MPosition(mvpos);
|
---|
809 | }
|
---|
810 |
|
---|
811 |
|
---|
812 | SpectralCoordinate SDMemTable::getSpectralCoordinate(uInt freqID) const
|
---|
813 | {
|
---|
814 |
|
---|
815 | Table t = table_.keywordSet().asTable("FREQUENCIES");
|
---|
816 | if (freqID> t.nrow() ) {
|
---|
817 | throw(AipsError("SDMemTable::getSpectralCoordinate - freqID out of range"));
|
---|
818 | }
|
---|
819 |
|
---|
820 | Double rp,rv,inc;
|
---|
821 | String rf;
|
---|
822 | ROScalarColumn<Double> rpc(t, "REFPIX");
|
---|
823 | ROScalarColumn<Double> rvc(t, "REFVAL");
|
---|
824 | ROScalarColumn<Double> incc(t, "INCREMENT");
|
---|
825 | t.keywordSet().get("BASEREFFRAME",rf);
|
---|
826 |
|
---|
827 | // Create SpectralCoordinate (units Hz)
|
---|
828 |
|
---|
829 | MFrequency::Types mft;
|
---|
830 | if (!MFrequency::getType(mft, rf)) {
|
---|
831 | cerr << "Frequency type unknown assuming TOPO" << endl;
|
---|
832 | mft = MFrequency::TOPO;
|
---|
833 | }
|
---|
834 | rpc.get(freqID, rp);
|
---|
835 | rvc.get(freqID, rv);
|
---|
836 | incc.get(freqID, inc);
|
---|
837 | //
|
---|
838 | SpectralCoordinate spec(mft,rv,inc,rp);
|
---|
839 | //
|
---|
840 | return spec;
|
---|
841 | }
|
---|
842 |
|
---|
843 |
|
---|
844 | SpectralCoordinate SDMemTable::getSpectralCoordinate(uInt freqID, uInt restFreqID,
|
---|
845 | uInt whichRow) const
|
---|
846 | {
|
---|
847 |
|
---|
848 | // Create basic SC
|
---|
849 |
|
---|
850 | SpectralCoordinate spec = getSpectralCoordinate (freqID);
|
---|
851 | //
|
---|
852 | Table t = table_.keywordSet().asTable("FREQUENCIES");
|
---|
853 |
|
---|
854 | // Set rest frequency
|
---|
855 |
|
---|
856 | Vector<Double> restFreqIDs;
|
---|
857 | t.keywordSet().get("RESTFREQS",restFreqIDs);
|
---|
858 | if (restFreqID < restFreqIDs.nelements()) { // SHould always be true
|
---|
859 | spec.setRestFrequency(restFreqIDs(restFreqID),True);
|
---|
860 | }
|
---|
861 |
|
---|
862 | // Set up frame conversion layer
|
---|
863 |
|
---|
864 | String frm;
|
---|
865 | t.keywordSet().get("REFFRAME",frm);
|
---|
866 | if (frm == "") frm = "TOPO";
|
---|
867 | MFrequency::Types mtype;
|
---|
868 | if (!MFrequency::getType(mtype, frm)) {
|
---|
869 | cerr << "Frequency type unknown assuming TOPO" << endl; // SHould never happen
|
---|
870 | mtype = MFrequency::TOPO;
|
---|
871 | }
|
---|
872 |
|
---|
873 | // Set reference frame conversion (requires row)
|
---|
874 |
|
---|
875 | MDirection dir = getDirection(whichRow);
|
---|
876 | MEpoch epoch = getEpoch(whichRow);
|
---|
877 | MPosition pos = getAntennaPosition();
|
---|
878 | //
|
---|
879 | if (!spec.setReferenceConversion(mtype,epoch,pos,dir)) {
|
---|
880 | throw(AipsError("Couldn't convert frequency frame."));
|
---|
881 | }
|
---|
882 |
|
---|
883 | // Now velocity conversion if appropriate
|
---|
884 |
|
---|
885 | String unitStr;
|
---|
886 | t.keywordSet().get("UNIT",unitStr);
|
---|
887 | //
|
---|
888 | String dpl;
|
---|
889 | t.keywordSet().get("DOPPLER",dpl);
|
---|
890 | MDoppler::Types dtype;
|
---|
891 | MDoppler::getType(dtype, dpl);
|
---|
892 |
|
---|
893 | // Only set velocity unit if non-blank and non-Hz
|
---|
894 |
|
---|
895 | if (!unitStr.empty()) {
|
---|
896 | Unit unitU(unitStr);
|
---|
897 | if (unitU==Unit("Hz")) {
|
---|
898 | } else {
|
---|
899 | spec.setVelocity(unitStr, dtype);
|
---|
900 | }
|
---|
901 | }
|
---|
902 | //
|
---|
903 | return spec;
|
---|
904 | }
|
---|
905 |
|
---|
906 |
|
---|
907 | Bool SDMemTable::setCoordinate(const SpectralCoordinate& speccord,
|
---|
908 | uInt freqID) {
|
---|
909 | Table t = table_.rwKeywordSet().asTable("FREQUENCIES");
|
---|
910 | if (freqID > t.nrow() ) {
|
---|
911 | throw(AipsError("SDMemTable::setCoordinate - coord no out of range"));
|
---|
912 | }
|
---|
913 | ScalarColumn<Double> rpc(t, "REFPIX");
|
---|
914 | ScalarColumn<Double> rvc(t, "REFVAL");
|
---|
915 | ScalarColumn<Double> incc(t, "INCREMENT");
|
---|
916 |
|
---|
917 | rpc.put(freqID, speccord.referencePixel()[0]);
|
---|
918 | rvc.put(freqID, speccord.referenceValue()[0]);
|
---|
919 | incc.put(freqID, speccord.increment()[0]);
|
---|
920 |
|
---|
921 | return True;
|
---|
922 | }
|
---|
923 |
|
---|
924 | Int SDMemTable::nCoordinates() const
|
---|
925 | {
|
---|
926 | return table_.keywordSet().asTable("FREQUENCIES").nrow();
|
---|
927 | }
|
---|
928 |
|
---|
929 |
|
---|
930 | std::vector<double> SDMemTable::getRestFreqs() const
|
---|
931 | {
|
---|
932 | Table t = table_.keywordSet().asTable("FREQUENCIES");
|
---|
933 | Vector<Double> tvec;
|
---|
934 | t.keywordSet().get("RESTFREQS",tvec);
|
---|
935 | std::vector<double> stlout;
|
---|
936 | tvec.tovector(stlout);
|
---|
937 | return stlout;
|
---|
938 | }
|
---|
939 |
|
---|
940 | bool SDMemTable::putSDFreqTable(const SDFrequencyTable& sdft)
|
---|
941 | {
|
---|
942 | TableDesc td("", "1", TableDesc::Scratch);
|
---|
943 | td.addColumn(ScalarColumnDesc<Double>("REFPIX"));
|
---|
944 | td.addColumn(ScalarColumnDesc<Double>("REFVAL"));
|
---|
945 | td.addColumn(ScalarColumnDesc<Double>("INCREMENT"));
|
---|
946 | SetupNewTable aNewTab("freqs", td, Table::New);
|
---|
947 | Table aTable (aNewTab, Table::Memory, sdft.length());
|
---|
948 | ScalarColumn<Double> sc0(aTable, "REFPIX");
|
---|
949 | ScalarColumn<Double> sc1(aTable, "REFVAL");
|
---|
950 | ScalarColumn<Double> sc2(aTable, "INCREMENT");
|
---|
951 | for (uInt i=0; i < sdft.length(); ++i) {
|
---|
952 | sc0.put(i,sdft.referencePixel(i));
|
---|
953 | sc1.put(i,sdft.referenceValue(i));
|
---|
954 | sc2.put(i,sdft.increment(i));
|
---|
955 | }
|
---|
956 | String rf = sdft.refFrame();
|
---|
957 | if (rf.contains("TOPO")) rf = "TOPO";
|
---|
958 |
|
---|
959 | aTable.rwKeywordSet().define("BASEREFFRAME", rf);
|
---|
960 | aTable.rwKeywordSet().define("REFFRAME", rf);
|
---|
961 | aTable.rwKeywordSet().define("EQUINOX", sdft.equinox());
|
---|
962 | aTable.rwKeywordSet().define("UNIT", String(""));
|
---|
963 | aTable.rwKeywordSet().define("DOPPLER", String("RADIO"));
|
---|
964 | Vector<Double> rfvec;
|
---|
965 | String rfunit;
|
---|
966 | sdft.restFrequencies(rfvec,rfunit);
|
---|
967 | Quantum<Vector<Double> > q(rfvec, rfunit);
|
---|
968 | rfvec.resize();
|
---|
969 | rfvec = q.getValue("Hz");
|
---|
970 | aTable.rwKeywordSet().define("RESTFREQS", rfvec);
|
---|
971 | table_.rwKeywordSet().defineTable ("FREQUENCIES", aTable);
|
---|
972 | return True;
|
---|
973 | }
|
---|
974 |
|
---|
975 | SDFrequencyTable SDMemTable::getSDFreqTable() const
|
---|
976 | {
|
---|
977 | const Table& t = table_.keywordSet().asTable("FREQUENCIES");
|
---|
978 | SDFrequencyTable sdft;
|
---|
979 |
|
---|
980 | // Add refpix/refval/incr. What are the units ? Hz I suppose
|
---|
981 | // but it's nowhere described...
|
---|
982 |
|
---|
983 | Vector<Double> refPix, refVal, incr;
|
---|
984 | ScalarColumn<Double> refPixCol(t, "REFPIX");
|
---|
985 | ScalarColumn<Double> refValCol(t, "REFVAL");
|
---|
986 | ScalarColumn<Double> incrCol(t, "INCREMENT");
|
---|
987 | refPix = refPixCol.getColumn();
|
---|
988 | refVal = refValCol.getColumn();
|
---|
989 | incr = incrCol.getColumn();
|
---|
990 | //
|
---|
991 | uInt n = refPix.nelements();
|
---|
992 | for (uInt i=0; i<n; i++) {
|
---|
993 | sdft.addFrequency(refPix[i], refVal[i], incr[i]);
|
---|
994 | }
|
---|
995 |
|
---|
996 | // Frequency reference frame. I don't know if this
|
---|
997 | // is the correct frame. It might be 'REFFRAME'
|
---|
998 | // rather than 'BASEREFFRAME' ?
|
---|
999 |
|
---|
1000 | String baseFrame;
|
---|
1001 | t.keywordSet().get("BASEREFFRAME",baseFrame);
|
---|
1002 | sdft.setRefFrame(baseFrame);
|
---|
1003 |
|
---|
1004 | // Equinox
|
---|
1005 |
|
---|
1006 | Float equinox;
|
---|
1007 | t.keywordSet().get("EQUINOX", equinox);
|
---|
1008 | sdft.setEquinox(equinox);
|
---|
1009 |
|
---|
1010 | // Rest Frequency
|
---|
1011 |
|
---|
1012 | Vector<Double> restFreqs;
|
---|
1013 | t.keywordSet().get("RESTFREQS", restFreqs);
|
---|
1014 | for (uInt i=0; i<restFreqs.nelements(); i++) {
|
---|
1015 | sdft.addRestFrequency(restFreqs[i]);
|
---|
1016 | }
|
---|
1017 | sdft.setRestFrequencyUnit(String("Hz"));
|
---|
1018 | //
|
---|
1019 | return sdft;
|
---|
1020 | }
|
---|
1021 |
|
---|
1022 | bool SDMemTable::putSDContainer(const SDContainer& sdc)
|
---|
1023 | {
|
---|
1024 | uInt rno = table_.nrow();
|
---|
1025 | table_.addRow();
|
---|
1026 | //
|
---|
1027 | timeCol_.put(rno, sdc.timestamp);
|
---|
1028 | srcnCol_.put(rno, sdc.sourcename);
|
---|
1029 | fldnCol_.put(rno, sdc.fieldname);
|
---|
1030 | specCol_.put(rno, sdc.getSpectrum());
|
---|
1031 | flagsCol_.put(rno, sdc.getFlags());
|
---|
1032 | tsCol_.put(rno, sdc.getTsys());
|
---|
1033 | scanCol_.put(rno, sdc.scanid);
|
---|
1034 | integrCol_.put(rno, sdc.interval);
|
---|
1035 | freqidCol_.put(rno, sdc.getFreqMap());
|
---|
1036 | restfreqidCol_.put(rno, sdc.getRestFreqMap());
|
---|
1037 | dirCol_.put(rno, sdc.getDirection());
|
---|
1038 | rbeamCol_.put(rno, sdc.refbeam);
|
---|
1039 | tcalCol_.put(rno, sdc.tcal);
|
---|
1040 | tcaltCol_.put(rno, sdc.tcaltime);
|
---|
1041 | azCol_.put(rno, sdc.azimuth);
|
---|
1042 | elCol_.put(rno, sdc.elevation);
|
---|
1043 | paraCol_.put(rno, sdc.parangle);
|
---|
1044 | histCol_.put(rno, sdc.getHistory());
|
---|
1045 | //
|
---|
1046 | return true;
|
---|
1047 | }
|
---|
1048 |
|
---|
1049 | SDContainer SDMemTable::getSDContainer(uInt whichRow) const
|
---|
1050 | {
|
---|
1051 | SDContainer sdc(nBeam(),nIF(),nPol(),nChan());
|
---|
1052 | timeCol_.get(whichRow, sdc.timestamp);
|
---|
1053 | srcnCol_.get(whichRow, sdc.sourcename);
|
---|
1054 | integrCol_.get(whichRow, sdc.interval);
|
---|
1055 | scanCol_.get(whichRow, sdc.scanid);
|
---|
1056 | fldnCol_.get(whichRow, sdc.fieldname);
|
---|
1057 | rbeamCol_.get(whichRow, sdc.refbeam);
|
---|
1058 | azCol_.get(whichRow, sdc.azimuth);
|
---|
1059 | elCol_.get(whichRow, sdc.elevation);
|
---|
1060 | paraCol_.get(whichRow, sdc.parangle);
|
---|
1061 | Vector<Float> tc;
|
---|
1062 | tcalCol_.get(whichRow, tc);
|
---|
1063 | sdc.tcal[0] = tc[0];sdc.tcal[1] = tc[1];
|
---|
1064 | tcaltCol_.get(whichRow, sdc.tcaltime);
|
---|
1065 | //
|
---|
1066 | Array<Float> spectrum;
|
---|
1067 | Array<Float> tsys;
|
---|
1068 | Array<uChar> flagtrum;
|
---|
1069 | Vector<uInt> fmap;
|
---|
1070 | Array<Double> direction;
|
---|
1071 | Vector<String> histo;
|
---|
1072 | //
|
---|
1073 | specCol_.get(whichRow, spectrum);
|
---|
1074 | sdc.putSpectrum(spectrum);
|
---|
1075 | flagsCol_.get(whichRow, flagtrum);
|
---|
1076 | sdc.putFlags(flagtrum);
|
---|
1077 | tsCol_.get(whichRow, tsys);
|
---|
1078 | sdc.putTsys(tsys);
|
---|
1079 | freqidCol_.get(whichRow, fmap);
|
---|
1080 | sdc.putFreqMap(fmap);
|
---|
1081 | restfreqidCol_.get(whichRow, fmap);
|
---|
1082 | sdc.putRestFreqMap(fmap);
|
---|
1083 | dirCol_.get(whichRow, direction);
|
---|
1084 | sdc.putDirection(direction);
|
---|
1085 | histCol_.get(whichRow, histo);
|
---|
1086 | sdc.putHistory(histo);
|
---|
1087 | return sdc;
|
---|
1088 | }
|
---|
1089 |
|
---|
1090 | bool SDMemTable::putSDHeader(const SDHeader& sdh)
|
---|
1091 | {
|
---|
1092 | table_.rwKeywordSet().define("nIF", sdh.nif);
|
---|
1093 | table_.rwKeywordSet().define("nBeam", sdh.nbeam);
|
---|
1094 | table_.rwKeywordSet().define("nPol", sdh.npol);
|
---|
1095 | table_.rwKeywordSet().define("nChan", sdh.nchan);
|
---|
1096 | table_.rwKeywordSet().define("Observer", sdh.observer);
|
---|
1097 | table_.rwKeywordSet().define("Project", sdh.project);
|
---|
1098 | table_.rwKeywordSet().define("Obstype", sdh.obstype);
|
---|
1099 | table_.rwKeywordSet().define("AntennaName", sdh.antennaname);
|
---|
1100 | table_.rwKeywordSet().define("AntennaPosition", sdh.antennaposition);
|
---|
1101 | table_.rwKeywordSet().define("Equinox", sdh.equinox);
|
---|
1102 | table_.rwKeywordSet().define("FreqRefFrame", sdh.freqref);
|
---|
1103 | table_.rwKeywordSet().define("FreqRefVal", sdh.reffreq);
|
---|
1104 | table_.rwKeywordSet().define("Bandwidth", sdh.bandwidth);
|
---|
1105 | table_.rwKeywordSet().define("UTC", sdh.utc);
|
---|
1106 | table_.rwKeywordSet().define("FluxUnit", sdh.fluxunit);
|
---|
1107 | table_.rwKeywordSet().define("Epoch", sdh.epoch);
|
---|
1108 | return true;
|
---|
1109 | }
|
---|
1110 |
|
---|
1111 | SDHeader SDMemTable::getSDHeader() const
|
---|
1112 | {
|
---|
1113 | SDHeader sdh;
|
---|
1114 | table_.keywordSet().get("nBeam",sdh.nbeam);
|
---|
1115 | table_.keywordSet().get("nIF",sdh.nif);
|
---|
1116 | table_.keywordSet().get("nPol",sdh.npol);
|
---|
1117 | table_.keywordSet().get("nChan",sdh.nchan);
|
---|
1118 | table_.keywordSet().get("Observer", sdh.observer);
|
---|
1119 | table_.keywordSet().get("Project", sdh.project);
|
---|
1120 | table_.keywordSet().get("Obstype", sdh.obstype);
|
---|
1121 | table_.keywordSet().get("AntennaName", sdh.antennaname);
|
---|
1122 | table_.keywordSet().get("AntennaPosition", sdh.antennaposition);
|
---|
1123 | table_.keywordSet().get("Equinox", sdh.equinox);
|
---|
1124 | table_.keywordSet().get("FreqRefFrame", sdh.freqref);
|
---|
1125 | table_.keywordSet().get("FreqRefVal", sdh.reffreq);
|
---|
1126 | table_.keywordSet().get("Bandwidth", sdh.bandwidth);
|
---|
1127 | table_.keywordSet().get("UTC", sdh.utc);
|
---|
1128 | table_.keywordSet().get("FluxUnit", sdh.fluxunit);
|
---|
1129 | table_.keywordSet().get("Epoch", sdh.epoch);
|
---|
1130 | return sdh;
|
---|
1131 | }
|
---|
1132 | void SDMemTable::makePersistent(const std::string& filename)
|
---|
1133 | {
|
---|
1134 | table_.deepCopy(filename,Table::New);
|
---|
1135 | }
|
---|
1136 |
|
---|
1137 | Int SDMemTable::nScan() const {
|
---|
1138 | Int n = 0;
|
---|
1139 | Int previous = -1;Int current=0;
|
---|
1140 | for (uInt i=0; i< scanCol_.nrow();i++) {
|
---|
1141 | scanCol_.getScalar(i,current);
|
---|
1142 | if (previous != current) {
|
---|
1143 | previous = current;
|
---|
1144 | n++;
|
---|
1145 | }
|
---|
1146 | }
|
---|
1147 | return n;
|
---|
1148 | }
|
---|
1149 |
|
---|
1150 | String SDMemTable::formatSec(Double x) const
|
---|
1151 | {
|
---|
1152 | Double xcop = x;
|
---|
1153 | MVTime mvt(xcop/24./3600.); // make days
|
---|
1154 |
|
---|
1155 | if (x < 59.95)
|
---|
1156 | return String(" ") + mvt.string(MVTime::TIME_CLEAN_NO_HM, 7)+"s";
|
---|
1157 | else if (x < 3599.95)
|
---|
1158 | return String(" ") + mvt.string(MVTime::TIME_CLEAN_NO_H,7)+" ";
|
---|
1159 | else {
|
---|
1160 | ostringstream oss;
|
---|
1161 | oss << setw(2) << std::right << setprecision(1) << mvt.hour();
|
---|
1162 | oss << ":" << mvt.string(MVTime::TIME_CLEAN_NO_H,7) << " ";
|
---|
1163 | return String(oss);
|
---|
1164 | }
|
---|
1165 | };
|
---|
1166 |
|
---|
1167 | String SDMemTable::formatDirection(const MDirection& md) const
|
---|
1168 | {
|
---|
1169 | Vector<Double> t = md.getAngle(Unit(String("rad"))).getValue();
|
---|
1170 | Int prec = 7;
|
---|
1171 |
|
---|
1172 | MVAngle mvLon(t[0]);
|
---|
1173 | String sLon = mvLon.string(MVAngle::TIME,prec);
|
---|
1174 | MVAngle mvLat(t[1]);
|
---|
1175 | String sLat = mvLat.string(MVAngle::ANGLE+MVAngle::DIG2,prec);
|
---|
1176 | return sLon + String(" ") + sLat;
|
---|
1177 | }
|
---|
1178 |
|
---|
1179 |
|
---|
1180 | std::string SDMemTable::getFluxUnit() const
|
---|
1181 | {
|
---|
1182 | String tmp;
|
---|
1183 | table_.keywordSet().get("FluxUnit", tmp);
|
---|
1184 | return tmp;
|
---|
1185 | }
|
---|
1186 |
|
---|
1187 | void SDMemTable::setFluxUnit(const std::string& unit)
|
---|
1188 | {
|
---|
1189 | String tmp(unit);
|
---|
1190 | Unit tU(tmp);
|
---|
1191 | if (tU==Unit("K") || tU==Unit("Jy")) {
|
---|
1192 | table_.rwKeywordSet().define(String("FluxUnit"), tmp);
|
---|
1193 | } else {
|
---|
1194 | throw AipsError("Illegal unit - must be compatible with Jy or K");
|
---|
1195 | }
|
---|
1196 | }
|
---|
1197 |
|
---|
1198 |
|
---|
1199 | void SDMemTable::setInstrument(const std::string& name)
|
---|
1200 | {
|
---|
1201 | Bool throwIt = True;
|
---|
1202 | Instrument ins = convertInstrument (name, throwIt);
|
---|
1203 | String nameU(name);
|
---|
1204 | nameU.upcase();
|
---|
1205 | table_.rwKeywordSet().define(String("AntennaName"), nameU);
|
---|
1206 | }
|
---|
1207 |
|
---|
1208 | std::string SDMemTable::summary(bool verbose) const {
|
---|
1209 |
|
---|
1210 | // Format header info
|
---|
1211 |
|
---|
1212 | ostringstream oss;
|
---|
1213 | oss << endl;
|
---|
1214 | oss << "--------------------------------------------------------------------------------" << endl;
|
---|
1215 | oss << " Scan Table Summary" << endl;
|
---|
1216 | oss << "--------------------------------------------------------------------------------" << endl;
|
---|
1217 | oss.flags(std::ios_base::left);
|
---|
1218 | oss << setw(15) << "Beams:" << setw(4) << nBeam() << endl
|
---|
1219 | << setw(15) << "IFs:" << setw(4) << nIF() << endl
|
---|
1220 | << setw(15) << "Polarisations:" << setw(4) << nPol() << endl
|
---|
1221 | << setw(15) << "Channels:" << setw(4) << nChan() << endl;
|
---|
1222 | oss << endl;
|
---|
1223 | String tmp;
|
---|
1224 | table_.keywordSet().get("Observer", tmp);
|
---|
1225 | oss << setw(15) << "Observer:" << tmp << endl;
|
---|
1226 | oss << setw(15) << "Obs Date:" << getTime(-1,True) << endl;
|
---|
1227 | table_.keywordSet().get("Project", tmp);
|
---|
1228 | oss << setw(15) << "Project:" << tmp << endl;
|
---|
1229 | table_.keywordSet().get("Obstype", tmp);
|
---|
1230 | oss << setw(15) << "Obs. Type:" << tmp << endl;
|
---|
1231 | table_.keywordSet().get("AntennaName", tmp);
|
---|
1232 | oss << setw(15) << "Antenna Name:" << tmp << endl;
|
---|
1233 | table_.keywordSet().get("FluxUnit", tmp);
|
---|
1234 | oss << setw(15) << "Flux Unit:" << tmp << endl;
|
---|
1235 | Table t = table_.keywordSet().asTable("FREQUENCIES");
|
---|
1236 | Vector<Double> vec;
|
---|
1237 | t.keywordSet().get("RESTFREQS",vec);
|
---|
1238 | oss << setw(15) << "Rest Freqs:";
|
---|
1239 | if (vec.nelements() > 0) {
|
---|
1240 | oss << setprecision(0) << vec << " [Hz]" << endl;
|
---|
1241 | } else {
|
---|
1242 | oss << "None set" << endl;
|
---|
1243 | }
|
---|
1244 | oss << setw(15) << "Abcissa:" << getAbcissaString() << endl;
|
---|
1245 | oss << setw(15) << "Cursor:" << "Beam[" << getBeam() << "] "
|
---|
1246 | << "IF[" << getIF() << "] " << "Pol[" << getPol() << "]" << endl;
|
---|
1247 | oss << endl;
|
---|
1248 | //
|
---|
1249 | String dirtype ="Position ("+ MDirection::showType(getDirectionReference()) + ")";
|
---|
1250 | oss << setw(5) << "Scan"
|
---|
1251 | << setw(15) << "Source"
|
---|
1252 | << setw(24) << dirtype
|
---|
1253 | << setw(10) << "Time"
|
---|
1254 | << setw(18) << "Integration"
|
---|
1255 | << setw(7) << "FreqIDs" << endl;
|
---|
1256 | oss << "--------------------------------------------------------------------------------" << endl;
|
---|
1257 |
|
---|
1258 | // Generate list of scan start and end integrations
|
---|
1259 |
|
---|
1260 | Vector<Int> scanIDs = scanCol_.getColumn();
|
---|
1261 | Vector<uInt> startInt, endInt;
|
---|
1262 | mathutil::scanBoundaries(startInt, endInt, scanIDs);
|
---|
1263 | //
|
---|
1264 | const uInt nScans = startInt.nelements();
|
---|
1265 | String name;
|
---|
1266 | Vector<uInt> freqIDs, listFQ;
|
---|
1267 | uInt nInt;
|
---|
1268 | //
|
---|
1269 | for (uInt i=0; i<nScans; i++) {
|
---|
1270 |
|
---|
1271 | // Get things from first integration of scan
|
---|
1272 |
|
---|
1273 | String time = getTime(startInt(i),False);
|
---|
1274 | String tInt = formatSec(Double(getInterval(startInt(i))));
|
---|
1275 | String posit = formatDirection(getDirection(startInt(i),True));
|
---|
1276 | srcnCol_.getScalar(startInt(i),name);
|
---|
1277 |
|
---|
1278 | // Find all the FreqIDs in this scan
|
---|
1279 |
|
---|
1280 | listFQ.resize(0);
|
---|
1281 | for (uInt j=startInt(i); j<endInt(i)+1; j++) {
|
---|
1282 | freqidCol_.get(j, freqIDs);
|
---|
1283 | for (uInt k=0; k<freqIDs.nelements(); k++) {
|
---|
1284 | mathutil::addEntry(listFQ, freqIDs(k));
|
---|
1285 | }
|
---|
1286 | }
|
---|
1287 | //
|
---|
1288 | nInt = endInt(i) - startInt(i) + 1;
|
---|
1289 | oss << setw(3) << std::right << i << std::left << setw(2) << " "
|
---|
1290 | << setw(15) << name
|
---|
1291 | << setw(24) << posit
|
---|
1292 | << setw(10) << time
|
---|
1293 | << setw(3) << std::right << nInt << setw(3) << " x " << std::left
|
---|
1294 | << setw(6) << tInt
|
---|
1295 | << " " << listFQ << endl;
|
---|
1296 | }
|
---|
1297 | oss << endl;
|
---|
1298 | oss << "Table contains " << table_.nrow() << " integration(s) in " << nScans << " scan(s)." << endl;
|
---|
1299 |
|
---|
1300 | // Frequency Table
|
---|
1301 |
|
---|
1302 | if (verbose) {
|
---|
1303 | std::vector<string> info = getCoordInfo();
|
---|
1304 | SDFrequencyTable sdft = getSDFreqTable();
|
---|
1305 | oss << endl << endl;
|
---|
1306 | oss << "FreqID Frame RefFreq(Hz) RefPix Increment(Hz)" << endl;
|
---|
1307 | oss << "--------------------------------------------------------------------------------" << endl;
|
---|
1308 | for (uInt i=0; i<sdft.length(); i++) {
|
---|
1309 | oss << setw(8) << i << setw(8)
|
---|
1310 | << info[3] << setw(16) << setprecision(8)
|
---|
1311 | << sdft.referenceValue(i) << setw(10)
|
---|
1312 | << sdft.referencePixel(i) << setw(12)
|
---|
1313 | << sdft.increment(i) << endl;
|
---|
1314 | }
|
---|
1315 | oss << "--------------------------------------------------------------------------------" << endl;
|
---|
1316 | }
|
---|
1317 | return String(oss);
|
---|
1318 | }
|
---|
1319 |
|
---|
1320 | Int SDMemTable::nBeam() const
|
---|
1321 | {
|
---|
1322 | Int n;
|
---|
1323 | table_.keywordSet().get("nBeam",n);
|
---|
1324 | return n;
|
---|
1325 | }
|
---|
1326 | Int SDMemTable::nIF() const {
|
---|
1327 | Int n;
|
---|
1328 | table_.keywordSet().get("nIF",n);
|
---|
1329 | return n;
|
---|
1330 | }
|
---|
1331 | Int SDMemTable::nPol() const {
|
---|
1332 | Int n;
|
---|
1333 | table_.keywordSet().get("nPol",n);
|
---|
1334 | return n;
|
---|
1335 | }
|
---|
1336 | Int SDMemTable::nChan() const {
|
---|
1337 | Int n;
|
---|
1338 | table_.keywordSet().get("nChan",n);
|
---|
1339 | return n;
|
---|
1340 | }
|
---|
1341 | bool SDMemTable::appendHistory(const std::string& hist, int whichRow)
|
---|
1342 | {
|
---|
1343 | Vector<String> history;
|
---|
1344 | histCol_.get(whichRow, history);
|
---|
1345 | history.resize(history.nelements()+1,True);
|
---|
1346 | history[history.nelements()-1] = hist;
|
---|
1347 | histCol_.put(whichRow, history);
|
---|
1348 | }
|
---|
1349 |
|
---|
1350 | std::vector<std::string> SDMemTable::history(int whichRow) const
|
---|
1351 | {
|
---|
1352 | Vector<String> history;
|
---|
1353 | histCol_.get(whichRow, history);
|
---|
1354 | std::vector<std::string> stlout;
|
---|
1355 | // there is no Array<String>.tovector(std::vector<std::string>), so
|
---|
1356 | // do it by hand
|
---|
1357 | for (uInt i=0; i<history.nelements(); ++i) {
|
---|
1358 | stlout.push_back(history[i]);
|
---|
1359 | }
|
---|
1360 | return stlout;
|
---|
1361 | }
|
---|
1362 | /*
|
---|
1363 | void SDMemTable::maskChannels(const std::vector<Int>& whichChans ) {
|
---|
1364 |
|
---|
1365 | std::vector<int>::iterator it;
|
---|
1366 | ArrayAccessor<uChar, Axis<asap::PolAxis> > j(flags_);
|
---|
1367 | for (it = whichChans.begin(); it != whichChans.end(); it++) {
|
---|
1368 | j.reset(j.begin(uInt(*it)));
|
---|
1369 | for (ArrayAccessor<uChar, Axis<asap::BeamAxis> > i(j); i != i.end(); ++i) {
|
---|
1370 | for (ArrayAccessor<uChar, Axis<asap::IFAxis> > ii(i); ii != ii.end(); ++ii) {
|
---|
1371 | for (ArrayAccessor<uChar, Axis<asap::ChanAxis> > iii(ii);
|
---|
1372 | iii != iii.end(); ++iii) {
|
---|
1373 | (*iii) =
|
---|
1374 | }
|
---|
1375 | }
|
---|
1376 | }
|
---|
1377 | }
|
---|
1378 |
|
---|
1379 | }
|
---|
1380 | */
|
---|
1381 | void SDMemTable::flag(int whichRow)
|
---|
1382 | {
|
---|
1383 | Array<uChar> arr;
|
---|
1384 | flagsCol_.get(whichRow, arr);
|
---|
1385 |
|
---|
1386 | ArrayAccessor<uChar, Axis<asap::BeamAxis> > aa0(arr);
|
---|
1387 | aa0.reset(aa0.begin(uInt(beamSel_)));//go to beam
|
---|
1388 | ArrayAccessor<uChar, Axis<asap::IFAxis> > aa1(aa0);
|
---|
1389 | aa1.reset(aa1.begin(uInt(IFSel_)));// go to IF
|
---|
1390 | ArrayAccessor<uChar, Axis<asap::PolAxis> > aa2(aa1);
|
---|
1391 | aa2.reset(aa2.begin(uInt(polSel_)));// go to pol
|
---|
1392 |
|
---|
1393 | for (ArrayAccessor<uChar, Axis<asap::ChanAxis> > i(aa2); i != i.end(); ++i) {
|
---|
1394 | (*i) = uChar(True);
|
---|
1395 | }
|
---|
1396 |
|
---|
1397 | flagsCol_.put(whichRow, arr);
|
---|
1398 | }
|
---|
1399 |
|
---|
1400 | MDirection::Types SDMemTable::getDirectionReference() const
|
---|
1401 | {
|
---|
1402 | Float eq;
|
---|
1403 | table_.keywordSet().get("Equinox",eq);
|
---|
1404 | std::map<float,string> mp;
|
---|
1405 | mp[2000.0] = "J2000";
|
---|
1406 | mp[1950.0] = "B1950";
|
---|
1407 | MDirection::Types mdr;
|
---|
1408 | if (!MDirection::getType(mdr, mp[eq])) {
|
---|
1409 | mdr = MDirection::J2000;
|
---|
1410 | cerr << "Unknown equinox using J2000" << endl;
|
---|
1411 | }
|
---|
1412 | //
|
---|
1413 | return mdr;
|
---|
1414 | }
|
---|
1415 |
|
---|
1416 | MEpoch::Types SDMemTable::getTimeReference() const
|
---|
1417 | {
|
---|
1418 | MEpoch::Types met;
|
---|
1419 | String ep;
|
---|
1420 | table_.keywordSet().get("Epoch",ep);
|
---|
1421 | if (!MEpoch::getType(met, ep)) {
|
---|
1422 | cerr << "Epoch type unknown - using UTC" << endl;
|
---|
1423 | met = MEpoch::UTC;
|
---|
1424 | }
|
---|
1425 | //
|
---|
1426 | return met;
|
---|
1427 | }
|
---|
1428 |
|
---|
1429 |
|
---|
1430 | Instrument SDMemTable::convertInstrument(const String& instrument,
|
---|
1431 | Bool throwIt)
|
---|
1432 | {
|
---|
1433 | String t(instrument);
|
---|
1434 | t.upcase();
|
---|
1435 |
|
---|
1436 | // The strings are what SDReader returns, after cunning interrogation
|
---|
1437 | // of station names... :-(
|
---|
1438 |
|
---|
1439 | Instrument inst = asap::UNKNOWN;
|
---|
1440 | if (t==String("DSS-43")) {
|
---|
1441 | inst = TIDBINBILLA;
|
---|
1442 | } else if (t==String("ATPKSMB")) {
|
---|
1443 | inst = ATPKSMB;
|
---|
1444 | } else if (t==String("ATPKSHOH")) {
|
---|
1445 | inst = ATPKSHOH;
|
---|
1446 | } else if (t==String("ATMOPRA")) {
|
---|
1447 | inst = ATMOPRA;
|
---|
1448 | } else if (t==String("CEDUNA")) {
|
---|
1449 | inst = CEDUNA;
|
---|
1450 | } else if (t==String("HOBART")) {
|
---|
1451 | inst = HOBART;
|
---|
1452 | } else {
|
---|
1453 | if (throwIt) {
|
---|
1454 | throw AipsError("Unrecognized instrument - use function scan.set_instrument to set");
|
---|
1455 | }
|
---|
1456 | }
|
---|
1457 | return inst;
|
---|
1458 | }
|
---|
1459 |
|
---|
1460 | Bool SDMemTable::setRestFreqs (const Vector<Double>& restFreqsIn,
|
---|
1461 | const String& sUnit,
|
---|
1462 | const vector<string>& lines,
|
---|
1463 | const String& source,
|
---|
1464 | Int whichIF)
|
---|
1465 | {
|
---|
1466 | const Int nIFs = nIF();
|
---|
1467 | if (whichIF>=nIFs) {
|
---|
1468 | throw(AipsError("Illegal IF index"));
|
---|
1469 | }
|
---|
1470 |
|
---|
1471 | // FInd vector of restfrequencies
|
---|
1472 | // Double takes precedence over String
|
---|
1473 |
|
---|
1474 | Unit unit;
|
---|
1475 | Vector<Double> restFreqs;
|
---|
1476 | if (restFreqsIn.nelements()>0) {
|
---|
1477 | restFreqs.resize(restFreqsIn.nelements());
|
---|
1478 | restFreqs = restFreqsIn;
|
---|
1479 | unit = Unit(sUnit);
|
---|
1480 | } else if (lines.size()>0) {
|
---|
1481 | const uInt nLines = lines.size();
|
---|
1482 | unit = Unit("Hz");
|
---|
1483 | restFreqs.resize(nLines);
|
---|
1484 | MFrequency lineFreq;
|
---|
1485 | for (uInt i=0; i<nLines; i++) {
|
---|
1486 | String tS(lines[i]);
|
---|
1487 | tS.upcase();
|
---|
1488 | if (MeasTable::Line(lineFreq, tS)) {
|
---|
1489 | restFreqs[i] = lineFreq.getValue().getValue(); // Hz
|
---|
1490 | } else {
|
---|
1491 | String s = String(lines[i]) + String(" is an unrecognized spectral line");
|
---|
1492 | throw(AipsError(s));
|
---|
1493 | }
|
---|
1494 | }
|
---|
1495 | } else {
|
---|
1496 | throw(AipsError("You have not specified any rest frequencies or lines"));
|
---|
1497 | }
|
---|
1498 |
|
---|
1499 | // If multiple restfreqs, must be length nIF. In this
|
---|
1500 | // case we will just replace the rest frequencies
|
---|
1501 | //
|
---|
1502 |
|
---|
1503 | const uInt nRestFreqs = restFreqs.nelements();
|
---|
1504 | Int idx = -1;
|
---|
1505 | SDFrequencyTable sdft = getSDFreqTable();
|
---|
1506 |
|
---|
1507 | if (nRestFreqs>1) {
|
---|
1508 |
|
---|
1509 | // Replace restFreqs, one per IF
|
---|
1510 |
|
---|
1511 | if (nRestFreqs != nIFs) {
|
---|
1512 | throw (AipsError("Number of rest frequencies must be equal to the number of IFs"));
|
---|
1513 | }
|
---|
1514 | cout << "Replacing rest frequencies with given list, one per IF" << endl;
|
---|
1515 | //
|
---|
1516 | sdft.deleteRestFrequencies();
|
---|
1517 | for (uInt i=0; i<nRestFreqs; i++) {
|
---|
1518 | Quantum<Double> rf(restFreqs[i], unit);
|
---|
1519 | sdft.addRestFrequency(rf.getValue("Hz"));
|
---|
1520 | }
|
---|
1521 | } else {
|
---|
1522 |
|
---|
1523 | // Add new rest freq
|
---|
1524 |
|
---|
1525 | Quantum<Double> rf(restFreqs[0], unit);
|
---|
1526 | idx = sdft.addRestFrequency(rf.getValue("Hz"));
|
---|
1527 | cout << "Selecting given rest frequency" << endl;
|
---|
1528 | }
|
---|
1529 |
|
---|
1530 | // Replace
|
---|
1531 |
|
---|
1532 | Bool empty = source.empty();
|
---|
1533 | Bool ok = False;
|
---|
1534 | if (putSDFreqTable(sdft)) {
|
---|
1535 | const uInt nRow = table_.nrow();
|
---|
1536 | String srcName;
|
---|
1537 | Vector<uInt> restFreqIDs;
|
---|
1538 | for (uInt i=0; i<nRow; i++) {
|
---|
1539 | srcnCol_.get(i, srcName);
|
---|
1540 | restfreqidCol_.get(i,restFreqIDs);
|
---|
1541 | //
|
---|
1542 | if (idx==-1) {
|
---|
1543 |
|
---|
1544 | // Replace vector of restFreqs; one per IF.
|
---|
1545 | // No selection possible
|
---|
1546 |
|
---|
1547 | for (uInt i=0; i<nIFs; i++) restFreqIDs[i] = i;
|
---|
1548 | } else {
|
---|
1549 |
|
---|
1550 | // Set RestFreqID for selected data
|
---|
1551 |
|
---|
1552 | if (empty || source==srcName) {
|
---|
1553 | if (whichIF<0) {
|
---|
1554 | restFreqIDs = idx;
|
---|
1555 | } else {
|
---|
1556 | restFreqIDs[whichIF] = idx;
|
---|
1557 | }
|
---|
1558 | }
|
---|
1559 | }
|
---|
1560 | //
|
---|
1561 | restfreqidCol_.put(i,restFreqIDs);
|
---|
1562 | }
|
---|
1563 | ok = True;
|
---|
1564 | } else {
|
---|
1565 | ok = False;
|
---|
1566 | }
|
---|
1567 | //
|
---|
1568 | return ok;
|
---|
1569 | }
|
---|
1570 |
|
---|
1571 | void SDMemTable::spectralLines() const
|
---|
1572 | {
|
---|
1573 | Vector<String> lines = MeasTable::Lines();
|
---|
1574 | MFrequency lineFreq;
|
---|
1575 | Double freq;
|
---|
1576 | //
|
---|
1577 | cout.flags(std::ios_base::left);
|
---|
1578 | cout << "Line Frequency (Hz)" << endl;
|
---|
1579 | cout << "-----------------------" << endl;
|
---|
1580 | for (uInt i=0; i<lines.nelements(); i++) {
|
---|
1581 | MeasTable::Line(lineFreq, lines[i]);
|
---|
1582 | freq = lineFreq.getValue().getValue(); // Hz
|
---|
1583 | //
|
---|
1584 | cout << setw(11) << lines[i] << setprecision(10) << freq << endl;
|
---|
1585 | }
|
---|
1586 | }
|
---|
1587 |
|
---|
1588 | void SDMemTable::renumber()
|
---|
1589 | {
|
---|
1590 | uInt nRow = scanCol_.nrow();
|
---|
1591 | Int newscanid = 0;
|
---|
1592 | Int cIdx;// the current scanid
|
---|
1593 | // get the first scanid
|
---|
1594 | scanCol_.getScalar(0,cIdx);
|
---|
1595 | Int pIdx = cIdx;// the scanid of the previous row
|
---|
1596 | for (uInt i=0; i<nRow;++i) {
|
---|
1597 | scanCol_.getScalar(i,cIdx);
|
---|
1598 | if (pIdx == cIdx) {
|
---|
1599 | // renumber
|
---|
1600 | scanCol_.put(i,newscanid);
|
---|
1601 | } else {
|
---|
1602 | ++newscanid;
|
---|
1603 | pIdx = cIdx; // store scanid
|
---|
1604 | --i; // don't increment next loop
|
---|
1605 | }
|
---|
1606 | }
|
---|
1607 | }
|
---|
1608 |
|
---|
1609 |
|
---|
1610 | void SDMemTable::rotateXYPhase (Float value)
|
---|
1611 | //
|
---|
1612 | // phase in degrees
|
---|
1613 | // Applies to all Beams and IFs
|
---|
1614 | // Might want to optionally select on Beam/IF
|
---|
1615 | //
|
---|
1616 | {
|
---|
1617 | if (nPol() != 4) {
|
---|
1618 | throw(AipsError("You must have 4 polarizations to run this function"));
|
---|
1619 | }
|
---|
1620 | //
|
---|
1621 | IPosition start(asap::nAxes,0);
|
---|
1622 | IPosition end(asap::nAxes);
|
---|
1623 | //
|
---|
1624 | uInt nRow = specCol_.nrow();
|
---|
1625 | Array<Float> data;
|
---|
1626 | for (uInt i=0; i<nRow;++i) {
|
---|
1627 | specCol_.get(i,data);
|
---|
1628 | end = data.shape()-1;
|
---|
1629 |
|
---|
1630 | // Get polarization slice references
|
---|
1631 |
|
---|
1632 | start(asap::PolAxis) = 2;
|
---|
1633 | end(asap::PolAxis) = 2;
|
---|
1634 | Array<Float> C3 = data(start,end);
|
---|
1635 | //
|
---|
1636 | start(asap::PolAxis) = 3;
|
---|
1637 | end(asap::PolAxis) = 3;
|
---|
1638 | Array<Float> C4 = data(start,end);
|
---|
1639 |
|
---|
1640 | // Rotate
|
---|
1641 |
|
---|
1642 | SDPolUtil::rotateXYPhase(C3, C4, value);
|
---|
1643 |
|
---|
1644 | // Put
|
---|
1645 |
|
---|
1646 | specCol_.put(i,data);
|
---|
1647 | }
|
---|
1648 | }
|
---|
1649 |
|
---|
1650 |
|
---|
1651 | void SDMemTable::setCursorSlice (IPosition& start, IPosition& end,
|
---|
1652 | const IPosition& shape) const
|
---|
1653 | {
|
---|
1654 | const uInt nDim = shape.nelements();
|
---|
1655 | start.resize(nDim);
|
---|
1656 | end.resize(nDim);
|
---|
1657 | //
|
---|
1658 | start(asap::BeamAxis) = beamSel_;
|
---|
1659 | end(asap::BeamAxis) = beamSel_;
|
---|
1660 | //
|
---|
1661 | start(asap::IFAxis) = IFSel_;
|
---|
1662 | end(asap::IFAxis) = IFSel_;
|
---|
1663 | //
|
---|
1664 | start(asap::PolAxis) = polSel_;
|
---|
1665 | end(asap::PolAxis) = polSel_;
|
---|
1666 | //
|
---|
1667 | start(asap::ChanAxis) = 0;
|
---|
1668 | end(asap::ChanAxis) = shape(asap::ChanAxis) - 1;
|
---|
1669 | }
|
---|
1670 |
|
---|
1671 |
|
---|
1672 | std::vector<float> SDMemTable::convertVector (const Vector<Float>& in) const
|
---|
1673 | {
|
---|
1674 | std::vector<float> out(in.nelements());
|
---|
1675 | for (uInt i=0; i<in.nelements(); i++) {
|
---|
1676 | out[i] = in[i];
|
---|
1677 | }
|
---|
1678 | return out;
|
---|
1679 | }
|
---|
1680 |
|
---|