[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 | {
|
---|
| 53 | table_.addColumn(ScalarColumnDesc<uInt>("NCHAN"));
|
---|
[2740] | 54 | table_.addColumn(ScalarColumnDesc<uInt>("FUNC_TYPE"));
|
---|
| 55 | table_.addColumn(ArrayColumnDesc<uInt>("FUNC_PARAM"));
|
---|
| 56 | table_.addColumn(ArrayColumnDesc<Float>("FUNC_FPARAM"));
|
---|
[2738] | 57 | table_.addColumn(ScalarColumnDesc<uInt>("CLIP_ITERATION"));
|
---|
| 58 | table_.addColumn(ScalarColumnDesc<Float>("CLIP_THRESHOLD"));
|
---|
[2740] | 59 | table_.addColumn(ArrayColumnDesc<uInt>("MASKLIST"));
|
---|
| 60 | table_.addColumn(ArrayColumnDesc<Float>("RESULT"));
|
---|
[2738] | 61 | table_.addColumn(ScalarColumnDesc<Float>("RMS"));
|
---|
| 62 |
|
---|
| 63 | table_.rwKeywordSet().define("ApplyType", "BASELINE");
|
---|
| 64 |
|
---|
| 65 | attachOptionalColumns();
|
---|
| 66 | }
|
---|
| 67 |
|
---|
| 68 | void STBaselineTable::attachOptionalColumns()
|
---|
| 69 | {
|
---|
| 70 | nchanCol_.attach(table_, "NCHAN");
|
---|
[2740] | 71 | ftypeCol_.attach(table_, "FUNC_TYPE");
|
---|
| 72 | fparCol_.attach(table_, "FUNC_PARAM");
|
---|
| 73 | ffparCol_.attach(table_, "FUNC_FPARAM");
|
---|
| 74 | citerCol_.attach(table_, "CLIP_ITERATION");
|
---|
| 75 | cthresCol_.attach(table_, "CLIP_THRESHOLD");
|
---|
[2738] | 76 | maskCol_.attach(table_, "MASKLIST");
|
---|
[2740] | 77 | resCol_.attach(table_, "RESULT");
|
---|
[2738] | 78 | rmsCol_.attach(table_, "RMS");
|
---|
| 79 | }
|
---|
| 80 |
|
---|
| 81 | void STBaselineTable::save(const std::string &filename)
|
---|
| 82 | {
|
---|
| 83 | String inname(filename);
|
---|
| 84 | Path path(inname);
|
---|
| 85 | inname = path.expandedName();
|
---|
| 86 | table_.deepCopy(inname, Table::New);
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | void STBaselineTable::setdata(uInt irow, uInt scanno, uInt cycleno,
|
---|
[2740] | 90 | uInt beamno, uInt ifno, uInt polno,
|
---|
| 91 | uInt freqid, Double time,
|
---|
| 92 | uInt nchan,
|
---|
| 93 | STBaselineFunc::FuncName ftype,
|
---|
| 94 | Vector<uInt> fpar,
|
---|
| 95 | Vector<Float> ffpar,
|
---|
| 96 | uInt citer,
|
---|
| 97 | Float cthres,
|
---|
| 98 | Vector<uInt> mask,
|
---|
| 99 | Vector<Float> res,
|
---|
| 100 | Float rms)
|
---|
[2738] | 101 | {
|
---|
| 102 | if (irow >= (uInt)nrow()) {
|
---|
| 103 | throw AipsError("row index out of range");
|
---|
| 104 | }
|
---|
| 105 |
|
---|
| 106 | if (!sel_.empty()) {
|
---|
| 107 | os_.origin(LogOrigin("STBaselineTable","setdata",WHERE));
|
---|
| 108 | os_ << LogIO::WARN << "Data selection is effective. Specified row index may be wrong." << LogIO::POST;
|
---|
| 109 | }
|
---|
| 110 |
|
---|
| 111 | setbasedata(irow, scanno, cycleno, beamno, ifno, polno, freqid, time);
|
---|
| 112 | nchanCol_.put(irow, nchan);
|
---|
[2740] | 113 | ftypeCol_.put(irow, uInt(ftype));
|
---|
| 114 | fparCol_.put(irow, fpar);
|
---|
| 115 | ffparCol_.put(irow, ffpar);
|
---|
| 116 | citerCol_.put(irow, citer);
|
---|
| 117 | cthresCol_.put(irow, cthres);
|
---|
[2738] | 118 | maskCol_.put(irow, mask);
|
---|
[2740] | 119 | resCol_.put(irow, res);
|
---|
[2738] | 120 | rmsCol_.put(irow, rms);
|
---|
| 121 | }
|
---|
| 122 |
|
---|
| 123 | void STBaselineTable::appenddata(uInt scanno, uInt cycleno,
|
---|
[2740] | 124 | uInt beamno, uInt ifno, uInt polno,
|
---|
| 125 | uInt freqid, Double time,
|
---|
| 126 | uInt nchan,
|
---|
| 127 | STBaselineFunc::FuncName ftype,
|
---|
| 128 | Vector<uInt> fpar,
|
---|
| 129 | Vector<Float> ffpar,
|
---|
| 130 | uInt citer,
|
---|
| 131 | Float cthres,
|
---|
| 132 | Vector<uInt> mask,
|
---|
| 133 | Vector<Float> res,
|
---|
| 134 | Float rms)
|
---|
[2738] | 135 | {
|
---|
| 136 | uInt irow = nrow();
|
---|
| 137 | table_.addRow(1, True);
|
---|
| 138 | setdata(irow, scanno, cycleno, beamno, ifno, polno, freqid, time,
|
---|
[2740] | 139 | nchan, ftype, fpar, ffpar, citer, cthres, mask, res, rms);
|
---|
[2738] | 140 | }
|
---|
| 141 |
|
---|
| 142 | Vector<STBaselineFunc::FuncName> STBaselineTable::getFunctionAsString()
|
---|
| 143 | {
|
---|
[2740] | 144 | Vector<uInt> rawBlfuncColumn = ftypeCol_.getColumn();
|
---|
[2738] | 145 | uInt n = rawBlfuncColumn.nelements();
|
---|
| 146 | Vector<STBaselineFunc::FuncName> blfuncColumn(n);
|
---|
| 147 | for (uInt i = 0; i < n; ++i) {
|
---|
| 148 | blfuncColumn[i] = STBaselineFunc::FuncName(rawBlfuncColumn(i));
|
---|
| 149 | }
|
---|
| 150 | return blfuncColumn;
|
---|
| 151 | }
|
---|
| 152 |
|
---|
| 153 | uInt STBaselineTable::nchan(uInt ifno)
|
---|
| 154 | {
|
---|
| 155 | STSelector org = sel_;
|
---|
| 156 | STSelector sel;
|
---|
| 157 | sel.setIFs(vector<int>(1,(int)ifno));
|
---|
| 158 | setSelection(sel);
|
---|
| 159 | uInt n = nchanCol_(0);
|
---|
| 160 | unsetSelection();
|
---|
| 161 | if (!org.empty())
|
---|
| 162 | setSelection(org);
|
---|
| 163 | return n;
|
---|
| 164 | }
|
---|
| 165 | }
|
---|