[2] | 1 | //#---------------------------------------------------------------------------
|
---|
| 2 | //# SDMemTableWrapper.h: Wrapper classes to use CountedPtr
|
---|
| 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 | //#---------------------------------------------------------------------------
|
---|
[125] | 31 | #ifndef SDMEMTABLEWRAPPER_H
|
---|
| 32 | #define SDMEMTABLEWRAPPER_H
|
---|
[2] | 33 |
|
---|
| 34 | #include <vector>
|
---|
| 35 | #include <string>
|
---|
[380] | 36 | #include <casa/Arrays/Vector.h>
|
---|
[2] | 37 |
|
---|
[465] | 38 | #include "MathUtils.h"
|
---|
| 39 | #include "SDFitTable.h"
|
---|
[2] | 40 | #include "SDMemTable.h"
|
---|
| 41 |
|
---|
[83] | 42 | namespace asap {
|
---|
[2] | 43 |
|
---|
| 44 | class SDMemTableWrapper {
|
---|
| 45 |
|
---|
| 46 | public:
|
---|
[90] | 47 | SDMemTableWrapper(const std::string& name) :
|
---|
[2] | 48 | table_(new SDMemTable(name)) {;}
|
---|
[90] | 49 | SDMemTableWrapper() :
|
---|
[18] | 50 | table_(new SDMemTable()) {;}
|
---|
[90] | 51 |
|
---|
[125] | 52 | SDMemTableWrapper(casa::CountedPtr<SDMemTable> cp) : table_(cp) {;}
|
---|
[90] | 53 | //SDMemTableWrapper(SDMemTable* sdmt) : table_(sdmt) {;}
|
---|
| 54 | SDMemTableWrapper(const SDMemTableWrapper& mt) :
|
---|
| 55 | table_(mt.getCP()) {;}
|
---|
| 56 |
|
---|
[80] | 57 | SDMemTableWrapper(const SDMemTableWrapper& mt, const std::string& expr) :
|
---|
| 58 | table_(new SDMemTable(mt.getCP()->table(), expr)) {;}
|
---|
[90] | 59 |
|
---|
| 60 | SDMemTableWrapper copy() {
|
---|
| 61 | //CountedPtr<SDMemTable> cp = new SDMemTable(*this, False);
|
---|
[125] | 62 | return SDMemTableWrapper(new SDMemTable(*(this->getCP()), casa::False));
|
---|
[90] | 63 | }
|
---|
| 64 |
|
---|
[380] | 65 | SDMemTableWrapper getScan(std::vector<int> scan) {
|
---|
| 66 | casa::String cond("SELECT FROM $1 WHERE SCANID IN ");
|
---|
| 67 | casa::Vector<casa::Int> v(scan);
|
---|
| 68 | casa::ostringstream oss;
|
---|
| 69 | oss << v;
|
---|
| 70 | cond += casa::String(oss);
|
---|
[80] | 71 | return SDMemTableWrapper(*this, cond);
|
---|
[2] | 72 | }
|
---|
[80] | 73 |
|
---|
| 74 | SDMemTableWrapper getSource(const std::string& source) {
|
---|
[186] | 75 | casa::String cond("SELECT * from $1 WHERE SRCNAME == pattern('");
|
---|
| 76 | cond += source;cond += "')";
|
---|
[80] | 77 | return SDMemTableWrapper(*this, cond);
|
---|
| 78 | }
|
---|
| 79 |
|
---|
[483] | 80 | SDMemTableWrapper getSQL(const std::string& sqlexpr) {
|
---|
| 81 | return SDMemTableWrapper(*this, sqlexpr);
|
---|
| 82 | }
|
---|
| 83 |
|
---|
[51] | 84 | std::vector<float> getSpectrum(int whichRow=0) const {
|
---|
[2] | 85 | return table_->getSpectrum(whichRow);
|
---|
| 86 | }
|
---|
[527] | 87 |
|
---|
| 88 | std::vector<float> getStokesSpectrum(int whichRow=0,
|
---|
| 89 | bool linPol=false) const {
|
---|
[505] | 90 | return table_->getStokesSpectrum(whichRow, linPol);
|
---|
[421] | 91 | }
|
---|
| 92 |
|
---|
[539] | 93 | std::vector<float> stokesToPolSpectrum(int whichRow=0, bool linear=false,
|
---|
| 94 | int polIdx=-1) const {
|
---|
[494] | 95 | return table_->stokesToPolSpectrum(whichRow, linear, polIdx);
|
---|
[431] | 96 | }
|
---|
| 97 |
|
---|
[527] | 98 | // std::string getPolarizationLabel(bool linear, bool stokes, bool linPol, int polIdx) const {
|
---|
| 99 | // Boost fails with 4 arguments.
|
---|
| 100 | std::string getPolarizationLabel(bool linear, bool stokes,
|
---|
| 101 | bool linPol) const {
|
---|
| 102 | int polIdx = -1;
|
---|
| 103 | return table_->getPolarizationLabel(linear, stokes, linPol, polIdx);
|
---|
[494] | 104 | }
|
---|
[527] | 105 |
|
---|
[158] | 106 | std::vector<double> getAbcissa(int whichRow=0) const {
|
---|
| 107 | return table_->getAbcissa(whichRow);
|
---|
[41] | 108 | }
|
---|
[158] | 109 | std::string getAbcissaString(int whichRow=0) const {
|
---|
| 110 | return table_->getAbcissaString(whichRow);
|
---|
[105] | 111 | }
|
---|
[41] | 112 |
|
---|
[157] | 113 | std::vector<float> getTsys() {
|
---|
| 114 | int nRow = table_->nRow();
|
---|
| 115 | std::vector<float> result(nRow);
|
---|
| 116 | for (uint i=0; i<nRow; i++) {
|
---|
| 117 | result[i] = table_->getTsys(i);
|
---|
| 118 | }
|
---|
| 119 | return result;
|
---|
| 120 | }
|
---|
| 121 |
|
---|
[51] | 122 | std::string getTime(int whichRow=0) {return table_->getTime(whichRow);}
|
---|
[2] | 123 |
|
---|
[207] | 124 | std::string getFluxUnit() const {return table_->getFluxUnit();}
|
---|
[220] | 125 | void setFluxUnit(const std::string& unit) {table_->setFluxUnit(unit);}
|
---|
[207] | 126 |
|
---|
[238] | 127 | void setInstrument(const std::string& name) {table_->setInstrument(name);}
|
---|
| 128 |
|
---|
[90] | 129 | std::vector<bool> getMask(int whichRow=0) const {
|
---|
| 130 | return table_->getMask(whichRow);
|
---|
[16] | 131 | }
|
---|
[90] | 132 | bool setMask(const std::vector<int> mvals) const {
|
---|
| 133 | return table_->setMask(mvals);
|
---|
| 134 | }
|
---|
[2] | 135 |
|
---|
[90] | 136 | void flag(int whichRow=-1) {
|
---|
| 137 | table_->flag(whichRow);
|
---|
| 138 | }
|
---|
[51] | 139 | std::string getSourceName(int whichRow=0) {
|
---|
[2] | 140 | return table_->getSourceName(whichRow);
|
---|
| 141 | }
|
---|
| 142 |
|
---|
[90] | 143 | void setSpectrum(std::vector<float> spectrum, int whichRow=0) {
|
---|
| 144 | table_->setSpectrum(spectrum, whichRow);
|
---|
| 145 | }
|
---|
| 146 |
|
---|
[2] | 147 | bool setIF(int whichIF=0) {return table_->setIF(whichIF);}
|
---|
| 148 | bool setBeam(int whichBeam=0) {return table_->setBeam(whichBeam);}
|
---|
[90] | 149 | bool setPol(int whichPol=0) {return table_->setPol(whichPol);}
|
---|
[2] | 150 |
|
---|
| 151 | int getIF() {return table_->getIF();}
|
---|
| 152 | int getBeam() {return table_->getBeam();}
|
---|
[90] | 153 | int getPol() {return table_->getPol();}
|
---|
[2] | 154 |
|
---|
[18] | 155 | int nIF() {return table_->nIF();}
|
---|
| 156 | int nBeam() {return table_->nBeam();}
|
---|
[90] | 157 | int nPol() {return table_->nPol();}
|
---|
| 158 | int nChan() {return table_->nChan();}
|
---|
| 159 | int nScan() {return table_->nScan();}
|
---|
| 160 | int nRow() {return table_->nRow();}
|
---|
[494] | 161 | int nStokes() {return table_->nStokes();}
|
---|
[2] | 162 |
|
---|
| 163 | //sets the mask
|
---|
| 164 | bool setChannels(const std::vector<int>& whichChans) {
|
---|
[90] | 165 | return setChannels(whichChans);
|
---|
[2] | 166 | }
|
---|
| 167 | void makePersistent(const std::string& fname) {
|
---|
| 168 | table_->makePersistent(fname);
|
---|
| 169 | }
|
---|
[90] | 170 |
|
---|
[401] | 171 | bool setRestFreqs(const std::vector<double>& restfreqs,
|
---|
| 172 | const std::string& unit,
|
---|
| 173 | const std::vector<std::string>& lines,
|
---|
| 174 | const std::string& source, int whichIF) {
|
---|
[392] | 175 | casa::Vector<casa::Double> restFreqs2(restfreqs);
|
---|
| 176 | return table_->setRestFreqs(restFreqs2, casa::String(unit),
|
---|
[401] | 177 | lines, casa::String(source),
|
---|
[392] | 178 | casa::Int(whichIF));
|
---|
[90] | 179 | }
|
---|
[483] | 180 |
|
---|
[717] | 181 | std::string spectralLines() const {table_->spectralLines();}
|
---|
[401] | 182 |
|
---|
[251] | 183 | std::vector<double> getRestFreqs() {
|
---|
| 184 | return table_->getRestFreqs();
|
---|
| 185 | }
|
---|
| 186 |
|
---|
[105] | 187 | void setCoordInfo(std::vector<string> theinfo) {
|
---|
| 188 | table_->setCoordInfo(theinfo);
|
---|
| 189 | }
|
---|
| 190 | std::vector<string> getCoordInfo() const {
|
---|
| 191 | return table_->getCoordInfo();
|
---|
| 192 | }
|
---|
[90] | 193 |
|
---|
[125] | 194 | casa::CountedPtr<SDMemTable> getCP() const {return table_;}
|
---|
[138] | 195 | SDMemTable* getPtr() {return &(*table_);}
|
---|
[380] | 196 |
|
---|
| 197 | std::string summary(bool verbose=false) const {
|
---|
| 198 | return table_->summary(verbose);
|
---|
| 199 | }
|
---|
[186] | 200 |
|
---|
[483] | 201 | std::vector<std::string> getHistory() {
|
---|
| 202 | return table_->getHistory();
|
---|
[207] | 203 | }
|
---|
[483] | 204 | void addHistory(const std::string& hist) {
|
---|
| 205 | table_->addHistory(hist);
|
---|
| 206 | }
|
---|
[207] | 207 |
|
---|
[455] | 208 | void addFit(int whichRow, const std::vector<double>& p,
|
---|
| 209 | const std::vector<bool>& m, const std::vector<string>& f,
|
---|
| 210 | const std::vector<int>& c) {
|
---|
| 211 |
|
---|
| 212 | casa::Vector<casa::Double> p2(p);
|
---|
| 213 | casa::Vector<casa::Bool> m2(m);
|
---|
[465] | 214 | casa::Vector<casa::String> f2 = mathutil::toVectorString(f);
|
---|
[455] | 215 | casa::Vector<casa::Int> c2(c);
|
---|
| 216 | table_->addFit(casa::uInt(whichRow), p2,m2,f2,c2);
|
---|
| 217 | }
|
---|
[465] | 218 | SDFitTable getSDFitTable(int whichRow) {
|
---|
| 219 | return table_->getSDFitTable(casa::uInt(whichRow));
|
---|
| 220 | }
|
---|
[455] | 221 |
|
---|
[465] | 222 |
|
---|
[2] | 223 | private:
|
---|
[125] | 224 | casa::CountedPtr<SDMemTable> table_;
|
---|
[2] | 225 | };
|
---|
| 226 |
|
---|
| 227 | } // namespace
|
---|
| 228 | #endif
|
---|
[421] | 229 |
|
---|