source: trunk/src/SDMemTable.cc @ 484

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