[2720] | 1 | //
|
---|
| 2 | // C++ Implementation: STApplyCal
|
---|
| 3 | //
|
---|
| 4 | // Description:
|
---|
| 5 | //
|
---|
| 6 | //
|
---|
| 7 | // Author: Takeshi Nakazato <takeshi.nakazato@nao.ac.jp> (C) 2012
|
---|
| 8 | //
|
---|
| 9 | // Copyright: See COPYING file that comes with this distribution
|
---|
| 10 | //
|
---|
| 11 | //
|
---|
[2722] | 12 | #include <assert.h>
|
---|
[2720] | 13 |
|
---|
| 14 | #include <casa/Arrays/Array.h>
|
---|
| 15 | #include <casa/Arrays/Vector.h>
|
---|
| 16 | #include <casa/Arrays/Matrix.h>
|
---|
| 17 | #include <casa/Arrays/ArrayIO.h>
|
---|
| 18 | #include <casa/Arrays/ArrayMath.h>
|
---|
| 19 | #include <casa/BasicSL/String.h>
|
---|
| 20 | #include <casa/Logging/LogIO.h>
|
---|
| 21 | #include <casa/Exceptions/Error.h>
|
---|
| 22 | #include <casa/Utilities/CountedPtr.h>
|
---|
| 23 | #include <casa/Utilities/Sort.h>
|
---|
[2756] | 24 | #include <casa/Utilities/Assert.h>
|
---|
[2720] | 25 | #include <tables/Tables/Table.h>
|
---|
| 26 |
|
---|
| 27 | #include "Scantable.h"
|
---|
| 28 | #include "STApplyCal.h"
|
---|
| 29 | #include "STApplyTable.h"
|
---|
| 30 | #include "STCalTsysTable.h"
|
---|
| 31 | #include "STCalSkyTable.h"
|
---|
| 32 | #include "STCalEnum.h"
|
---|
| 33 | #include "STIdxIter.h"
|
---|
| 34 | #include "Calibrator.h"
|
---|
| 35 | #include "PSAlmaCalibrator.h"
|
---|
[2733] | 36 | #include "Interpolator1D.h"
|
---|
[2720] | 37 | #include "NearestInterpolator1D.h"
|
---|
[2727] | 38 | #include "BufferedLinearInterpolator1D.h"
|
---|
| 39 | #include "PolynomialInterpolator1D.h"
|
---|
| 40 | #include "CubicSplineInterpolator1D.h"
|
---|
[2720] | 41 | #include <atnf/PKSIO/SrcType.h>
|
---|
| 42 |
|
---|
| 43 |
|
---|
| 44 | using namespace casa;
|
---|
| 45 | using namespace std;
|
---|
| 46 |
|
---|
| 47 | namespace asap {
|
---|
| 48 |
|
---|
| 49 | STApplyCal::STApplyCal()
|
---|
| 50 | {
|
---|
| 51 | init();
|
---|
| 52 | }
|
---|
| 53 |
|
---|
| 54 | STApplyCal::STApplyCal(CountedPtr<Scantable> target)
|
---|
| 55 | : target_(target)
|
---|
| 56 | {
|
---|
| 57 | init();
|
---|
| 58 | }
|
---|
| 59 |
|
---|
| 60 | STApplyCal::~STApplyCal()
|
---|
| 61 | {
|
---|
| 62 | }
|
---|
| 63 |
|
---|
| 64 | void STApplyCal::init()
|
---|
| 65 | {
|
---|
| 66 | caltype_ = STCalEnum::NoType;
|
---|
| 67 | doTsys_ = False;
|
---|
[2742] | 68 | iTime_ = STCalEnum::DefaultInterpolation;
|
---|
| 69 | iFreq_ = STCalEnum::DefaultInterpolation;
|
---|
[2720] | 70 | }
|
---|
| 71 |
|
---|
[2735] | 72 | void STApplyCal::reset()
|
---|
| 73 | {
|
---|
[2742] | 74 | // call init
|
---|
| 75 | init();
|
---|
| 76 |
|
---|
| 77 | // clear apply tables
|
---|
| 78 | // do not delete object here
|
---|
| 79 | skytable_.resize(0);
|
---|
| 80 | tsystable_.resize(0);
|
---|
| 81 |
|
---|
| 82 | // clear mapping for Tsys transfer
|
---|
| 83 | spwmap_.clear();
|
---|
| 84 |
|
---|
| 85 | // reset selector
|
---|
| 86 | sel_.reset();
|
---|
| 87 |
|
---|
| 88 | // delete interpolators
|
---|
| 89 | interpolatorT_ = 0;
|
---|
| 90 | interpolatorS_ = 0;
|
---|
| 91 | interpolatorF_ = 0;
|
---|
| 92 |
|
---|
| 93 | // clear working scantable
|
---|
| 94 | work_ = 0;
|
---|
| 95 |
|
---|
| 96 | // clear calibrator
|
---|
| 97 | calibrator_ = 0;
|
---|
[2735] | 98 | }
|
---|
| 99 |
|
---|
| 100 | void STApplyCal::completeReset()
|
---|
| 101 | {
|
---|
| 102 | reset();
|
---|
| 103 | target_ = 0;
|
---|
| 104 | }
|
---|
| 105 |
|
---|
[2720] | 106 | void STApplyCal::setTarget(CountedPtr<Scantable> target)
|
---|
| 107 | {
|
---|
| 108 | target_ = target;
|
---|
| 109 | }
|
---|
| 110 |
|
---|
| 111 | void STApplyCal::setTarget(const String &name)
|
---|
| 112 | {
|
---|
| 113 | // always create PlainTable
|
---|
| 114 | target_ = new Scantable(name, Table::Plain);
|
---|
| 115 | }
|
---|
| 116 |
|
---|
| 117 | void STApplyCal::push(STCalSkyTable *table)
|
---|
| 118 | {
|
---|
[2735] | 119 | os_.origin(LogOrigin("STApplyCal","push",WHERE));
|
---|
[2720] | 120 | skytable_.push_back(table);
|
---|
| 121 | STCalEnum::CalType caltype = STApplyTable::getCalType(table);
|
---|
| 122 | os_ << "caltype=" << caltype << LogIO::POST;
|
---|
| 123 | if (caltype_ == STCalEnum::NoType ||
|
---|
| 124 | caltype_ == STCalEnum::DefaultType ||
|
---|
| 125 | caltype_ == STCalEnum::CalTsys) {
|
---|
| 126 | caltype_ = caltype;
|
---|
| 127 | }
|
---|
| 128 | os_ << "caltype_=" << caltype_ << LogIO::POST;
|
---|
| 129 | }
|
---|
| 130 |
|
---|
| 131 | void STApplyCal::push(STCalTsysTable *table)
|
---|
| 132 | {
|
---|
| 133 | tsystable_.push_back(table);
|
---|
| 134 | doTsys_ = True;
|
---|
| 135 | }
|
---|
| 136 |
|
---|
[2735] | 137 | void STApplyCal::setTimeInterpolation(STCalEnum::InterpolationType itype, Int order)
|
---|
[2720] | 138 | {
|
---|
[2735] | 139 | iTime_ = itype;
|
---|
[2720] | 140 | order_ = order;
|
---|
| 141 | }
|
---|
| 142 |
|
---|
[2735] | 143 | void STApplyCal::setFrequencyInterpolation(STCalEnum::InterpolationType itype, Int order)
|
---|
| 144 | {
|
---|
| 145 | iFreq_ = itype;
|
---|
| 146 | order_ = order;
|
---|
| 147 | }
|
---|
| 148 |
|
---|
[2720] | 149 | void STApplyCal::setTsysTransfer(uInt from, Vector<uInt> to)
|
---|
| 150 | {
|
---|
[2735] | 151 | os_.origin(LogOrigin("STApplyCal","setTsysTransfer",WHERE));
|
---|
[2720] | 152 | os_ << "from=" << from << ", to=" << to << LogIO::POST;
|
---|
| 153 | map<uInt, Vector<uInt> >::iterator i = spwmap_.find(from);
|
---|
| 154 | if (i == spwmap_.end()) {
|
---|
| 155 | spwmap_.insert(pair<uInt, Vector<uInt> >(from, to));
|
---|
| 156 | }
|
---|
| 157 | else {
|
---|
| 158 | Vector<uInt> toNew = i->second;
|
---|
| 159 | spwmap_.erase(i);
|
---|
| 160 | uInt k = toNew.nelements();
|
---|
| 161 | toNew.resize(k+to.nelements(), True);
|
---|
| 162 | for (uInt i = 0; i < to.nelements(); i++)
|
---|
| 163 | toNew[i+k] = to[i];
|
---|
| 164 | spwmap_.insert(pair<uInt, Vector<uInt> >(from, toNew));
|
---|
| 165 | }
|
---|
| 166 | }
|
---|
| 167 |
|
---|
[2742] | 168 | void STApplyCal::apply(Bool insitu, Bool filltsys)
|
---|
[2720] | 169 | {
|
---|
[2735] | 170 | os_.origin(LogOrigin("STApplyCal","apply",WHERE));
|
---|
[2750] | 171 |
|
---|
[2756] | 172 | //assert(!target_.null());
|
---|
| 173 | assert_<AipsError>(!target_.null(),"You have to set target scantable first.");
|
---|
[2750] | 174 |
|
---|
[2720] | 175 | // calibrator
|
---|
| 176 | if (caltype_ == STCalEnum::CalPSAlma)
|
---|
| 177 | calibrator_ = new PSAlmaCalibrator();
|
---|
| 178 |
|
---|
| 179 | // interpolator
|
---|
[2727] | 180 | initInterpolator();
|
---|
[2720] | 181 |
|
---|
| 182 | // select data
|
---|
| 183 | sel_.reset();
|
---|
[2806] | 184 | sel_ = target_->getSelection();
|
---|
[2720] | 185 | if (caltype_ == STCalEnum::CalPSAlma ||
|
---|
| 186 | caltype_ == STCalEnum::CalPS) {
|
---|
| 187 | sel_.setTypes(vector<int>(1,(int)SrcType::PSON));
|
---|
| 188 | }
|
---|
| 189 | target_->setSelection(sel_);
|
---|
| 190 |
|
---|
[2735] | 191 | //os_ << "sel_.print()=" << sel_.print() << LogIO::POST;
|
---|
[2720] | 192 |
|
---|
| 193 | // working data
|
---|
[2750] | 194 | if (insitu) {
|
---|
| 195 | os_.origin(LogOrigin("STApplyCal","apply",WHERE));
|
---|
| 196 | os_ << "Overwrite input scantable" << LogIO::POST;
|
---|
[2720] | 197 | work_ = target_;
|
---|
[2750] | 198 | }
|
---|
| 199 | else {
|
---|
| 200 | os_.origin(LogOrigin("STApplyCal","apply",WHERE));
|
---|
| 201 | os_ << "Create output scantable from input" << LogIO::POST;
|
---|
[2720] | 202 | work_ = new Scantable(*target_, false);
|
---|
[2750] | 203 | }
|
---|
[2720] | 204 |
|
---|
[2735] | 205 | //os_ << "work_->nrow()=" << work_->nrow() << LogIO::POST;
|
---|
[2720] | 206 |
|
---|
| 207 | // list of apply tables for sky calibration
|
---|
| 208 | Vector<uInt> skycalList;
|
---|
| 209 | uInt numSkyCal = 0;
|
---|
| 210 | uInt nrowSky = 0;
|
---|
[2735] | 211 |
|
---|
[2720] | 212 | // list of apply tables for Tsys calibration
|
---|
| 213 | for (uInt i = 0 ; i < skytable_.size(); i++) {
|
---|
| 214 | STCalEnum::CalType caltype = STApplyTable::getCalType(skytable_[i]);
|
---|
| 215 | if (caltype == caltype_) {
|
---|
| 216 | skycalList.resize(numSkyCal+1, True);
|
---|
| 217 | skycalList[numSkyCal] = i;
|
---|
| 218 | numSkyCal++;
|
---|
| 219 | nrowSky += skytable_[i]->nrow();
|
---|
| 220 | }
|
---|
| 221 | }
|
---|
| 222 |
|
---|
| 223 |
|
---|
| 224 | vector<string> cols( 3 ) ;
|
---|
| 225 | cols[0] = "BEAMNO" ;
|
---|
| 226 | cols[1] = "POLNO" ;
|
---|
| 227 | cols[2] = "IFNO" ;
|
---|
| 228 | CountedPtr<STIdxIter> iter = new STIdxIterAcc(work_, cols) ;
|
---|
| 229 | while (!iter->pastEnd()) {
|
---|
| 230 | Vector<uInt> ids = iter->current();
|
---|
| 231 | Vector<uInt> rows = iter->getRows(SHARE);
|
---|
| 232 | if (rows.nelements() > 0)
|
---|
[2750] | 233 | doapply(ids[0], ids[2], ids[1], rows, skycalList, filltsys);
|
---|
[2720] | 234 | iter->next();
|
---|
| 235 | }
|
---|
| 236 |
|
---|
| 237 | target_->unsetSelection();
|
---|
| 238 | }
|
---|
| 239 |
|
---|
| 240 | void STApplyCal::doapply(uInt beamno, uInt ifno, uInt polno,
|
---|
| 241 | Vector<uInt> &rows,
|
---|
[2742] | 242 | Vector<uInt> &skylist,
|
---|
| 243 | Bool filltsys)
|
---|
[2720] | 244 | {
|
---|
[2735] | 245 | os_.origin(LogOrigin("STApplyCal","doapply",WHERE));
|
---|
[2720] | 246 | Bool doTsys = doTsys_;
|
---|
| 247 |
|
---|
| 248 | STSelector sel;
|
---|
| 249 | vector<int> id(1);
|
---|
| 250 | id[0] = beamno;
|
---|
| 251 | sel.setBeams(id);
|
---|
| 252 | id[0] = ifno;
|
---|
| 253 | sel.setIFs(id);
|
---|
| 254 | id[0] = polno;
|
---|
| 255 | sel.setPolarizations(id);
|
---|
| 256 |
|
---|
| 257 | // apply selection to apply tables
|
---|
| 258 | uInt nrowSky = 0;
|
---|
| 259 | uInt nrowTsys = 0;
|
---|
| 260 | for (uInt i = 0; i < skylist.nelements(); i++) {
|
---|
| 261 | skytable_[skylist[i]]->setSelection(sel);
|
---|
| 262 | nrowSky += skytable_[skylist[i]]->nrow();
|
---|
| 263 | os_ << "nrowSky=" << nrowSky << LogIO::POST;
|
---|
| 264 | }
|
---|
[2806] | 265 |
|
---|
| 266 | // Skip IFNO without sky data
|
---|
| 267 | if (nrowSky == 0)
|
---|
| 268 | return;
|
---|
| 269 |
|
---|
[2720] | 270 | uInt nchanTsys = 0;
|
---|
| 271 | Vector<Double> ftsys;
|
---|
| 272 | uInt tsysifno = getIFForTsys(ifno);
|
---|
[2758] | 273 | os_ << "tsysifno=" << (Int)tsysifno << LogIO::POST;
|
---|
[2720] | 274 | if (tsystable_.size() == 0) {
|
---|
| 275 | os_.origin(LogOrigin("STApplyTable", "doapply", WHERE));
|
---|
| 276 | os_ << "No Tsys tables are given. Skip Tsys calibratoin." << LogIO::POST;
|
---|
| 277 | doTsys = False;
|
---|
| 278 | }
|
---|
| 279 | else if (tsysifno == (uInt)-1) {
|
---|
| 280 | os_.origin(LogOrigin("STApplyTable", "doapply", WHERE));
|
---|
| 281 | os_ << "No corresponding Tsys for IFNO " << ifno << ". Skip Tsys calibration" << LogIO::POST;
|
---|
| 282 | doTsys = False;
|
---|
| 283 | }
|
---|
| 284 | else {
|
---|
| 285 | nchanTsys = tsystable_[0]->nchan(tsysifno);
|
---|
| 286 | ftsys = tsystable_[0]->getBaseFrequency(0);
|
---|
| 287 | interpolatorF_->setX(ftsys.data(), nchanTsys);
|
---|
| 288 | id[0] = (int)tsysifno;
|
---|
| 289 | sel.setIFs(id);
|
---|
| 290 | for (uInt i = 0; i < tsystable_.size() ; i++) {
|
---|
| 291 | tsystable_[i]->setSelection(sel);
|
---|
| 292 | nrowTsys += tsystable_[i]->nrow();
|
---|
| 293 | }
|
---|
| 294 | }
|
---|
| 295 |
|
---|
| 296 | uInt nchanSp = skytable_[skylist[0]]->nchan(ifno);
|
---|
| 297 | Vector<Double> timeSky(nrowSky);
|
---|
| 298 | Matrix<Float> spoff(nchanSp, nrowSky);
|
---|
| 299 | Vector<Float> iOff(nchanSp);
|
---|
| 300 | nrowSky = 0;
|
---|
| 301 | for (uInt i = 0 ; i < skylist.nelements(); i++) {
|
---|
| 302 | STCalSkyTable *p = skytable_[skylist[i]];
|
---|
| 303 | Vector<Double> t = p->getTime();
|
---|
| 304 | Matrix<Float> sp = p->getSpectra();
|
---|
| 305 | for (uInt j = 0; j < t.nelements(); j++) {
|
---|
| 306 | timeSky[nrowSky] = t[j];
|
---|
| 307 | spoff.column(nrowSky) = sp.column(j);
|
---|
| 308 | nrowSky++;
|
---|
| 309 | }
|
---|
| 310 | }
|
---|
| 311 |
|
---|
| 312 | Vector<uInt> skyIdx = timeSort(timeSky);
|
---|
| 313 |
|
---|
[2733] | 314 | Double *xa = new Double[skyIdx.nelements()];
|
---|
| 315 | Float *ya = new Float[skyIdx.nelements()];
|
---|
[2720] | 316 | IPosition ipos(1, skyIdx.nelements());
|
---|
[2733] | 317 | Vector<Double> timeSkySorted(ipos, xa, TAKE_OVER);
|
---|
[2720] | 318 | Vector<Float> tmpOff(ipos, ya, TAKE_OVER);
|
---|
| 319 | for (uInt i = 0 ; i < skyIdx.nelements(); i++) {
|
---|
[2733] | 320 | timeSkySorted[i] = timeSky[skyIdx[i]];
|
---|
[2720] | 321 | }
|
---|
| 322 |
|
---|
| 323 | interpolatorS_->setX(xa, skyIdx.nelements());
|
---|
| 324 |
|
---|
| 325 | Vector<uInt> tsysIdx;
|
---|
| 326 | Vector<Double> timeTsys(nrowTsys);
|
---|
| 327 | Matrix<Float> tsys;
|
---|
[2733] | 328 | Vector<Double> timeTsysSorted;
|
---|
[2720] | 329 | Vector<Float> tmpTsys;
|
---|
| 330 | if (doTsys) {
|
---|
[2758] | 331 | //os_ << "doTsys" << LogIO::POST;
|
---|
[2720] | 332 | timeTsys.resize(nrowTsys);
|
---|
| 333 | tsys.resize(nchanTsys, nrowTsys);
|
---|
| 334 | nrowTsys = 0;
|
---|
| 335 | for (uInt i = 0 ; i < tsystable_.size(); i++) {
|
---|
| 336 | STCalTsysTable *p = tsystable_[i];
|
---|
| 337 | Vector<Double> t = p->getTime();
|
---|
| 338 | Matrix<Float> ts = p->getTsys();
|
---|
| 339 | for (uInt j = 0; j < t.nelements(); j++) {
|
---|
| 340 | timeTsys[nrowTsys] = t[j];
|
---|
| 341 | tsys.column(nrowTsys) = ts.column(j);
|
---|
| 342 | nrowTsys++;
|
---|
| 343 | }
|
---|
| 344 | }
|
---|
| 345 | tsysIdx = timeSort(timeTsys);
|
---|
| 346 |
|
---|
[2733] | 347 | Double *xb = new Double[tsysIdx.nelements()];
|
---|
| 348 | Float *yb = new Float[tsysIdx.nelements()];
|
---|
[2720] | 349 | IPosition ipos(1, tsysIdx.nelements());
|
---|
| 350 | timeTsysSorted.takeStorage(ipos, xb, TAKE_OVER);
|
---|
| 351 | tmpTsys.takeStorage(ipos, yb, TAKE_OVER);
|
---|
| 352 | for (uInt i = 0 ; i < tsysIdx.nelements(); i++) {
|
---|
[2733] | 353 | timeTsysSorted[i] = timeTsys[tsysIdx[i]];
|
---|
[2720] | 354 | }
|
---|
| 355 | interpolatorT_->setX(xb, tsysIdx.nelements());
|
---|
| 356 | }
|
---|
| 357 |
|
---|
| 358 | Table tab = work_->table();
|
---|
| 359 | ArrayColumn<Float> spCol(tab, "SPECTRA");
|
---|
[2735] | 360 | ArrayColumn<Float> tsysCol(tab, "TSYS");
|
---|
[2720] | 361 | ScalarColumn<Double> timeCol(tab, "TIME");
|
---|
| 362 | Vector<Float> on;
|
---|
| 363 | for (uInt i = 0; i < rows.nelements(); i++) {
|
---|
[2758] | 364 | //os_ << "start i = " << i << " (row = " << rows[i] << ")" << LogIO::POST;
|
---|
[2720] | 365 | uInt irow = rows[i];
|
---|
| 366 |
|
---|
| 367 | // target spectral data
|
---|
| 368 | on = spCol(irow);
|
---|
| 369 | calibrator_->setSource(on);
|
---|
| 370 |
|
---|
| 371 | // interpolation
|
---|
[2733] | 372 | Double t0 = timeCol(irow);
|
---|
[2720] | 373 | for (uInt ichan = 0; ichan < nchanSp; ichan++) {
|
---|
| 374 | Vector<Float> spOffSlice = spoff.row(ichan);
|
---|
| 375 | //os_ << "spOffSlice = " << spOffSlice << LogIO::POST;
|
---|
| 376 | for (uInt j = 0; j < skyIdx.nelements(); j++) {
|
---|
[2733] | 377 | tmpOff[j] = spOffSlice[skyIdx[j]];
|
---|
[2720] | 378 | }
|
---|
| 379 | interpolatorS_->setY(ya, skyIdx.nelements());
|
---|
| 380 | iOff[ichan] = interpolatorS_->interpolate(t0);
|
---|
| 381 | }
|
---|
| 382 | //os_ << "iOff=" << iOff << LogIO::POST;
|
---|
| 383 | calibrator_->setReference(iOff);
|
---|
| 384 |
|
---|
| 385 | Float *Y = new Float[nchanSp];
|
---|
| 386 | Vector<Float> iTsys(IPosition(1,nchanSp), Y, TAKE_OVER);
|
---|
| 387 | if (doTsys) {
|
---|
| 388 | // Tsys correction
|
---|
[2733] | 389 | Float *yt = new Float[nchanTsys];
|
---|
[2720] | 390 | Vector<Float> iTsysT(IPosition(1,nchanTsys), yt, TAKE_OVER);
|
---|
[2733] | 391 | Float *yb = tmpTsys.data();
|
---|
[2720] | 392 | for (uInt ichan = 0; ichan < nchanTsys; ichan++) {
|
---|
| 393 | Vector<Float> tsysSlice = tsys.row(ichan);
|
---|
| 394 | for (uInt j = 0; j < tsysIdx.nelements(); j++) {
|
---|
[2733] | 395 | tmpTsys[j] = tsysSlice[tsysIdx[j]];
|
---|
[2720] | 396 | }
|
---|
| 397 | interpolatorT_->setY(yb, tsysIdx.nelements());
|
---|
| 398 | iTsysT[ichan] = interpolatorT_->interpolate(t0);
|
---|
| 399 | }
|
---|
| 400 | if (nchanSp == 1) {
|
---|
| 401 | // take average
|
---|
| 402 | iTsys[0] = mean(iTsysT);
|
---|
| 403 | }
|
---|
| 404 | else {
|
---|
| 405 | // interpolation on frequency axis
|
---|
| 406 | Vector<Double> fsp = getBaseFrequency(rows[i]);
|
---|
| 407 | interpolatorF_->setY(yt, nchanTsys);
|
---|
| 408 | for (uInt ichan = 0; ichan < nchanSp; ichan++) {
|
---|
[2733] | 409 | iTsys[ichan] = interpolatorF_->interpolate(fsp[ichan]);
|
---|
[2720] | 410 | }
|
---|
| 411 | }
|
---|
| 412 | }
|
---|
| 413 | else {
|
---|
[2759] | 414 | Vector<Float> tsysInRow = tsysCol(irow);
|
---|
| 415 | if (tsysInRow.nelements() == 1) {
|
---|
| 416 | iTsys = tsysInRow[0];
|
---|
| 417 | }
|
---|
| 418 | else {
|
---|
| 419 | for (uInt ichan = 0; ichan < nchanTsys; ++ichan)
|
---|
| 420 | iTsys[ichan] = tsysInRow[ichan];
|
---|
| 421 | }
|
---|
[2720] | 422 | }
|
---|
[2735] | 423 | //os_ << "iTsys=" << iTsys << LogIO::POST;
|
---|
[2720] | 424 | calibrator_->setScaler(iTsys);
|
---|
| 425 |
|
---|
| 426 | // do calibration
|
---|
| 427 | calibrator_->calibrate();
|
---|
| 428 |
|
---|
| 429 | // update table
|
---|
[2735] | 430 | //os_ << "calibrated=" << calibrator_->getCalibrated() << LogIO::POST;
|
---|
[2720] | 431 | spCol.put(irow, calibrator_->getCalibrated());
|
---|
[2742] | 432 | if (filltsys)
|
---|
| 433 | tsysCol.put(irow, iTsys);
|
---|
[2720] | 434 | }
|
---|
| 435 |
|
---|
| 436 |
|
---|
| 437 | // reset selection on apply tables
|
---|
| 438 | for (uInt i = 0; i < skylist.nelements(); i++)
|
---|
| 439 | skytable_[i]->unsetSelection();
|
---|
| 440 | for (uInt i = 0; i < tsystable_.size(); i++)
|
---|
| 441 | tsystable_[i]->unsetSelection();
|
---|
| 442 |
|
---|
| 443 |
|
---|
| 444 | // reset interpolator
|
---|
| 445 | interpolatorS_->reset();
|
---|
| 446 | interpolatorF_->reset();
|
---|
| 447 | interpolatorT_->reset();
|
---|
| 448 | }
|
---|
| 449 |
|
---|
| 450 | Vector<uInt> STApplyCal::timeSort(Vector<Double> &t)
|
---|
| 451 | {
|
---|
| 452 | Sort sort;
|
---|
| 453 | sort.sortKey(&t[0], TpDouble, 0, Sort::Ascending);
|
---|
| 454 | Vector<uInt> idx;
|
---|
| 455 | sort.sort(idx, t.nelements(), Sort::QuickSort|Sort::NoDuplicates);
|
---|
| 456 | return idx;
|
---|
| 457 | }
|
---|
| 458 |
|
---|
| 459 | uInt STApplyCal::getIFForTsys(uInt to)
|
---|
| 460 | {
|
---|
| 461 | for (map<casa::uInt, Vector<uInt> >::iterator i = spwmap_.begin();
|
---|
| 462 | i != spwmap_.end(); i++) {
|
---|
| 463 | Vector<uInt> tolist = i->second;
|
---|
[2735] | 464 | os_ << "from=" << i->first << ": tolist=" << tolist << LogIO::POST;
|
---|
[2720] | 465 | for (uInt j = 0; j < tolist.nelements(); j++) {
|
---|
| 466 | if (tolist[j] == to)
|
---|
| 467 | return i->first;
|
---|
| 468 | }
|
---|
| 469 | }
|
---|
| 470 | return (uInt)-1;
|
---|
| 471 | }
|
---|
| 472 |
|
---|
| 473 | void STApplyCal::save(const String &name)
|
---|
| 474 | {
|
---|
[2756] | 475 | //assert(!work_.null());
|
---|
| 476 | assert_<AipsError>(!work_.null(),"You have to execute apply method first.");
|
---|
[2720] | 477 |
|
---|
| 478 | work_->setSelection(sel_);
|
---|
| 479 | work_->makePersistent(name);
|
---|
| 480 | work_->unsetSelection();
|
---|
| 481 | }
|
---|
| 482 |
|
---|
| 483 | Vector<Double> STApplyCal::getBaseFrequency(uInt whichrow)
|
---|
| 484 | {
|
---|
[2756] | 485 | //assert(whichrow <= (uInt)work_->nrow());
|
---|
| 486 | assert_<AipsError>(whichrow <= (uInt)work_->nrow(),"row index out of range.");
|
---|
[2720] | 487 | ROTableColumn col(work_->table(), "IFNO");
|
---|
| 488 | uInt ifno = col.asuInt(whichrow);
|
---|
| 489 | col.attach(work_->table(), "FREQ_ID");
|
---|
| 490 | uInt freqid = col.asuInt(whichrow);
|
---|
| 491 | uInt nc = work_->nchan(ifno);
|
---|
| 492 | STFrequencies ftab = work_->frequencies();
|
---|
| 493 | Double rp, rf, inc;
|
---|
| 494 | ftab.getEntry(rp, rf, inc, freqid);
|
---|
| 495 | Vector<Double> r(nc);
|
---|
| 496 | indgen(r, rf-rp*inc, inc);
|
---|
| 497 | return r;
|
---|
| 498 | }
|
---|
| 499 |
|
---|
[2727] | 500 | void STApplyCal::initInterpolator()
|
---|
| 501 | {
|
---|
[2735] | 502 | os_.origin(LogOrigin("STApplyCal","initInterpolator",WHERE));
|
---|
[2727] | 503 | int order = (order_ > 0) ? order_ : 1;
|
---|
[2735] | 504 | switch (iTime_) {
|
---|
[2727] | 505 | case STCalEnum::NearestInterpolation:
|
---|
| 506 | {
|
---|
| 507 | os_ << "use NearestInterpolator in time axis" << LogIO::POST;
|
---|
[2733] | 508 | interpolatorS_ = new NearestInterpolator1D<Double, Float>();
|
---|
| 509 | interpolatorT_ = new NearestInterpolator1D<Double, Float>();
|
---|
[2727] | 510 | break;
|
---|
| 511 | }
|
---|
| 512 | case STCalEnum::LinearInterpolation:
|
---|
| 513 | {
|
---|
| 514 | os_ << "use BufferedLinearInterpolator in time axis" << LogIO::POST;
|
---|
[2733] | 515 | interpolatorS_ = new BufferedLinearInterpolator1D<Double, Float>();
|
---|
| 516 | interpolatorT_ = new BufferedLinearInterpolator1D<Double, Float>();
|
---|
[2727] | 517 | break;
|
---|
| 518 | }
|
---|
| 519 | case STCalEnum::CubicSplineInterpolation:
|
---|
| 520 | {
|
---|
| 521 | os_ << "use CubicSplineInterpolator in time axis" << LogIO::POST;
|
---|
[2733] | 522 | interpolatorS_ = new CubicSplineInterpolator1D<Double, Float>();
|
---|
| 523 | interpolatorT_ = new CubicSplineInterpolator1D<Double, Float>();
|
---|
[2727] | 524 | break;
|
---|
| 525 | }
|
---|
| 526 | case STCalEnum::PolynomialInterpolation:
|
---|
| 527 | {
|
---|
| 528 | os_ << "use PolynomialInterpolator in time axis" << LogIO::POST;
|
---|
| 529 | if (order == 0) {
|
---|
[2733] | 530 | interpolatorS_ = new NearestInterpolator1D<Double, Float>();
|
---|
| 531 | interpolatorT_ = new NearestInterpolator1D<Double, Float>();
|
---|
[2727] | 532 | }
|
---|
| 533 | else {
|
---|
[2733] | 534 | interpolatorS_ = new PolynomialInterpolator1D<Double, Float>();
|
---|
| 535 | interpolatorT_ = new PolynomialInterpolator1D<Double, Float>();
|
---|
[2727] | 536 | interpolatorS_->setOrder(order);
|
---|
| 537 | interpolatorT_->setOrder(order);
|
---|
| 538 | }
|
---|
| 539 | break;
|
---|
| 540 | }
|
---|
| 541 | default:
|
---|
| 542 | {
|
---|
| 543 | os_ << "use BufferedLinearInterpolator in time axis" << LogIO::POST;
|
---|
[2733] | 544 | interpolatorS_ = new BufferedLinearInterpolator1D<Double, Float>();
|
---|
| 545 | interpolatorT_ = new BufferedLinearInterpolator1D<Double, Float>();
|
---|
[2727] | 546 | break;
|
---|
| 547 | }
|
---|
| 548 | }
|
---|
| 549 |
|
---|
[2735] | 550 | switch (iFreq_) {
|
---|
[2727] | 551 | case STCalEnum::NearestInterpolation:
|
---|
| 552 | {
|
---|
| 553 | os_ << "use NearestInterpolator in frequency axis" << LogIO::POST;
|
---|
[2733] | 554 | interpolatorF_ = new NearestInterpolator1D<Double, Float>();
|
---|
[2727] | 555 | break;
|
---|
| 556 | }
|
---|
| 557 | case STCalEnum::LinearInterpolation:
|
---|
| 558 | {
|
---|
| 559 | os_ << "use BufferedLinearInterpolator in frequency axis" << LogIO::POST;
|
---|
[2733] | 560 | interpolatorF_ = new BufferedLinearInterpolator1D<Double, Float>();
|
---|
[2727] | 561 | break;
|
---|
| 562 | }
|
---|
| 563 | case STCalEnum::CubicSplineInterpolation:
|
---|
| 564 | {
|
---|
| 565 | os_ << "use CubicSplineInterpolator in frequency axis" << LogIO::POST;
|
---|
[2733] | 566 | interpolatorF_ = new CubicSplineInterpolator1D<Double, Float>();
|
---|
[2727] | 567 | break;
|
---|
| 568 | }
|
---|
| 569 | case STCalEnum::PolynomialInterpolation:
|
---|
| 570 | {
|
---|
| 571 | os_ << "use PolynomialInterpolator in frequency axis" << LogIO::POST;
|
---|
| 572 | if (order == 0) {
|
---|
[2733] | 573 | interpolatorF_ = new NearestInterpolator1D<Double, Float>();
|
---|
[2727] | 574 | }
|
---|
| 575 | else {
|
---|
[2733] | 576 | interpolatorF_ = new PolynomialInterpolator1D<Double, Float>();
|
---|
[2727] | 577 | interpolatorF_->setOrder(order);
|
---|
| 578 | }
|
---|
| 579 | break;
|
---|
| 580 | }
|
---|
| 581 | default:
|
---|
| 582 | {
|
---|
| 583 | os_ << "use LinearInterpolator in frequency axis" << LogIO::POST;
|
---|
[2733] | 584 | interpolatorF_ = new BufferedLinearInterpolator1D<Double, Float>();
|
---|
[2727] | 585 | break;
|
---|
| 586 | }
|
---|
| 587 | }
|
---|
[2720] | 588 | }
|
---|
[2727] | 589 | }
|
---|