// // C++ Implementation: STCalTsys // // Description: // // // Author: Takeshi Nakazato (C) 2012 // // Copyright: See COPYING file that comes with this distribution // // #include #include "STSelector.h" #include "STCalTsys.h" #include "RowAccumulator.h" #include "STIdxIter.h" #include "STDefs.h" #include #include using namespace std; using namespace casa; namespace asap { STCalTsys::STCalTsys(CountedPtr &s, vector &iflist) : STCalibration(s), iflist_(iflist) { applytable_ = new STCalTsysTable(*s); } void STCalTsys::calibrate() { STSelector selOrg = scantable_->getSelection(); STSelector sel; sel.setIFs(iflist_); scantable_->setSelection(sel); fillCalTable(); scantable_->setSelection(selOrg); } void STCalTsys::fillCalTable() { RowAccumulator acc(W_TINT); vector cols(3); cols[0] = "IFNO"; cols[1] = "POLNO"; cols[2] = "BEAMNO"; STIdxIterAcc iter(scantable_, cols); ROScalarColumn *tcol = new ROScalarColumn(scantable_->table(), "TIME"); Vector timeSec = tcol->getColumn() * 86400.0; tcol->attach(scantable_->table(), "INTERVAL"); Vector intervalSec = tcol->getColumn(); delete tcol; ROScalarColumn *ecol = new ROScalarColumn(scantable_->table(), "ELEVATION"); Vector elevation = ecol->getColumn(); delete ecol; ROArrayColumn specCol(scantable_->table(), "TSYS"); ROArrayColumn flagCol(scantable_->table(), "FLAGTRA"); ROScalarColumn freqidCol(scantable_->table(), "FREQ_ID"); // dummy Tsys: the following process doesn't need Tsys but RowAccumulator // requires to set it with spectral data Vector tsys(1, 1.0); Double timeCen = 0.0; Float elCen = 0.0; uInt count = 0; while(!iter.pastEnd()) { Vector rows = iter.getRows(SHARE); Vector current = iter.current(); uInt len = rows.nelements(); if (len == 0) { iter.next(); continue; } uInt nchan = scantable_->nchan(scantable_->getIF(rows[0])); Vector flag(nchan); Vector bflag(nchan); Vector spec(nchan); Vector timeSep(len); for (uInt i = 0; i < len-1; i++) { timeSep[i] = timeSec[rows[i+1]] - timeSec[rows[i]] ; } Double tMedian = median(timeSep(IPosition(1,0), IPosition(1,len-2))); timeSep[len-1] = tMedian * 10000.0 ; // any large value uInt irow ; uInt jrow ; for (uInt i = 0; i < len; i++) { irow = rows[i]; jrow = (i < len-1) ? rows[i+1] : rows[i]; // accumulate data flagCol.get(irow, flag); convertArray(bflag, flag); specCol.get(irow, spec); if ( !allEQ(bflag,True) ) acc.add( spec, !bflag, tsys, intervalSec[irow], timeSec[irow] ) ; timeCen += timeSec[irow]; elCen += elevation[irow]; count++; // check time gap double gap = 2.0 * timeSep[i] / (intervalSec[jrow] + intervalSec[irow]); if ( gap > 5.0 ) { if ( acc.state() ) { acc.replaceNaN() ; // const Vector &msk = acc.getMask(); // convertArray(flag, !msk); // for (uInt k = 0; k < nchan; ++k) { // uChar userFlag = 1 << 7; // if (msk[k]==True) userFlag = 0 << 7; // flag(k) = userFlag; // } timeCen /= (Double)count * 86400.0; // sec->day elCen /= (Float)count; STCalTsysTable *p = dynamic_cast(&(*applytable_)); p->appenddata(0, 0, current[2], current[0], current[1], freqidCol(irow), timeCen, elCen, acc.getSpectrum()); } acc.reset() ; timeCen = 0.0; elCen = 0.0; count = 0; } } iter.next() ; } } }