[2738] | 1 | //
|
---|
| 2 | // C++ Implementation: STBaselineTable
|
---|
| 3 | //
|
---|
| 4 | // Description:
|
---|
| 5 | //
|
---|
| 6 | //
|
---|
| 7 | // Author: Wataru Kawasaki <wataru.kawasaki@nao.ac.jp> (C) 2013
|
---|
| 8 | //
|
---|
| 9 | // Copyright: See COPYING file that comes with this distribution
|
---|
| 10 | //
|
---|
| 11 | //
|
---|
| 12 | #include <assert.h>
|
---|
| 13 |
|
---|
| 14 | #include <casa/Exceptions/Error.h>
|
---|
| 15 | #include <casa/OS/Path.h>
|
---|
| 16 | #include <tables/Tables/TableDesc.h>
|
---|
| 17 | #include <tables/Tables/SetupNewTab.h>
|
---|
| 18 | #include <tables/Tables/ArrColDesc.h>
|
---|
| 19 | #include <tables/Tables/ScaColDesc.h>
|
---|
| 20 | #include <tables/Tables/TableRecord.h>
|
---|
| 21 | #include <measures/TableMeasures/TableMeasDesc.h>
|
---|
| 22 | #include <measures/TableMeasures/TableMeasRefDesc.h>
|
---|
| 23 | #include <measures/TableMeasures/TableMeasValueDesc.h>
|
---|
| 24 |
|
---|
| 25 | #include "Scantable.h"
|
---|
| 26 | #include "STBaselineTable.h"
|
---|
| 27 |
|
---|
| 28 |
|
---|
| 29 | using namespace casa;
|
---|
| 30 |
|
---|
| 31 | namespace asap {
|
---|
| 32 |
|
---|
| 33 | const String STBaselineTable::name_ = "APPLY_BASELINE";
|
---|
| 34 |
|
---|
| 35 | STBaselineTable::STBaselineTable(const Scantable& parent)
|
---|
| 36 | : STApplyTable(parent, name_)
|
---|
| 37 | {
|
---|
| 38 | setup();
|
---|
| 39 | }
|
---|
| 40 |
|
---|
| 41 | STBaselineTable::STBaselineTable(const String &name)
|
---|
| 42 | : STApplyTable(name)
|
---|
| 43 | {
|
---|
| 44 | attachOptionalColumns();
|
---|
| 45 | }
|
---|
| 46 |
|
---|
| 47 | STBaselineTable::~STBaselineTable()
|
---|
| 48 | {
|
---|
| 49 | }
|
---|
| 50 |
|
---|
| 51 | void STBaselineTable::setup()
|
---|
| 52 | {
|
---|
[2767] | 53 | table_.addColumn(ScalarColumnDesc<Bool>("APPLY"));
|
---|
[2740] | 54 | table_.addColumn(ScalarColumnDesc<uInt>("FUNC_TYPE"));
|
---|
[2767] | 55 | table_.addColumn(ArrayColumnDesc<Int>("FUNC_PARAM"));
|
---|
[2740] | 56 | table_.addColumn(ArrayColumnDesc<Float>("FUNC_FPARAM"));
|
---|
| 57 | table_.addColumn(ArrayColumnDesc<uInt>("MASKLIST"));
|
---|
| 58 | table_.addColumn(ArrayColumnDesc<Float>("RESULT"));
|
---|
[2738] | 59 | table_.addColumn(ScalarColumnDesc<Float>("RMS"));
|
---|
[2767] | 60 | table_.addColumn(ScalarColumnDesc<uInt>("NCHAN"));
|
---|
| 61 | table_.addColumn(ScalarColumnDesc<Float>("CLIP_THRESHOLD"));
|
---|
| 62 | table_.addColumn(ScalarColumnDesc<uInt>("CLIP_ITERATION"));
|
---|
| 63 | table_.addColumn(ScalarColumnDesc<Float>("LF_THRESHOLD"));
|
---|
| 64 | table_.addColumn(ScalarColumnDesc<uInt>("LF_AVERAGE"));
|
---|
| 65 | table_.addColumn(ArrayColumnDesc<uInt>("LF_EDGE"));
|
---|
[2738] | 66 |
|
---|
| 67 | table_.rwKeywordSet().define("ApplyType", "BASELINE");
|
---|
| 68 |
|
---|
| 69 | attachOptionalColumns();
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | void STBaselineTable::attachOptionalColumns()
|
---|
| 73 | {
|
---|
[2767] | 74 | applyCol_.attach(table_, "APPLY");
|
---|
[2740] | 75 | ftypeCol_.attach(table_, "FUNC_TYPE");
|
---|
| 76 | fparCol_.attach(table_, "FUNC_PARAM");
|
---|
| 77 | ffparCol_.attach(table_, "FUNC_FPARAM");
|
---|
[2738] | 78 | maskCol_.attach(table_, "MASKLIST");
|
---|
[2740] | 79 | resCol_.attach(table_, "RESULT");
|
---|
[2738] | 80 | rmsCol_.attach(table_, "RMS");
|
---|
[2767] | 81 | nchanCol_.attach(table_, "NCHAN");
|
---|
| 82 | cthresCol_.attach(table_, "CLIP_THRESHOLD");
|
---|
| 83 | citerCol_.attach(table_, "CLIP_ITERATION");
|
---|
| 84 | lfthresCol_.attach(table_, "LF_THRESHOLD");
|
---|
| 85 | lfavgCol_.attach(table_, "LF_AVERAGE");
|
---|
| 86 | lfedgeCol_.attach(table_, "LF_EDGE");
|
---|
[2738] | 87 | }
|
---|
| 88 |
|
---|
| 89 | void STBaselineTable::save(const std::string &filename)
|
---|
| 90 | {
|
---|
| 91 | String inname(filename);
|
---|
| 92 | Path path(inname);
|
---|
| 93 | inname = path.expandedName();
|
---|
| 94 | table_.deepCopy(inname, Table::New);
|
---|
| 95 | }
|
---|
| 96 |
|
---|
| 97 | void STBaselineTable::setdata(uInt irow, uInt scanno, uInt cycleno,
|
---|
[2740] | 98 | uInt beamno, uInt ifno, uInt polno,
|
---|
| 99 | uInt freqid, Double time,
|
---|
[2767] | 100 | Bool apply,
|
---|
[2740] | 101 | STBaselineFunc::FuncName ftype,
|
---|
[2767] | 102 | Vector<Int> fpar,
|
---|
[2740] | 103 | Vector<Float> ffpar,
|
---|
| 104 | Vector<uInt> mask,
|
---|
| 105 | Vector<Float> res,
|
---|
[2767] | 106 | Float rms,
|
---|
| 107 | uInt nchan,
|
---|
| 108 | Float cthres,
|
---|
| 109 | uInt citer,
|
---|
| 110 | Float lfthres,
|
---|
| 111 | uInt lfavg,
|
---|
| 112 | Vector<uInt> lfedge)
|
---|
[2738] | 113 | {
|
---|
| 114 | if (irow >= (uInt)nrow()) {
|
---|
| 115 | throw AipsError("row index out of range");
|
---|
| 116 | }
|
---|
| 117 |
|
---|
| 118 | if (!sel_.empty()) {
|
---|
| 119 | os_.origin(LogOrigin("STBaselineTable","setdata",WHERE));
|
---|
| 120 | os_ << LogIO::WARN << "Data selection is effective. Specified row index may be wrong." << LogIO::POST;
|
---|
| 121 | }
|
---|
| 122 |
|
---|
| 123 | setbasedata(irow, scanno, cycleno, beamno, ifno, polno, freqid, time);
|
---|
[2767] | 124 | applyCol_.put(irow, apply);
|
---|
[2740] | 125 | ftypeCol_.put(irow, uInt(ftype));
|
---|
| 126 | fparCol_.put(irow, fpar);
|
---|
| 127 | ffparCol_.put(irow, ffpar);
|
---|
[2738] | 128 | maskCol_.put(irow, mask);
|
---|
[2740] | 129 | resCol_.put(irow, res);
|
---|
[2738] | 130 | rmsCol_.put(irow, rms);
|
---|
[2767] | 131 | nchanCol_.put(irow, nchan);
|
---|
| 132 | cthresCol_.put(irow, cthres);
|
---|
| 133 | citerCol_.put(irow, citer);
|
---|
| 134 | lfthresCol_.put(irow, lfthres);
|
---|
| 135 | lfavgCol_.put(irow, lfavg);
|
---|
| 136 | lfedgeCol_.put(irow, lfedge);
|
---|
[2738] | 137 | }
|
---|
| 138 |
|
---|
| 139 | void STBaselineTable::appenddata(uInt scanno, uInt cycleno,
|
---|
[2740] | 140 | uInt beamno, uInt ifno, uInt polno,
|
---|
| 141 | uInt freqid, Double time,
|
---|
[2767] | 142 | Bool apply,
|
---|
[2740] | 143 | STBaselineFunc::FuncName ftype,
|
---|
[2767] | 144 | Vector<Int> fpar,
|
---|
[2740] | 145 | Vector<Float> ffpar,
|
---|
| 146 | Vector<uInt> mask,
|
---|
| 147 | Vector<Float> res,
|
---|
[2767] | 148 | Float rms,
|
---|
| 149 | uInt nchan,
|
---|
| 150 | Float cthres,
|
---|
| 151 | uInt citer,
|
---|
| 152 | Float lfthres,
|
---|
| 153 | uInt lfavg,
|
---|
| 154 | Vector<uInt> lfedge)
|
---|
[2738] | 155 | {
|
---|
| 156 | uInt irow = nrow();
|
---|
| 157 | table_.addRow(1, True);
|
---|
| 158 | setdata(irow, scanno, cycleno, beamno, ifno, polno, freqid, time,
|
---|
[2767] | 159 | apply, ftype, fpar, ffpar, mask, res, rms,
|
---|
| 160 | nchan, cthres, citer, lfthres, lfavg, lfedge);
|
---|
[2738] | 161 | }
|
---|
| 162 |
|
---|
[2767] | 163 | void STBaselineTable::appendbasedata(int scanno, int cycleno,
|
---|
| 164 | int beamno, int ifno, int polno,
|
---|
| 165 | int freqid, Double time)
|
---|
[2738] | 166 | {
|
---|
[2767] | 167 | uInt irow = nrow();
|
---|
| 168 | table_.addRow(1, True);
|
---|
| 169 | setbasedata(irow, uInt(scanno), uInt(cycleno), uInt(beamno), uInt(ifno), uInt(polno), uInt(freqid), time);
|
---|
| 170 | }
|
---|
| 171 |
|
---|
| 172 | void STBaselineTable::setresult(casa::uInt irow,
|
---|
| 173 | casa::Vector<casa::Float> res,
|
---|
| 174 | casa::Float rms)
|
---|
| 175 | {
|
---|
| 176 | resCol_.put(irow, res);
|
---|
| 177 | rmsCol_.put(irow, rms);
|
---|
| 178 | }
|
---|
| 179 |
|
---|
| 180 | bool STBaselineTable::getApply(int irow)
|
---|
| 181 | {
|
---|
| 182 | return (bool)applyCol_.get(irow);
|
---|
| 183 | }
|
---|
| 184 |
|
---|
| 185 | void STBaselineTable::setApply(int irow, bool apply)
|
---|
| 186 | {
|
---|
| 187 | applyCol_.put(uInt(irow), Bool(apply));
|
---|
| 188 | }
|
---|
| 189 |
|
---|
| 190 | Vector<STBaselineFunc::FuncName> STBaselineTable::getFunctionNames()
|
---|
| 191 | {
|
---|
[2740] | 192 | Vector<uInt> rawBlfuncColumn = ftypeCol_.getColumn();
|
---|
[2738] | 193 | uInt n = rawBlfuncColumn.nelements();
|
---|
| 194 | Vector<STBaselineFunc::FuncName> blfuncColumn(n);
|
---|
| 195 | for (uInt i = 0; i < n; ++i) {
|
---|
| 196 | blfuncColumn[i] = STBaselineFunc::FuncName(rawBlfuncColumn(i));
|
---|
| 197 | }
|
---|
| 198 | return blfuncColumn;
|
---|
| 199 | }
|
---|
| 200 |
|
---|
[2767] | 201 | STBaselineFunc::FuncName STBaselineTable::getFunctionName(int irow)
|
---|
| 202 | {
|
---|
| 203 | return STBaselineFunc::FuncName(ftypeCol_.get(irow));
|
---|
| 204 | }
|
---|
| 205 |
|
---|
| 206 | std::vector<int> STBaselineTable::getFuncParam(int irow)
|
---|
| 207 | {
|
---|
| 208 | Vector<Int> uiparam = fparCol_.get(irow);
|
---|
| 209 | std::vector<int> res(uiparam.size());
|
---|
| 210 | for (uInt i = 0; i < res.size(); ++i) {
|
---|
| 211 | res[i] = (int)uiparam[i];
|
---|
| 212 | }
|
---|
| 213 | return res;
|
---|
| 214 | }
|
---|
| 215 |
|
---|
| 216 | std::vector<bool> STBaselineTable::getMask(int irow)
|
---|
| 217 | {
|
---|
| 218 | uInt nchan = getNChan(irow);
|
---|
| 219 | Vector<uInt> masklist = maskCol_.get(irow);
|
---|
| 220 | std::vector<int> masklist1(masklist.size());
|
---|
| 221 | for (uInt i = 0; i < masklist1.size(); ++i) {
|
---|
| 222 | masklist1[i] = (int)masklist[i];
|
---|
| 223 | }
|
---|
| 224 | return Scantable::getMaskFromMaskList(nchan, masklist1);
|
---|
| 225 | }
|
---|
| 226 |
|
---|
| 227 | uInt STBaselineTable::getNChan(int irow)
|
---|
| 228 | {
|
---|
| 229 | return nchanCol_.get(irow);
|
---|
| 230 | }
|
---|
| 231 |
|
---|
[2738] | 232 | uInt STBaselineTable::nchan(uInt ifno)
|
---|
| 233 | {
|
---|
| 234 | STSelector org = sel_;
|
---|
| 235 | STSelector sel;
|
---|
| 236 | sel.setIFs(vector<int>(1,(int)ifno));
|
---|
| 237 | setSelection(sel);
|
---|
| 238 | uInt n = nchanCol_(0);
|
---|
| 239 | unsetSelection();
|
---|
| 240 | if (!org.empty())
|
---|
| 241 | setSelection(org);
|
---|
| 242 | return n;
|
---|
| 243 | }
|
---|
| 244 | }
|
---|