source: trunk/src/ScantableWrapper.h@ 897

Last change on this file since 897 was 896, checked in by mar637, 19 years ago

enable polarimetry in asap2

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.7 KB
Line 
1//
2// C++ Interface: Scantable
3//
4// Description:
5//
6//
7// Author: Malte Marquarding <asap@atnf.csiro.au>, (C) 2006
8//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
12#ifndef ASAPSCANTABLEWRAPPER_H
13#define ASAPSCANTABLEWRAPPER_H
14
15#include <vector>
16#include <string>
17#include <casa/Arrays/Vector.h>
18
19#include "MathUtils.h"
20#include "SDFitTable.h"
21#include "Scantable.h"
22
23namespace asap {
24/**
25 * This class contains and wraps a CountedPtr<Scantable>, as the CountedPtr
26 * class does not provide the dor operator which is need for references
27 * in boost::python
28 * see Scantable for interfce description
29 *
30 * @brief The main ASAP data container wrapper
31 * @author Malte Marquarding
32 * @date 2006-02-23
33 * @version 2.0a
34*/
35class ScantableWrapper {
36
37public:
38 ScantableWrapper( const std::string& name,
39 const std::string& type="")
40 {
41 casa::Table::TableType tp = casa::Table::Memory;
42 if ( type == "disk") tp = casa::Table::Plain;
43 table_ = new Scantable(name, tp);
44 }
45
46 ScantableWrapper(const std::string& type="")
47 {
48 casa::Table::TableType tp = casa::Table::Memory;
49 if ( type == "disk") tp = casa::Table::Plain;
50 table_= new Scantable(tp);
51 }
52
53 ScantableWrapper(casa::CountedPtr<Scantable> cp) : table_(cp) {;}
54
55 ScantableWrapper(const ScantableWrapper& mt) :
56 table_(mt.getCP()) {;}
57
58 void assign(const ScantableWrapper& mt)
59 { table_= mt.getCP(); }
60
61 ScantableWrapper copy() {
62 return ScantableWrapper(new Scantable(*(this->getCP()), false));
63 }
64
65 std::vector<float> getSpectrum( int whichrow=0,
66 const std::string& poltype="linear" ) const {
67 return table_->getSpectrum(whichrow, poltype);
68 }
69 // std::string getPolarizationLabel(bool linear, bool stokes, bool linPol, int polIdx) const {
70 // Boost fails with 4 arguments.
71 std::string getPolarizationLabel(bool linear, bool stokes,
72 bool linPol) const {
73 int polIdx = -1;
74 return table_->getPolarizationLabel(linear, stokes, linPol, polIdx);
75 }
76
77 std::vector<double> getAbcissa(int whichrow=0) const
78 { return table_->getAbcissa(whichrow); }
79
80 std::string getAbcissaLabel(int whichrow=0) const
81 { return table_->getAbcissaLabel(whichrow); }
82
83 float getTsys(int whichrow=0) const
84 { return table_->getTsys(whichrow); }
85
86 std::string getTime(int whichrow=0) const
87 { return table_->getTime(whichrow); }
88
89 std::string getFluxUnit() const { return table_->getFluxUnit(); }
90
91 void setFluxUnit(const std::string& unit) { table_->setFluxUnit(unit); }
92
93 void setInstrument(const std::string& name) {table_->setInstrument(name);}
94
95 std::vector<bool> getMask(int whichrow=0) const
96 { return table_->getMask(whichrow); }
97
98 void flag() { table_->flag(); }
99
100 std::string getSourceName(int whichrow=0) const
101 { return table_->getSourceName(whichrow); }
102
103 float getElevation(int whichrow=0) const
104 { return table_->getElevation(whichrow); }
105
106 float getAzimuth(int whichrow=0) const
107 { return table_->getAzimuth(whichrow); }
108
109 float getParAngle(int whichrow=0) const
110 { return table_->getParAngle(whichrow); }
111
112
113 void setSpectrum(std::vector<float> spectrum, int whichrow=0)
114 { table_->setSpectrum(spectrum, whichrow); }
115
116 int getIF(int whichrow) const {return table_->getIF(whichrow);}
117 int getBeam(int whichrow) const {return table_->getBeam(whichrow);}
118 int getPol(int whichrow) const {return table_->getPol(whichrow);}
119 int getCycle(int whichrow) const {return table_->getCycle(whichrow);}
120 int getScan(int whichrow) const {return table_->getScan(whichrow);}
121
122 STSelector getSelection() const { return table_->getSelection(); }
123 void setSelection(const STSelector& sts)
124 { return table_->setSelection(sts);}
125
126 std::string getPolType() const { return table_->getPolType(); }
127
128 int nif(int scanno=-1) const {return table_->nif(scanno);}
129 int nbeam(int scanno=-1) const {return table_->nbeam(scanno);}
130 int npol(int scanno=-1) const {return table_->npol(scanno);}
131 int nchan(int ifno=-1) const {return table_->nchan(ifno);}
132 int nscan() const {return table_->nscan();}
133 int nrow() const {return table_->nrow();}
134 ///@todo int nstokes() {return table_->nStokes();}
135
136 void makePersistent(const std::string& fname)
137 { table_->makePersistent(fname); }
138
139 void setRestFrequencies(double rf, const std::string& unit)
140 { table_->setRestFrequencies(rf, unit); }
141
142 void setRestFrequencies(const std::string& name) {
143 table_->setRestFrequencies(name);
144 }
145
146 std::vector<double> getRestFrequencies() const
147 { return table_->getRestFrequencies(); }
148
149 void setCoordInfo(std::vector<string> theinfo) {
150 table_->setCoordInfo(theinfo);
151 }
152 std::vector<string> getCoordInfo() const {
153 return table_->getCoordInfo();
154 }
155
156 casa::CountedPtr<Scantable> getCP() const {return table_;}
157 Scantable* getPtr() {return &(*table_);}
158
159 std::string summary(bool verbose=false) const {
160 return table_->summary(verbose);
161 }
162
163 std::vector<std::string> getHistory()const
164 { return table_->getHistory(); }
165
166 void addHistory(const std::string& hist)
167 { table_->addHistory(hist); }
168 /*
169 void addFit(int whichrow, const std::vector<double>& p,
170 const std::vector<bool>& m, const std::vector<string>& f,
171 const std::vector<int>& c) {
172
173 casa::Vector<casa::Double> p2(p);
174 casa::Vector<casa::Bool> m2(m);
175 casa::Vector<casa::String> f2 = mathutil::toVectorString(f);
176 casa::Vector<casa::Int> c2(c);
177 table_->addFit(casa::uInt(whichrow), p2,m2,f2,c2);
178 }
179 SDFitTable getSDFitTable(int whichrow) {
180 return table_->getSDFitTable(casa::uInt(whichrow));
181 }
182 */
183 void calculateAZEL() { table_->calculateAZEL(); };
184
185private:
186 casa::CountedPtr<Scantable> table_;
187};
188
189} // namespace
190#endif
191
Note: See TracBrowser for help on using the repository browser.