source: trunk/src/SDMemTableWrapper.h @ 221

Last change on this file since 221 was 220, checked in by kil064, 19 years ago

add function 'setFLuxUnit'

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.1 KB
Line 
1//#---------------------------------------------------------------------------
2//# SDMemTableWrapper.h: Wrapper classes to use CountedPtr
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#ifndef SDMEMTABLEWRAPPER_H
32#define SDMEMTABLEWRAPPER_H
33
34#include <vector>
35#include <string>
36
37#include "SDMemTable.h"
38
39namespace asap {
40
41class SDMemTableWrapper {
42
43public:
44  SDMemTableWrapper(const std::string& name) :
45    table_(new SDMemTable(name)) {;}
46  SDMemTableWrapper() :
47    table_(new SDMemTable()) {;}
48
49  SDMemTableWrapper(casa::CountedPtr<SDMemTable> cp) : table_(cp) {;}
50  //SDMemTableWrapper(SDMemTable* sdmt) : table_(sdmt) {;}
51  SDMemTableWrapper(const SDMemTableWrapper& mt) :
52    table_(mt.getCP()) {;}
53
54  SDMemTableWrapper(const SDMemTableWrapper& mt, const std::string& expr) :
55    table_(new SDMemTable(mt.getCP()->table(), expr)) {;}
56
57  SDMemTableWrapper copy() {
58    //CountedPtr<SDMemTable> cp = new SDMemTable(*this, False);
59    return SDMemTableWrapper(new SDMemTable(*(this->getCP()), casa::False));
60  }
61
62  SDMemTableWrapper getScan(int scan) {
63    casa::String cond("SELECT * from $1 WHERE SCANID == ");
64    cond += casa::String::toString(scan);
65    return SDMemTableWrapper(*this, cond);
66  }
67
68  SDMemTableWrapper getSource(const std::string& source) {
69    casa::String cond("SELECT * from $1 WHERE SRCNAME == pattern('");
70    cond += source;cond += "')";
71    return SDMemTableWrapper(*this, cond);
72  }
73
74  std::vector<float> getSpectrum(int whichRow=0) const {
75    return table_->getSpectrum(whichRow);
76  }
77
78  std::vector<double> getAbcissa(int whichRow=0) const {
79    return table_->getAbcissa(whichRow);
80  }
81  std::string getAbcissaString(int whichRow=0) const {
82    return table_->getAbcissaString(whichRow);
83  }
84
85  std::vector<float> getTsys() {
86     int nRow = table_->nRow();
87     std::vector<float> result(nRow);
88     for (uint i=0; i<nRow; i++) {
89        result[i] = table_->getTsys(i);
90     }
91     return result;
92  }
93
94  std::string getTime(int whichRow=0) {return table_->getTime(whichRow);}
95
96  std::string getFluxUnit() const {return table_->getFluxUnit();}
97  void setFluxUnit(const std::string& unit) {table_->setFluxUnit(unit);}
98
99  std::vector<bool> getMask(int whichRow=0) const {
100    return table_->getMask(whichRow);
101  }
102  bool setMask(const std::vector<int> mvals) const {
103    return table_->setMask(mvals);
104  }
105
106  void flag(int whichRow=-1) {
107    table_->flag(whichRow);
108  }
109  std::string getSourceName(int whichRow=0) {
110    return table_->getSourceName(whichRow);
111  }
112
113  void setSpectrum(std::vector<float> spectrum, int whichRow=0) {
114      table_->setSpectrum(spectrum, whichRow);
115  }
116
117  bool setIF(int whichIF=0) {return table_->setIF(whichIF);}
118  bool setBeam(int whichBeam=0) {return table_->setBeam(whichBeam);}
119  bool setPol(int whichPol=0) {return table_->setPol(whichPol);}
120
121  int getIF() {return table_->getIF();}
122  int getBeam() {return table_->getBeam();}
123  int getPol() {return table_->getPol();}
124
125  int nIF() {return table_->nIF();}
126  int nBeam() {return table_->nBeam();}
127  int nPol() {return table_->nPol();}
128  int nChan() {return table_->nChan();}
129  int nScan() {return table_->nScan();}
130  int nRow() {return table_->nRow();}
131
132  //sets the mask
133  bool setChannels(const std::vector<int>& whichChans) {
134    return setChannels(whichChans);
135  }
136  void makePersistent(const std::string& fname) {
137    table_->makePersistent(fname);
138  }
139
140  void setRestFreqs(std::vector<double> freqs, const std::string& theunit) {
141    table_->setRestFreqs(freqs, theunit);
142  }
143  void setCoordInfo(std::vector<string> theinfo) {
144    table_->setCoordInfo(theinfo);
145  }
146  std::vector<string> getCoordInfo() const {
147    return table_->getCoordInfo();
148  }
149
150  casa::CountedPtr<SDMemTable> getCP() const {return table_;}
151  SDMemTable* getPtr() {return &(*table_);}
152  std::string summary() { return table_->summary(); }
153 
154  std::vector<std::string> history(int whichRow=0) {
155    return table_->history(whichRow);
156  }
157
158private:
159  casa::CountedPtr<SDMemTable> table_;
160};
161
162} // namespace
163#endif
Note: See TracBrowser for help on using the repository browser.