[805] | 1 | //
|
---|
| 2 | // C++ Implementation: STMath
|
---|
| 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 | //
|
---|
[38] | 12 |
|
---|
[2177] | 13 | #include <sstream>
|
---|
| 14 |
|
---|
[330] | 15 | #include <casa/iomanip.h>
|
---|
[805] | 16 | #include <casa/Arrays/MaskArrLogi.h>
|
---|
| 17 | #include <casa/Arrays/MaskArrMath.h>
|
---|
| 18 | #include <casa/Arrays/ArrayLogical.h>
|
---|
[81] | 19 | #include <casa/Arrays/ArrayMath.h>
|
---|
[1066] | 20 | #include <casa/Arrays/Slice.h>
|
---|
| 21 | #include <casa/Arrays/Slicer.h>
|
---|
[2177] | 22 | #include <casa/BasicSL/String.h>
|
---|
| 23 | #include <casa/Containers/Block.h>
|
---|
[805] | 24 | #include <casa/Containers/RecordField.h>
|
---|
[2177] | 25 | #include <casa/Exceptions/Error.h>
|
---|
| 26 | #include <casa/Logging/LogIO.h>
|
---|
[2899] | 27 | #include <casa/Quanta/Quantum.h>
|
---|
[2] | 28 |
|
---|
[917] | 29 | #include <coordinates/Coordinates/CoordinateSystem.h>
|
---|
| 30 | #include <coordinates/Coordinates/CoordinateUtil.h>
|
---|
| 31 | #include <coordinates/Coordinates/FrequencyAligner.h>
|
---|
[2177] | 32 | #include <coordinates/Coordinates/SpectralCoordinate.h>
|
---|
[917] | 33 |
|
---|
[2177] | 34 | #include <lattices/Lattices/LatticeUtilities.h>
|
---|
| 35 |
|
---|
| 36 | #include <scimath/Functionals/Polynomial.h>
|
---|
| 37 | #include <scimath/Mathematics/Convolver.h>
|
---|
[177] | 38 | #include <scimath/Mathematics/VectorKernel.h>
|
---|
| 39 |
|
---|
[2177] | 40 | #include <tables/Tables/ExprNode.h>
|
---|
| 41 | #include <tables/Tables/ReadAsciiTable.h>
|
---|
| 42 | #include <tables/Tables/TableCopy.h>
|
---|
| 43 | #include <tables/Tables/TableIter.h>
|
---|
| 44 | #include <tables/Tables/TableParse.h>
|
---|
| 45 | #include <tables/Tables/TableRecord.h>
|
---|
| 46 | #include <tables/Tables/TableRow.h>
|
---|
| 47 | #include <tables/Tables/TableVector.h>
|
---|
| 48 | #include <tables/Tables/TabVecMath.h>
|
---|
| 49 |
|
---|
[1819] | 50 | #include <atnf/PKSIO/SrcType.h>
|
---|
| 51 |
|
---|
[805] | 52 | #include "RowAccumulator.h"
|
---|
[878] | 53 | #include "STAttr.h"
|
---|
[2177] | 54 | #include "STMath.h"
|
---|
[1391] | 55 | #include "STSelector.h"
|
---|
[2580] | 56 | #include "Accelerator.h"
|
---|
| 57 | #include "STIdxIter.h"
|
---|
[2] | 58 |
|
---|
[805] | 59 | using namespace casa;
|
---|
[83] | 60 | using namespace asap;
|
---|
[2] | 61 |
|
---|
[2412] | 62 | // 2012/02/17 TN
|
---|
| 63 | // Since STGrid is implemented, average doesn't consider direction
|
---|
| 64 | // when accumulating
|
---|
[1819] | 65 | // tolerance for direction comparison (rad)
|
---|
[2412] | 66 | // #define TOL_OTF 1.0e-15
|
---|
| 67 | // #define TOL_POINT 2.9088821e-4 // 1 arcmin
|
---|
[1819] | 68 |
|
---|
[805] | 69 | STMath::STMath(bool insitu) :
|
---|
| 70 | insitu_(insitu)
|
---|
[716] | 71 | {
|
---|
| 72 | }
|
---|
[170] | 73 |
|
---|
| 74 |
|
---|
[805] | 75 | STMath::~STMath()
|
---|
[170] | 76 | {
|
---|
| 77 | }
|
---|
| 78 |
|
---|
[805] | 79 | CountedPtr<Scantable>
|
---|
[977] | 80 | STMath::average( const std::vector<CountedPtr<Scantable> >& in,
|
---|
[858] | 81 | const std::vector<bool>& mask,
|
---|
[805] | 82 | const std::string& weight,
|
---|
[977] | 83 | const std::string& avmode)
|
---|
[262] | 84 | {
|
---|
[2580] | 85 | // double t0, t1 ;
|
---|
| 86 | // t0 = mathutil::gettimeofday_sec() ;
|
---|
| 87 |
|
---|
[1819] | 88 | LogIO os( LogOrigin( "STMath", "average()", WHERE ) ) ;
|
---|
[977] | 89 | if ( avmode == "SCAN" && in.size() != 1 )
|
---|
[1066] | 90 | throw(AipsError("Can't perform 'SCAN' averaging on multiple tables.\n"
|
---|
| 91 | "Use merge first."));
|
---|
[805] | 92 | WeightType wtype = stringToWeight(weight);
|
---|
[926] | 93 |
|
---|
[2412] | 94 | // 2012/02/17 TN
|
---|
| 95 | // Since STGrid is implemented, average doesn't consider direction
|
---|
| 96 | // when accumulating
|
---|
[1819] | 97 | // check if OTF observation
|
---|
[2412] | 98 | // String obstype = in[0]->getHeader().obstype ;
|
---|
| 99 | // Double tol = 0.0 ;
|
---|
| 100 | // if ( (obstype.find( "OTF" ) != String::npos) || (obstype.find( "OBSERVE_TARGET" ) != String::npos) ) {
|
---|
| 101 | // tol = TOL_OTF ;
|
---|
| 102 | // }
|
---|
| 103 | // else {
|
---|
| 104 | // tol = TOL_POINT ;
|
---|
| 105 | // }
|
---|
[1819] | 106 |
|
---|
[805] | 107 | // output
|
---|
| 108 | // clone as this is non insitu
|
---|
| 109 | bool insitu = insitu_;
|
---|
| 110 | setInsitu(false);
|
---|
[977] | 111 | CountedPtr< Scantable > out = getScantable(in[0], true);
|
---|
[805] | 112 | setInsitu(insitu);
|
---|
[977] | 113 | std::vector<CountedPtr<Scantable> >::const_iterator stit = in.begin();
|
---|
[862] | 114 | ++stit;
|
---|
[977] | 115 | while ( stit != in.end() ) {
|
---|
[862] | 116 | out->appendToHistoryTable((*stit)->history());
|
---|
| 117 | ++stit;
|
---|
| 118 | }
|
---|
[294] | 119 |
|
---|
[805] | 120 | Table& tout = out->table();
|
---|
[701] | 121 |
|
---|
[805] | 122 | /// @todo check if all scantables are conformant
|
---|
[294] | 123 |
|
---|
[805] | 124 | ArrayColumn<Float> specColOut(tout,"SPECTRA");
|
---|
| 125 | ArrayColumn<uChar> flagColOut(tout,"FLAGTRA");
|
---|
| 126 | ArrayColumn<Float> tsysColOut(tout,"TSYS");
|
---|
| 127 | ScalarColumn<Double> mjdColOut(tout,"TIME");
|
---|
| 128 | ScalarColumn<Double> intColOut(tout,"INTERVAL");
|
---|
[1008] | 129 | ScalarColumn<uInt> cycColOut(tout,"CYCLENO");
|
---|
[1145] | 130 | ScalarColumn<uInt> scanColOut(tout,"SCANNO");
|
---|
[2829] | 131 | ScalarColumn<uInt> flagRowColOut(tout,"FLAGROW");
|
---|
[262] | 132 |
|
---|
[805] | 133 | // set up the output table rows. These are based on the structure of the
|
---|
[862] | 134 | // FIRST scantable in the vector
|
---|
[977] | 135 | const Table& baset = in[0]->table();
|
---|
[262] | 136 |
|
---|
[2580] | 137 | RowAccumulator acc(wtype);
|
---|
| 138 | Vector<Bool> cmask(mask);
|
---|
| 139 | acc.setUserMask(cmask);
|
---|
| 140 | // ROTableRow row(tout);
|
---|
| 141 | ROArrayColumn<Float> specCol, tsysCol;
|
---|
| 142 | ROArrayColumn<uChar> flagCol;
|
---|
| 143 | ROScalarColumn<Double> mjdCol, intCol;
|
---|
| 144 | ROScalarColumn<Int> scanIDCol;
|
---|
[2829] | 145 | ROScalarColumn<uInt> flagRowCol;
|
---|
[2580] | 146 |
|
---|
| 147 | //Vector<uInt> rowstodelete;
|
---|
| 148 | Block<uInt> rowstodelB( in[0]->nrow() ) ;
|
---|
| 149 | uInt nrowdel = 0 ;
|
---|
| 150 |
|
---|
| 151 | // Block<String> cols(3);
|
---|
| 152 | vector<string> cols(3) ;
|
---|
[805] | 153 | cols[0] = String("BEAMNO");
|
---|
| 154 | cols[1] = String("IFNO");
|
---|
| 155 | cols[2] = String("POLNO");
|
---|
| 156 | if ( avmode == "SOURCE" ) {
|
---|
| 157 | cols.resize(4);
|
---|
| 158 | cols[3] = String("SRCNAME");
|
---|
[488] | 159 | }
|
---|
[977] | 160 | if ( avmode == "SCAN" && in.size() == 1) {
|
---|
[1819] | 161 | //cols.resize(4);
|
---|
| 162 | //cols[3] = String("SCANNO");
|
---|
| 163 | cols.resize(5);
|
---|
| 164 | cols[3] = String("SRCNAME");
|
---|
| 165 | cols[4] = String("SCANNO");
|
---|
[2] | 166 | }
|
---|
[805] | 167 | uInt outrowCount = 0;
|
---|
[2580] | 168 | // use STIdxIterExAcc instead of TableIterator
|
---|
| 169 | STIdxIterExAcc iter( in[0], cols ) ;
|
---|
| 170 | // double t2 = 0 ;
|
---|
| 171 | // double t3 = 0 ;
|
---|
| 172 | // double t4 = 0 ;
|
---|
| 173 | // double t5 = 0 ;
|
---|
| 174 | // TableIterator iter(baset, cols);
|
---|
[1819] | 175 | // int count = 0 ;
|
---|
[805] | 176 | while (!iter.pastEnd()) {
|
---|
[2580] | 177 | Vector<uInt> rows = iter.getRows( SHARE ) ;
|
---|
| 178 | if ( rows.nelements() == 0 ) {
|
---|
| 179 | iter.next() ;
|
---|
| 180 | continue ;
|
---|
| 181 | }
|
---|
| 182 | Vector<uInt> current = iter.current() ;
|
---|
| 183 | String srcname = iter.getSrcName() ;
|
---|
| 184 | //Table subt = iter.table();
|
---|
[2412] | 185 | // copy the first row of this selection into the new table
|
---|
| 186 | tout.addRow();
|
---|
[2580] | 187 | // t4 = mathutil::gettimeofday_sec() ;
|
---|
| 188 | // skip to copy SPECTRA, FLAGTRA, and TSYS since those heavy columns are
|
---|
| 189 | // overwritten in the following process
|
---|
| 190 | copyRows( tout, baset, outrowCount, rows[0], 1, False, False, False ) ;
|
---|
| 191 | // t5 += mathutil::gettimeofday_sec() - t4 ;
|
---|
[2412] | 192 | // re-index to 0
|
---|
| 193 | if ( avmode != "SCAN" && avmode != "SOURCE" ) {
|
---|
| 194 | scanColOut.put(outrowCount, uInt(0));
|
---|
| 195 | }
|
---|
[2580] | 196 |
|
---|
[2412] | 197 | // 2012/02/17 TN
|
---|
| 198 | // Since STGrid is implemented, average doesn't consider direction
|
---|
| 199 | // when accumulating
|
---|
| 200 | // MDirection::ScalarColumn dircol ;
|
---|
| 201 | // dircol.attach( subt, "DIRECTION" ) ;
|
---|
| 202 | // Int length = subt.nrow() ;
|
---|
| 203 | // vector< Vector<Double> > dirs ;
|
---|
| 204 | // vector<int> indexes ;
|
---|
| 205 | // for ( Int i = 0 ; i < length ; i++ ) {
|
---|
| 206 | // Vector<Double> t = dircol(i).getAngle(Unit(String("rad"))).getValue() ;
|
---|
| 207 | // //os << << count++ << ": " ;
|
---|
| 208 | // //os << "[" << t[0] << "," << t[1] << "]" << LogIO::POST ;
|
---|
| 209 | // bool adddir = true ;
|
---|
| 210 | // for ( uInt j = 0 ; j < dirs.size() ; j++ ) {
|
---|
| 211 | // //if ( allTrue( t == dirs[j] ) ) {
|
---|
| 212 | // Double dx = t[0] - dirs[j][0] ;
|
---|
| 213 | // Double dy = t[1] - dirs[j][1] ;
|
---|
| 214 | // Double dd = sqrt( dx * dx + dy * dy ) ;
|
---|
| 215 | // //if ( allNearAbs( t, dirs[j], tol ) ) {
|
---|
| 216 | // if ( dd <= tol ) {
|
---|
| 217 | // adddir = false ;
|
---|
| 218 | // break ;
|
---|
| 219 | // }
|
---|
| 220 | // }
|
---|
| 221 | // if ( adddir ) {
|
---|
| 222 | // dirs.push_back( t ) ;
|
---|
| 223 | // indexes.push_back( i ) ;
|
---|
| 224 | // }
|
---|
[1819] | 225 | // }
|
---|
[2412] | 226 | // uInt rowNum = dirs.size() ;
|
---|
| 227 | // tout.addRow( rowNum ) ;
|
---|
| 228 | // for ( uInt i = 0 ; i < rowNum ; i++ ) {
|
---|
| 229 | // TableCopy::copyRows( tout, subt, outrowCount+i, indexes[i], 1 ) ;
|
---|
| 230 | // // re-index to 0
|
---|
| 231 | // if ( avmode != "SCAN" && avmode != "SOURCE" ) {
|
---|
| 232 | // scanColOut.put(outrowCount+i, uInt(0));
|
---|
| 233 | // }
|
---|
| 234 | // }
|
---|
| 235 | // outrowCount += rowNum ;
|
---|
[144] | 236 |
|
---|
[2580] | 237 | // merge loop
|
---|
| 238 | uInt i = outrowCount ;
|
---|
| 239 | // in[0] is already selected by iterator
|
---|
| 240 | specCol.attach(baset,"SPECTRA");
|
---|
| 241 | flagCol.attach(baset,"FLAGTRA");
|
---|
| 242 | tsysCol.attach(baset,"TSYS");
|
---|
| 243 | intCol.attach(baset,"INTERVAL");
|
---|
| 244 | mjdCol.attach(baset,"TIME");
|
---|
[2829] | 245 | flagRowCol.attach(baset,"FLAGROW");
|
---|
[2580] | 246 | Vector<Float> spec,tsys;
|
---|
| 247 | Vector<uChar> flag;
|
---|
| 248 | Double inter,time;
|
---|
[2829] | 249 | uInt flagRow;
|
---|
[1333] | 250 |
|
---|
[2580] | 251 | for (uInt l = 0; l < rows.nelements(); ++l ) {
|
---|
| 252 | uInt k = rows[l] ;
|
---|
| 253 | flagCol.get(k, flag);
|
---|
| 254 | Vector<Bool> bflag(flag.shape());
|
---|
[2829] | 255 | flagRowCol.get(k, flagRow);
|
---|
| 256 | if (flagRow > 0)
|
---|
| 257 | bflag = true;
|
---|
| 258 | else
|
---|
| 259 | convertArray(bflag, flag);
|
---|
[2580] | 260 | /*
|
---|
| 261 | if ( allEQ(bflag, True) ) {
|
---|
| 262 | continue;//don't accumulate
|
---|
| 263 | }
|
---|
| 264 | */
|
---|
| 265 | specCol.get(k, spec);
|
---|
| 266 | tsysCol.get(k, tsys);
|
---|
| 267 | intCol.get(k, inter);
|
---|
| 268 | mjdCol.get(k, time);
|
---|
| 269 | // spectrum has to be added last to enable weighting by the other values
|
---|
| 270 | // t2 = mathutil::gettimeofday_sec() ;
|
---|
| 271 | acc.add(spec, !bflag, tsys, inter, time);
|
---|
| 272 | // t3 += mathutil::gettimeofday_sec() - t2 ;
|
---|
| 273 |
|
---|
| 274 | }
|
---|
| 275 |
|
---|
| 276 |
|
---|
| 277 | // in[0] is already selected by TableIterator so that index is
|
---|
| 278 | // started from 1
|
---|
| 279 | for ( int j=1; j < int(in.size()); ++j ) {
|
---|
[977] | 280 | const Table& tin = in[j]->table();
|
---|
[2580] | 281 | //const TableRecord& rec = row.get(i);
|
---|
[805] | 282 | ROScalarColumn<Double> tmp(tin, "TIME");
|
---|
| 283 | Double td;tmp.get(0,td);
|
---|
[2580] | 284 |
|
---|
| 285 | #if 1
|
---|
| 286 | static char const*const colNames1[] = { "IFNO", "BEAMNO", "POLNO" };
|
---|
| 287 | //uInt const values1[] = { rec.asuInt("IFNO"), rec.asuInt("BEAMNO"), rec.asuInt("POLNO") };
|
---|
| 288 | uInt const values1[] = { current[1], current[0], current[2] };
|
---|
| 289 | SingleTypeEqPredicate<uInt, 3> myPred(tin, colNames1, values1);
|
---|
| 290 | CustomTableExprNodeRep myNodeRep(tin, myPred);
|
---|
| 291 | myNodeRep.link(); // to avoid automatic delete when myExpr is destructed.
|
---|
| 292 | CustomTableExprNode myExpr(myNodeRep);
|
---|
| 293 | Table basesubt = tin(myExpr);
|
---|
| 294 | #else
|
---|
| 295 | // Table basesubt = tin( tin.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
|
---|
| 296 | // && tin.col("IFNO") == Int(rec.asuInt("IFNO"))
|
---|
| 297 | // && tin.col("POLNO") == Int(rec.asuInt("POLNO")) );
|
---|
| 298 | Table basesubt = tin( tin.col("BEAMNO") == current[0]
|
---|
| 299 | && tin.col("IFNO") == current[1]
|
---|
| 300 | && tin.col("POLNO") == current[2] );
|
---|
| 301 | #endif
|
---|
[805] | 302 | Table subt;
|
---|
| 303 | if ( avmode == "SOURCE") {
|
---|
[2580] | 304 | // subt = basesubt( basesubt.col("SRCNAME") == rec.asString("SRCNAME"));
|
---|
| 305 | subt = basesubt( basesubt.col("SRCNAME") == srcname );
|
---|
| 306 |
|
---|
[805] | 307 | } else if (avmode == "SCAN") {
|
---|
[2580] | 308 | // subt = basesubt( basesubt.col("SRCNAME") == rec.asString("SRCNAME")
|
---|
| 309 | // && basesubt.col("SCANNO") == Int(rec.asuInt("SCANNO")) );
|
---|
| 310 | subt = basesubt( basesubt.col("SRCNAME") == srcname
|
---|
| 311 | && basesubt.col("SCANNO") == current[4] );
|
---|
[805] | 312 | } else {
|
---|
| 313 | subt = basesubt;
|
---|
| 314 | }
|
---|
[1819] | 315 |
|
---|
[2412] | 316 | // 2012/02/17 TN
|
---|
| 317 | // Since STGrid is implemented, average doesn't consider direction
|
---|
| 318 | // when accumulating
|
---|
| 319 | // vector<uInt> removeRows ;
|
---|
| 320 | // uInt nrsubt = subt.nrow() ;
|
---|
| 321 | // for ( uInt irow = 0 ; irow < nrsubt ; irow++ ) {
|
---|
| 322 | // //if ( !allTrue((subt.col("DIRECTION").getArrayDouble(TableExprId(irow)))==rec.asArrayDouble("DIRECTION")) ) {
|
---|
| 323 | // Vector<Double> x0 = (subt.col("DIRECTION").getArrayDouble(TableExprId(irow))) ;
|
---|
| 324 | // Vector<Double> x1 = rec.asArrayDouble("DIRECTION") ;
|
---|
| 325 | // double dx = x0[0] - x1[0];
|
---|
| 326 | // double dy = x0[1] - x1[1];
|
---|
| 327 | // Double dd = sqrt( dx * dx + dy * dy ) ;
|
---|
| 328 | // //if ( !allNearAbs((subt.col("DIRECTION").getArrayDouble(TableExprId(irow))), rec.asArrayDouble("DIRECTION"), tol ) ) {
|
---|
| 329 | // if ( dd > tol ) {
|
---|
| 330 | // removeRows.push_back( irow ) ;
|
---|
| 331 | // }
|
---|
| 332 | // }
|
---|
| 333 | // if ( removeRows.size() != 0 ) {
|
---|
| 334 | // subt.removeRow( removeRows ) ;
|
---|
| 335 | // }
|
---|
[1819] | 336 |
|
---|
[2412] | 337 | // if ( nrsubt == removeRows.size() )
|
---|
| 338 | // throw(AipsError("Averaging data is empty.")) ;
|
---|
[1819] | 339 |
|
---|
[805] | 340 | specCol.attach(subt,"SPECTRA");
|
---|
| 341 | flagCol.attach(subt,"FLAGTRA");
|
---|
| 342 | tsysCol.attach(subt,"TSYS");
|
---|
| 343 | intCol.attach(subt,"INTERVAL");
|
---|
| 344 | mjdCol.attach(subt,"TIME");
|
---|
[2829] | 345 | flagRowCol.attach(subt,"FLAGROW");
|
---|
[805] | 346 | for (uInt k = 0; k < subt.nrow(); ++k ) {
|
---|
| 347 | flagCol.get(k, flag);
|
---|
| 348 | Vector<Bool> bflag(flag.shape());
|
---|
[2829] | 349 | flagRowCol.get(k, flagRow);
|
---|
| 350 | if (flagRow > 0)
|
---|
| 351 | bflag = true;
|
---|
| 352 | else
|
---|
| 353 | convertArray(bflag, flag);
|
---|
[1314] | 354 | /*
|
---|
[805] | 355 | if ( allEQ(bflag, True) ) {
|
---|
[1314] | 356 | continue;//don't accumulate
|
---|
[144] | 357 | }
|
---|
[1314] | 358 | */
|
---|
[805] | 359 | specCol.get(k, spec);
|
---|
[2475] | 360 | //tsysCol.get(k, tsys);
|
---|
| 361 | tsys.assign( tsysCol(k) );
|
---|
[805] | 362 | intCol.get(k, inter);
|
---|
| 363 | mjdCol.get(k, time);
|
---|
| 364 | // spectrum has to be added last to enable weighting by the other values
|
---|
[2580] | 365 | // t2 = mathutil::gettimeofday_sec() ;
|
---|
[805] | 366 | acc.add(spec, !bflag, tsys, inter, time);
|
---|
[2580] | 367 | // t3 += mathutil::gettimeofday_sec() - t2 ;
|
---|
[805] | 368 | }
|
---|
[2125] | 369 |
|
---|
[805] | 370 | }
|
---|
[1333] | 371 | const Vector<Bool>& msk = acc.getMask();
|
---|
| 372 | if ( allEQ(msk, False) ) {
|
---|
[2580] | 373 | rowstodelB[nrowdel] = i ;
|
---|
| 374 | nrowdel++ ;
|
---|
[1333] | 375 | continue;
|
---|
| 376 | }
|
---|
[805] | 377 | //write out
|
---|
[1819] | 378 | if (acc.state()) {
|
---|
[2580] | 379 | // If there exists a channel at which all the input spectra are masked,
|
---|
| 380 | // spec has 'nan' values for that channel and it may affect the following
|
---|
| 381 | // processes. To avoid this, replacing 'nan' values in spec with
|
---|
| 382 | // weighted-mean of all spectra in the following line.
|
---|
| 383 | // (done for CAS-2776, 2011/04/07 by Wataru Kawasaki)
|
---|
| 384 | acc.replaceNaN();
|
---|
| 385 |
|
---|
[1819] | 386 | Vector<uChar> flg(msk.shape());
|
---|
| 387 | convertArray(flg, !msk);
|
---|
[2125] | 388 | for (uInt k = 0; k < flg.nelements(); ++k) {
|
---|
| 389 | uChar userFlag = 1 << 7;
|
---|
| 390 | if (msk[k]==True) userFlag = 0 << 7;
|
---|
| 391 | flg(k) = userFlag;
|
---|
| 392 | }
|
---|
| 393 |
|
---|
[1819] | 394 | flagColOut.put(i, flg);
|
---|
| 395 | specColOut.put(i, acc.getSpectrum());
|
---|
| 396 | tsysColOut.put(i, acc.getTsys());
|
---|
| 397 | intColOut.put(i, acc.getInterval());
|
---|
| 398 | mjdColOut.put(i, acc.getTime());
|
---|
| 399 | // we should only have one cycle now -> reset it to be 0
|
---|
| 400 | // frequency switched data has different CYCLENO for different IFNO
|
---|
| 401 | // which requires resetting this value
|
---|
| 402 | cycColOut.put(i, uInt(0));
|
---|
[2829] | 403 | // completely flagged rows are removed anyway
|
---|
| 404 | flagRowColOut.put(i, uInt(0));
|
---|
[1819] | 405 | } else {
|
---|
[2658] | 406 | os << "For output row="<<i<<", all input rows of data are flagged. no averaging" << LogIO::POST;
|
---|
[1819] | 407 | }
|
---|
[805] | 408 | acc.reset();
|
---|
[2580] | 409 |
|
---|
| 410 | // merge with while loop for preparing out table
|
---|
| 411 | ++outrowCount;
|
---|
| 412 | // ++iter ;
|
---|
| 413 | iter.next() ;
|
---|
[144] | 414 | }
|
---|
[2135] | 415 |
|
---|
[2580] | 416 | if ( nrowdel > 0 ) {
|
---|
| 417 | Vector<uInt> rowstodelete( IPosition(1,nrowdel), rowstodelB.storage(), SHARE ) ;
|
---|
[1819] | 418 | os << rowstodelete << LogIO::POST ;
|
---|
[1333] | 419 | tout.removeRow(rowstodelete);
|
---|
| 420 | if (tout.nrow() == 0) {
|
---|
| 421 | throw(AipsError("Can't average fully flagged data."));
|
---|
| 422 | }
|
---|
| 423 | }
|
---|
[2580] | 424 |
|
---|
| 425 | // t1 = mathutil::gettimeofday_sec() ;
|
---|
| 426 | // cout << "elapsed time for average(): " << t1-t0 << " sec" << endl ;
|
---|
| 427 | // cout << " elapsed time for acc.add(): " << t3 << " sec" << endl ;
|
---|
| 428 | // cout << " elapsed time for copyRows(): " << t5 << " sec" << endl ;
|
---|
| 429 |
|
---|
[805] | 430 | return out;
|
---|
[2] | 431 | }
|
---|
[9] | 432 |
|
---|
[1069] | 433 | CountedPtr< Scantable >
|
---|
[2163] | 434 | STMath::averageChannel( const CountedPtr < Scantable > & in,
|
---|
[1078] | 435 | const std::string & mode,
|
---|
| 436 | const std::string& avmode )
|
---|
[1069] | 437 | {
|
---|
[2163] | 438 | (void) mode; // currently unused
|
---|
[2412] | 439 | // 2012/02/17 TN
|
---|
| 440 | // Since STGrid is implemented, average doesn't consider direction
|
---|
| 441 | // when accumulating
|
---|
[1819] | 442 | // check if OTF observation
|
---|
[2412] | 443 | // String obstype = in->getHeader().obstype ;
|
---|
| 444 | // Double tol = 0.0 ;
|
---|
| 445 | // if ( obstype.find( "OTF" ) != String::npos ) {
|
---|
| 446 | // tol = TOL_OTF ;
|
---|
| 447 | // }
|
---|
| 448 | // else {
|
---|
| 449 | // tol = TOL_POINT ;
|
---|
| 450 | // }
|
---|
[1819] | 451 |
|
---|
[1069] | 452 | // clone as this is non insitu
|
---|
| 453 | bool insitu = insitu_;
|
---|
| 454 | setInsitu(false);
|
---|
| 455 | CountedPtr< Scantable > out = getScantable(in, true);
|
---|
| 456 | setInsitu(insitu);
|
---|
| 457 | Table& tout = out->table();
|
---|
| 458 | ArrayColumn<Float> specColOut(tout,"SPECTRA");
|
---|
| 459 | ArrayColumn<uChar> flagColOut(tout,"FLAGTRA");
|
---|
| 460 | ArrayColumn<Float> tsysColOut(tout,"TSYS");
|
---|
[1140] | 461 | ScalarColumn<uInt> scanColOut(tout,"SCANNO");
|
---|
[1232] | 462 | ScalarColumn<Double> intColOut(tout, "INTERVAL");
|
---|
[1140] | 463 | Table tmp = in->table().sort("BEAMNO");
|
---|
[1069] | 464 | Block<String> cols(3);
|
---|
| 465 | cols[0] = String("BEAMNO");
|
---|
| 466 | cols[1] = String("IFNO");
|
---|
| 467 | cols[2] = String("POLNO");
|
---|
[1078] | 468 | if ( avmode == "SCAN") {
|
---|
| 469 | cols.resize(4);
|
---|
| 470 | cols[3] = String("SCANNO");
|
---|
| 471 | }
|
---|
[1069] | 472 | uInt outrowCount = 0;
|
---|
| 473 | uChar userflag = 1 << 7;
|
---|
[1140] | 474 | TableIterator iter(tmp, cols);
|
---|
[1069] | 475 | while (!iter.pastEnd()) {
|
---|
| 476 | Table subt = iter.table();
|
---|
| 477 | ROArrayColumn<Float> specCol, tsysCol;
|
---|
| 478 | ROArrayColumn<uChar> flagCol;
|
---|
[1232] | 479 | ROScalarColumn<Double> intCol(subt, "INTERVAL");
|
---|
[1069] | 480 | specCol.attach(subt,"SPECTRA");
|
---|
| 481 | flagCol.attach(subt,"FLAGTRA");
|
---|
| 482 | tsysCol.attach(subt,"TSYS");
|
---|
[2412] | 483 |
|
---|
| 484 | tout.addRow();
|
---|
| 485 | TableCopy::copyRows(tout, subt, outrowCount, 0, 1);
|
---|
| 486 | if ( avmode != "SCAN") {
|
---|
| 487 | scanColOut.put(outrowCount, uInt(0));
|
---|
| 488 | }
|
---|
| 489 | Vector<Float> tmp;
|
---|
| 490 | specCol.get(0, tmp);
|
---|
| 491 | uInt nchan = tmp.nelements();
|
---|
| 492 | // have to do channel by channel here as MaskedArrMath
|
---|
| 493 | // doesn't have partialMedians
|
---|
| 494 | Vector<uChar> flags = flagCol.getColumn(Slicer(Slice(0)));
|
---|
| 495 | Vector<Float> outspec(nchan);
|
---|
| 496 | Vector<uChar> outflag(nchan,0);
|
---|
| 497 | Vector<Float> outtsys(1);/// @fixme when tsys is channel based
|
---|
| 498 | for (uInt i=0; i<nchan; ++i) {
|
---|
| 499 | Vector<Float> specs = specCol.getColumn(Slicer(Slice(i)));
|
---|
| 500 | MaskedArray<Float> ma = maskedArray(specs,flags);
|
---|
| 501 | outspec[i] = median(ma);
|
---|
| 502 | if ( allEQ(ma.getMask(), False) )
|
---|
| 503 | outflag[i] = userflag;// flag data
|
---|
| 504 | }
|
---|
| 505 | outtsys[0] = median(tsysCol.getColumn());
|
---|
| 506 | specColOut.put(outrowCount, outspec);
|
---|
| 507 | flagColOut.put(outrowCount, outflag);
|
---|
| 508 | tsysColOut.put(outrowCount, outtsys);
|
---|
| 509 | Double intsum = sum(intCol.getColumn());
|
---|
| 510 | intColOut.put(outrowCount, intsum);
|
---|
| 511 | ++outrowCount;
|
---|
| 512 | ++iter;
|
---|
| 513 |
|
---|
| 514 | // 2012/02/17 TN
|
---|
| 515 | // Since STGrid is implemented, average doesn't consider direction
|
---|
| 516 | // when accumulating
|
---|
| 517 | // MDirection::ScalarColumn dircol ;
|
---|
| 518 | // dircol.attach( subt, "DIRECTION" ) ;
|
---|
| 519 | // Int length = subt.nrow() ;
|
---|
| 520 | // vector< Vector<Double> > dirs ;
|
---|
| 521 | // vector<int> indexes ;
|
---|
| 522 | // // Handle MX mode averaging
|
---|
| 523 | // if (in->nbeam() > 1 ) {
|
---|
| 524 | // length = 1;
|
---|
[1819] | 525 | // }
|
---|
[2412] | 526 | // for ( Int i = 0 ; i < length ; i++ ) {
|
---|
| 527 | // Vector<Double> t = dircol(i).getAngle(Unit(String("rad"))).getValue() ;
|
---|
| 528 | // bool adddir = true ;
|
---|
| 529 | // for ( uInt j = 0 ; j < dirs.size() ; j++ ) {
|
---|
| 530 | // //if ( allTrue( t == dirs[j] ) ) {
|
---|
| 531 | // Double dx = t[0] - dirs[j][0] ;
|
---|
| 532 | // Double dy = t[1] - dirs[j][1] ;
|
---|
| 533 | // Double dd = sqrt( dx * dx + dy * dy ) ;
|
---|
| 534 | // //if ( allNearAbs( t, dirs[j], tol ) ) {
|
---|
| 535 | // if ( dd <= tol ) {
|
---|
| 536 | // adddir = false ;
|
---|
| 537 | // break ;
|
---|
| 538 | // }
|
---|
| 539 | // }
|
---|
| 540 | // if ( adddir ) {
|
---|
| 541 | // dirs.push_back( t ) ;
|
---|
| 542 | // indexes.push_back( i ) ;
|
---|
| 543 | // }
|
---|
[1819] | 544 | // }
|
---|
[2412] | 545 | // uInt rowNum = dirs.size() ;
|
---|
| 546 | // tout.addRow( rowNum );
|
---|
| 547 | // for ( uInt i = 0 ; i < rowNum ; i++ ) {
|
---|
| 548 | // TableCopy::copyRows(tout, subt, outrowCount+i, indexes[i], 1) ;
|
---|
| 549 | // // Handle MX mode averaging
|
---|
| 550 | // if ( avmode != "SCAN") {
|
---|
| 551 | // scanColOut.put(outrowCount+i, uInt(0));
|
---|
| 552 | // }
|
---|
| 553 | // }
|
---|
| 554 | // MDirection::ScalarColumn dircolOut ;
|
---|
| 555 | // dircolOut.attach( tout, "DIRECTION" ) ;
|
---|
| 556 | // for ( uInt irow = 0 ; irow < rowNum ; irow++ ) {
|
---|
| 557 | // Vector<Double> t = \
|
---|
| 558 | // dircolOut(outrowCount+irow).getAngle(Unit(String("rad"))).getValue() ;
|
---|
| 559 | // Vector<Float> tmp;
|
---|
| 560 | // specCol.get(0, tmp);
|
---|
| 561 | // uInt nchan = tmp.nelements();
|
---|
| 562 | // // have to do channel by channel here as MaskedArrMath
|
---|
| 563 | // // doesn't have partialMedians
|
---|
| 564 | // Vector<uChar> flags = flagCol.getColumn(Slicer(Slice(0)));
|
---|
| 565 | // // mask spectra for different DIRECTION
|
---|
| 566 | // for ( uInt jrow = 0 ; jrow < subt.nrow() ; jrow++ ) {
|
---|
| 567 | // Vector<Double> direction = \
|
---|
| 568 | // dircol(jrow).getAngle(Unit(String("rad"))).getValue() ;
|
---|
| 569 | // //if ( t[0] != direction[0] || t[1] != direction[1] ) {
|
---|
| 570 | // Double dx = t[0] - direction[0];
|
---|
| 571 | // Double dy = t[1] - direction[1];
|
---|
| 572 | // Double dd = sqrt(dx*dx + dy*dy);
|
---|
| 573 | // //if ( !allNearAbs( t, direction, tol ) ) {
|
---|
| 574 | // if ( dd > tol && in->nbeam() < 2 ) {
|
---|
| 575 | // flags[jrow] = userflag ;
|
---|
| 576 | // }
|
---|
| 577 | // }
|
---|
| 578 | // Vector<Float> outspec(nchan);
|
---|
| 579 | // Vector<uChar> outflag(nchan,0);
|
---|
| 580 | // Vector<Float> outtsys(1);/// @fixme when tsys is channel based
|
---|
| 581 | // for (uInt i=0; i<nchan; ++i) {
|
---|
| 582 | // Vector<Float> specs = specCol.getColumn(Slicer(Slice(i)));
|
---|
| 583 | // MaskedArray<Float> ma = maskedArray(specs,flags);
|
---|
| 584 | // outspec[i] = median(ma);
|
---|
| 585 | // if ( allEQ(ma.getMask(), False) )
|
---|
| 586 | // outflag[i] = userflag;// flag data
|
---|
| 587 | // }
|
---|
| 588 | // outtsys[0] = median(tsysCol.getColumn());
|
---|
| 589 | // specColOut.put(outrowCount+irow, outspec);
|
---|
| 590 | // flagColOut.put(outrowCount+irow, outflag);
|
---|
| 591 | // tsysColOut.put(outrowCount+irow, outtsys);
|
---|
| 592 | // Vector<Double> integ = intCol.getColumn() ;
|
---|
| 593 | // MaskedArray<Double> mi = maskedArray( integ, flags ) ;
|
---|
| 594 | // Double intsum = sum(mi);
|
---|
| 595 | // intColOut.put(outrowCount+irow, intsum);
|
---|
| 596 | // }
|
---|
| 597 | // outrowCount += rowNum ;
|
---|
[1819] | 598 | // ++iter;
|
---|
[1069] | 599 | }
|
---|
| 600 | return out;
|
---|
| 601 | }
|
---|
| 602 |
|
---|
[805] | 603 | CountedPtr< Scantable > STMath::getScantable(const CountedPtr< Scantable >& in,
|
---|
| 604 | bool droprows)
|
---|
[185] | 605 | {
|
---|
[1505] | 606 | if (insitu_) {
|
---|
| 607 | return in;
|
---|
| 608 | }
|
---|
[805] | 609 | else {
|
---|
| 610 | // clone
|
---|
[1505] | 611 | return CountedPtr<Scantable>(new Scantable(*in, Bool(droprows)));
|
---|
[234] | 612 | }
|
---|
[805] | 613 | }
|
---|
[234] | 614 |
|
---|
[805] | 615 | CountedPtr< Scantable > STMath::unaryOperate( const CountedPtr< Scantable >& in,
|
---|
| 616 | float val,
|
---|
| 617 | const std::string& mode,
|
---|
| 618 | bool tsys )
|
---|
| 619 | {
|
---|
| 620 | CountedPtr< Scantable > out = getScantable(in, false);
|
---|
| 621 | Table& tab = out->table();
|
---|
| 622 | ArrayColumn<Float> specCol(tab,"SPECTRA");
|
---|
| 623 | ArrayColumn<Float> tsysCol(tab,"TSYS");
|
---|
[2143] | 624 | if (mode=="DIV") val = 1.0/val ;
|
---|
| 625 | else if (mode=="SUB") val *= -1.0 ;
|
---|
[805] | 626 | for (uInt i=0; i<tab.nrow(); ++i) {
|
---|
| 627 | Vector<Float> spec;
|
---|
| 628 | Vector<Float> ts;
|
---|
| 629 | specCol.get(i, spec);
|
---|
| 630 | tsysCol.get(i, ts);
|
---|
[1308] | 631 | if (mode == "MUL" || mode == "DIV") {
|
---|
[2143] | 632 | //if (mode == "DIV") val = 1.0/val;
|
---|
[805] | 633 | spec *= val;
|
---|
| 634 | specCol.put(i, spec);
|
---|
| 635 | if ( tsys ) {
|
---|
| 636 | ts *= val;
|
---|
| 637 | tsysCol.put(i, ts);
|
---|
| 638 | }
|
---|
[1308] | 639 | } else if ( mode == "ADD" || mode == "SUB") {
|
---|
[2143] | 640 | //if (mode == "SUB") val *= -1.0;
|
---|
[805] | 641 | spec += val;
|
---|
| 642 | specCol.put(i, spec);
|
---|
| 643 | if ( tsys ) {
|
---|
| 644 | ts += val;
|
---|
| 645 | tsysCol.put(i, ts);
|
---|
| 646 | }
|
---|
| 647 | }
|
---|
[234] | 648 | }
|
---|
[805] | 649 | return out;
|
---|
| 650 | }
|
---|
[234] | 651 |
|
---|
[1819] | 652 | CountedPtr< Scantable > STMath::arrayOperate( const CountedPtr< Scantable >& in,
|
---|
| 653 | const std::vector<float> val,
|
---|
| 654 | const std::string& mode,
|
---|
| 655 | const std::string& opmode,
|
---|
| 656 | bool tsys )
|
---|
| 657 | {
|
---|
| 658 | CountedPtr< Scantable > out ;
|
---|
| 659 | if ( opmode == "channel" ) {
|
---|
| 660 | out = arrayOperateChannel( in, val, mode, tsys ) ;
|
---|
| 661 | }
|
---|
| 662 | else if ( opmode == "row" ) {
|
---|
| 663 | out = arrayOperateRow( in, val, mode, tsys ) ;
|
---|
| 664 | }
|
---|
| 665 | else {
|
---|
| 666 | throw( AipsError( "Unknown array operation mode." ) ) ;
|
---|
| 667 | }
|
---|
| 668 | return out ;
|
---|
| 669 | }
|
---|
| 670 |
|
---|
| 671 | CountedPtr< Scantable > STMath::arrayOperateChannel( const CountedPtr< Scantable >& in,
|
---|
| 672 | const std::vector<float> val,
|
---|
| 673 | const std::string& mode,
|
---|
| 674 | bool tsys )
|
---|
| 675 | {
|
---|
| 676 | if ( val.size() == 1 ){
|
---|
| 677 | return unaryOperate( in, val[0], mode, tsys ) ;
|
---|
| 678 | }
|
---|
| 679 |
|
---|
| 680 | // conformity of SPECTRA and TSYS
|
---|
| 681 | if ( tsys ) {
|
---|
| 682 | TableIterator titer(in->table(), "IFNO");
|
---|
| 683 | while ( !titer.pastEnd() ) {
|
---|
| 684 | ArrayColumn<Float> specCol( in->table(), "SPECTRA" ) ;
|
---|
| 685 | ArrayColumn<Float> tsysCol( in->table(), "TSYS" ) ;
|
---|
| 686 | Array<Float> spec = specCol.getColumn() ;
|
---|
| 687 | Array<Float> ts = tsysCol.getColumn() ;
|
---|
| 688 | if ( !spec.conform( ts ) ) {
|
---|
| 689 | throw( AipsError( "SPECTRA and TSYS must conform in shape if you want to apply operation on Tsys." ) ) ;
|
---|
| 690 | }
|
---|
| 691 | titer.next() ;
|
---|
| 692 | }
|
---|
| 693 | }
|
---|
| 694 |
|
---|
| 695 | // check if all spectra in the scantable have the same number of channel
|
---|
| 696 | vector<uInt> nchans;
|
---|
| 697 | vector<uInt> ifnos = in->getIFNos() ;
|
---|
| 698 | for ( uInt i = 0 ; i < ifnos.size() ; i++ ) {
|
---|
| 699 | nchans.push_back( in->nchan( ifnos[i] ) ) ;
|
---|
| 700 | }
|
---|
| 701 | Vector<uInt> mchans( nchans ) ;
|
---|
| 702 | if ( anyNE( mchans, mchans[0] ) ) {
|
---|
| 703 | throw( AipsError("All spectra in the input scantable must have the same number of channel for vector operation." ) ) ;
|
---|
| 704 | }
|
---|
| 705 |
|
---|
| 706 | // check if vector size is equal to nchan
|
---|
| 707 | Vector<Float> fact( val ) ;
|
---|
| 708 | if ( fact.nelements() != mchans[0] ) {
|
---|
| 709 | throw( AipsError("Vector size must be 1 or be same as number of channel.") ) ;
|
---|
| 710 | }
|
---|
| 711 |
|
---|
| 712 | // check divided by zero
|
---|
| 713 | if ( ( mode == "DIV" ) && anyEQ( fact, (float)0.0 ) ) {
|
---|
| 714 | throw( AipsError("Divided by zero is not recommended." ) ) ;
|
---|
| 715 | }
|
---|
| 716 |
|
---|
| 717 | CountedPtr< Scantable > out = getScantable(in, false);
|
---|
| 718 | Table& tab = out->table();
|
---|
| 719 | ArrayColumn<Float> specCol(tab,"SPECTRA");
|
---|
| 720 | ArrayColumn<Float> tsysCol(tab,"TSYS");
|
---|
[2143] | 721 | if (mode == "DIV") fact = (float)1.0 / fact;
|
---|
| 722 | else if (mode == "SUB") fact *= (float)-1.0 ;
|
---|
[1819] | 723 | for (uInt i=0; i<tab.nrow(); ++i) {
|
---|
| 724 | Vector<Float> spec;
|
---|
| 725 | Vector<Float> ts;
|
---|
| 726 | specCol.get(i, spec);
|
---|
| 727 | tsysCol.get(i, ts);
|
---|
| 728 | if (mode == "MUL" || mode == "DIV") {
|
---|
[2143] | 729 | //if (mode == "DIV") fact = (float)1.0 / fact;
|
---|
[1819] | 730 | spec *= fact;
|
---|
| 731 | specCol.put(i, spec);
|
---|
| 732 | if ( tsys ) {
|
---|
| 733 | ts *= fact;
|
---|
| 734 | tsysCol.put(i, ts);
|
---|
| 735 | }
|
---|
| 736 | } else if ( mode == "ADD" || mode == "SUB") {
|
---|
[2143] | 737 | //if (mode == "SUB") fact *= (float)-1.0 ;
|
---|
[1819] | 738 | spec += fact;
|
---|
| 739 | specCol.put(i, spec);
|
---|
| 740 | if ( tsys ) {
|
---|
| 741 | ts += fact;
|
---|
| 742 | tsysCol.put(i, ts);
|
---|
| 743 | }
|
---|
| 744 | }
|
---|
| 745 | }
|
---|
| 746 | return out;
|
---|
| 747 | }
|
---|
| 748 |
|
---|
| 749 | CountedPtr< Scantable > STMath::arrayOperateRow( const CountedPtr< Scantable >& in,
|
---|
| 750 | const std::vector<float> val,
|
---|
| 751 | const std::string& mode,
|
---|
| 752 | bool tsys )
|
---|
| 753 | {
|
---|
| 754 | if ( val.size() == 1 ) {
|
---|
| 755 | return unaryOperate( in, val[0], mode, tsys ) ;
|
---|
| 756 | }
|
---|
| 757 |
|
---|
| 758 | // conformity of SPECTRA and TSYS
|
---|
| 759 | if ( tsys ) {
|
---|
| 760 | TableIterator titer(in->table(), "IFNO");
|
---|
| 761 | while ( !titer.pastEnd() ) {
|
---|
| 762 | ArrayColumn<Float> specCol( in->table(), "SPECTRA" ) ;
|
---|
| 763 | ArrayColumn<Float> tsysCol( in->table(), "TSYS" ) ;
|
---|
| 764 | Array<Float> spec = specCol.getColumn() ;
|
---|
| 765 | Array<Float> ts = tsysCol.getColumn() ;
|
---|
| 766 | if ( !spec.conform( ts ) ) {
|
---|
| 767 | throw( AipsError( "SPECTRA and TSYS must conform in shape if you want to apply operation on Tsys." ) ) ;
|
---|
| 768 | }
|
---|
| 769 | titer.next() ;
|
---|
| 770 | }
|
---|
| 771 | }
|
---|
| 772 |
|
---|
| 773 | // check if vector size is equal to nrow
|
---|
| 774 | Vector<Float> fact( val ) ;
|
---|
[2125] | 775 | if (fact.nelements() != uInt(in->nrow())) {
|
---|
[1819] | 776 | throw( AipsError("Vector size must be 1 or be same as number of row.") ) ;
|
---|
| 777 | }
|
---|
| 778 |
|
---|
| 779 | // check divided by zero
|
---|
| 780 | if ( ( mode == "DIV" ) && anyEQ( fact, (float)0.0 ) ) {
|
---|
| 781 | throw( AipsError("Divided by zero is not recommended." ) ) ;
|
---|
| 782 | }
|
---|
| 783 |
|
---|
| 784 | CountedPtr< Scantable > out = getScantable(in, false);
|
---|
| 785 | Table& tab = out->table();
|
---|
| 786 | ArrayColumn<Float> specCol(tab,"SPECTRA");
|
---|
| 787 | ArrayColumn<Float> tsysCol(tab,"TSYS");
|
---|
| 788 | if (mode == "DIV") fact = (float)1.0 / fact;
|
---|
| 789 | if (mode == "SUB") fact *= (float)-1.0 ;
|
---|
| 790 | for (uInt i=0; i<tab.nrow(); ++i) {
|
---|
| 791 | Vector<Float> spec;
|
---|
| 792 | Vector<Float> ts;
|
---|
| 793 | specCol.get(i, spec);
|
---|
| 794 | tsysCol.get(i, ts);
|
---|
| 795 | if (mode == "MUL" || mode == "DIV") {
|
---|
| 796 | spec *= fact[i];
|
---|
| 797 | specCol.put(i, spec);
|
---|
| 798 | if ( tsys ) {
|
---|
| 799 | ts *= fact[i];
|
---|
| 800 | tsysCol.put(i, ts);
|
---|
| 801 | }
|
---|
| 802 | } else if ( mode == "ADD" || mode == "SUB") {
|
---|
| 803 | spec += fact[i];
|
---|
| 804 | specCol.put(i, spec);
|
---|
| 805 | if ( tsys ) {
|
---|
| 806 | ts += fact[i];
|
---|
| 807 | tsysCol.put(i, ts);
|
---|
| 808 | }
|
---|
| 809 | }
|
---|
| 810 | }
|
---|
| 811 | return out;
|
---|
| 812 | }
|
---|
| 813 |
|
---|
| 814 | CountedPtr< Scantable > STMath::array2dOperate( const CountedPtr< Scantable >& in,
|
---|
| 815 | const std::vector< std::vector<float> > val,
|
---|
| 816 | const std::string& mode,
|
---|
| 817 | bool tsys )
|
---|
| 818 | {
|
---|
| 819 | // conformity of SPECTRA and TSYS
|
---|
| 820 | if ( tsys ) {
|
---|
| 821 | TableIterator titer(in->table(), "IFNO");
|
---|
| 822 | while ( !titer.pastEnd() ) {
|
---|
| 823 | ArrayColumn<Float> specCol( in->table(), "SPECTRA" ) ;
|
---|
| 824 | ArrayColumn<Float> tsysCol( in->table(), "TSYS" ) ;
|
---|
| 825 | Array<Float> spec = specCol.getColumn() ;
|
---|
| 826 | Array<Float> ts = tsysCol.getColumn() ;
|
---|
| 827 | if ( !spec.conform( ts ) ) {
|
---|
| 828 | throw( AipsError( "SPECTRA and TSYS must conform in shape if you want to apply operation on Tsys." ) ) ;
|
---|
| 829 | }
|
---|
| 830 | titer.next() ;
|
---|
| 831 | }
|
---|
| 832 | }
|
---|
| 833 |
|
---|
| 834 | // some checks
|
---|
| 835 | vector<uInt> nchans;
|
---|
[2125] | 836 | for (Int i = 0 ; i < in->nrow() ; i++) {
|
---|
| 837 | nchans.push_back((in->getSpectrum(i)).size());
|
---|
[1819] | 838 | }
|
---|
| 839 | //Vector<uInt> mchans( nchans ) ;
|
---|
| 840 | vector< Vector<Float> > facts ;
|
---|
| 841 | for ( uInt i = 0 ; i < nchans.size() ; i++ ) {
|
---|
| 842 | Vector<Float> tmp( val[i] ) ;
|
---|
| 843 | // check divided by zero
|
---|
| 844 | if ( ( mode == "DIV" ) && anyEQ( tmp, (float)0.0 ) ) {
|
---|
| 845 | throw( AipsError("Divided by zero is not recommended." ) ) ;
|
---|
| 846 | }
|
---|
| 847 | // conformity check
|
---|
| 848 | if ( tmp.nelements() != nchans[i] ) {
|
---|
| 849 | stringstream ss ;
|
---|
| 850 | ss << "Row " << i << ": Vector size must be same as number of channel." ;
|
---|
| 851 | throw( AipsError( ss.str() ) ) ;
|
---|
| 852 | }
|
---|
| 853 | facts.push_back( tmp ) ;
|
---|
| 854 | }
|
---|
| 855 |
|
---|
| 856 |
|
---|
| 857 | CountedPtr< Scantable > out = getScantable(in, false);
|
---|
| 858 | Table& tab = out->table();
|
---|
| 859 | ArrayColumn<Float> specCol(tab,"SPECTRA");
|
---|
| 860 | ArrayColumn<Float> tsysCol(tab,"TSYS");
|
---|
| 861 | for (uInt i=0; i<tab.nrow(); ++i) {
|
---|
| 862 | Vector<Float> fact = facts[i] ;
|
---|
| 863 | Vector<Float> spec;
|
---|
| 864 | Vector<Float> ts;
|
---|
| 865 | specCol.get(i, spec);
|
---|
| 866 | tsysCol.get(i, ts);
|
---|
| 867 | if (mode == "MUL" || mode == "DIV") {
|
---|
| 868 | if (mode == "DIV") fact = (float)1.0 / fact;
|
---|
| 869 | spec *= fact;
|
---|
| 870 | specCol.put(i, spec);
|
---|
| 871 | if ( tsys ) {
|
---|
| 872 | ts *= fact;
|
---|
| 873 | tsysCol.put(i, ts);
|
---|
| 874 | }
|
---|
| 875 | } else if ( mode == "ADD" || mode == "SUB") {
|
---|
| 876 | if (mode == "SUB") fact *= (float)-1.0 ;
|
---|
| 877 | spec += fact;
|
---|
| 878 | specCol.put(i, spec);
|
---|
| 879 | if ( tsys ) {
|
---|
| 880 | ts += fact;
|
---|
| 881 | tsysCol.put(i, ts);
|
---|
| 882 | }
|
---|
| 883 | }
|
---|
| 884 | }
|
---|
| 885 | return out;
|
---|
| 886 | }
|
---|
| 887 |
|
---|
[1569] | 888 | CountedPtr<Scantable> STMath::binaryOperate(const CountedPtr<Scantable>& left,
|
---|
| 889 | const CountedPtr<Scantable>& right,
|
---|
[1308] | 890 | const std::string& mode)
|
---|
| 891 | {
|
---|
| 892 | bool insitu = insitu_;
|
---|
| 893 | if ( ! left->conformant(*right) ) {
|
---|
| 894 | throw(AipsError("'left' and 'right' scantables are not conformant."));
|
---|
| 895 | }
|
---|
| 896 | setInsitu(false);
|
---|
| 897 | CountedPtr< Scantable > out = getScantable(left, false);
|
---|
| 898 | setInsitu(insitu);
|
---|
| 899 | Table& tout = out->table();
|
---|
| 900 | Block<String> coln(5);
|
---|
| 901 | coln[0] = "SCANNO"; coln[1] = "CYCLENO"; coln[2] = "BEAMNO";
|
---|
| 902 | coln[3] = "IFNO"; coln[4] = "POLNO";
|
---|
| 903 | Table tmpl = tout.sort(coln);
|
---|
| 904 | Table tmpr = right->table().sort(coln);
|
---|
| 905 | ArrayColumn<Float> lspecCol(tmpl,"SPECTRA");
|
---|
| 906 | ROArrayColumn<Float> rspecCol(tmpr,"SPECTRA");
|
---|
| 907 | ArrayColumn<uChar> lflagCol(tmpl,"FLAGTRA");
|
---|
| 908 | ROArrayColumn<uChar> rflagCol(tmpr,"FLAGTRA");
|
---|
| 909 |
|
---|
| 910 | for (uInt i=0; i<tout.nrow(); ++i) {
|
---|
| 911 | Vector<Float> lspecvec, rspecvec;
|
---|
| 912 | Vector<uChar> lflagvec, rflagvec;
|
---|
| 913 | lspecvec = lspecCol(i); rspecvec = rspecCol(i);
|
---|
| 914 | lflagvec = lflagCol(i); rflagvec = rflagCol(i);
|
---|
| 915 | MaskedArray<Float> mleft = maskedArray(lspecvec, lflagvec);
|
---|
| 916 | MaskedArray<Float> mright = maskedArray(rspecvec, rflagvec);
|
---|
| 917 | if (mode == "ADD") {
|
---|
| 918 | mleft += mright;
|
---|
| 919 | } else if ( mode == "SUB") {
|
---|
| 920 | mleft -= mright;
|
---|
| 921 | } else if ( mode == "MUL") {
|
---|
| 922 | mleft *= mright;
|
---|
| 923 | } else if ( mode == "DIV") {
|
---|
| 924 | mleft /= mright;
|
---|
| 925 | } else {
|
---|
| 926 | throw(AipsError("Illegal binary operator"));
|
---|
| 927 | }
|
---|
| 928 | lspecCol.put(i, mleft.getArray());
|
---|
| 929 | }
|
---|
| 930 | return out;
|
---|
| 931 | }
|
---|
| 932 |
|
---|
| 933 |
|
---|
| 934 |
|
---|
[805] | 935 | MaskedArray<Float> STMath::maskedArray( const Vector<Float>& s,
|
---|
| 936 | const Vector<uChar>& f)
|
---|
| 937 | {
|
---|
| 938 | Vector<Bool> mask;
|
---|
| 939 | mask.resize(f.shape());
|
---|
| 940 | convertArray(mask, f);
|
---|
| 941 | return MaskedArray<Float>(s,!mask);
|
---|
| 942 | }
|
---|
[248] | 943 |
|
---|
[1819] | 944 | MaskedArray<Double> STMath::maskedArray( const Vector<Double>& s,
|
---|
| 945 | const Vector<uChar>& f)
|
---|
| 946 | {
|
---|
| 947 | Vector<Bool> mask;
|
---|
| 948 | mask.resize(f.shape());
|
---|
| 949 | convertArray(mask, f);
|
---|
| 950 | return MaskedArray<Double>(s,!mask);
|
---|
| 951 | }
|
---|
| 952 |
|
---|
[805] | 953 | Vector<uChar> STMath::flagsFromMA(const MaskedArray<Float>& ma)
|
---|
| 954 | {
|
---|
| 955 | const Vector<Bool>& m = ma.getMask();
|
---|
| 956 | Vector<uChar> flags(m.shape());
|
---|
| 957 | convertArray(flags, !m);
|
---|
| 958 | return flags;
|
---|
| 959 | }
|
---|
[234] | 960 |
|
---|
[1066] | 961 | CountedPtr< Scantable > STMath::autoQuotient( const CountedPtr< Scantable >& in,
|
---|
| 962 | const std::string & mode,
|
---|
| 963 | bool preserve )
|
---|
[805] | 964 | {
|
---|
| 965 | /// @todo make other modes available
|
---|
| 966 | /// modes should be "nearest", "pair"
|
---|
| 967 | // make this operation non insitu
|
---|
[2163] | 968 | (void) mode; //currently unused
|
---|
[805] | 969 | const Table& tin = in->table();
|
---|
[1819] | 970 | Table ons = tin(tin.col("SRCTYPE") == Int(SrcType::PSON));
|
---|
| 971 | Table offs = tin(tin.col("SRCTYPE") == Int(SrcType::PSOFF));
|
---|
[805] | 972 | if ( offs.nrow() == 0 )
|
---|
| 973 | throw(AipsError("No 'off' scans present."));
|
---|
| 974 | // put all "on" scans into output table
|
---|
[701] | 975 |
|
---|
[805] | 976 | bool insitu = insitu_;
|
---|
| 977 | setInsitu(false);
|
---|
| 978 | CountedPtr< Scantable > out = getScantable(in, true);
|
---|
| 979 | setInsitu(insitu);
|
---|
| 980 | Table& tout = out->table();
|
---|
[248] | 981 |
|
---|
[805] | 982 | TableCopy::copyRows(tout, ons);
|
---|
| 983 | TableRow row(tout);
|
---|
| 984 | ROScalarColumn<Double> offtimeCol(offs, "TIME");
|
---|
| 985 | ArrayColumn<Float> outspecCol(tout, "SPECTRA");
|
---|
| 986 | ROArrayColumn<Float> outtsysCol(tout, "TSYS");
|
---|
| 987 | ArrayColumn<uChar> outflagCol(tout, "FLAGTRA");
|
---|
| 988 | for (uInt i=0; i < tout.nrow(); ++i) {
|
---|
| 989 | const TableRecord& rec = row.get(i);
|
---|
| 990 | Double ontime = rec.asDouble("TIME");
|
---|
[1321] | 991 | Table presel = offs(offs.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
|
---|
| 992 | && offs.col("IFNO") == Int(rec.asuInt("IFNO"))
|
---|
| 993 | && offs.col("POLNO") == Int(rec.asuInt("POLNO")) );
|
---|
| 994 | ROScalarColumn<Double> offtimeCol(presel, "TIME");
|
---|
| 995 |
|
---|
[805] | 996 | Double mindeltat = min(abs(offtimeCol.getColumn() - ontime));
|
---|
[1259] | 997 | // Timestamp may vary within a cycle ???!!!
|
---|
[1321] | 998 | // increase this by 0.01 sec in case of rounding errors...
|
---|
[1259] | 999 | // There might be a better way to do this.
|
---|
[1321] | 1000 | // fix to this fix. TIME is MJD, so 1.0d not 1.0s
|
---|
| 1001 | mindeltat += 0.01/24./60./60.;
|
---|
| 1002 | Table sel = presel( abs(presel.col("TIME")-ontime) <= mindeltat);
|
---|
[780] | 1003 |
|
---|
[1259] | 1004 | if ( sel.nrow() < 1 ) {
|
---|
| 1005 | throw(AipsError("No closest in time found... This could be a rounding "
|
---|
| 1006 | "issue. Try quotient instead."));
|
---|
| 1007 | }
|
---|
[805] | 1008 | TableRow offrow(sel);
|
---|
| 1009 | const TableRecord& offrec = offrow.get(0);//should only be one row
|
---|
| 1010 | RORecordFieldPtr< Array<Float> > specoff(offrec, "SPECTRA");
|
---|
| 1011 | RORecordFieldPtr< Array<Float> > tsysoff(offrec, "TSYS");
|
---|
| 1012 | RORecordFieldPtr< Array<uChar> > flagoff(offrec, "FLAGTRA");
|
---|
| 1013 | /// @fixme this assumes tsys is a scalar not vector
|
---|
| 1014 | Float tsysoffscalar = (*tsysoff)(IPosition(1,0));
|
---|
| 1015 | Vector<Float> specon, tsyson;
|
---|
| 1016 | outtsysCol.get(i, tsyson);
|
---|
| 1017 | outspecCol.get(i, specon);
|
---|
| 1018 | Vector<uChar> flagon;
|
---|
| 1019 | outflagCol.get(i, flagon);
|
---|
| 1020 | MaskedArray<Float> mon = maskedArray(specon, flagon);
|
---|
| 1021 | MaskedArray<Float> moff = maskedArray(*specoff, *flagoff);
|
---|
| 1022 | MaskedArray<Float> quot = (tsysoffscalar * mon / moff);
|
---|
| 1023 | if (preserve) {
|
---|
| 1024 | quot -= tsysoffscalar;
|
---|
| 1025 | } else {
|
---|
| 1026 | quot -= tsyson[0];
|
---|
[701] | 1027 | }
|
---|
[805] | 1028 | outspecCol.put(i, quot.getArray());
|
---|
| 1029 | outflagCol.put(i, flagsFromMA(quot));
|
---|
| 1030 | }
|
---|
[926] | 1031 | // renumber scanno
|
---|
| 1032 | TableIterator it(tout, "SCANNO");
|
---|
| 1033 | uInt i = 0;
|
---|
| 1034 | while ( !it.pastEnd() ) {
|
---|
| 1035 | Table t = it.table();
|
---|
| 1036 | TableVector<uInt> vec(t, "SCANNO");
|
---|
| 1037 | vec = i;
|
---|
| 1038 | ++i;
|
---|
| 1039 | ++it;
|
---|
| 1040 | }
|
---|
[805] | 1041 | return out;
|
---|
| 1042 | }
|
---|
[234] | 1043 |
|
---|
[1066] | 1044 |
|
---|
| 1045 | CountedPtr< Scantable > STMath::quotient( const CountedPtr< Scantable > & on,
|
---|
| 1046 | const CountedPtr< Scantable > & off,
|
---|
| 1047 | bool preserve )
|
---|
| 1048 | {
|
---|
| 1049 | bool insitu = insitu_;
|
---|
[1069] | 1050 | if ( ! on->conformant(*off) ) {
|
---|
| 1051 | throw(AipsError("'on' and 'off' scantables are not conformant."));
|
---|
| 1052 | }
|
---|
[1066] | 1053 | setInsitu(false);
|
---|
| 1054 | CountedPtr< Scantable > out = getScantable(on, false);
|
---|
| 1055 | setInsitu(insitu);
|
---|
| 1056 | Table& tout = out->table();
|
---|
| 1057 | const Table& toff = off->table();
|
---|
| 1058 | TableIterator sit(tout, "SCANNO");
|
---|
| 1059 | TableIterator s2it(toff, "SCANNO");
|
---|
| 1060 | while ( !sit.pastEnd() ) {
|
---|
| 1061 | Table ton = sit.table();
|
---|
| 1062 | TableRow row(ton);
|
---|
| 1063 | Table t = s2it.table();
|
---|
| 1064 | ArrayColumn<Float> outspecCol(ton, "SPECTRA");
|
---|
| 1065 | ROArrayColumn<Float> outtsysCol(ton, "TSYS");
|
---|
| 1066 | ArrayColumn<uChar> outflagCol(ton, "FLAGTRA");
|
---|
| 1067 | for (uInt i=0; i < ton.nrow(); ++i) {
|
---|
| 1068 | const TableRecord& rec = row.get(i);
|
---|
| 1069 | Table offsel = t( t.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
|
---|
| 1070 | && t.col("IFNO") == Int(rec.asuInt("IFNO"))
|
---|
| 1071 | && t.col("POLNO") == Int(rec.asuInt("POLNO")) );
|
---|
[1145] | 1072 | if ( offsel.nrow() == 0 )
|
---|
| 1073 | throw AipsError("STMath::quotient: no matching off");
|
---|
[1066] | 1074 | TableRow offrow(offsel);
|
---|
| 1075 | const TableRecord& offrec = offrow.get(0);//should be ncycles - take first
|
---|
| 1076 | RORecordFieldPtr< Array<Float> > specoff(offrec, "SPECTRA");
|
---|
| 1077 | RORecordFieldPtr< Array<Float> > tsysoff(offrec, "TSYS");
|
---|
| 1078 | RORecordFieldPtr< Array<uChar> > flagoff(offrec, "FLAGTRA");
|
---|
| 1079 | Float tsysoffscalar = (*tsysoff)(IPosition(1,0));
|
---|
| 1080 | Vector<Float> specon, tsyson;
|
---|
| 1081 | outtsysCol.get(i, tsyson);
|
---|
| 1082 | outspecCol.get(i, specon);
|
---|
| 1083 | Vector<uChar> flagon;
|
---|
| 1084 | outflagCol.get(i, flagon);
|
---|
| 1085 | MaskedArray<Float> mon = maskedArray(specon, flagon);
|
---|
| 1086 | MaskedArray<Float> moff = maskedArray(*specoff, *flagoff);
|
---|
| 1087 | MaskedArray<Float> quot = (tsysoffscalar * mon / moff);
|
---|
| 1088 | if (preserve) {
|
---|
| 1089 | quot -= tsysoffscalar;
|
---|
| 1090 | } else {
|
---|
| 1091 | quot -= tsyson[0];
|
---|
| 1092 | }
|
---|
| 1093 | outspecCol.put(i, quot.getArray());
|
---|
| 1094 | outflagCol.put(i, flagsFromMA(quot));
|
---|
| 1095 | }
|
---|
| 1096 | ++sit;
|
---|
| 1097 | ++s2it;
|
---|
| 1098 | // take the first off for each on scan which doesn't have a
|
---|
| 1099 | // matching off scan
|
---|
| 1100 | // non <= noff: matching pairs, non > noff matching pairs then first off
|
---|
| 1101 | if ( s2it.pastEnd() ) s2it.reset();
|
---|
| 1102 | }
|
---|
| 1103 | return out;
|
---|
| 1104 | }
|
---|
| 1105 |
|
---|
[1391] | 1106 | // dototalpower (migration of GBTIDL procedure dototalpower.pro)
|
---|
| 1107 | // calibrate the CAL on-off pair. It calculate Tsys and average CAL on-off subintegrations
|
---|
| 1108 | // do it for each cycles in a specific scan.
|
---|
| 1109 | CountedPtr< Scantable > STMath::dototalpower( const CountedPtr< Scantable >& calon,
|
---|
| 1110 | const CountedPtr< Scantable >& caloff, Float tcal )
|
---|
| 1111 | {
|
---|
[2289] | 1112 | if ( ! calon->conformant(*caloff) ) {
|
---|
[1391] | 1113 | throw(AipsError("'CAL on' and 'CAL off' scantables are not conformant."));
|
---|
| 1114 | }
|
---|
| 1115 | setInsitu(false);
|
---|
| 1116 | CountedPtr< Scantable > out = getScantable(caloff, false);
|
---|
| 1117 | Table& tout = out->table();
|
---|
| 1118 | const Table& tcon = calon->table();
|
---|
| 1119 | Vector<Float> tcalout;
|
---|
[1066] | 1120 |
|
---|
[2289] | 1121 | std::map<uInt,uInt> tcalIdToRecNoMap;
|
---|
| 1122 | const Table& calOffTcalTable = caloff->tcal().table();
|
---|
| 1123 | {
|
---|
| 1124 | ROScalarColumn<uInt> calOffTcalTable_IDcol(calOffTcalTable, "ID");
|
---|
| 1125 | const Vector<uInt> tcalIds(calOffTcalTable_IDcol.getColumn());
|
---|
| 1126 | size_t tcalIdsEnd = tcalIds.nelements();
|
---|
| 1127 | for (uInt i = 0; i < tcalIdsEnd; i++) {
|
---|
| 1128 | tcalIdToRecNoMap[tcalIds[i]] = i;
|
---|
| 1129 | }
|
---|
| 1130 | }
|
---|
| 1131 | ROArrayColumn<Float> calOffTcalTable_TCALcol(calOffTcalTable, "TCAL");
|
---|
| 1132 |
|
---|
[1391] | 1133 | if ( tout.nrow() != tcon.nrow() ) {
|
---|
| 1134 | throw(AipsError("Mismatch in number of rows to form cal on - off pair."));
|
---|
| 1135 | }
|
---|
| 1136 | // iteration by scanno or cycle no.
|
---|
| 1137 | TableIterator sit(tout, "SCANNO");
|
---|
| 1138 | TableIterator s2it(tcon, "SCANNO");
|
---|
| 1139 | while ( !sit.pastEnd() ) {
|
---|
| 1140 | Table toff = sit.table();
|
---|
| 1141 | TableRow row(toff);
|
---|
| 1142 | Table t = s2it.table();
|
---|
| 1143 | ScalarColumn<Double> outintCol(toff, "INTERVAL");
|
---|
| 1144 | ArrayColumn<Float> outspecCol(toff, "SPECTRA");
|
---|
| 1145 | ArrayColumn<Float> outtsysCol(toff, "TSYS");
|
---|
| 1146 | ArrayColumn<uChar> outflagCol(toff, "FLAGTRA");
|
---|
| 1147 | ROScalarColumn<uInt> outtcalIdCol(toff, "TCAL_ID");
|
---|
| 1148 | ROScalarColumn<uInt> outpolCol(toff, "POLNO");
|
---|
| 1149 | ROScalarColumn<Double> onintCol(t, "INTERVAL");
|
---|
| 1150 | ROArrayColumn<Float> onspecCol(t, "SPECTRA");
|
---|
| 1151 | ROArrayColumn<Float> ontsysCol(t, "TSYS");
|
---|
| 1152 | ROArrayColumn<uChar> onflagCol(t, "FLAGTRA");
|
---|
| 1153 | //ROScalarColumn<uInt> ontcalIdCol(t, "TCAL_ID");
|
---|
| 1154 |
|
---|
| 1155 | for (uInt i=0; i < toff.nrow(); ++i) {
|
---|
| 1156 | //skip these checks -> assumes the data order are the same between the cal on off pairs
|
---|
| 1157 | //
|
---|
| 1158 | Vector<Float> specCalon, specCaloff;
|
---|
| 1159 | // to store scalar (mean) tsys
|
---|
| 1160 | Vector<Float> tsysout(1);
|
---|
| 1161 | uInt tcalId, polno;
|
---|
| 1162 | Double offint, onint;
|
---|
| 1163 | outpolCol.get(i, polno);
|
---|
| 1164 | outspecCol.get(i, specCaloff);
|
---|
| 1165 | onspecCol.get(i, specCalon);
|
---|
| 1166 | Vector<uChar> flagCaloff, flagCalon;
|
---|
| 1167 | outflagCol.get(i, flagCaloff);
|
---|
| 1168 | onflagCol.get(i, flagCalon);
|
---|
| 1169 | outtcalIdCol.get(i, tcalId);
|
---|
| 1170 | outintCol.get(i, offint);
|
---|
| 1171 | onintCol.get(i, onint);
|
---|
| 1172 | // caluculate mean Tsys
|
---|
| 1173 | uInt nchan = specCaloff.nelements();
|
---|
| 1174 | // percentage of edge cut off
|
---|
| 1175 | uInt pc = 10;
|
---|
| 1176 | uInt bchan = nchan/pc;
|
---|
| 1177 | uInt echan = nchan-bchan;
|
---|
| 1178 |
|
---|
| 1179 | Slicer chansl(IPosition(1,bchan-1), IPosition(1,echan-1), IPosition(1,1),Slicer::endIsLast);
|
---|
| 1180 | Vector<Float> testsubsp = specCaloff(chansl);
|
---|
| 1181 | MaskedArray<Float> spoff = maskedArray( specCaloff(chansl),flagCaloff(chansl) );
|
---|
| 1182 | MaskedArray<Float> spon = maskedArray( specCalon(chansl),flagCalon(chansl) );
|
---|
| 1183 | MaskedArray<Float> spdiff = spon-spoff;
|
---|
| 1184 | uInt noff = spoff.nelementsValid();
|
---|
| 1185 | //uInt non = spon.nelementsValid();
|
---|
| 1186 | uInt ndiff = spdiff.nelementsValid();
|
---|
| 1187 | Float meantsys;
|
---|
| 1188 |
|
---|
| 1189 | /**
|
---|
| 1190 | Double subspec, subdiff;
|
---|
| 1191 | uInt usednchan;
|
---|
| 1192 | subspec = 0;
|
---|
| 1193 | subdiff = 0;
|
---|
| 1194 | usednchan = 0;
|
---|
| 1195 | for(uInt k=(bchan-1); k<echan; k++) {
|
---|
| 1196 | subspec += specCaloff[k];
|
---|
| 1197 | subdiff += static_cast<Double>(specCalon[k]-specCaloff[k]);
|
---|
| 1198 | ++usednchan;
|
---|
| 1199 | }
|
---|
| 1200 | **/
|
---|
| 1201 | // get tcal if input tcal <= 0
|
---|
| 1202 | Float tcalUsed;
|
---|
| 1203 | tcalUsed = tcal;
|
---|
| 1204 | if ( tcal <= 0.0 ) {
|
---|
[2289] | 1205 | uInt tcalRecNo = tcalIdToRecNoMap[tcalId];
|
---|
| 1206 | calOffTcalTable_TCALcol.get(tcalRecNo, tcalout);
|
---|
[2004] | 1207 | // if (polno<=3) {
|
---|
| 1208 | // tcalUsed = tcalout[polno];
|
---|
| 1209 | // }
|
---|
| 1210 | // else {
|
---|
| 1211 | // tcalUsed = tcalout[0];
|
---|
| 1212 | // }
|
---|
| 1213 | if ( tcalout.size() == 1 )
|
---|
| 1214 | tcalUsed = tcalout[0] ;
|
---|
| 1215 | else if ( tcalout.size() == nchan )
|
---|
| 1216 | tcalUsed = mean(tcalout) ;
|
---|
[1391] | 1217 | else {
|
---|
[2004] | 1218 | uInt ipol = polno ;
|
---|
| 1219 | if ( ipol > 3 ) ipol = 0 ;
|
---|
| 1220 | tcalUsed = tcalout[ipol] ;
|
---|
[1391] | 1221 | }
|
---|
| 1222 | }
|
---|
| 1223 |
|
---|
| 1224 | Float meanoff;
|
---|
| 1225 | Float meandiff;
|
---|
| 1226 | if (noff && ndiff) {
|
---|
| 1227 | //Debug
|
---|
| 1228 | //if(noff!=ndiff) cerr<<"noff and ndiff is not equal"<<endl;
|
---|
[1819] | 1229 | //LogIO os( LogOrigin( "STMath", "dototalpower()", WHERE ) ) ;
|
---|
| 1230 | //if(noff!=ndiff) os<<"noff and ndiff is not equal"<<LogIO::POST;
|
---|
[1391] | 1231 | meanoff = sum(spoff)/noff;
|
---|
| 1232 | meandiff = sum(spdiff)/ndiff;
|
---|
| 1233 | meantsys= (meanoff/meandiff )*tcalUsed + tcalUsed/2;
|
---|
| 1234 | }
|
---|
| 1235 | else {
|
---|
| 1236 | meantsys=1;
|
---|
| 1237 | }
|
---|
| 1238 |
|
---|
| 1239 | tsysout[0] = Float(meantsys);
|
---|
| 1240 | MaskedArray<Float> mcaloff = maskedArray(specCaloff, flagCaloff);
|
---|
| 1241 | MaskedArray<Float> mcalon = maskedArray(specCalon, flagCalon);
|
---|
| 1242 | MaskedArray<Float> sig = Float(0.5) * (mcaloff + mcalon);
|
---|
| 1243 | //uInt ncaloff = mcaloff.nelementsValid();
|
---|
| 1244 | //uInt ncalon = mcalon.nelementsValid();
|
---|
| 1245 |
|
---|
| 1246 | outintCol.put(i, offint+onint);
|
---|
| 1247 | outspecCol.put(i, sig.getArray());
|
---|
| 1248 | outflagCol.put(i, flagsFromMA(sig));
|
---|
| 1249 | outtsysCol.put(i, tsysout);
|
---|
| 1250 | }
|
---|
| 1251 | ++sit;
|
---|
| 1252 | ++s2it;
|
---|
| 1253 | }
|
---|
| 1254 | return out;
|
---|
| 1255 | }
|
---|
| 1256 |
|
---|
| 1257 | //dosigref - migrated from GBT IDL's dosigref.pro, do calibration of position switch
|
---|
| 1258 | // observatiions.
|
---|
| 1259 | // input: sig and ref scantables, and an optional boxcar smoothing width(default width=0,
|
---|
| 1260 | // no smoothing).
|
---|
| 1261 | // output: resultant scantable [= (sig-ref/ref)*tsys]
|
---|
| 1262 | CountedPtr< Scantable > STMath::dosigref( const CountedPtr < Scantable >& sig,
|
---|
| 1263 | const CountedPtr < Scantable >& ref,
|
---|
| 1264 | int smoothref,
|
---|
| 1265 | casa::Float tsysv,
|
---|
| 1266 | casa::Float tau )
|
---|
| 1267 | {
|
---|
[2658] | 1268 | LogIO os( casa::LogOrigin( "STMath", "dosigref()"));
|
---|
[1391] | 1269 | if ( ! ref->conformant(*sig) ) {
|
---|
| 1270 | throw(AipsError("'sig' and 'ref' scantables are not conformant."));
|
---|
| 1271 | }
|
---|
| 1272 | setInsitu(false);
|
---|
| 1273 | CountedPtr< Scantable > out = getScantable(sig, false);
|
---|
| 1274 | CountedPtr< Scantable > smref;
|
---|
| 1275 | if ( smoothref > 1 ) {
|
---|
| 1276 | float fsmoothref = static_cast<float>(smoothref);
|
---|
| 1277 | std::string inkernel = "boxcar";
|
---|
| 1278 | smref = smooth(ref, inkernel, fsmoothref );
|
---|
| 1279 | ostringstream oss;
|
---|
[2658] | 1280 | os <<"Applied smoothing of "<<fsmoothref<<" on the reference."
|
---|
| 1281 | << LogIO::POST;
|
---|
[1391] | 1282 | }
|
---|
| 1283 | else {
|
---|
| 1284 | smref = ref;
|
---|
| 1285 | }
|
---|
| 1286 | Table& tout = out->table();
|
---|
| 1287 | const Table& tref = smref->table();
|
---|
| 1288 | if ( tout.nrow() != tref.nrow() ) {
|
---|
| 1289 | throw(AipsError("Mismatch in number of rows to form on-source and reference pair."));
|
---|
| 1290 | }
|
---|
| 1291 | // iteration by scanno? or cycle no.
|
---|
| 1292 | TableIterator sit(tout, "SCANNO");
|
---|
| 1293 | TableIterator s2it(tref, "SCANNO");
|
---|
| 1294 | while ( !sit.pastEnd() ) {
|
---|
| 1295 | Table ton = sit.table();
|
---|
| 1296 | Table t = s2it.table();
|
---|
| 1297 | ScalarColumn<Double> outintCol(ton, "INTERVAL");
|
---|
| 1298 | ArrayColumn<Float> outspecCol(ton, "SPECTRA");
|
---|
| 1299 | ArrayColumn<Float> outtsysCol(ton, "TSYS");
|
---|
| 1300 | ArrayColumn<uChar> outflagCol(ton, "FLAGTRA");
|
---|
| 1301 | ArrayColumn<Float> refspecCol(t, "SPECTRA");
|
---|
| 1302 | ROScalarColumn<Double> refintCol(t, "INTERVAL");
|
---|
| 1303 | ROArrayColumn<Float> reftsysCol(t, "TSYS");
|
---|
| 1304 | ArrayColumn<uChar> refflagCol(t, "FLAGTRA");
|
---|
| 1305 | ROScalarColumn<Float> refelevCol(t, "ELEVATION");
|
---|
| 1306 | for (uInt i=0; i < ton.nrow(); ++i) {
|
---|
| 1307 |
|
---|
| 1308 | Double onint, refint;
|
---|
| 1309 | Vector<Float> specon, specref;
|
---|
| 1310 | // to store scalar (mean) tsys
|
---|
| 1311 | Vector<Float> tsysref;
|
---|
| 1312 | outintCol.get(i, onint);
|
---|
| 1313 | refintCol.get(i, refint);
|
---|
| 1314 | outspecCol.get(i, specon);
|
---|
| 1315 | refspecCol.get(i, specref);
|
---|
| 1316 | Vector<uChar> flagref, flagon;
|
---|
| 1317 | outflagCol.get(i, flagon);
|
---|
| 1318 | refflagCol.get(i, flagref);
|
---|
| 1319 | reftsysCol.get(i, tsysref);
|
---|
| 1320 |
|
---|
| 1321 | Float tsysrefscalar;
|
---|
| 1322 | if ( tsysv > 0.0 ) {
|
---|
| 1323 | ostringstream oss;
|
---|
| 1324 | Float elev;
|
---|
| 1325 | refelevCol.get(i, elev);
|
---|
[2658] | 1326 | os << "user specified Tsys = " << tsysv;
|
---|
[1391] | 1327 | // do recalc elevation if EL = 0
|
---|
| 1328 | if ( elev == 0 ) {
|
---|
| 1329 | throw(AipsError("EL=0, elevation data is missing."));
|
---|
| 1330 | } else {
|
---|
| 1331 | if ( tau <= 0.0 ) {
|
---|
| 1332 | throw(AipsError("Valid tau is not supplied."));
|
---|
| 1333 | } else {
|
---|
| 1334 | tsysrefscalar = tsysv * exp(tau/elev);
|
---|
| 1335 | }
|
---|
| 1336 | }
|
---|
[2658] | 1337 | os << ", corrected (for El) tsys= "<<tsysrefscalar;
|
---|
[1391] | 1338 | }
|
---|
| 1339 | else {
|
---|
| 1340 | tsysrefscalar = tsysref[0];
|
---|
| 1341 | }
|
---|
| 1342 | //get quotient spectrum
|
---|
| 1343 | MaskedArray<Float> mref = maskedArray(specref, flagref);
|
---|
| 1344 | MaskedArray<Float> mon = maskedArray(specon, flagon);
|
---|
| 1345 | MaskedArray<Float> specres = tsysrefscalar*((mon - mref)/mref);
|
---|
| 1346 | Double resint = onint*refint*smoothref/(onint+refint*smoothref);
|
---|
| 1347 |
|
---|
| 1348 | //Debug
|
---|
| 1349 | //cerr<<"Tsys used="<<tsysrefscalar<<endl;
|
---|
[1819] | 1350 | //LogIO os( LogOrigin( "STMath", "dosigref", WHERE ) ) ;
|
---|
| 1351 | //os<<"Tsys used="<<tsysrefscalar<<LogIO::POST;
|
---|
[1391] | 1352 | // fill the result, replay signal tsys by reference tsys
|
---|
| 1353 | outintCol.put(i, resint);
|
---|
| 1354 | outspecCol.put(i, specres.getArray());
|
---|
| 1355 | outflagCol.put(i, flagsFromMA(specres));
|
---|
| 1356 | outtsysCol.put(i, tsysref);
|
---|
| 1357 | }
|
---|
| 1358 | ++sit;
|
---|
| 1359 | ++s2it;
|
---|
| 1360 | }
|
---|
[2695] | 1361 |
|
---|
| 1362 | out->setFluxUnit("K");
|
---|
| 1363 |
|
---|
[1391] | 1364 | return out;
|
---|
| 1365 | }
|
---|
| 1366 |
|
---|
| 1367 | CountedPtr< Scantable > STMath::donod(const casa::CountedPtr<Scantable>& s,
|
---|
| 1368 | const std::vector<int>& scans,
|
---|
| 1369 | int smoothref,
|
---|
| 1370 | casa::Float tsysv,
|
---|
| 1371 | casa::Float tau,
|
---|
| 1372 | casa::Float tcal )
|
---|
| 1373 |
|
---|
| 1374 | {
|
---|
| 1375 | setInsitu(false);
|
---|
[2658] | 1376 | LogIO os( casa::LogOrigin( "STMath", "donod()"));
|
---|
[1391] | 1377 | STSelector sel;
|
---|
[1819] | 1378 | std::vector<int> scan1, scan2, beams, types;
|
---|
[1391] | 1379 | std::vector< vector<int> > scanpair;
|
---|
[1819] | 1380 | //std::vector<string> calstate;
|
---|
| 1381 | std::vector<int> calstate;
|
---|
[1391] | 1382 | String msg;
|
---|
| 1383 |
|
---|
| 1384 | CountedPtr< Scantable > s1b1on, s1b1off, s1b2on, s1b2off;
|
---|
| 1385 | CountedPtr< Scantable > s2b1on, s2b1off, s2b2on, s2b2off;
|
---|
| 1386 |
|
---|
| 1387 | std::vector< CountedPtr< Scantable > > sctables;
|
---|
| 1388 | sctables.push_back(s1b1on);
|
---|
| 1389 | sctables.push_back(s1b1off);
|
---|
| 1390 | sctables.push_back(s1b2on);
|
---|
| 1391 | sctables.push_back(s1b2off);
|
---|
| 1392 | sctables.push_back(s2b1on);
|
---|
| 1393 | sctables.push_back(s2b1off);
|
---|
| 1394 | sctables.push_back(s2b2on);
|
---|
| 1395 | sctables.push_back(s2b2off);
|
---|
| 1396 |
|
---|
| 1397 | //check scanlist
|
---|
| 1398 | int n=s->checkScanInfo(scans);
|
---|
| 1399 | if (n==1) {
|
---|
| 1400 | throw(AipsError("Incorrect scan pairs. "));
|
---|
| 1401 | }
|
---|
| 1402 |
|
---|
| 1403 | // Assume scans contain only a pair of consecutive scan numbers.
|
---|
| 1404 | // It is assumed that first beam, b1, is on target.
|
---|
| 1405 | // There is no check if the first beam is on or not.
|
---|
| 1406 | if ( scans.size()==1 ) {
|
---|
| 1407 | scan1.push_back(scans[0]);
|
---|
| 1408 | scan2.push_back(scans[0]+1);
|
---|
| 1409 | } else if ( scans.size()==2 ) {
|
---|
| 1410 | scan1.push_back(scans[0]);
|
---|
| 1411 | scan2.push_back(scans[1]);
|
---|
| 1412 | } else {
|
---|
| 1413 | if ( scans.size()%2 == 0 ) {
|
---|
| 1414 | for (uInt i=0; i<scans.size(); i++) {
|
---|
| 1415 | if (i%2 == 0) {
|
---|
| 1416 | scan1.push_back(scans[i]);
|
---|
| 1417 | }
|
---|
| 1418 | else {
|
---|
| 1419 | scan2.push_back(scans[i]);
|
---|
| 1420 | }
|
---|
| 1421 | }
|
---|
| 1422 | } else {
|
---|
| 1423 | throw(AipsError("Odd numbers of scans, cannot form pairs."));
|
---|
| 1424 | }
|
---|
| 1425 | }
|
---|
| 1426 | scanpair.push_back(scan1);
|
---|
| 1427 | scanpair.push_back(scan2);
|
---|
[1819] | 1428 | //calstate.push_back("*calon");
|
---|
| 1429 | //calstate.push_back("*[^calon]");
|
---|
| 1430 | calstate.push_back(SrcType::NODCAL);
|
---|
| 1431 | calstate.push_back(SrcType::NOD);
|
---|
[1391] | 1432 | CountedPtr< Scantable > ws = getScantable(s, false);
|
---|
| 1433 | uInt l=0;
|
---|
| 1434 | while ( l < sctables.size() ) {
|
---|
| 1435 | for (uInt i=0; i < 2; i++) {
|
---|
| 1436 | for (uInt j=0; j < 2; j++) {
|
---|
| 1437 | for (uInt k=0; k < 2; k++) {
|
---|
| 1438 | sel.reset();
|
---|
| 1439 | sel.setScans(scanpair[i]);
|
---|
[1819] | 1440 | //sel.setName(calstate[k]);
|
---|
| 1441 | types.clear();
|
---|
| 1442 | types.push_back(calstate[k]);
|
---|
| 1443 | sel.setTypes(types);
|
---|
[1391] | 1444 | beams.clear();
|
---|
| 1445 | beams.push_back(j);
|
---|
| 1446 | sel.setBeams(beams);
|
---|
| 1447 | ws->setSelection(sel);
|
---|
| 1448 | sctables[l]= getScantable(ws, false);
|
---|
| 1449 | l++;
|
---|
| 1450 | }
|
---|
| 1451 | }
|
---|
| 1452 | }
|
---|
| 1453 | }
|
---|
| 1454 |
|
---|
| 1455 | // replace here by splitData or getData functionality
|
---|
| 1456 | CountedPtr< Scantable > sig1;
|
---|
| 1457 | CountedPtr< Scantable > ref1;
|
---|
| 1458 | CountedPtr< Scantable > sig2;
|
---|
| 1459 | CountedPtr< Scantable > ref2;
|
---|
| 1460 | CountedPtr< Scantable > calb1;
|
---|
| 1461 | CountedPtr< Scantable > calb2;
|
---|
| 1462 |
|
---|
| 1463 | msg=String("Processing dototalpower for subset of the data");
|
---|
[2658] | 1464 | os << msg << LogIO::POST;
|
---|
[1391] | 1465 | // Debug for IRC CS data
|
---|
| 1466 | //float tcal1=7.0;
|
---|
| 1467 | //float tcal2=4.0;
|
---|
| 1468 | sig1 = dototalpower(sctables[0], sctables[1], tcal=tcal);
|
---|
| 1469 | ref1 = dototalpower(sctables[2], sctables[3], tcal=tcal);
|
---|
| 1470 | ref2 = dototalpower(sctables[4], sctables[5], tcal=tcal);
|
---|
| 1471 | sig2 = dototalpower(sctables[6], sctables[7], tcal=tcal);
|
---|
| 1472 |
|
---|
| 1473 | // correction of user-specified tsys for elevation here
|
---|
| 1474 |
|
---|
| 1475 | // dosigref calibration
|
---|
| 1476 | msg=String("Processing dosigref for subset of the data");
|
---|
[2658] | 1477 | os << msg << endl;
|
---|
[1391] | 1478 | calb1=dosigref(sig1,ref2,smoothref,tsysv,tau);
|
---|
| 1479 | calb2=dosigref(sig2,ref1,smoothref,tsysv,tau);
|
---|
| 1480 |
|
---|
| 1481 | // iteration by scanno or cycle no.
|
---|
| 1482 | Table& tcalb1 = calb1->table();
|
---|
| 1483 | Table& tcalb2 = calb2->table();
|
---|
| 1484 | TableIterator sit(tcalb1, "SCANNO");
|
---|
| 1485 | TableIterator s2it(tcalb2, "SCANNO");
|
---|
| 1486 | while ( !sit.pastEnd() ) {
|
---|
| 1487 | Table t1 = sit.table();
|
---|
| 1488 | Table t2= s2it.table();
|
---|
| 1489 | ArrayColumn<Float> outspecCol(t1, "SPECTRA");
|
---|
| 1490 | ArrayColumn<Float> outtsysCol(t1, "TSYS");
|
---|
| 1491 | ArrayColumn<uChar> outflagCol(t1, "FLAGTRA");
|
---|
| 1492 | ScalarColumn<Double> outintCol(t1, "INTERVAL");
|
---|
| 1493 | ArrayColumn<Float> t2specCol(t2, "SPECTRA");
|
---|
| 1494 | ROArrayColumn<Float> t2tsysCol(t2, "TSYS");
|
---|
| 1495 | ArrayColumn<uChar> t2flagCol(t2, "FLAGTRA");
|
---|
| 1496 | ROScalarColumn<Double> t2intCol(t2, "INTERVAL");
|
---|
| 1497 | for (uInt i=0; i < t1.nrow(); ++i) {
|
---|
| 1498 | Vector<Float> spec1, spec2;
|
---|
| 1499 | // to store scalar (mean) tsys
|
---|
| 1500 | Vector<Float> tsys1, tsys2;
|
---|
| 1501 | Vector<uChar> flag1, flag2;
|
---|
| 1502 | Double tint1, tint2;
|
---|
| 1503 | outspecCol.get(i, spec1);
|
---|
| 1504 | t2specCol.get(i, spec2);
|
---|
| 1505 | outflagCol.get(i, flag1);
|
---|
| 1506 | t2flagCol.get(i, flag2);
|
---|
| 1507 | outtsysCol.get(i, tsys1);
|
---|
| 1508 | t2tsysCol.get(i, tsys2);
|
---|
| 1509 | outintCol.get(i, tint1);
|
---|
| 1510 | t2intCol.get(i, tint2);
|
---|
| 1511 | // average
|
---|
| 1512 | // assume scalar tsys for weights
|
---|
| 1513 | Float wt1, wt2, tsyssq1, tsyssq2;
|
---|
| 1514 | tsyssq1 = tsys1[0]*tsys1[0];
|
---|
| 1515 | tsyssq2 = tsys2[0]*tsys2[0];
|
---|
| 1516 | wt1 = Float(tint1)/tsyssq1;
|
---|
| 1517 | wt2 = Float(tint2)/tsyssq2;
|
---|
| 1518 | Float invsumwt=1/(wt1+wt2);
|
---|
| 1519 | MaskedArray<Float> mspec1 = maskedArray(spec1, flag1);
|
---|
| 1520 | MaskedArray<Float> mspec2 = maskedArray(spec2, flag2);
|
---|
| 1521 | MaskedArray<Float> avspec = invsumwt * (wt1*mspec1 + wt2*mspec2);
|
---|
| 1522 | //Array<Float> avtsys = Float(0.5) * (tsys1 + tsys2);
|
---|
| 1523 | // cerr<< "Tsys1="<<tsys1<<" Tsys2="<<tsys2<<endl;
|
---|
[1819] | 1524 | // LogIO os( LogOrigin( "STMath", "donod", WHERE ) ) ;
|
---|
| 1525 | // os<< "Tsys1="<<tsys1<<" Tsys2="<<tsys2<<LogIO::POST;
|
---|
[1391] | 1526 | tsys1[0] = sqrt(tsyssq1 + tsyssq2);
|
---|
| 1527 | Array<Float> avtsys = tsys1;
|
---|
| 1528 |
|
---|
| 1529 | outspecCol.put(i, avspec.getArray());
|
---|
| 1530 | outflagCol.put(i, flagsFromMA(avspec));
|
---|
| 1531 | outtsysCol.put(i, avtsys);
|
---|
| 1532 | }
|
---|
| 1533 | ++sit;
|
---|
| 1534 | ++s2it;
|
---|
| 1535 | }
|
---|
[2695] | 1536 |
|
---|
| 1537 | calb1->setFluxUnit("K");
|
---|
| 1538 |
|
---|
[1391] | 1539 | return calb1;
|
---|
| 1540 | }
|
---|
| 1541 |
|
---|
| 1542 | //GBTIDL version of frequency switched data calibration
|
---|
| 1543 | CountedPtr< Scantable > STMath::dofs( const CountedPtr< Scantable >& s,
|
---|
| 1544 | const std::vector<int>& scans,
|
---|
| 1545 | int smoothref,
|
---|
| 1546 | casa::Float tsysv,
|
---|
| 1547 | casa::Float tau,
|
---|
| 1548 | casa::Float tcal )
|
---|
| 1549 | {
|
---|
| 1550 |
|
---|
| 1551 |
|
---|
[2163] | 1552 | (void) scans; //currently unused
|
---|
[1391] | 1553 | STSelector sel;
|
---|
| 1554 | CountedPtr< Scantable > ws = getScantable(s, false);
|
---|
| 1555 | CountedPtr< Scantable > sig, sigwcal, ref, refwcal;
|
---|
[1819] | 1556 | CountedPtr< Scantable > calsig, calref, out, out1, out2;
|
---|
| 1557 | Bool nofold=False;
|
---|
| 1558 | vector<int> types ;
|
---|
[1391] | 1559 |
|
---|
| 1560 | //split the data
|
---|
[1819] | 1561 | //sel.setName("*_fs");
|
---|
| 1562 | types.push_back( SrcType::FSON ) ;
|
---|
| 1563 | sel.setTypes( types ) ;
|
---|
[1391] | 1564 | ws->setSelection(sel);
|
---|
| 1565 | sig = getScantable(ws,false);
|
---|
| 1566 | sel.reset();
|
---|
[1819] | 1567 | types.clear() ;
|
---|
| 1568 | //sel.setName("*_fs_calon");
|
---|
| 1569 | types.push_back( SrcType::FONCAL ) ;
|
---|
| 1570 | sel.setTypes( types ) ;
|
---|
[1391] | 1571 | ws->setSelection(sel);
|
---|
| 1572 | sigwcal = getScantable(ws,false);
|
---|
| 1573 | sel.reset();
|
---|
[1819] | 1574 | types.clear() ;
|
---|
| 1575 | //sel.setName("*_fsr");
|
---|
| 1576 | types.push_back( SrcType::FSOFF ) ;
|
---|
| 1577 | sel.setTypes( types ) ;
|
---|
[1391] | 1578 | ws->setSelection(sel);
|
---|
| 1579 | ref = getScantable(ws,false);
|
---|
| 1580 | sel.reset();
|
---|
[1819] | 1581 | types.clear() ;
|
---|
| 1582 | //sel.setName("*_fsr_calon");
|
---|
| 1583 | types.push_back( SrcType::FOFFCAL ) ;
|
---|
| 1584 | sel.setTypes( types ) ;
|
---|
[1391] | 1585 | ws->setSelection(sel);
|
---|
| 1586 | refwcal = getScantable(ws,false);
|
---|
[1819] | 1587 | sel.reset() ;
|
---|
| 1588 | types.clear() ;
|
---|
[1391] | 1589 |
|
---|
| 1590 | calsig = dototalpower(sigwcal, sig, tcal=tcal);
|
---|
| 1591 | calref = dototalpower(refwcal, ref, tcal=tcal);
|
---|
| 1592 |
|
---|
[1819] | 1593 | out1=dosigref(calsig,calref,smoothref,tsysv,tau);
|
---|
| 1594 | out2=dosigref(calref,calsig,smoothref,tsysv,tau);
|
---|
[1391] | 1595 |
|
---|
[1819] | 1596 | Table& tabout1=out1->table();
|
---|
| 1597 | Table& tabout2=out2->table();
|
---|
| 1598 | ROScalarColumn<uInt> freqidCol1(tabout1, "FREQ_ID");
|
---|
| 1599 | ScalarColumn<uInt> freqidCol2(tabout2, "FREQ_ID");
|
---|
| 1600 | ROArrayColumn<Float> specCol(tabout2, "SPECTRA");
|
---|
| 1601 | Vector<Float> spec; specCol.get(0, spec);
|
---|
| 1602 | uInt nchan = spec.nelements();
|
---|
| 1603 | uInt freqid1; freqidCol1.get(0,freqid1);
|
---|
| 1604 | uInt freqid2; freqidCol2.get(0,freqid2);
|
---|
| 1605 | Double rp1, rp2, rv1, rv2, inc1, inc2;
|
---|
| 1606 | out1->frequencies().getEntry(rp1, rv1, inc1, freqid1);
|
---|
| 1607 | out2->frequencies().getEntry(rp2, rv2, inc2, freqid2);
|
---|
| 1608 | //cerr << out1->frequencies().table().nrow() << " " << out2->frequencies().table().nrow() << endl ;
|
---|
| 1609 | //LogIO os( LogOrigin( "STMath", "dofs()", WHERE ) ) ;
|
---|
| 1610 | //os << out1->frequencies().table().nrow() << " " << out2->frequencies().table().nrow() << LogIO::POST ;
|
---|
| 1611 | if (rp1==rp2) {
|
---|
| 1612 | Double foffset = rv1 - rv2;
|
---|
| 1613 | uInt choffset = static_cast<uInt>(foffset/abs(inc2));
|
---|
| 1614 | if (choffset >= nchan) {
|
---|
| 1615 | //cerr<<"out-band frequency switching, no folding"<<endl;
|
---|
| 1616 | LogIO os( LogOrigin( "STMath", "dofs()", WHERE ) ) ;
|
---|
| 1617 | os<<"out-band frequency switching, no folding"<<LogIO::POST;
|
---|
| 1618 | nofold = True;
|
---|
| 1619 | }
|
---|
| 1620 | }
|
---|
| 1621 |
|
---|
| 1622 | if (nofold) {
|
---|
| 1623 | std::vector< CountedPtr< Scantable > > tabs;
|
---|
| 1624 | tabs.push_back(out1);
|
---|
| 1625 | tabs.push_back(out2);
|
---|
| 1626 | out = merge(tabs);
|
---|
| 1627 | }
|
---|
| 1628 | else {
|
---|
| 1629 | //out = out1;
|
---|
| 1630 | Double choffset = ( rv1 - rv2 ) / inc2 ;
|
---|
| 1631 | out = dofold( out1, out2, choffset ) ;
|
---|
| 1632 | }
|
---|
[2695] | 1633 |
|
---|
| 1634 | out->setFluxUnit("K");
|
---|
| 1635 |
|
---|
[1391] | 1636 | return out;
|
---|
| 1637 | }
|
---|
| 1638 |
|
---|
[1819] | 1639 | CountedPtr<Scantable> STMath::dofold( const CountedPtr<Scantable> &sig,
|
---|
| 1640 | const CountedPtr<Scantable> &ref,
|
---|
| 1641 | Double choffset,
|
---|
| 1642 | Double choffset2 )
|
---|
| 1643 | {
|
---|
| 1644 | LogIO os( LogOrigin( "STMath", "dofold", WHERE ) ) ;
|
---|
| 1645 | os << "choffset=" << choffset << " choffset2=" << choffset2 << LogIO::POST ;
|
---|
[1391] | 1646 |
|
---|
[1819] | 1647 | // output scantable
|
---|
| 1648 | CountedPtr<Scantable> out = getScantable( sig, false ) ;
|
---|
| 1649 |
|
---|
| 1650 | // separate choffset to integer part and decimal part
|
---|
| 1651 | Int ioffset = (Int)choffset ;
|
---|
| 1652 | Double doffset = choffset - ioffset ;
|
---|
| 1653 | Int ioffset2 = (Int)choffset2 ;
|
---|
| 1654 | Double doffset2 = choffset2 - ioffset2 ;
|
---|
| 1655 | os << "ioffset=" << ioffset << " doffset=" << doffset << LogIO::POST ;
|
---|
| 1656 | os << "ioffset2=" << ioffset2 << " doffset2=" << doffset2 << LogIO::POST ;
|
---|
| 1657 |
|
---|
| 1658 | // get column
|
---|
| 1659 | ROArrayColumn<Float> specCol1( sig->table(), "SPECTRA" ) ;
|
---|
| 1660 | ROArrayColumn<Float> specCol2( ref->table(), "SPECTRA" ) ;
|
---|
| 1661 | ROArrayColumn<Float> tsysCol1( sig->table(), "TSYS" ) ;
|
---|
| 1662 | ROArrayColumn<Float> tsysCol2( ref->table(), "TSYS" ) ;
|
---|
| 1663 | ROArrayColumn<uChar> flagCol1( sig->table(), "FLAGTRA" ) ;
|
---|
| 1664 | ROArrayColumn<uChar> flagCol2( ref->table(), "FLAGTRA" ) ;
|
---|
| 1665 | ROScalarColumn<Double> mjdCol1( sig->table(), "TIME" ) ;
|
---|
| 1666 | ROScalarColumn<Double> mjdCol2( ref->table(), "TIME" ) ;
|
---|
| 1667 | ROScalarColumn<Double> intervalCol1( sig->table(), "INTERVAL" ) ;
|
---|
| 1668 | ROScalarColumn<Double> intervalCol2( ref->table(), "INTERVAL" ) ;
|
---|
| 1669 |
|
---|
| 1670 | // check
|
---|
| 1671 | if ( ioffset == 0 ) {
|
---|
| 1672 | LogIO os( LogOrigin( "STMath", "dofold()", WHERE ) ) ;
|
---|
| 1673 | os << "channel offset is zero, no folding" << LogIO::POST ;
|
---|
| 1674 | return out ;
|
---|
| 1675 | }
|
---|
| 1676 | int nchan = ref->nchan() ;
|
---|
| 1677 | if ( abs(ioffset) >= nchan ) {
|
---|
| 1678 | LogIO os( LogOrigin( "STMath", "dofold()", WHERE ) ) ;
|
---|
| 1679 | os << "out-band frequency switching, no folding" << LogIO::POST ;
|
---|
| 1680 | return out ;
|
---|
| 1681 | }
|
---|
| 1682 |
|
---|
| 1683 | // attach column for output scantable
|
---|
| 1684 | ArrayColumn<Float> specColOut( out->table(), "SPECTRA" ) ;
|
---|
| 1685 | ArrayColumn<uChar> flagColOut( out->table(), "FLAGTRA" ) ;
|
---|
| 1686 | ArrayColumn<Float> tsysColOut( out->table(), "TSYS" ) ;
|
---|
| 1687 | ScalarColumn<Double> mjdColOut( out->table(), "TIME" ) ;
|
---|
| 1688 | ScalarColumn<Double> intervalColOut( out->table(), "INTERVAL" ) ;
|
---|
| 1689 | ScalarColumn<uInt> fidColOut( out->table(), "FREQ_ID" ) ;
|
---|
| 1690 |
|
---|
| 1691 | // for each row
|
---|
| 1692 | // assume that the data order are same between sig and ref
|
---|
| 1693 | RowAccumulator acc( asap::W_TINTSYS ) ;
|
---|
| 1694 | for ( int i = 0 ; i < sig->nrow() ; i++ ) {
|
---|
| 1695 | // get values
|
---|
| 1696 | Vector<Float> spsig ;
|
---|
| 1697 | specCol1.get( i, spsig ) ;
|
---|
| 1698 | Vector<Float> spref ;
|
---|
| 1699 | specCol2.get( i, spref ) ;
|
---|
| 1700 | Vector<Float> tsyssig ;
|
---|
| 1701 | tsysCol1.get( i, tsyssig ) ;
|
---|
| 1702 | Vector<Float> tsysref ;
|
---|
| 1703 | tsysCol2.get( i, tsysref ) ;
|
---|
| 1704 | Vector<uChar> flagsig ;
|
---|
| 1705 | flagCol1.get( i, flagsig ) ;
|
---|
| 1706 | Vector<uChar> flagref ;
|
---|
| 1707 | flagCol2.get( i, flagref ) ;
|
---|
| 1708 | Double timesig ;
|
---|
| 1709 | mjdCol1.get( i, timesig ) ;
|
---|
| 1710 | Double timeref ;
|
---|
| 1711 | mjdCol2.get( i, timeref ) ;
|
---|
| 1712 | Double intsig ;
|
---|
| 1713 | intervalCol1.get( i, intsig ) ;
|
---|
| 1714 | Double intref ;
|
---|
| 1715 | intervalCol2.get( i, intref ) ;
|
---|
| 1716 |
|
---|
| 1717 | // shift reference spectra
|
---|
| 1718 | int refchan = spref.nelements() ;
|
---|
| 1719 | Vector<Float> sspref( spref.nelements() ) ;
|
---|
| 1720 | Vector<Float> stsysref( tsysref.nelements() ) ;
|
---|
| 1721 | Vector<uChar> sflagref( flagref.nelements() ) ;
|
---|
| 1722 | if ( ioffset > 0 ) {
|
---|
| 1723 | // SPECTRA and FLAGTRA
|
---|
| 1724 | for ( int j = 0 ; j < refchan-ioffset ; j++ ) {
|
---|
| 1725 | sspref[j] = spref[j+ioffset] ;
|
---|
| 1726 | sflagref[j] = flagref[j+ioffset] ;
|
---|
| 1727 | }
|
---|
| 1728 | for ( int j = refchan-ioffset ; j < refchan ; j++ ) {
|
---|
| 1729 | sspref[j] = spref[j-refchan+ioffset] ;
|
---|
| 1730 | sflagref[j] = flagref[j-refchan+ioffset] ;
|
---|
| 1731 | }
|
---|
| 1732 | spref = sspref.copy() ;
|
---|
| 1733 | flagref = sflagref.copy() ;
|
---|
| 1734 | for ( int j = 0 ; j < refchan - 1 ; j++ ) {
|
---|
| 1735 | sspref[j] = doffset * spref[j+1] + ( 1.0 - doffset ) * spref[j] ;
|
---|
| 1736 | sflagref[j] = flagref[j+1] + flagref[j] ;
|
---|
| 1737 | }
|
---|
| 1738 | sspref[refchan-1] = doffset * spref[0] + ( 1.0 - doffset ) * spref[refchan-1] ;
|
---|
| 1739 | sflagref[refchan-1] = flagref[0] + flagref[refchan-1] ;
|
---|
| 1740 |
|
---|
| 1741 | // TSYS
|
---|
| 1742 | if ( spref.nelements() == tsysref.nelements() ) {
|
---|
| 1743 | for ( int j = 0 ; j < refchan-ioffset ; j++ ) {
|
---|
| 1744 | stsysref[j] = tsysref[j+ioffset] ;
|
---|
| 1745 | }
|
---|
| 1746 | for ( int j = refchan-ioffset ; j < refchan ; j++ ) {
|
---|
| 1747 | stsysref[j] = tsysref[j-refchan+ioffset] ;
|
---|
| 1748 | }
|
---|
| 1749 | tsysref = stsysref.copy() ;
|
---|
| 1750 | for ( int j = 0 ; j < refchan - 1 ; j++ ) {
|
---|
| 1751 | stsysref[j] = doffset * tsysref[j+1] + ( 1.0 - doffset ) * tsysref[j] ;
|
---|
| 1752 | }
|
---|
| 1753 | stsysref[refchan-1] = doffset * tsysref[0] + ( 1.0 - doffset ) * tsysref[refchan-1] ;
|
---|
| 1754 | }
|
---|
| 1755 | }
|
---|
| 1756 | else {
|
---|
| 1757 | // SPECTRA and FLAGTRA
|
---|
| 1758 | for ( int j = 0 ; j < abs(ioffset) ; j++ ) {
|
---|
| 1759 | sspref[j] = spref[refchan+ioffset+j] ;
|
---|
| 1760 | sflagref[j] = flagref[refchan+ioffset+j] ;
|
---|
| 1761 | }
|
---|
| 1762 | for ( int j = abs(ioffset) ; j < refchan ; j++ ) {
|
---|
| 1763 | sspref[j] = spref[j+ioffset] ;
|
---|
| 1764 | sflagref[j] = flagref[j+ioffset] ;
|
---|
| 1765 | }
|
---|
| 1766 | spref = sspref.copy() ;
|
---|
| 1767 | flagref = sflagref.copy() ;
|
---|
| 1768 | sspref[0] = doffset * spref[refchan-1] + ( 1.0 - doffset ) * spref[0] ;
|
---|
| 1769 | sflagref[0] = flagref[0] + flagref[refchan-1] ;
|
---|
| 1770 | for ( int j = 1 ; j < refchan ; j++ ) {
|
---|
| 1771 | sspref[j] = doffset * spref[j-1] + ( 1.0 - doffset ) * spref[j] ;
|
---|
| 1772 | sflagref[j] = flagref[j-1] + flagref[j] ;
|
---|
| 1773 | }
|
---|
| 1774 | // TSYS
|
---|
| 1775 | if ( spref.nelements() == tsysref.nelements() ) {
|
---|
| 1776 | for ( int j = 0 ; j < abs(ioffset) ; j++ ) {
|
---|
| 1777 | stsysref[j] = tsysref[refchan+ioffset+j] ;
|
---|
| 1778 | }
|
---|
| 1779 | for ( int j = abs(ioffset) ; j < refchan ; j++ ) {
|
---|
| 1780 | stsysref[j] = tsysref[j+ioffset] ;
|
---|
| 1781 | }
|
---|
| 1782 | tsysref = stsysref.copy() ;
|
---|
| 1783 | stsysref[0] = doffset * tsysref[refchan-1] + ( 1.0 - doffset ) * tsysref[0] ;
|
---|
| 1784 | for ( int j = 1 ; j < refchan ; j++ ) {
|
---|
| 1785 | stsysref[j] = doffset * tsysref[j-1] + ( 1.0 - doffset ) * tsysref[j] ;
|
---|
| 1786 | }
|
---|
| 1787 | }
|
---|
| 1788 | }
|
---|
| 1789 |
|
---|
| 1790 | // shift signal spectra if necessary (only for APEX?)
|
---|
| 1791 | if ( choffset2 != 0.0 ) {
|
---|
| 1792 | int sigchan = spsig.nelements() ;
|
---|
| 1793 | Vector<Float> sspsig( spsig.nelements() ) ;
|
---|
| 1794 | Vector<Float> stsyssig( tsyssig.nelements() ) ;
|
---|
| 1795 | Vector<uChar> sflagsig( flagsig.nelements() ) ;
|
---|
| 1796 | if ( ioffset2 > 0 ) {
|
---|
| 1797 | // SPECTRA and FLAGTRA
|
---|
| 1798 | for ( int j = 0 ; j < sigchan-ioffset2 ; j++ ) {
|
---|
| 1799 | sspsig[j] = spsig[j+ioffset2] ;
|
---|
| 1800 | sflagsig[j] = flagsig[j+ioffset2] ;
|
---|
| 1801 | }
|
---|
| 1802 | for ( int j = sigchan-ioffset2 ; j < sigchan ; j++ ) {
|
---|
| 1803 | sspsig[j] = spsig[j-sigchan+ioffset2] ;
|
---|
| 1804 | sflagsig[j] = flagsig[j-sigchan+ioffset2] ;
|
---|
| 1805 | }
|
---|
| 1806 | spsig = sspsig.copy() ;
|
---|
| 1807 | flagsig = sflagsig.copy() ;
|
---|
| 1808 | for ( int j = 0 ; j < sigchan - 1 ; j++ ) {
|
---|
| 1809 | sspsig[j] = doffset2 * spsig[j+1] + ( 1.0 - doffset2 ) * spsig[j] ;
|
---|
| 1810 | sflagsig[j] = flagsig[j+1] || flagsig[j] ;
|
---|
| 1811 | }
|
---|
| 1812 | sspsig[sigchan-1] = doffset2 * spsig[0] + ( 1.0 - doffset2 ) * spsig[sigchan-1] ;
|
---|
| 1813 | sflagsig[sigchan-1] = flagsig[0] || flagsig[sigchan-1] ;
|
---|
| 1814 | // TSTS
|
---|
| 1815 | if ( spsig.nelements() == tsyssig.nelements() ) {
|
---|
| 1816 | for ( int j = 0 ; j < sigchan-ioffset2 ; j++ ) {
|
---|
| 1817 | stsyssig[j] = tsyssig[j+ioffset2] ;
|
---|
| 1818 | }
|
---|
| 1819 | for ( int j = sigchan-ioffset2 ; j < sigchan ; j++ ) {
|
---|
| 1820 | stsyssig[j] = tsyssig[j-sigchan+ioffset2] ;
|
---|
| 1821 | }
|
---|
| 1822 | tsyssig = stsyssig.copy() ;
|
---|
| 1823 | for ( int j = 0 ; j < sigchan - 1 ; j++ ) {
|
---|
| 1824 | stsyssig[j] = doffset2 * tsyssig[j+1] + ( 1.0 - doffset2 ) * tsyssig[j] ;
|
---|
| 1825 | }
|
---|
| 1826 | stsyssig[sigchan-1] = doffset2 * tsyssig[0] + ( 1.0 - doffset2 ) * tsyssig[sigchan-1] ;
|
---|
| 1827 | }
|
---|
| 1828 | }
|
---|
| 1829 | else {
|
---|
| 1830 | // SPECTRA and FLAGTRA
|
---|
| 1831 | for ( int j = 0 ; j < abs(ioffset2) ; j++ ) {
|
---|
| 1832 | sspsig[j] = spsig[sigchan+ioffset2+j] ;
|
---|
| 1833 | sflagsig[j] = flagsig[sigchan+ioffset2+j] ;
|
---|
| 1834 | }
|
---|
| 1835 | for ( int j = abs(ioffset2) ; j < sigchan ; j++ ) {
|
---|
| 1836 | sspsig[j] = spsig[j+ioffset2] ;
|
---|
| 1837 | sflagsig[j] = flagsig[j+ioffset2] ;
|
---|
| 1838 | }
|
---|
| 1839 | spsig = sspsig.copy() ;
|
---|
| 1840 | flagsig = sflagsig.copy() ;
|
---|
| 1841 | sspsig[0] = doffset2 * spsig[sigchan-1] + ( 1.0 - doffset2 ) * spsig[0] ;
|
---|
| 1842 | sflagsig[0] = flagsig[0] + flagsig[sigchan-1] ;
|
---|
| 1843 | for ( int j = 1 ; j < sigchan ; j++ ) {
|
---|
| 1844 | sspsig[j] = doffset2 * spsig[j-1] + ( 1.0 - doffset2 ) * spsig[j] ;
|
---|
| 1845 | sflagsig[j] = flagsig[j-1] + flagsig[j] ;
|
---|
| 1846 | }
|
---|
| 1847 | // TSYS
|
---|
| 1848 | if ( spsig.nelements() == tsyssig.nelements() ) {
|
---|
| 1849 | for ( int j = 0 ; j < abs(ioffset2) ; j++ ) {
|
---|
| 1850 | stsyssig[j] = tsyssig[sigchan+ioffset2+j] ;
|
---|
| 1851 | }
|
---|
| 1852 | for ( int j = abs(ioffset2) ; j < sigchan ; j++ ) {
|
---|
| 1853 | stsyssig[j] = tsyssig[j+ioffset2] ;
|
---|
| 1854 | }
|
---|
| 1855 | tsyssig = stsyssig.copy() ;
|
---|
| 1856 | stsyssig[0] = doffset2 * tsyssig[sigchan-1] + ( 1.0 - doffset2 ) * tsyssig[0] ;
|
---|
| 1857 | for ( int j = 1 ; j < sigchan ; j++ ) {
|
---|
| 1858 | stsyssig[j] = doffset2 * tsyssig[j-1] + ( 1.0 - doffset2 ) * tsyssig[j] ;
|
---|
| 1859 | }
|
---|
| 1860 | }
|
---|
| 1861 | }
|
---|
| 1862 | }
|
---|
| 1863 |
|
---|
| 1864 | // folding
|
---|
| 1865 | acc.add( spsig, !flagsig, tsyssig, intsig, timesig ) ;
|
---|
| 1866 | acc.add( sspref, !sflagref, stsysref, intref, timeref ) ;
|
---|
| 1867 |
|
---|
| 1868 | // put result
|
---|
| 1869 | specColOut.put( i, acc.getSpectrum() ) ;
|
---|
| 1870 | const Vector<Bool> &msk = acc.getMask() ;
|
---|
| 1871 | Vector<uChar> flg( msk.shape() ) ;
|
---|
| 1872 | convertArray( flg, !msk ) ;
|
---|
| 1873 | flagColOut.put( i, flg ) ;
|
---|
| 1874 | tsysColOut.put( i, acc.getTsys() ) ;
|
---|
| 1875 | intervalColOut.put( i, acc.getInterval() ) ;
|
---|
| 1876 | mjdColOut.put( i, acc.getTime() ) ;
|
---|
| 1877 | // change FREQ_ID to unshifted IF setting (only for APEX?)
|
---|
| 1878 | if ( choffset2 != 0.0 ) {
|
---|
| 1879 | uInt freqid = fidColOut( 0 ) ; // assume single-IF data
|
---|
| 1880 | double refpix, refval, increment ;
|
---|
| 1881 | out->frequencies().getEntry( refpix, refval, increment, freqid ) ;
|
---|
| 1882 | refval -= choffset * increment ;
|
---|
| 1883 | uInt newfreqid = out->frequencies().addEntry( refpix, refval, increment ) ;
|
---|
| 1884 | Vector<uInt> freqids = fidColOut.getColumn() ;
|
---|
| 1885 | for ( uInt j = 0 ; j < freqids.nelements() ; j++ ) {
|
---|
| 1886 | if ( freqids[j] == freqid )
|
---|
| 1887 | freqids[j] = newfreqid ;
|
---|
| 1888 | }
|
---|
| 1889 | fidColOut.putColumn( freqids ) ;
|
---|
| 1890 | }
|
---|
| 1891 |
|
---|
| 1892 | acc.reset() ;
|
---|
| 1893 | }
|
---|
| 1894 |
|
---|
| 1895 | return out ;
|
---|
| 1896 | }
|
---|
| 1897 |
|
---|
| 1898 |
|
---|
[805] | 1899 | CountedPtr< Scantable > STMath::freqSwitch( const CountedPtr< Scantable >& in )
|
---|
| 1900 | {
|
---|
| 1901 | // make copy or reference
|
---|
| 1902 | CountedPtr< Scantable > out = getScantable(in, false);
|
---|
| 1903 | Table& tout = out->table();
|
---|
[1008] | 1904 | Block<String> cols(4);
|
---|
[805] | 1905 | cols[0] = String("SCANNO");
|
---|
[1008] | 1906 | cols[1] = String("CYCLENO");
|
---|
| 1907 | cols[2] = String("BEAMNO");
|
---|
| 1908 | cols[3] = String("POLNO");
|
---|
[805] | 1909 | TableIterator iter(tout, cols);
|
---|
| 1910 | while (!iter.pastEnd()) {
|
---|
| 1911 | Table subt = iter.table();
|
---|
| 1912 | // this should leave us with two rows for the two IFs....if not ignore
|
---|
| 1913 | if (subt.nrow() != 2 ) {
|
---|
| 1914 | continue;
|
---|
[701] | 1915 | }
|
---|
[1008] | 1916 | ArrayColumn<Float> specCol(subt, "SPECTRA");
|
---|
| 1917 | ArrayColumn<Float> tsysCol(subt, "TSYS");
|
---|
| 1918 | ArrayColumn<uChar> flagCol(subt, "FLAGTRA");
|
---|
[805] | 1919 | Vector<Float> onspec,offspec, ontsys, offtsys;
|
---|
| 1920 | Vector<uChar> onflag, offflag;
|
---|
| 1921 | tsysCol.get(0, ontsys); tsysCol.get(1, offtsys);
|
---|
| 1922 | specCol.get(0, onspec); specCol.get(1, offspec);
|
---|
| 1923 | flagCol.get(0, onflag); flagCol.get(1, offflag);
|
---|
| 1924 | MaskedArray<Float> on = maskedArray(onspec, onflag);
|
---|
| 1925 | MaskedArray<Float> off = maskedArray(offspec, offflag);
|
---|
| 1926 | MaskedArray<Float> oncopy = on.copy();
|
---|
[248] | 1927 |
|
---|
[805] | 1928 | on /= off; on -= 1.0f;
|
---|
| 1929 | on *= ontsys[0];
|
---|
| 1930 | off /= oncopy; off -= 1.0f;
|
---|
| 1931 | off *= offtsys[0];
|
---|
| 1932 | specCol.put(0, on.getArray());
|
---|
| 1933 | const Vector<Bool>& m0 = on.getMask();
|
---|
| 1934 | Vector<uChar> flags0(m0.shape());
|
---|
| 1935 | convertArray(flags0, !m0);
|
---|
| 1936 | flagCol.put(0, flags0);
|
---|
[234] | 1937 |
|
---|
[805] | 1938 | specCol.put(1, off.getArray());
|
---|
| 1939 | const Vector<Bool>& m1 = off.getMask();
|
---|
| 1940 | Vector<uChar> flags1(m1.shape());
|
---|
| 1941 | convertArray(flags1, !m1);
|
---|
| 1942 | flagCol.put(1, flags1);
|
---|
[867] | 1943 | ++iter;
|
---|
[130] | 1944 | }
|
---|
[780] | 1945 |
|
---|
[805] | 1946 | return out;
|
---|
[9] | 1947 | }
|
---|
[48] | 1948 |
|
---|
[805] | 1949 | std::vector< float > STMath::statistic( const CountedPtr< Scantable > & in,
|
---|
| 1950 | const std::vector< bool > & mask,
|
---|
| 1951 | const std::string& which )
|
---|
[130] | 1952 | {
|
---|
| 1953 |
|
---|
[805] | 1954 | Vector<Bool> m(mask);
|
---|
| 1955 | const Table& tab = in->table();
|
---|
| 1956 | ROArrayColumn<Float> specCol(tab, "SPECTRA");
|
---|
| 1957 | ROArrayColumn<uChar> flagCol(tab, "FLAGTRA");
|
---|
| 1958 | std::vector<float> out;
|
---|
| 1959 | for (uInt i=0; i < tab.nrow(); ++i ) {
|
---|
| 1960 | Vector<Float> spec; specCol.get(i, spec);
|
---|
[867] | 1961 | Vector<uChar> flag; flagCol.get(i, flag);
|
---|
| 1962 | MaskedArray<Float> ma = maskedArray(spec, flag);
|
---|
| 1963 | float outstat = 0.0;
|
---|
[805] | 1964 | if ( spec.nelements() == m.nelements() ) {
|
---|
| 1965 | outstat = mathutil::statistics(which, ma(m));
|
---|
| 1966 | } else {
|
---|
| 1967 | outstat = mathutil::statistics(which, ma);
|
---|
| 1968 | }
|
---|
| 1969 | out.push_back(outstat);
|
---|
[234] | 1970 | }
|
---|
[805] | 1971 | return out;
|
---|
[130] | 1972 | }
|
---|
| 1973 |
|
---|
[1907] | 1974 | std::vector< float > STMath::statisticRow( const CountedPtr< Scantable > & in,
|
---|
| 1975 | const std::vector< bool > & mask,
|
---|
| 1976 | const std::string& which,
|
---|
| 1977 | int row )
|
---|
| 1978 | {
|
---|
| 1979 |
|
---|
| 1980 | Vector<Bool> m(mask);
|
---|
| 1981 | const Table& tab = in->table();
|
---|
| 1982 | ROArrayColumn<Float> specCol(tab, "SPECTRA");
|
---|
| 1983 | ROArrayColumn<uChar> flagCol(tab, "FLAGTRA");
|
---|
| 1984 | std::vector<float> out;
|
---|
| 1985 |
|
---|
| 1986 | Vector<Float> spec; specCol.get(row, spec);
|
---|
| 1987 | Vector<uChar> flag; flagCol.get(row, flag);
|
---|
| 1988 | MaskedArray<Float> ma = maskedArray(spec, flag);
|
---|
| 1989 | float outstat = 0.0;
|
---|
| 1990 | if ( spec.nelements() == m.nelements() ) {
|
---|
| 1991 | outstat = mathutil::statistics(which, ma(m));
|
---|
| 1992 | } else {
|
---|
| 1993 | outstat = mathutil::statistics(which, ma);
|
---|
| 1994 | }
|
---|
| 1995 | out.push_back(outstat);
|
---|
| 1996 |
|
---|
| 1997 | return out;
|
---|
| 1998 | }
|
---|
| 1999 |
|
---|
[1819] | 2000 | std::vector< int > STMath::minMaxChan( const CountedPtr< Scantable > & in,
|
---|
| 2001 | const std::vector< bool > & mask,
|
---|
| 2002 | const std::string& which )
|
---|
| 2003 | {
|
---|
| 2004 |
|
---|
| 2005 | Vector<Bool> m(mask);
|
---|
| 2006 | const Table& tab = in->table();
|
---|
| 2007 | ROArrayColumn<Float> specCol(tab, "SPECTRA");
|
---|
| 2008 | ROArrayColumn<uChar> flagCol(tab, "FLAGTRA");
|
---|
| 2009 | std::vector<int> out;
|
---|
| 2010 | for (uInt i=0; i < tab.nrow(); ++i ) {
|
---|
| 2011 | Vector<Float> spec; specCol.get(i, spec);
|
---|
| 2012 | Vector<uChar> flag; flagCol.get(i, flag);
|
---|
| 2013 | MaskedArray<Float> ma = maskedArray(spec, flag);
|
---|
| 2014 | if (ma.ndim() != 1) {
|
---|
| 2015 | throw (ArrayError(
|
---|
| 2016 | "std::vector<int> STMath::minMaxChan("
|
---|
| 2017 | "ContedPtr<Scantable> &in, std::vector<bool> &mask, "
|
---|
| 2018 | " std::string &which)"
|
---|
| 2019 | " - MaskedArray is not 1D"));
|
---|
| 2020 | }
|
---|
| 2021 | IPosition outpos(1,0);
|
---|
| 2022 | if ( spec.nelements() == m.nelements() ) {
|
---|
| 2023 | outpos = mathutil::minMaxPos(which, ma(m));
|
---|
| 2024 | } else {
|
---|
| 2025 | outpos = mathutil::minMaxPos(which, ma);
|
---|
| 2026 | }
|
---|
| 2027 | out.push_back(outpos[0]);
|
---|
| 2028 | }
|
---|
| 2029 | return out;
|
---|
| 2030 | }
|
---|
| 2031 |
|
---|
[805] | 2032 | CountedPtr< Scantable > STMath::bin( const CountedPtr< Scantable > & in,
|
---|
| 2033 | int width )
|
---|
[144] | 2034 | {
|
---|
[841] | 2035 | if ( !in->getSelection().empty() ) throw(AipsError("Can't bin subset of the data."));
|
---|
[805] | 2036 | CountedPtr< Scantable > out = getScantable(in, false);
|
---|
| 2037 | Table& tout = out->table();
|
---|
| 2038 | out->frequencies().rescale(width, "BIN");
|
---|
| 2039 | ArrayColumn<Float> specCol(tout, "SPECTRA");
|
---|
| 2040 | ArrayColumn<uChar> flagCol(tout, "FLAGTRA");
|
---|
[2437] | 2041 | ArrayColumn<Float> tsysCol(tout, "TSYS");
|
---|
| 2042 |
|
---|
[805] | 2043 | for (uInt i=0; i < tout.nrow(); ++i ) {
|
---|
| 2044 | MaskedArray<Float> main = maskedArray(specCol(i), flagCol(i));
|
---|
| 2045 | MaskedArray<Float> maout;
|
---|
| 2046 | LatticeUtilities::bin(maout, main, 0, Int(width));
|
---|
| 2047 | specCol.put(i, maout.getArray());
|
---|
| 2048 | flagCol.put(i, flagsFromMA(maout));
|
---|
[2437] | 2049 | if (tsysCol(i).nelements() == specCol(i).nelements()) {
|
---|
| 2050 | MaskedArray<Float> matsysin = maskedArray(tsysCol(i), flagCol(i));
|
---|
| 2051 | MaskedArray<Float> matsysout;
|
---|
| 2052 | LatticeUtilities::bin(matsysout, matsysin, 0, Int(width));
|
---|
| 2053 | tsysCol.put(i, matsysout.getArray());
|
---|
| 2054 | }
|
---|
[805] | 2055 | // take only the first binned spectrum's length for the deprecated
|
---|
| 2056 | // global header item nChan
|
---|
| 2057 | if (i==0) tout.rwKeywordSet().define(String("nChan"),
|
---|
| 2058 | Int(maout.getArray().nelements()));
|
---|
[169] | 2059 | }
|
---|
[805] | 2060 | return out;
|
---|
[146] | 2061 | }
|
---|
| 2062 |
|
---|
[805] | 2063 | CountedPtr< Scantable > STMath::resample( const CountedPtr< Scantable >& in,
|
---|
| 2064 | const std::string& method,
|
---|
| 2065 | float width )
|
---|
[299] | 2066 | //
|
---|
| 2067 | // Should add the possibility of width being specified in km/s. This means
|
---|
[780] | 2068 | // that for each freqID (SpectralCoordinate) we will need to convert to an
|
---|
| 2069 | // average channel width (say at the reference pixel). Then we would need
|
---|
| 2070 | // to be careful to make sure each spectrum (of different freqID)
|
---|
[299] | 2071 | // is the same length.
|
---|
| 2072 | //
|
---|
| 2073 | {
|
---|
[996] | 2074 | //InterpolateArray1D<Double,Float>::InterpolationMethod interp;
|
---|
[805] | 2075 | Int interpMethod(stringToIMethod(method));
|
---|
[299] | 2076 |
|
---|
[805] | 2077 | CountedPtr< Scantable > out = getScantable(in, false);
|
---|
| 2078 | Table& tout = out->table();
|
---|
[299] | 2079 |
|
---|
| 2080 | // Resample SpectralCoordinates (one per freqID)
|
---|
[805] | 2081 | out->frequencies().rescale(width, "RESAMPLE");
|
---|
| 2082 | TableIterator iter(tout, "IFNO");
|
---|
| 2083 | TableRow row(tout);
|
---|
| 2084 | while ( !iter.pastEnd() ) {
|
---|
| 2085 | Table tab = iter.table();
|
---|
| 2086 | ArrayColumn<Float> specCol(tab, "SPECTRA");
|
---|
| 2087 | //ArrayColumn<Float> tsysCol(tout, "TSYS");
|
---|
| 2088 | ArrayColumn<uChar> flagCol(tab, "FLAGTRA");
|
---|
| 2089 | Vector<Float> spec;
|
---|
| 2090 | Vector<uChar> flag;
|
---|
| 2091 | specCol.get(0,spec); // the number of channels should be constant per IF
|
---|
| 2092 | uInt nChanIn = spec.nelements();
|
---|
| 2093 | Vector<Float> xIn(nChanIn); indgen(xIn);
|
---|
| 2094 | Int fac = Int(nChanIn/width);
|
---|
| 2095 | Vector<Float> xOut(fac+10); // 10 to be safe - resize later
|
---|
| 2096 | uInt k = 0;
|
---|
| 2097 | Float x = 0.0;
|
---|
| 2098 | while (x < Float(nChanIn) ) {
|
---|
| 2099 | xOut(k) = x;
|
---|
| 2100 | k++;
|
---|
| 2101 | x += width;
|
---|
| 2102 | }
|
---|
| 2103 | uInt nChanOut = k;
|
---|
| 2104 | xOut.resize(nChanOut, True);
|
---|
| 2105 | // process all rows for this IFNO
|
---|
| 2106 | Vector<Float> specOut;
|
---|
| 2107 | Vector<Bool> maskOut;
|
---|
| 2108 | Vector<uChar> flagOut;
|
---|
| 2109 | for (uInt i=0; i < tab.nrow(); ++i) {
|
---|
| 2110 | specCol.get(i, spec);
|
---|
| 2111 | flagCol.get(i, flag);
|
---|
| 2112 | Vector<Bool> mask(flag.nelements());
|
---|
| 2113 | convertArray(mask, flag);
|
---|
[299] | 2114 |
|
---|
[805] | 2115 | IPosition shapeIn(spec.shape());
|
---|
| 2116 | //sh.nchan = nChanOut;
|
---|
| 2117 | InterpolateArray1D<Float,Float>::interpolate(specOut, maskOut, xOut,
|
---|
| 2118 | xIn, spec, mask,
|
---|
| 2119 | interpMethod, True, True);
|
---|
| 2120 | /// @todo do the same for channel based Tsys
|
---|
| 2121 | flagOut.resize(maskOut.nelements());
|
---|
| 2122 | convertArray(flagOut, maskOut);
|
---|
| 2123 | specCol.put(i, specOut);
|
---|
| 2124 | flagCol.put(i, flagOut);
|
---|
| 2125 | }
|
---|
| 2126 | ++iter;
|
---|
[299] | 2127 | }
|
---|
| 2128 |
|
---|
[805] | 2129 | return out;
|
---|
| 2130 | }
|
---|
[299] | 2131 |
|
---|
[805] | 2132 | STMath::imethod STMath::stringToIMethod(const std::string& in)
|
---|
| 2133 | {
|
---|
| 2134 | static STMath::imap lookup;
|
---|
[299] | 2135 |
|
---|
[805] | 2136 | // initialize the lookup table if necessary
|
---|
| 2137 | if ( lookup.empty() ) {
|
---|
[926] | 2138 | lookup["nearest"] = InterpolateArray1D<Double,Float>::nearestNeighbour;
|
---|
| 2139 | lookup["linear"] = InterpolateArray1D<Double,Float>::linear;
|
---|
| 2140 | lookup["cubic"] = InterpolateArray1D<Double,Float>::cubic;
|
---|
| 2141 | lookup["spline"] = InterpolateArray1D<Double,Float>::spline;
|
---|
[299] | 2142 | }
|
---|
| 2143 |
|
---|
[805] | 2144 | STMath::imap::const_iterator iter = lookup.find(in);
|
---|
[299] | 2145 |
|
---|
[805] | 2146 | if ( lookup.end() == iter ) {
|
---|
| 2147 | std::string message = in;
|
---|
| 2148 | message += " is not a valid interpolation mode";
|
---|
| 2149 | throw(AipsError(message));
|
---|
[299] | 2150 | }
|
---|
[805] | 2151 | return iter->second;
|
---|
[299] | 2152 | }
|
---|
| 2153 |
|
---|
[805] | 2154 | WeightType STMath::stringToWeight(const std::string& in)
|
---|
[146] | 2155 | {
|
---|
[805] | 2156 | static std::map<std::string, WeightType> lookup;
|
---|
[434] | 2157 |
|
---|
[805] | 2158 | // initialize the lookup table if necessary
|
---|
| 2159 | if ( lookup.empty() ) {
|
---|
[1569] | 2160 | lookup["NONE"] = asap::W_NONE;
|
---|
| 2161 | lookup["TINT"] = asap::W_TINT;
|
---|
| 2162 | lookup["TINTSYS"] = asap::W_TINTSYS;
|
---|
| 2163 | lookup["TSYS"] = asap::W_TSYS;
|
---|
| 2164 | lookup["VAR"] = asap::W_VAR;
|
---|
[805] | 2165 | }
|
---|
[434] | 2166 |
|
---|
[805] | 2167 | std::map<std::string, WeightType>::const_iterator iter = lookup.find(in);
|
---|
[294] | 2168 |
|
---|
[805] | 2169 | if ( lookup.end() == iter ) {
|
---|
| 2170 | std::string message = in;
|
---|
| 2171 | message += " is not a valid weighting mode";
|
---|
| 2172 | throw(AipsError(message));
|
---|
| 2173 | }
|
---|
| 2174 | return iter->second;
|
---|
[146] | 2175 | }
|
---|
| 2176 |
|
---|
[805] | 2177 | CountedPtr< Scantable > STMath::gainElevation( const CountedPtr< Scantable >& in,
|
---|
[867] | 2178 | const vector< float > & coeff,
|
---|
[805] | 2179 | const std::string & filename,
|
---|
| 2180 | const std::string& method)
|
---|
[165] | 2181 | {
|
---|
[2658] | 2182 | LogIO os( LogOrigin( "STMath", "gainElevation", WHERE ) ) ;
|
---|
[805] | 2183 | // Get elevation data from Scantable and convert to degrees
|
---|
| 2184 | CountedPtr< Scantable > out = getScantable(in, false);
|
---|
[926] | 2185 | Table& tab = out->table();
|
---|
[805] | 2186 | ROScalarColumn<Float> elev(tab, "ELEVATION");
|
---|
| 2187 | Vector<Float> x = elev.getColumn();
|
---|
| 2188 | x *= Float(180 / C::pi); // Degrees
|
---|
[165] | 2189 |
|
---|
[867] | 2190 | Vector<Float> coeffs(coeff);
|
---|
[805] | 2191 | const uInt nc = coeffs.nelements();
|
---|
| 2192 | if ( filename.length() > 0 && nc > 0 ) {
|
---|
| 2193 | throw(AipsError("You must choose either polynomial coefficients or an ascii file, not both"));
|
---|
[315] | 2194 | }
|
---|
[165] | 2195 |
|
---|
[805] | 2196 | // Correct
|
---|
| 2197 | if ( nc > 0 || filename.length() == 0 ) {
|
---|
| 2198 | // Find instrument
|
---|
| 2199 | Bool throwit = True;
|
---|
| 2200 | Instrument inst =
|
---|
[878] | 2201 | STAttr::convertInstrument(tab.keywordSet().asString("AntennaName"),
|
---|
[805] | 2202 | throwit);
|
---|
[165] | 2203 |
|
---|
[805] | 2204 | // Set polynomial
|
---|
| 2205 | Polynomial<Float>* ppoly = 0;
|
---|
| 2206 | Vector<Float> coeff;
|
---|
| 2207 | String msg;
|
---|
| 2208 | if ( nc > 0 ) {
|
---|
[1618] | 2209 | ppoly = new Polynomial<Float>(nc-1);
|
---|
[805] | 2210 | coeff = coeffs;
|
---|
| 2211 | msg = String("user");
|
---|
| 2212 | } else {
|
---|
[878] | 2213 | STAttr sdAttr;
|
---|
[805] | 2214 | coeff = sdAttr.gainElevationPoly(inst);
|
---|
[1618] | 2215 | ppoly = new Polynomial<Float>(coeff.nelements()-1);
|
---|
[805] | 2216 | msg = String("built in");
|
---|
| 2217 | }
|
---|
[532] | 2218 |
|
---|
[805] | 2219 | if ( coeff.nelements() > 0 ) {
|
---|
| 2220 | ppoly->setCoefficients(coeff);
|
---|
| 2221 | } else {
|
---|
| 2222 | delete ppoly;
|
---|
| 2223 | throw(AipsError("There is no known gain-elevation polynomial known for this instrument"));
|
---|
| 2224 | }
|
---|
[2658] | 2225 | os << "Making polynomial correction with " << msg << " coefficients:" << endl;
|
---|
| 2226 | os << " " << coeff << LogIO::POST;
|
---|
[805] | 2227 | const uInt nrow = tab.nrow();
|
---|
| 2228 | Vector<Float> factor(nrow);
|
---|
| 2229 | for ( uInt i=0; i < nrow; ++i ) {
|
---|
| 2230 | factor[i] = 1.0 / (*ppoly)(x[i]);
|
---|
| 2231 | }
|
---|
| 2232 | delete ppoly;
|
---|
| 2233 | scaleByVector(tab, factor, true);
|
---|
[532] | 2234 |
|
---|
[805] | 2235 | } else {
|
---|
| 2236 | // Read and correct
|
---|
[2658] | 2237 | os << "Making correction from ascii Table" << LogIO::POST;
|
---|
[805] | 2238 | scaleFromAsciiTable(tab, filename, method, x, true);
|
---|
[532] | 2239 | }
|
---|
[805] | 2240 | return out;
|
---|
| 2241 | }
|
---|
[165] | 2242 |
|
---|
[805] | 2243 | void STMath::scaleFromAsciiTable(Table& in, const std::string& filename,
|
---|
| 2244 | const std::string& method,
|
---|
| 2245 | const Vector<Float>& xout, bool dotsys)
|
---|
| 2246 | {
|
---|
[165] | 2247 |
|
---|
[805] | 2248 | // Read gain-elevation ascii file data into a Table.
|
---|
[165] | 2249 |
|
---|
[805] | 2250 | String formatString;
|
---|
| 2251 | Table tbl = readAsciiTable(formatString, Table::Memory, filename, "", "", False);
|
---|
| 2252 | scaleFromTable(in, tbl, method, xout, dotsys);
|
---|
| 2253 | }
|
---|
[165] | 2254 |
|
---|
[805] | 2255 | void STMath::scaleFromTable(Table& in,
|
---|
| 2256 | const Table& table,
|
---|
| 2257 | const std::string& method,
|
---|
| 2258 | const Vector<Float>& xout, bool dotsys)
|
---|
| 2259 | {
|
---|
[780] | 2260 |
|
---|
[805] | 2261 | ROScalarColumn<Float> geElCol(table, "ELEVATION");
|
---|
| 2262 | ROScalarColumn<Float> geFacCol(table, "FACTOR");
|
---|
| 2263 | Vector<Float> xin = geElCol.getColumn();
|
---|
| 2264 | Vector<Float> yin = geFacCol.getColumn();
|
---|
| 2265 | Vector<Bool> maskin(xin.nelements(),True);
|
---|
[165] | 2266 |
|
---|
[805] | 2267 | // Interpolate (and extrapolate) with desired method
|
---|
[532] | 2268 |
|
---|
[996] | 2269 | InterpolateArray1D<Double,Float>::InterpolationMethod interp = stringToIMethod(method);
|
---|
[165] | 2270 |
|
---|
[805] | 2271 | Vector<Float> yout;
|
---|
| 2272 | Vector<Bool> maskout;
|
---|
| 2273 | InterpolateArray1D<Float,Float>::interpolate(yout, maskout, xout,
|
---|
[996] | 2274 | xin, yin, maskin, interp,
|
---|
[805] | 2275 | True, True);
|
---|
[165] | 2276 |
|
---|
[805] | 2277 | scaleByVector(in, Float(1.0)/yout, dotsys);
|
---|
[165] | 2278 | }
|
---|
[167] | 2279 |
|
---|
[805] | 2280 | void STMath::scaleByVector( Table& in,
|
---|
| 2281 | const Vector< Float >& factor,
|
---|
| 2282 | bool dotsys )
|
---|
[177] | 2283 | {
|
---|
[805] | 2284 | uInt nrow = in.nrow();
|
---|
| 2285 | if ( factor.nelements() != nrow ) {
|
---|
| 2286 | throw(AipsError("factors.nelements() != table.nelements()"));
|
---|
| 2287 | }
|
---|
| 2288 | ArrayColumn<Float> specCol(in, "SPECTRA");
|
---|
| 2289 | ArrayColumn<uChar> flagCol(in, "FLAGTRA");
|
---|
| 2290 | ArrayColumn<Float> tsysCol(in, "TSYS");
|
---|
| 2291 | for (uInt i=0; i < nrow; ++i) {
|
---|
| 2292 | MaskedArray<Float> ma = maskedArray(specCol(i), flagCol(i));
|
---|
| 2293 | ma *= factor[i];
|
---|
| 2294 | specCol.put(i, ma.getArray());
|
---|
| 2295 | flagCol.put(i, flagsFromMA(ma));
|
---|
| 2296 | if ( dotsys ) {
|
---|
[926] | 2297 | Vector<Float> tsys = tsysCol(i);
|
---|
[805] | 2298 | tsys *= factor[i];
|
---|
[926] | 2299 | tsysCol.put(i,tsys);
|
---|
[805] | 2300 | }
|
---|
| 2301 | }
|
---|
[177] | 2302 | }
|
---|
| 2303 |
|
---|
[805] | 2304 | CountedPtr< Scantable > STMath::convertFlux( const CountedPtr< Scantable >& in,
|
---|
| 2305 | float d, float etaap,
|
---|
| 2306 | float jyperk )
|
---|
[221] | 2307 | {
|
---|
[2658] | 2308 | LogIO os( LogOrigin( "STMath", "convertFlux", WHERE ) ) ;
|
---|
| 2309 |
|
---|
[805] | 2310 | CountedPtr< Scantable > out = getScantable(in, false);
|
---|
| 2311 | Table& tab = in->table();
|
---|
[2474] | 2312 | Table& outtab = out->table();
|
---|
[805] | 2313 | Unit fluxUnit(tab.keywordSet().asString("FluxUnit"));
|
---|
[221] | 2314 | Unit K(String("K"));
|
---|
| 2315 | Unit JY(String("Jy"));
|
---|
[701] | 2316 |
|
---|
[805] | 2317 | bool tokelvin = true;
|
---|
| 2318 | Double cfac = 1.0;
|
---|
[716] | 2319 |
|
---|
[805] | 2320 | if ( fluxUnit == JY ) {
|
---|
[2658] | 2321 | os << "Converting to K" << LogIO::POST;
|
---|
[701] | 2322 | Quantum<Double> t(1.0,fluxUnit);
|
---|
| 2323 | Quantum<Double> t2 = t.get(JY);
|
---|
[805] | 2324 | cfac = (t2 / t).getValue(); // value to Jy
|
---|
[780] | 2325 |
|
---|
[805] | 2326 | tokelvin = true;
|
---|
| 2327 | out->setFluxUnit("K");
|
---|
| 2328 | } else if ( fluxUnit == K ) {
|
---|
[2658] | 2329 | os << "Converting to Jy" << LogIO::POST;
|
---|
[701] | 2330 | Quantum<Double> t(1.0,fluxUnit);
|
---|
| 2331 | Quantum<Double> t2 = t.get(K);
|
---|
[805] | 2332 | cfac = (t2 / t).getValue(); // value to K
|
---|
[780] | 2333 |
|
---|
[805] | 2334 | tokelvin = false;
|
---|
| 2335 | out->setFluxUnit("Jy");
|
---|
[221] | 2336 | } else {
|
---|
[701] | 2337 | throw(AipsError("Unrecognized brightness units in Table - must be consistent with Jy or K"));
|
---|
[221] | 2338 | }
|
---|
[701] | 2339 | // Make sure input values are converted to either Jy or K first...
|
---|
[805] | 2340 | Float factor = cfac;
|
---|
[221] | 2341 |
|
---|
[701] | 2342 | // Select method
|
---|
[805] | 2343 | if (jyperk > 0.0) {
|
---|
| 2344 | factor *= jyperk;
|
---|
| 2345 | if ( tokelvin ) factor = 1.0 / jyperk;
|
---|
[2658] | 2346 | os << "Jy/K = " << jyperk << LogIO::POST;
|
---|
[2474] | 2347 | Vector<Float> factors(outtab.nrow(), factor);
|
---|
| 2348 | scaleByVector(outtab,factors, false);
|
---|
[805] | 2349 | } else if ( etaap > 0.0) {
|
---|
[1319] | 2350 | if (d < 0) {
|
---|
| 2351 | Instrument inst =
|
---|
[1570] | 2352 | STAttr::convertInstrument(tab.keywordSet().asString("AntennaName"),
|
---|
[1319] | 2353 | True);
|
---|
| 2354 | STAttr sda;
|
---|
| 2355 | d = sda.diameter(inst);
|
---|
| 2356 | }
|
---|
[996] | 2357 | jyperk = STAttr::findJyPerK(etaap, d);
|
---|
[2658] | 2358 | os << "Jy/K = " << jyperk << LogIO::POST;
|
---|
[805] | 2359 | factor *= jyperk;
|
---|
| 2360 | if ( tokelvin ) {
|
---|
[701] | 2361 | factor = 1.0 / factor;
|
---|
| 2362 | }
|
---|
[2474] | 2363 | Vector<Float> factors(outtab.nrow(), factor);
|
---|
| 2364 | scaleByVector(outtab, factors, False);
|
---|
[354] | 2365 | } else {
|
---|
[780] | 2366 |
|
---|
[701] | 2367 | // OK now we must deal with automatic look up of values.
|
---|
| 2368 | // We must also deal with the fact that the factors need
|
---|
| 2369 | // to be computed per IF and may be different and may
|
---|
| 2370 | // change per integration.
|
---|
[780] | 2371 |
|
---|
[2658] | 2372 | os <<"Looking up conversion factors" << LogIO::POST;
|
---|
[805] | 2373 | convertBrightnessUnits(out, tokelvin, cfac);
|
---|
[701] | 2374 | }
|
---|
[805] | 2375 |
|
---|
| 2376 | return out;
|
---|
[221] | 2377 | }
|
---|
| 2378 |
|
---|
[805] | 2379 | void STMath::convertBrightnessUnits( CountedPtr<Scantable>& in,
|
---|
| 2380 | bool tokelvin, float cfac )
|
---|
[227] | 2381 | {
|
---|
[805] | 2382 | Table& table = in->table();
|
---|
| 2383 | Instrument inst =
|
---|
[878] | 2384 | STAttr::convertInstrument(table.keywordSet().asString("AntennaName"), True);
|
---|
[805] | 2385 | TableIterator iter(table, "FREQ_ID");
|
---|
| 2386 | STFrequencies stfreqs = in->frequencies();
|
---|
[878] | 2387 | STAttr sdAtt;
|
---|
[805] | 2388 | while (!iter.pastEnd()) {
|
---|
| 2389 | Table tab = iter.table();
|
---|
| 2390 | ArrayColumn<Float> specCol(tab, "SPECTRA");
|
---|
| 2391 | ArrayColumn<uChar> flagCol(tab, "FLAGTRA");
|
---|
| 2392 | ROScalarColumn<uInt> freqidCol(tab, "FREQ_ID");
|
---|
| 2393 | MEpoch::ROScalarColumn timeCol(tab, "TIME");
|
---|
[234] | 2394 |
|
---|
[805] | 2395 | uInt freqid; freqidCol.get(0, freqid);
|
---|
| 2396 | Vector<Float> tmpspec; specCol.get(0, tmpspec);
|
---|
[878] | 2397 | // STAttr.JyPerK has a Vector interface... change sometime.
|
---|
[805] | 2398 | Vector<Float> freqs(1,stfreqs.getRefFreq(freqid, tmpspec.nelements()));
|
---|
| 2399 | for ( uInt i=0; i<tab.nrow(); ++i) {
|
---|
| 2400 | Float jyperk = (sdAtt.JyPerK(inst, timeCol(i), freqs))[0];
|
---|
| 2401 | Float factor = cfac * jyperk;
|
---|
| 2402 | if ( tokelvin ) factor = Float(1.0) / factor;
|
---|
| 2403 | MaskedArray<Float> ma = maskedArray(specCol(i), flagCol(i));
|
---|
| 2404 | ma *= factor;
|
---|
| 2405 | specCol.put(i, ma.getArray());
|
---|
| 2406 | flagCol.put(i, flagsFromMA(ma));
|
---|
| 2407 | }
|
---|
[867] | 2408 | ++iter;
|
---|
[234] | 2409 | }
|
---|
[230] | 2410 | }
|
---|
[227] | 2411 |
|
---|
[805] | 2412 | CountedPtr< Scantable > STMath::opacity( const CountedPtr< Scantable > & in,
|
---|
[1689] | 2413 | const std::vector<float>& tau )
|
---|
[234] | 2414 | {
|
---|
[805] | 2415 | CountedPtr< Scantable > out = getScantable(in, false);
|
---|
[926] | 2416 |
|
---|
[1689] | 2417 | Table outtab = out->table();
|
---|
| 2418 |
|
---|
[2125] | 2419 | const Int ntau = uInt(tau.size());
|
---|
[1689] | 2420 | std::vector<float>::const_iterator tauit = tau.begin();
|
---|
| 2421 | AlwaysAssert((ntau == 1 || ntau == in->nif() || ntau == in->nif() * in->npol()),
|
---|
| 2422 | AipsError);
|
---|
| 2423 | TableIterator iiter(outtab, "IFNO");
|
---|
| 2424 | while ( !iiter.pastEnd() ) {
|
---|
| 2425 | Table itab = iiter.table();
|
---|
[2278] | 2426 | TableIterator piter(itab, "POLNO");
|
---|
[1689] | 2427 | while ( !piter.pastEnd() ) {
|
---|
| 2428 | Table tab = piter.table();
|
---|
| 2429 | ROScalarColumn<Float> elev(tab, "ELEVATION");
|
---|
| 2430 | ArrayColumn<Float> specCol(tab, "SPECTRA");
|
---|
| 2431 | ArrayColumn<uChar> flagCol(tab, "FLAGTRA");
|
---|
| 2432 | ArrayColumn<Float> tsysCol(tab, "TSYS");
|
---|
| 2433 | for ( uInt i=0; i<tab.nrow(); ++i) {
|
---|
| 2434 | Float zdist = Float(C::pi_2) - elev(i);
|
---|
| 2435 | Float factor = exp(*tauit/cos(zdist));
|
---|
| 2436 | MaskedArray<Float> ma = maskedArray(specCol(i), flagCol(i));
|
---|
| 2437 | ma *= factor;
|
---|
| 2438 | specCol.put(i, ma.getArray());
|
---|
| 2439 | flagCol.put(i, flagsFromMA(ma));
|
---|
| 2440 | Vector<Float> tsys;
|
---|
| 2441 | tsysCol.get(i, tsys);
|
---|
| 2442 | tsys *= factor;
|
---|
| 2443 | tsysCol.put(i, tsys);
|
---|
| 2444 | }
|
---|
| 2445 | if (ntau == in->nif()*in->npol() ) {
|
---|
| 2446 | tauit++;
|
---|
| 2447 | }
|
---|
| 2448 | piter++;
|
---|
| 2449 | }
|
---|
| 2450 | if (ntau >= in->nif() ) {
|
---|
| 2451 | tauit++;
|
---|
| 2452 | }
|
---|
| 2453 | iiter++;
|
---|
[234] | 2454 | }
|
---|
[805] | 2455 | return out;
|
---|
[234] | 2456 | }
|
---|
| 2457 |
|
---|
[1373] | 2458 | CountedPtr< Scantable > STMath::smoothOther( const CountedPtr< Scantable >& in,
|
---|
| 2459 | const std::string& kernel,
|
---|
[1570] | 2460 | float width, int order)
|
---|
[1373] | 2461 | {
|
---|
| 2462 | CountedPtr< Scantable > out = getScantable(in, false);
|
---|
[2125] | 2463 | Table table = out->table();
|
---|
| 2464 |
|
---|
| 2465 | TableIterator iter(table, "IFNO");
|
---|
| 2466 | while (!iter.pastEnd()) {
|
---|
| 2467 | Table tab = iter.table();
|
---|
| 2468 | ArrayColumn<Float> specCol(tab, "SPECTRA");
|
---|
| 2469 | ArrayColumn<uChar> flagCol(tab, "FLAGTRA");
|
---|
| 2470 | Vector<Float> spec;
|
---|
| 2471 | Vector<uChar> flag;
|
---|
| 2472 | for (uInt i = 0; i < tab.nrow(); ++i) {
|
---|
| 2473 | specCol.get(i, spec);
|
---|
| 2474 | flagCol.get(i, flag);
|
---|
| 2475 | Vector<Bool> mask(flag.nelements());
|
---|
| 2476 | convertArray(mask, flag);
|
---|
| 2477 | Vector<Float> specout;
|
---|
| 2478 | Vector<Bool> maskout;
|
---|
| 2479 | if (kernel == "hanning") {
|
---|
| 2480 | mathutil::hanning(specout, maskout, spec, !mask);
|
---|
| 2481 | } else if (kernel == "rmedian") {
|
---|
| 2482 | mathutil::runningMedian(specout, maskout, spec , mask, width);
|
---|
| 2483 | } else if (kernel == "poly") {
|
---|
| 2484 | mathutil::polyfit(specout, maskout, spec, !mask, width, order);
|
---|
| 2485 | }
|
---|
| 2486 |
|
---|
| 2487 | for (uInt j = 0; j < flag.nelements(); ++j) {
|
---|
| 2488 | uChar userFlag = 1 << 7;
|
---|
| 2489 | if (maskout[j]==True) userFlag = 0 << 7;
|
---|
| 2490 | flag(j) = userFlag;
|
---|
| 2491 | }
|
---|
| 2492 |
|
---|
| 2493 | flagCol.put(i, flag);
|
---|
| 2494 | specCol.put(i, specout);
|
---|
[1373] | 2495 | }
|
---|
[2125] | 2496 | ++iter;
|
---|
[1373] | 2497 | }
|
---|
| 2498 | return out;
|
---|
| 2499 | }
|
---|
| 2500 |
|
---|
[805] | 2501 | CountedPtr< Scantable > STMath::smooth( const CountedPtr< Scantable >& in,
|
---|
[1571] | 2502 | const std::string& kernel, float width,
|
---|
| 2503 | int order)
|
---|
[457] | 2504 | {
|
---|
[1571] | 2505 | if (kernel == "rmedian" || kernel == "hanning" || kernel == "poly") {
|
---|
| 2506 | return smoothOther(in, kernel, width, order);
|
---|
[1373] | 2507 | }
|
---|
[805] | 2508 | CountedPtr< Scantable > out = getScantable(in, false);
|
---|
[1033] | 2509 | Table& table = out->table();
|
---|
[805] | 2510 | VectorKernel::KernelTypes type = VectorKernel::toKernelType(kernel);
|
---|
| 2511 | // same IFNO should have same no of channels
|
---|
| 2512 | // this saves overhead
|
---|
| 2513 | TableIterator iter(table, "IFNO");
|
---|
| 2514 | while (!iter.pastEnd()) {
|
---|
| 2515 | Table tab = iter.table();
|
---|
| 2516 | ArrayColumn<Float> specCol(tab, "SPECTRA");
|
---|
| 2517 | ArrayColumn<uChar> flagCol(tab, "FLAGTRA");
|
---|
[2643] | 2518 | Vector<Float> spec = specCol( 0 );
|
---|
| 2519 | uInt nchan = spec.nelements();
|
---|
[805] | 2520 | Vector<Float> kvec = VectorKernel::make(type, width, nchan, True, False);
|
---|
| 2521 | Convolver<Float> conv(kvec, IPosition(1,nchan));
|
---|
| 2522 | Vector<uChar> flag;
|
---|
[2643] | 2523 | Vector<Bool> mask(nchan);
|
---|
[805] | 2524 | for ( uInt i=0; i<tab.nrow(); ++i) {
|
---|
| 2525 | specCol.get(i, spec);
|
---|
| 2526 | flagCol.get(i, flag);
|
---|
| 2527 | convertArray(mask, flag);
|
---|
| 2528 | Vector<Float> specout;
|
---|
[2879] | 2529 | //mathutil::replaceMaskByZero(specout, mask);
|
---|
| 2530 | mathutil::replaceMaskByZero(spec, !mask);
|
---|
| 2531 | //std::vector<bool> vmask;
|
---|
| 2532 | //(!mask).tovector(vmask);
|
---|
| 2533 | //mathutil::doZeroOrderInterpolation(spec, vmask);
|
---|
[1373] | 2534 | conv.linearConv(specout, spec);
|
---|
| 2535 | specCol.put(i, specout);
|
---|
[805] | 2536 | }
|
---|
[867] | 2537 | ++iter;
|
---|
[701] | 2538 | }
|
---|
[805] | 2539 | return out;
|
---|
[701] | 2540 | }
|
---|
[841] | 2541 |
|
---|
| 2542 | CountedPtr< Scantable >
|
---|
[2900] | 2543 | STMath::merge( const std::vector< CountedPtr < Scantable > >& in,
|
---|
| 2544 | const std::string &freqTol )
|
---|
[841] | 2545 | {
|
---|
[2903] | 2546 | Double freqTolInHz = 0.0; // default is 0.0Hz (merge only when exact match)
|
---|
[2899] | 2547 | if (freqTol.size() > 0) {
|
---|
| 2548 | Quantum<Double> freqTolInQuantity;
|
---|
| 2549 | if (!Quantum<Double>::read(freqTolInQuantity, freqTol)) {
|
---|
| 2550 | throw(AipsError("Failed to convert freqTol string to quantity"));
|
---|
| 2551 | }
|
---|
| 2552 | if (!freqTolInQuantity.isConform("Hz")) {
|
---|
| 2553 | throw(AipsError("Invalid freqTol string"));
|
---|
| 2554 | }
|
---|
| 2555 | freqTolInHz = freqTolInQuantity.getValue("Hz");
|
---|
[2904] | 2556 | LogIO os(LogOrigin("STMath", "merge", WHERE));
|
---|
| 2557 | os << "frequency tolerance = " << freqTolInHz << "Hz" << LogIO::POST;
|
---|
[2899] | 2558 | }
|
---|
| 2559 |
|
---|
[841] | 2560 | if ( in.size() < 2 ) {
|
---|
[862] | 2561 | throw(AipsError("Need at least two scantables to perform a merge."));
|
---|
[841] | 2562 | }
|
---|
| 2563 | std::vector<CountedPtr < Scantable > >::const_iterator it = in.begin();
|
---|
| 2564 | bool insitu = insitu_;
|
---|
| 2565 | setInsitu(false);
|
---|
[862] | 2566 | CountedPtr< Scantable > out = getScantable(*it, false);
|
---|
[841] | 2567 | setInsitu(insitu);
|
---|
| 2568 | Table& tout = out->table();
|
---|
| 2569 | ScalarColumn<uInt> freqidcol(tout,"FREQ_ID"), molidcol(tout, "MOLECULE_ID");
|
---|
[917] | 2570 | ScalarColumn<uInt> scannocol(tout,"SCANNO"), focusidcol(tout,"FOCUS_ID");
|
---|
[2899] | 2571 | ScalarColumn<uInt> ifnocol(tout, "IFNO");
|
---|
[917] | 2572 | // Renumber SCANNO to be 0-based
|
---|
[926] | 2573 | Vector<uInt> scannos = scannocol.getColumn();
|
---|
| 2574 | uInt offset = min(scannos);
|
---|
[917] | 2575 | scannos -= offset;
|
---|
[926] | 2576 | scannocol.putColumn(scannos);
|
---|
| 2577 | uInt newscanno = max(scannos)+1;
|
---|
[862] | 2578 | ++it;
|
---|
[2900] | 2579 |
|
---|
| 2580 | // new IFNO
|
---|
| 2581 | uInt ifnoCounter = max(ifnocol.getColumn()) + 1;
|
---|
| 2582 |
|
---|
[2905] | 2583 | // Here we assume that each IFNO has unique MOLECULE_ID
|
---|
| 2584 | // molIdMap:
|
---|
| 2585 | // KEY: IFNO
|
---|
| 2586 | // VALUE: MOLECULE_ID
|
---|
| 2587 | map<uInt, uInt> molIdMap;
|
---|
| 2588 | {
|
---|
| 2589 | TableIterator ifit(tout, "IFNO");
|
---|
| 2590 | while (!ifit.pastEnd()) {
|
---|
| 2591 | ROTableRow row(ifit.table());
|
---|
| 2592 | const TableRecord& rec = row.get(0);
|
---|
| 2593 | molIdMap[rec.asuInt("IFNO")] = rec.asuInt("MOLECULE_ID");
|
---|
| 2594 | ifit.next();
|
---|
| 2595 | }
|
---|
| 2596 | }
|
---|
| 2597 |
|
---|
[841] | 2598 | while ( it != in.end() ){
|
---|
[2899] | 2599 | // Check FREQUENCIES/BASEFRAME
|
---|
| 2600 | if ( out->frequencies().getFrame(true) != (*it)->frequencies().getFrame(true) ) {
|
---|
| 2601 | throw(AipsError("BASEFRAME is not identical"));
|
---|
| 2602 | }
|
---|
| 2603 |
|
---|
[841] | 2604 | if ( ! (*it)->conformant(*out) ) {
|
---|
[1439] | 2605 | // non conformant.
|
---|
[1819] | 2606 | LogIO os( LogOrigin( "STMath", "merge()", WHERE ) ) ;
|
---|
| 2607 | os << LogIO::SEVERE << "Can't merge scantables as header informations (any one of AntennaName, Equinox, and FluxUnit) differ." << LogIO::EXCEPTION ;
|
---|
[841] | 2608 | }
|
---|
[862] | 2609 | out->appendToHistoryTable((*it)->history());
|
---|
[841] | 2610 | const Table& tab = (*it)->table();
|
---|
[2289] | 2611 |
|
---|
| 2612 | Block<String> cols(3);
|
---|
| 2613 | cols[0] = String("FREQ_ID");
|
---|
| 2614 | cols[1] = String("MOLECULE_ID");
|
---|
| 2615 | cols[2] = String("FOCUS_ID");
|
---|
[2905] | 2616 |
|
---|
[841] | 2617 | TableIterator scanit(tab, "SCANNO");
|
---|
| 2618 | while (!scanit.pastEnd()) {
|
---|
[2289] | 2619 | TableIterator subit(scanit.table(), cols);
|
---|
| 2620 | while ( !subit.pastEnd() ) {
|
---|
[841] | 2621 | uInt nrow = tout.nrow();
|
---|
[2289] | 2622 | Table thetab = subit.table();
|
---|
| 2623 | ROTableRow row(thetab);
|
---|
| 2624 | Vector<uInt> thecolvals(thetab.nrow());
|
---|
| 2625 | // The selected subset of table should have
|
---|
| 2626 | // the equal FREQ_ID, MOLECULE_ID, and FOCUS_ID values.
|
---|
| 2627 | const TableRecord& rec = row.get(0);
|
---|
[2899] | 2628 | tout.addRow(thetab.nrow());
|
---|
| 2629 | TableCopy::copyRows(tout, thetab, nrow, 0, thetab.nrow());
|
---|
| 2630 |
|
---|
| 2631 | Slicer slice(IPosition(1, nrow), IPosition(1, thetab.nrow()),
|
---|
| 2632 | Slicer::endIsLength);
|
---|
| 2633 |
|
---|
[2289] | 2634 | // Set the proper FREQ_ID
|
---|
| 2635 | Double rv,rp,inc;
|
---|
| 2636 | (*it)->frequencies().getEntry(rp, rv, inc, rec.asuInt("FREQ_ID"));
|
---|
| 2637 | uInt id;
|
---|
[2900] | 2638 |
|
---|
| 2639 | // default value is new unique IFNO
|
---|
| 2640 | uInt newifno = ifnoCounter;
|
---|
[2905] | 2641 | Bool isIfMerged = False;
|
---|
[2900] | 2642 | uInt nchan = rec.asArrayFloat("SPECTRA").shape()[0];
|
---|
| 2643 | //id = out->frequencies().addEntry(rp, rv, inc);
|
---|
| 2644 | if ( !out->frequencies().match(rp, rv, inc, freqTolInHz, id) ) {
|
---|
| 2645 | // add new entry to FREQUENCIES table
|
---|
| 2646 | id = out->frequencies().addEntry(rp, rv, inc);
|
---|
| 2647 |
|
---|
| 2648 | // increment counter for IFNO
|
---|
| 2649 | ifnoCounter++;
|
---|
| 2650 | }
|
---|
| 2651 | else {
|
---|
| 2652 | // should renumber IFNO to be same as existing rows that have same FREQ_ID
|
---|
| 2653 | LogIO os(LogOrigin("STMath", "merge", WHERE));
|
---|
| 2654 | Table outFreqIdSelected = tout(tout.col("FREQ_ID") == id);
|
---|
| 2655 | TableIterator _iter(outFreqIdSelected, "IFNO");
|
---|
| 2656 | map<uInt, uInt> nchanMap;
|
---|
| 2657 | while (!_iter.pastEnd()) {
|
---|
| 2658 | const Table _table = _iter.table();
|
---|
| 2659 | ROTableRow _row(_table);
|
---|
| 2660 | const TableRecord &_rec = _row.get(0);
|
---|
| 2661 | uInt nchan = _rec.asArrayFloat("SPECTRA").shape()[0];
|
---|
| 2662 | if (nchanMap.find(nchan) != nchanMap.end()) {
|
---|
| 2663 | throw(AipsError("There are non-unique IFNOs assigned to spectra that have same FREQ_ID and same nchan. Something wrong."));
|
---|
| 2664 | }
|
---|
| 2665 | nchanMap[nchan] = _rec.asuInt("IFNO");
|
---|
| 2666 | _iter.next();
|
---|
| 2667 | }
|
---|
| 2668 |
|
---|
| 2669 | os << LogIO::DEBUGGING << "nchanMap for " << id << ":" << LogIO::POST;
|
---|
| 2670 | for (map<uInt, uInt>::iterator i = nchanMap.begin(); i != nchanMap.end(); ++i) {
|
---|
| 2671 | os << LogIO::DEBUGGING << "nchanMap[" << i->first << "] = " << i->second << LogIO::POST;
|
---|
| 2672 | }
|
---|
| 2673 |
|
---|
| 2674 | if (nchanMap.find(nchan) == nchanMap.end()) {
|
---|
| 2675 | // increment counter for IFNO
|
---|
| 2676 | ifnoCounter++;
|
---|
| 2677 | }
|
---|
| 2678 | else {
|
---|
| 2679 | // renumber IFNO to be same as existing value that corresponds to nchan
|
---|
| 2680 | newifno = nchanMap[nchan];
|
---|
[2905] | 2681 | isIfMerged = True;
|
---|
[2900] | 2682 | }
|
---|
| 2683 | os << LogIO::DEBUGGING << "newifno = " << newifno << LogIO::POST;
|
---|
| 2684 | }
|
---|
[2289] | 2685 | thecolvals = id;
|
---|
[2899] | 2686 | freqidcol.putColumnRange(slice, thecolvals);
|
---|
[2900] | 2687 |
|
---|
| 2688 | thecolvals = newifno;
|
---|
| 2689 | ifnocol.putColumnRange(slice, thecolvals);
|
---|
[2899] | 2690 |
|
---|
[2289] | 2691 | // Set the proper MOLECULE_ID
|
---|
| 2692 | Vector<String> name,fname;Vector<Double> rf;
|
---|
| 2693 | (*it)->molecules().getEntry(rf, name, fname, rec.asuInt("MOLECULE_ID"));
|
---|
| 2694 | id = out->molecules().addEntry(rf, name, fname);
|
---|
[2905] | 2695 | if (molIdMap.find(newifno) == molIdMap.end()) {
|
---|
| 2696 | // add new entry to molIdMap
|
---|
| 2697 | molIdMap[newifno] = id;
|
---|
| 2698 | }
|
---|
| 2699 | if (isIfMerged) {
|
---|
| 2700 | id = molIdMap[newifno];
|
---|
| 2701 | }
|
---|
[2289] | 2702 | thecolvals = id;
|
---|
[2899] | 2703 | molidcol.putColumnRange(slice, thecolvals);
|
---|
| 2704 |
|
---|
[2289] | 2705 | // Set the proper FOCUS_ID
|
---|
| 2706 | Float fpa,frot,fax,ftan,fhand,fmount,fuser, fxy, fxyp;
|
---|
| 2707 | (*it)->focus().getEntry(fpa, fax, ftan, frot, fhand, fmount,fuser,
|
---|
| 2708 | fxy, fxyp, rec.asuInt("FOCUS_ID"));
|
---|
| 2709 | id = out->focus().addEntry(fpa, fax, ftan, frot, fhand, fmount,fuser,
|
---|
| 2710 | fxy, fxyp);
|
---|
| 2711 | thecolvals = id;
|
---|
[2899] | 2712 | focusidcol.putColumnRange(slice, thecolvals);
|
---|
[2289] | 2713 |
|
---|
[2899] | 2714 | // Set the proper SCANNO
|
---|
| 2715 | thecolvals = newscanno;
|
---|
| 2716 | scannocol.putColumnRange(slice, thecolvals);
|
---|
[2289] | 2717 |
|
---|
| 2718 | ++subit;
|
---|
[841] | 2719 | }
|
---|
| 2720 | ++newscanno;
|
---|
| 2721 | ++scanit;
|
---|
| 2722 | }
|
---|
| 2723 | ++it;
|
---|
| 2724 | }
|
---|
| 2725 | return out;
|
---|
| 2726 | }
|
---|
[896] | 2727 |
|
---|
| 2728 | CountedPtr< Scantable >
|
---|
| 2729 | STMath::invertPhase( const CountedPtr < Scantable >& in )
|
---|
| 2730 | {
|
---|
[996] | 2731 | return applyToPol(in, &STPol::invertPhase, Float(0.0));
|
---|
[896] | 2732 | }
|
---|
| 2733 |
|
---|
| 2734 | CountedPtr< Scantable >
|
---|
| 2735 | STMath::rotateXYPhase( const CountedPtr < Scantable >& in, float phase )
|
---|
| 2736 | {
|
---|
| 2737 | return applyToPol(in, &STPol::rotatePhase, Float(phase));
|
---|
| 2738 | }
|
---|
| 2739 |
|
---|
| 2740 | CountedPtr< Scantable >
|
---|
| 2741 | STMath::rotateLinPolPhase( const CountedPtr < Scantable >& in, float phase )
|
---|
| 2742 | {
|
---|
| 2743 | return applyToPol(in, &STPol::rotateLinPolPhase, Float(phase));
|
---|
| 2744 | }
|
---|
| 2745 |
|
---|
| 2746 | CountedPtr< Scantable > STMath::applyToPol( const CountedPtr<Scantable>& in,
|
---|
| 2747 | STPol::polOperation fptr,
|
---|
| 2748 | Float phase )
|
---|
| 2749 | {
|
---|
| 2750 | CountedPtr< Scantable > out = getScantable(in, false);
|
---|
| 2751 | Table& tout = out->table();
|
---|
| 2752 | Block<String> cols(4);
|
---|
| 2753 | cols[0] = String("SCANNO");
|
---|
| 2754 | cols[1] = String("BEAMNO");
|
---|
| 2755 | cols[2] = String("IFNO");
|
---|
| 2756 | cols[3] = String("CYCLENO");
|
---|
| 2757 | TableIterator iter(tout, cols);
|
---|
[1569] | 2758 | CountedPtr<STPol> stpol = STPol::getPolClass(out->factories_,
|
---|
[1384] | 2759 | out->getPolType() );
|
---|
[896] | 2760 | while (!iter.pastEnd()) {
|
---|
| 2761 | Table t = iter.table();
|
---|
| 2762 | ArrayColumn<Float> speccol(t, "SPECTRA");
|
---|
[1015] | 2763 | ScalarColumn<uInt> focidcol(t, "FOCUS_ID");
|
---|
[1384] | 2764 | Matrix<Float> pols(speccol.getColumn());
|
---|
[896] | 2765 | try {
|
---|
| 2766 | stpol->setSpectra(pols);
|
---|
[1586] | 2767 | Float fang,fhand;
|
---|
| 2768 | fang = in->focusTable_.getTotalAngle(focidcol(0));
|
---|
[1015] | 2769 | fhand = in->focusTable_.getFeedHand(focidcol(0));
|
---|
[1586] | 2770 | stpol->setPhaseCorrections(fang, fhand);
|
---|
[1384] | 2771 | // use a member function pointer in STPol. This only works on
|
---|
| 2772 | // the STPol pointer itself, not the Counted Pointer so
|
---|
| 2773 | // derefernce it.
|
---|
| 2774 | (&(*(stpol))->*fptr)(phase);
|
---|
[896] | 2775 | speccol.putColumn(stpol->getSpectra());
|
---|
| 2776 | } catch (AipsError& e) {
|
---|
[1384] | 2777 | //delete stpol;stpol=0;
|
---|
[896] | 2778 | throw(e);
|
---|
| 2779 | }
|
---|
| 2780 | ++iter;
|
---|
| 2781 | }
|
---|
[1384] | 2782 | //delete stpol;stpol=0;
|
---|
[896] | 2783 | return out;
|
---|
| 2784 | }
|
---|
| 2785 |
|
---|
| 2786 | CountedPtr< Scantable >
|
---|
| 2787 | STMath::swapPolarisations( const CountedPtr< Scantable > & in )
|
---|
| 2788 | {
|
---|
| 2789 | CountedPtr< Scantable > out = getScantable(in, false);
|
---|
| 2790 | Table& tout = out->table();
|
---|
| 2791 | Table t0 = tout(tout.col("POLNO") == 0);
|
---|
| 2792 | Table t1 = tout(tout.col("POLNO") == 1);
|
---|
| 2793 | if ( t0.nrow() != t1.nrow() )
|
---|
| 2794 | throw(AipsError("Inconsistent number of polarisations"));
|
---|
| 2795 | ArrayColumn<Float> speccol0(t0, "SPECTRA");
|
---|
| 2796 | ArrayColumn<uChar> flagcol0(t0, "FLAGTRA");
|
---|
| 2797 | ArrayColumn<Float> speccol1(t1, "SPECTRA");
|
---|
| 2798 | ArrayColumn<uChar> flagcol1(t1, "FLAGTRA");
|
---|
| 2799 | Matrix<Float> s0 = speccol0.getColumn();
|
---|
| 2800 | Matrix<uChar> f0 = flagcol0.getColumn();
|
---|
| 2801 | speccol0.putColumn(speccol1.getColumn());
|
---|
| 2802 | flagcol0.putColumn(flagcol1.getColumn());
|
---|
| 2803 | speccol1.putColumn(s0);
|
---|
| 2804 | flagcol1.putColumn(f0);
|
---|
| 2805 | return out;
|
---|
| 2806 | }
|
---|
[917] | 2807 |
|
---|
| 2808 | CountedPtr< Scantable >
|
---|
[940] | 2809 | STMath::averagePolarisations( const CountedPtr< Scantable > & in,
|
---|
| 2810 | const std::vector<bool>& mask,
|
---|
| 2811 | const std::string& weight )
|
---|
| 2812 | {
|
---|
[1232] | 2813 | if (in->npol() < 2 )
|
---|
| 2814 | throw(AipsError("averagePolarisations can only be applied to two or more"
|
---|
| 2815 | "polarisations"));
|
---|
[1010] | 2816 | bool insitu = insitu_;
|
---|
| 2817 | setInsitu(false);
|
---|
[1232] | 2818 | CountedPtr< Scantable > pols = getScantable(in, true);
|
---|
[1010] | 2819 | setInsitu(insitu);
|
---|
| 2820 | Table& tout = pols->table();
|
---|
[1232] | 2821 | std::string taql = "SELECT FROM $1 WHERE POLNO IN [0,1]";
|
---|
| 2822 | Table tab = tableCommand(taql, in->table());
|
---|
| 2823 | if (tab.nrow() == 0 )
|
---|
| 2824 | throw(AipsError("Could not find any rows with POLNO==0 and POLNO==1"));
|
---|
| 2825 | TableCopy::copyRows(tout, tab);
|
---|
[1145] | 2826 | TableVector<uInt> vec(tout, "POLNO");
|
---|
[940] | 2827 | vec = 0;
|
---|
[1145] | 2828 | pols->table_.rwKeywordSet().define("nPol", Int(1));
|
---|
[2102] | 2829 | pols->table_.rwKeywordSet().define("POLTYPE", String("stokes"));
|
---|
| 2830 | //pols->table_.rwKeywordSet().define("POLTYPE", in->getPolType());
|
---|
[1010] | 2831 | std::vector<CountedPtr<Scantable> > vpols;
|
---|
| 2832 | vpols.push_back(pols);
|
---|
[1232] | 2833 | CountedPtr< Scantable > out = average(vpols, mask, weight, "SCAN");
|
---|
[940] | 2834 | return out;
|
---|
| 2835 | }
|
---|
| 2836 |
|
---|
[1145] | 2837 | CountedPtr< Scantable >
|
---|
| 2838 | STMath::averageBeams( const CountedPtr< Scantable > & in,
|
---|
| 2839 | const std::vector<bool>& mask,
|
---|
| 2840 | const std::string& weight )
|
---|
| 2841 | {
|
---|
| 2842 | bool insitu = insitu_;
|
---|
| 2843 | setInsitu(false);
|
---|
| 2844 | CountedPtr< Scantable > beams = getScantable(in, false);
|
---|
| 2845 | setInsitu(insitu);
|
---|
| 2846 | Table& tout = beams->table();
|
---|
| 2847 | // give all rows the same BEAMNO
|
---|
| 2848 | TableVector<uInt> vec(tout, "BEAMNO");
|
---|
| 2849 | vec = 0;
|
---|
| 2850 | beams->table_.rwKeywordSet().define("nBeam", Int(1));
|
---|
| 2851 | std::vector<CountedPtr<Scantable> > vbeams;
|
---|
| 2852 | vbeams.push_back(beams);
|
---|
[1232] | 2853 | CountedPtr< Scantable > out = average(vbeams, mask, weight, "SCAN");
|
---|
[1145] | 2854 | return out;
|
---|
| 2855 | }
|
---|
[940] | 2856 |
|
---|
[1145] | 2857 |
|
---|
[940] | 2858 | CountedPtr< Scantable >
|
---|
[917] | 2859 | asap::STMath::frequencyAlign( const CountedPtr< Scantable > & in,
|
---|
| 2860 | const std::string & refTime,
|
---|
[926] | 2861 | const std::string & method)
|
---|
[917] | 2862 | {
|
---|
[2658] | 2863 | LogIO os( casa::LogOrigin("STMath", "frequencyAlign()", WHERE));
|
---|
[940] | 2864 | // clone as this is not working insitu
|
---|
| 2865 | bool insitu = insitu_;
|
---|
| 2866 | setInsitu(false);
|
---|
[917] | 2867 | CountedPtr< Scantable > out = getScantable(in, false);
|
---|
[940] | 2868 | setInsitu(insitu);
|
---|
[917] | 2869 | Table& tout = out->table();
|
---|
| 2870 | // Get reference Epoch to time of first row or given String
|
---|
| 2871 | Unit DAY(String("d"));
|
---|
| 2872 | MEpoch::Ref epochRef(in->getTimeReference());
|
---|
| 2873 | MEpoch refEpoch;
|
---|
| 2874 | if (refTime.length()>0) {
|
---|
| 2875 | Quantum<Double> qt;
|
---|
| 2876 | if (MVTime::read(qt,refTime)) {
|
---|
| 2877 | MVEpoch mv(qt);
|
---|
| 2878 | refEpoch = MEpoch(mv, epochRef);
|
---|
| 2879 | } else {
|
---|
| 2880 | throw(AipsError("Invalid format for Epoch string"));
|
---|
| 2881 | }
|
---|
| 2882 | } else {
|
---|
| 2883 | refEpoch = in->timeCol_(0);
|
---|
| 2884 | }
|
---|
| 2885 | MPosition refPos = in->getAntennaPosition();
|
---|
[940] | 2886 |
|
---|
[996] | 2887 | InterpolateArray1D<Double,Float>::InterpolationMethod interp = stringToIMethod(method);
|
---|
[1475] | 2888 | /*
|
---|
| 2889 | // Comment from MV.
|
---|
| 2890 | // the following code has been commented out because different FREQ_IDs have to be aligned together even
|
---|
| 2891 | // if the frame doesn't change. So far, lack of this check didn't cause any problems.
|
---|
[917] | 2892 | // test if user frame is different to base frame
|
---|
| 2893 | if ( in->frequencies().getFrameString(true)
|
---|
| 2894 | == in->frequencies().getFrameString(false) ) {
|
---|
[985] | 2895 | throw(AipsError("Can't convert as no output frame has been set"
|
---|
| 2896 | " (use set_freqframe) or it is aligned already."));
|
---|
[917] | 2897 | }
|
---|
[1475] | 2898 | */
|
---|
[917] | 2899 | MFrequency::Types system = in->frequencies().getFrame();
|
---|
[940] | 2900 | MVTime mvt(refEpoch.getValue());
|
---|
| 2901 | String epochout = mvt.string(MVTime::YMD) + String(" (") + refEpoch.getRefString() + String(")");
|
---|
[2818] | 2902 | os << "Aligning at reference Epoch " << epochout
|
---|
[2658] | 2903 | << " in frame " << MFrequency::showType(system) << LogIO::POST;
|
---|
[917] | 2904 | // set up the iterator
|
---|
[926] | 2905 | Block<String> cols(4);
|
---|
| 2906 | // select by constant direction
|
---|
[917] | 2907 | cols[0] = String("SRCNAME");
|
---|
| 2908 | cols[1] = String("BEAMNO");
|
---|
| 2909 | // select by IF ( no of channels varies over this )
|
---|
| 2910 | cols[2] = String("IFNO");
|
---|
[926] | 2911 | // select by restfrequency
|
---|
| 2912 | cols[3] = String("MOLECULE_ID");
|
---|
[917] | 2913 | TableIterator iter(tout, cols);
|
---|
[926] | 2914 | while ( !iter.pastEnd() ) {
|
---|
[917] | 2915 | Table t = iter.table();
|
---|
[2818] | 2916 | ROScalarColumn<String> snCol(t, "SRCNAME");
|
---|
| 2917 | os << "Aligning to position of source '" << snCol(0) << "'" << LogIO::POST;
|
---|
[917] | 2918 | MDirection::ROScalarColumn dirCol(t, "DIRECTION");
|
---|
[926] | 2919 | TableIterator fiter(t, "FREQ_ID");
|
---|
[917] | 2920 | // determine nchan from the first row. This should work as
|
---|
[2818] | 2921 | // we are iterating over BEAMNO and IFNO
|
---|
| 2922 | // we should have constant direction
|
---|
[926] | 2923 |
|
---|
[917] | 2924 | ROArrayColumn<Float> sCol(t, "SPECTRA");
|
---|
[1475] | 2925 | const MDirection direction = dirCol(0);
|
---|
| 2926 | const uInt nchan = sCol(0).nelements();
|
---|
| 2927 |
|
---|
| 2928 | // skip operations if there is nothing to align
|
---|
| 2929 | if (fiter.pastEnd()) {
|
---|
| 2930 | continue;
|
---|
| 2931 | }
|
---|
| 2932 |
|
---|
| 2933 | Table ftab = fiter.table();
|
---|
| 2934 | // align all frequency ids with respect to the first encountered id
|
---|
| 2935 | ScalarColumn<uInt> freqidCol(ftab, "FREQ_ID");
|
---|
| 2936 | // get the SpectralCoordinate for the freqid, which we are iterating over
|
---|
[2818] | 2937 | SpectralCoordinate sC = \
|
---|
| 2938 | in->frequencies().getSpectralCoordinate(freqidCol(0));
|
---|
[1475] | 2939 | FrequencyAligner<Float> fa( sC, nchan, refEpoch,
|
---|
| 2940 | direction, refPos, system );
|
---|
| 2941 | // realign the SpectralCoordinate and put into the output Scantable
|
---|
| 2942 | Vector<String> units(1);
|
---|
| 2943 | units = String("Hz");
|
---|
| 2944 | Bool linear=True;
|
---|
| 2945 | SpectralCoordinate sc2 = fa.alignedSpectralCoordinate(linear);
|
---|
| 2946 | sc2.setWorldAxisUnits(units);
|
---|
| 2947 | const uInt id = out->frequencies().addEntry(sc2.referencePixel()[0],
|
---|
| 2948 | sc2.referenceValue()[0],
|
---|
| 2949 | sc2.increment()[0]);
|
---|
[926] | 2950 | while ( !fiter.pastEnd() ) {
|
---|
[2818] | 2951 |
|
---|
[1475] | 2952 | ftab = fiter.table();
|
---|
| 2953 | // spectral coordinate for the current FREQ_ID
|
---|
| 2954 | ScalarColumn<uInt> freqidCol2(ftab, "FREQ_ID");
|
---|
| 2955 | sC = in->frequencies().getSpectralCoordinate(freqidCol2(0));
|
---|
[926] | 2956 | // create the "global" abcissa for alignment with same FREQ_ID
|
---|
| 2957 | Vector<Double> abc(nchan);
|
---|
[917] | 2958 | for (uInt i=0; i<nchan; i++) {
|
---|
[1475] | 2959 | Double w;
|
---|
| 2960 | sC.toWorld(w,Double(i));
|
---|
| 2961 | abc[i] = w;
|
---|
[917] | 2962 | }
|
---|
[1475] | 2963 | TableVector<uInt> tvec(ftab, "FREQ_ID");
|
---|
| 2964 | // assign new frequency id to all rows
|
---|
| 2965 | tvec = id;
|
---|
[926] | 2966 | // cache abcissa for same time stamps, so iterate over those
|
---|
| 2967 | TableIterator timeiter(ftab, "TIME");
|
---|
| 2968 | while ( !timeiter.pastEnd() ) {
|
---|
| 2969 | Table tab = timeiter.table();
|
---|
| 2970 | ArrayColumn<Float> specCol(tab, "SPECTRA");
|
---|
| 2971 | ArrayColumn<uChar> flagCol(tab, "FLAGTRA");
|
---|
| 2972 | MEpoch::ROScalarColumn timeCol(tab, "TIME");
|
---|
| 2973 | // use align abcissa cache after the first row
|
---|
[1475] | 2974 | // these rows should be just be POLNO
|
---|
[926] | 2975 | bool first = true;
|
---|
[996] | 2976 | for (int i=0; i<int(tab.nrow()); ++i) {
|
---|
[926] | 2977 | // input values
|
---|
| 2978 | Vector<uChar> flag = flagCol(i);
|
---|
| 2979 | Vector<Bool> mask(flag.shape());
|
---|
| 2980 | Vector<Float> specOut, spec;
|
---|
| 2981 | spec = specCol(i);
|
---|
| 2982 | Vector<Bool> maskOut;Vector<uChar> flagOut;
|
---|
| 2983 | convertArray(mask, flag);
|
---|
| 2984 | // alignment
|
---|
| 2985 | Bool ok = fa.align(specOut, maskOut, abc, spec,
|
---|
| 2986 | mask, timeCol(i), !first,
|
---|
| 2987 | interp, False);
|
---|
[2429] | 2988 | (void) ok; // unused stop compiler nagging
|
---|
[926] | 2989 | // back into scantable
|
---|
| 2990 | flagOut.resize(maskOut.nelements());
|
---|
| 2991 | convertArray(flagOut, maskOut);
|
---|
| 2992 | flagCol.put(i, flagOut);
|
---|
| 2993 | specCol.put(i, specOut);
|
---|
| 2994 | // start abcissa caching
|
---|
| 2995 | first = false;
|
---|
[917] | 2996 | }
|
---|
[926] | 2997 | // next timestamp
|
---|
| 2998 | ++timeiter;
|
---|
[917] | 2999 | }
|
---|
[940] | 3000 | // next FREQ_ID
|
---|
[926] | 3001 | ++fiter;
|
---|
[917] | 3002 | }
|
---|
| 3003 | // next aligner
|
---|
| 3004 | ++iter;
|
---|
| 3005 | }
|
---|
[940] | 3006 | // set this afterwards to ensure we are doing insitu correctly.
|
---|
| 3007 | out->frequencies().setFrame(system, true);
|
---|
[917] | 3008 | return out;
|
---|
| 3009 | }
|
---|
[992] | 3010 |
|
---|
| 3011 | CountedPtr<Scantable>
|
---|
| 3012 | asap::STMath::convertPolarisation( const CountedPtr<Scantable>& in,
|
---|
| 3013 | const std::string & newtype )
|
---|
| 3014 | {
|
---|
| 3015 | if (in->npol() != 2 && in->npol() != 4)
|
---|
| 3016 | throw(AipsError("Can only convert two or four polarisations."));
|
---|
| 3017 | if ( in->getPolType() == newtype )
|
---|
| 3018 | throw(AipsError("No need to convert."));
|
---|
[1000] | 3019 | if ( ! in->selector_.empty() )
|
---|
| 3020 | throw(AipsError("Can only convert whole scantable. Unset the selection."));
|
---|
[992] | 3021 | bool insitu = insitu_;
|
---|
| 3022 | setInsitu(false);
|
---|
| 3023 | CountedPtr< Scantable > out = getScantable(in, true);
|
---|
| 3024 | setInsitu(insitu);
|
---|
| 3025 | Table& tout = out->table();
|
---|
| 3026 | tout.rwKeywordSet().define("POLTYPE", String(newtype));
|
---|
| 3027 |
|
---|
| 3028 | Block<String> cols(4);
|
---|
| 3029 | cols[0] = "SCANNO";
|
---|
| 3030 | cols[1] = "CYCLENO";
|
---|
| 3031 | cols[2] = "BEAMNO";
|
---|
| 3032 | cols[3] = "IFNO";
|
---|
| 3033 | TableIterator it(in->originalTable_, cols);
|
---|
| 3034 | String basetype = in->getPolType();
|
---|
| 3035 | STPol* stpol = STPol::getPolClass(in->factories_, basetype);
|
---|
| 3036 | try {
|
---|
| 3037 | while ( !it.pastEnd() ) {
|
---|
| 3038 | Table tab = it.table();
|
---|
| 3039 | uInt row = tab.rowNumbers()[0];
|
---|
| 3040 | stpol->setSpectra(in->getPolMatrix(row));
|
---|
[1586] | 3041 | Float fang,fhand;
|
---|
| 3042 | fang = in->focusTable_.getTotalAngle(in->mfocusidCol_(row));
|
---|
[992] | 3043 | fhand = in->focusTable_.getFeedHand(in->mfocusidCol_(row));
|
---|
[1586] | 3044 | stpol->setPhaseCorrections(fang, fhand);
|
---|
[992] | 3045 | Int npolout = 0;
|
---|
| 3046 | for (uInt i=0; i<tab.nrow(); ++i) {
|
---|
| 3047 | Vector<Float> outvec = stpol->getSpectrum(i, newtype);
|
---|
| 3048 | if ( outvec.nelements() > 0 ) {
|
---|
| 3049 | tout.addRow();
|
---|
| 3050 | TableCopy::copyRows(tout, tab, tout.nrow()-1, 0, 1);
|
---|
| 3051 | ArrayColumn<Float> sCol(tout,"SPECTRA");
|
---|
| 3052 | ScalarColumn<uInt> pCol(tout,"POLNO");
|
---|
| 3053 | sCol.put(tout.nrow()-1 ,outvec);
|
---|
| 3054 | pCol.put(tout.nrow()-1 ,uInt(npolout));
|
---|
| 3055 | npolout++;
|
---|
| 3056 | }
|
---|
| 3057 | }
|
---|
| 3058 | tout.rwKeywordSet().define("nPol", npolout);
|
---|
| 3059 | ++it;
|
---|
| 3060 | }
|
---|
| 3061 | } catch (AipsError& e) {
|
---|
| 3062 | delete stpol;
|
---|
| 3063 | throw(e);
|
---|
| 3064 | }
|
---|
| 3065 | delete stpol;
|
---|
| 3066 | return out;
|
---|
| 3067 | }
|
---|
[1066] | 3068 |
|
---|
[1143] | 3069 | CountedPtr< Scantable >
|
---|
[1140] | 3070 | asap::STMath::mxExtract( const CountedPtr< Scantable > & in,
|
---|
| 3071 | const std::string & scantype )
|
---|
| 3072 | {
|
---|
| 3073 | bool insitu = insitu_;
|
---|
| 3074 | setInsitu(false);
|
---|
| 3075 | CountedPtr< Scantable > out = getScantable(in, true);
|
---|
| 3076 | setInsitu(insitu);
|
---|
| 3077 | Table& tout = out->table();
|
---|
| 3078 | std::string taql = "SELECT FROM $1 WHERE BEAMNO != REFBEAMNO";
|
---|
| 3079 | if (scantype == "on") {
|
---|
| 3080 | taql = "SELECT FROM $1 WHERE BEAMNO == REFBEAMNO";
|
---|
| 3081 | }
|
---|
| 3082 | Table tab = tableCommand(taql, in->table());
|
---|
| 3083 | TableCopy::copyRows(tout, tab);
|
---|
| 3084 | if (scantype == "on") {
|
---|
[1143] | 3085 | // re-index SCANNO to 0
|
---|
[1140] | 3086 | TableVector<uInt> vec(tout, "SCANNO");
|
---|
| 3087 | vec = 0;
|
---|
| 3088 | }
|
---|
| 3089 | return out;
|
---|
| 3090 | }
|
---|
[1192] | 3091 |
|
---|
[2177] | 3092 | std::vector<float>
|
---|
| 3093 | asap::STMath::fft( const casa::CountedPtr< Scantable > & in,
|
---|
| 3094 | const std::vector<int>& whichrow,
|
---|
| 3095 | bool getRealImag )
|
---|
| 3096 | {
|
---|
| 3097 | std::vector<float> res;
|
---|
| 3098 | Table tab = in->table();
|
---|
[2186] | 3099 | std::vector<bool> mask;
|
---|
[2177] | 3100 |
|
---|
| 3101 | if (whichrow.size() < 1) { // for all rows (by default)
|
---|
| 3102 | int nrow = int(tab.nrow());
|
---|
| 3103 | for (int i = 0; i < nrow; ++i) {
|
---|
[2186] | 3104 | res = in->execFFT(i, mask, getRealImag);
|
---|
[2177] | 3105 | }
|
---|
| 3106 | } else { // for specified rows
|
---|
| 3107 | for (uInt i = 0; i < whichrow.size(); ++i) {
|
---|
[2186] | 3108 | res = in->execFFT(i, mask, getRealImag);
|
---|
[2177] | 3109 | }
|
---|
| 3110 | }
|
---|
| 3111 |
|
---|
| 3112 | return res;
|
---|
| 3113 | }
|
---|
| 3114 |
|
---|
| 3115 |
|
---|
| 3116 | CountedPtr<Scantable>
|
---|
| 3117 | asap::STMath::lagFlag( const CountedPtr<Scantable>& in,
|
---|
[1579] | 3118 | double start, double end,
|
---|
[2177] | 3119 | const std::string& mode )
|
---|
[1192] | 3120 | {
|
---|
[2177] | 3121 | CountedPtr<Scantable> out = getScantable(in, false);
|
---|
[1192] | 3122 | Table& tout = out->table();
|
---|
| 3123 | TableIterator iter(tout, "FREQ_ID");
|
---|
| 3124 | FFTServer<Float,Complex> ffts;
|
---|
[2177] | 3125 |
|
---|
[1192] | 3126 | while ( !iter.pastEnd() ) {
|
---|
| 3127 | Table tab = iter.table();
|
---|
| 3128 | Double rp,rv,inc;
|
---|
| 3129 | ROTableRow row(tab);
|
---|
| 3130 | const TableRecord& rec = row.get(0);
|
---|
| 3131 | uInt freqid = rec.asuInt("FREQ_ID");
|
---|
| 3132 | out->frequencies().getEntry(rp, rv, inc, freqid);
|
---|
| 3133 | ArrayColumn<Float> specCol(tab, "SPECTRA");
|
---|
| 3134 | ArrayColumn<uChar> flagCol(tab, "FLAGTRA");
|
---|
[2177] | 3135 |
|
---|
[1192] | 3136 | for (int i=0; i<int(tab.nrow()); ++i) {
|
---|
| 3137 | Vector<Float> spec = specCol(i);
|
---|
| 3138 | Vector<uChar> flag = flagCol(i);
|
---|
[2186] | 3139 | std::vector<bool> mask;
|
---|
| 3140 | for (uInt j = 0; j < flag.nelements(); ++j) {
|
---|
| 3141 | mask.push_back(!(flag[j]>0));
|
---|
| 3142 | }
|
---|
| 3143 | mathutil::doZeroOrderInterpolation(spec, mask);
|
---|
[2177] | 3144 |
|
---|
[1192] | 3145 | Vector<Complex> lags;
|
---|
[1203] | 3146 | ffts.fft0(lags, spec);
|
---|
[2177] | 3147 |
|
---|
[1579] | 3148 | Int lag0(start+0.5);
|
---|
| 3149 | Int lag1(end+0.5);
|
---|
| 3150 | if (mode == "frequency") {
|
---|
| 3151 | lag0 = Int(spec.nelements()*abs(inc)/(start)+0.5);
|
---|
| 3152 | lag1 = Int(spec.nelements()*abs(inc)/(end)+0.5);
|
---|
| 3153 | }
|
---|
| 3154 | Int lstart = max(0, lag0);
|
---|
[2177] | 3155 | Int lend = min(Int(lags.nelements()-1), lag1);
|
---|
[1579] | 3156 | if (lstart == lend) {
|
---|
| 3157 | lags[lstart] = Complex(0.0);
|
---|
[1192] | 3158 | } else {
|
---|
[1579] | 3159 | if (lstart > lend) {
|
---|
| 3160 | Int tmp = lend;
|
---|
| 3161 | lend = lstart;
|
---|
| 3162 | lstart = tmp;
|
---|
| 3163 | }
|
---|
| 3164 | for (int j=lstart; j <=lend ;++j) {
|
---|
[1192] | 3165 | lags[j] = Complex(0.0);
|
---|
| 3166 | }
|
---|
| 3167 | }
|
---|
[2177] | 3168 |
|
---|
[1203] | 3169 | ffts.fft0(spec, lags);
|
---|
[2177] | 3170 |
|
---|
[1192] | 3171 | specCol.put(i, spec);
|
---|
| 3172 | }
|
---|
| 3173 | ++iter;
|
---|
| 3174 | }
|
---|
| 3175 | return out;
|
---|
| 3176 | }
|
---|
[1819] | 3177 |
|
---|
| 3178 | // Averaging spectra with different channel/resolution
|
---|
| 3179 | CountedPtr<Scantable>
|
---|
| 3180 | STMath::new_average( const std::vector<CountedPtr<Scantable> >& in,
|
---|
| 3181 | const bool& compel,
|
---|
| 3182 | const std::vector<bool>& mask,
|
---|
| 3183 | const std::string& weight,
|
---|
| 3184 | const std::string& avmode )
|
---|
| 3185 | throw ( casa::AipsError )
|
---|
| 3186 | {
|
---|
| 3187 | LogIO os( LogOrigin( "STMath", "new_average()", WHERE ) ) ;
|
---|
| 3188 | if ( avmode == "SCAN" && in.size() != 1 )
|
---|
| 3189 | throw(AipsError("Can't perform 'SCAN' averaging on multiple tables.\n"
|
---|
| 3190 | "Use merge first."));
|
---|
| 3191 |
|
---|
| 3192 | CountedPtr<Scantable> out ; // processed result
|
---|
| 3193 | if ( compel ) {
|
---|
| 3194 | std::vector< CountedPtr<Scantable> > newin ; // input for average process
|
---|
| 3195 | uInt insize = in.size() ; // number of input scantables
|
---|
| 3196 |
|
---|
[2595] | 3197 | // setup newin
|
---|
| 3198 | bool oldInsitu = insitu_ ;
|
---|
| 3199 | setInsitu( false ) ;
|
---|
| 3200 | newin.resize( insize ) ;
|
---|
[1819] | 3201 | for ( uInt itable = 0 ; itable < insize ; itable++ ) {
|
---|
[2595] | 3202 | newin[itable] = getScantable( in[itable], false ) ;
|
---|
[1819] | 3203 | }
|
---|
[2595] | 3204 | setInsitu( oldInsitu ) ;
|
---|
[1819] | 3205 |
|
---|
| 3206 | // warning
|
---|
| 3207 | os << "Average spectra with different spectral resolution" << LogIO::POST ;
|
---|
| 3208 |
|
---|
| 3209 | // temporarily set coordinfo
|
---|
| 3210 | vector<string> oldinfo( insize ) ;
|
---|
| 3211 | for ( uInt itable = 0 ; itable < insize ; itable++ ) {
|
---|
| 3212 | vector<string> coordinfo = in[itable]->getCoordInfo() ;
|
---|
| 3213 | oldinfo[itable] = coordinfo[0] ;
|
---|
| 3214 | coordinfo[0] = "Hz" ;
|
---|
[2595] | 3215 | newin[itable]->setCoordInfo( coordinfo ) ;
|
---|
[1819] | 3216 | }
|
---|
| 3217 |
|
---|
[2595] | 3218 | ostringstream oss ;
|
---|
[1819] | 3219 |
|
---|
| 3220 | // check IF frequency coverage
|
---|
| 3221 | // freqid: list of FREQ_ID, which is used, in each table
|
---|
| 3222 | // iffreq: list of minimum and maximum frequency for each FREQ_ID in
|
---|
| 3223 | // each table
|
---|
| 3224 | // freqid[insize][numIF]
|
---|
| 3225 | // freqid: [[id00, id01, ...],
|
---|
| 3226 | // [id10, id11, ...],
|
---|
| 3227 | // ...
|
---|
| 3228 | // [idn0, idn1, ...]]
|
---|
| 3229 | // iffreq[insize][numIF*2]
|
---|
| 3230 | // iffreq: [[min_id00, max_id00, min_id01, max_id01, ...],
|
---|
| 3231 | // [min_id10, max_id10, min_id11, max_id11, ...],
|
---|
| 3232 | // ...
|
---|
| 3233 | // [min_idn0, max_idn0, min_idn1, max_idn1, ...]]
|
---|
| 3234 | //os << "Check IF settings in each table" << LogIO::POST ;
|
---|
| 3235 | vector< vector<uInt> > freqid( insize );
|
---|
| 3236 | vector< vector<double> > iffreq( insize ) ;
|
---|
| 3237 | for ( uInt itable = 0 ; itable < insize ; itable++ ) {
|
---|
[2595] | 3238 | Vector<uInt> freqIds = newin[itable]->mfreqidCol_.getColumn() ;
|
---|
| 3239 | vector<uInt> uniqueFreqId = newin[itable]->getNumbers(newin[itable]->mfreqidCol_) ;
|
---|
| 3240 | for ( vector<uInt>::iterator i = uniqueFreqId.begin() ;
|
---|
| 3241 | i != uniqueFreqId.end() ; i++ ) {
|
---|
| 3242 | //os << "itable = " << itable << ": IF " << id << " is included in the list" << LogIO::POST ;
|
---|
| 3243 | uInt target = 0 ;
|
---|
| 3244 | while ( freqIds[target] != *i )
|
---|
| 3245 | target++ ;
|
---|
| 3246 | vector<double> abcissa = newin[itable]->getAbcissa( target ) ;
|
---|
| 3247 | freqid[itable].push_back( *i ) ;
|
---|
| 3248 | double incr = abs( abcissa[1] - abcissa[0] ) ;
|
---|
| 3249 | iffreq[itable].push_back( (*min_element(abcissa.begin(),abcissa.end()))-0.5*incr ) ;
|
---|
| 3250 | iffreq[itable].push_back( (*max_element(abcissa.begin(),abcissa.end()))+0.5*incr ) ;
|
---|
[1819] | 3251 | }
|
---|
| 3252 | }
|
---|
| 3253 |
|
---|
| 3254 | // debug
|
---|
[2595] | 3255 | // os << "IF settings summary:" << endl ;
|
---|
| 3256 | // for ( uInt i = 0 ; i < freqid.size() ; i++ ) {
|
---|
| 3257 | // os << " Table" << i << endl ;
|
---|
| 3258 | // for ( uInt j = 0 ; j < freqid[i].size() ; j++ ) {
|
---|
| 3259 | // os << " id = " << freqid[i][j] << " (min,max) = (" << iffreq[i][2*j] << "," << iffreq[i][2*j+1] << ")" << endl ;
|
---|
| 3260 | // }
|
---|
| 3261 | // }
|
---|
| 3262 | // os << endl ;
|
---|
| 3263 | // os.post() ;
|
---|
[1819] | 3264 |
|
---|
| 3265 | // IF grouping based on their frequency coverage
|
---|
[2595] | 3266 | // ifgrp: number of member in each IF group
|
---|
| 3267 | // ifgrp[numgrp]
|
---|
| 3268 | // ifgrp: [n0, n1, ...]
|
---|
[1819] | 3269 | //os << "IF grouping based on their frequency coverage" << LogIO::POST ;
|
---|
| 3270 |
|
---|
| 3271 | // parameter for IF grouping
|
---|
| 3272 | // groupmode = OR retrieve all region
|
---|
| 3273 | // AND only retrieve overlaped region
|
---|
| 3274 | //string groupmode = "AND" ;
|
---|
| 3275 | string groupmode = "OR" ;
|
---|
| 3276 | uInt sizecr = 0 ;
|
---|
| 3277 | if ( groupmode == "AND" )
|
---|
[2476] | 3278 | sizecr = 1 ;
|
---|
[1819] | 3279 | else if ( groupmode == "OR" )
|
---|
| 3280 | sizecr = 0 ;
|
---|
| 3281 |
|
---|
| 3282 | vector<double> sortedfreq ;
|
---|
| 3283 | for ( uInt i = 0 ; i < iffreq.size() ; i++ ) {
|
---|
| 3284 | for ( uInt j = 0 ; j < iffreq[i].size() ; j++ ) {
|
---|
| 3285 | if ( count( sortedfreq.begin(), sortedfreq.end(), iffreq[i][j] ) == 0 )
|
---|
| 3286 | sortedfreq.push_back( iffreq[i][j] ) ;
|
---|
| 3287 | }
|
---|
| 3288 | }
|
---|
| 3289 | sort( sortedfreq.begin(), sortedfreq.end() ) ;
|
---|
[2595] | 3290 | vector<uInt> ifgrp( sortedfreq.size()-1, 0 ) ;
|
---|
[1819] | 3291 | for ( uInt itable = 0 ; itable < insize ; itable++ ) {
|
---|
| 3292 | for ( uInt iif = 0 ; iif < freqid[itable].size() ; iif++ ) {
|
---|
| 3293 | double range0 = iffreq[itable][2*iif] ;
|
---|
| 3294 | double range1 = iffreq[itable][2*iif+1] ;
|
---|
[2595] | 3295 | for ( uInt j = 0 ; j < sortedfreq.size()-1 ; j++ ) {
|
---|
| 3296 | double fmin = max( range0, sortedfreq[j] ) ;
|
---|
| 3297 | double fmax = min( range1, sortedfreq[j+1] ) ;
|
---|
| 3298 | if ( fmin < fmax ) {
|
---|
| 3299 | ifgrp[j]++ ;
|
---|
| 3300 | }
|
---|
| 3301 | }
|
---|
[1819] | 3302 | }
|
---|
| 3303 | }
|
---|
| 3304 |
|
---|
| 3305 | // Grouping continuous IF groups (without frequency gap)
|
---|
| 3306 | // freqgrp: list of IF group indexes in each frequency group
|
---|
| 3307 | // freqgrp[numgrp][nummember]
|
---|
| 3308 | // freqgrp: [[ifgrp00, ifgrp01, ifgrp02, ...],
|
---|
| 3309 | // [ifgrp10, ifgrp11, ifgrp12, ...],
|
---|
| 3310 | // ...
|
---|
| 3311 | // [ifgrpn0, ifgrpn1, ifgrpn2, ...]]
|
---|
[2595] | 3312 | // grprange[2*numgrp]
|
---|
| 3313 | // grprange: [fmin0,fmax0,fmin1,fmax1,...]
|
---|
[1819] | 3314 | vector< vector<uInt> > freqgrp ;
|
---|
[2595] | 3315 | vector<double> grprange ;
|
---|
| 3316 | vector<uInt> grpedge ;
|
---|
| 3317 | for ( uInt igrp = 0 ; igrp < ifgrp.size() ; igrp++ ) {
|
---|
| 3318 | if ( ifgrp[igrp] <= sizecr ) {
|
---|
| 3319 | grpedge.push_back( igrp ) ;
|
---|
[1819] | 3320 | }
|
---|
[2595] | 3321 | }
|
---|
| 3322 | grpedge.push_back( ifgrp.size() ) ;
|
---|
| 3323 | uInt itmp = 0 ;
|
---|
| 3324 | for ( uInt i = 0 ; i < grpedge.size() ; i++ ) {
|
---|
| 3325 | int n = grpedge[i] - itmp ;
|
---|
| 3326 | if ( n > 0 ) {
|
---|
| 3327 | vector<uInt> members( n ) ;
|
---|
| 3328 | for ( int j = 0 ; j < n ; j++ ) {
|
---|
| 3329 | members[j] = itmp+j ;
|
---|
| 3330 | }
|
---|
| 3331 | freqgrp.push_back( members ) ;
|
---|
| 3332 | grprange.push_back( sortedfreq[itmp] ) ;
|
---|
| 3333 | grprange.push_back( sortedfreq[grpedge[i]] ) ;
|
---|
[1819] | 3334 | }
|
---|
[2595] | 3335 | itmp += n + 1 ;
|
---|
[1819] | 3336 | }
|
---|
| 3337 |
|
---|
| 3338 | // print frequency group
|
---|
| 3339 | oss.str("") ;
|
---|
| 3340 | oss << "Frequency Group summary: " << endl ;
|
---|
[2595] | 3341 | oss << " GROUP_ID: [FREQ_MIN, FREQ_MAX]" << endl ;
|
---|
[1819] | 3342 | for ( uInt i = 0 ; i < freqgrp.size() ; i++ ) {
|
---|
[2595] | 3343 | oss << " GROUP " << setw( 2 ) << i << ": [" << grprange[2*i] << "," << grprange[2*i+1] << "]" ;
|
---|
[1819] | 3344 | oss << endl ;
|
---|
| 3345 | }
|
---|
| 3346 | oss << endl ;
|
---|
| 3347 | os << oss.str() << LogIO::POST ;
|
---|
| 3348 |
|
---|
[2595] | 3349 | // groups: list of frequency group index whose frequency range overlaps
|
---|
| 3350 | // with that of each table and IF
|
---|
| 3351 | // groups[numtable][numIF]
|
---|
| 3352 | // groups: [[grpx, grpy,...],
|
---|
| 3353 | // [grpa, grpb,...],
|
---|
[1819] | 3354 | // ...
|
---|
[2595] | 3355 | // [grpk, grpm,...]]
|
---|
| 3356 | vector< vector<uInt> > groups( insize ) ;
|
---|
[1819] | 3357 | for ( uInt i = 0 ; i < insize ; i++ ) {
|
---|
| 3358 | groups[i].resize( freqid[i].size() ) ;
|
---|
| 3359 | }
|
---|
[2595] | 3360 | for ( uInt itable = 0 ; itable < insize ; itable++ ) {
|
---|
| 3361 | for ( uInt ifreq = 0 ; ifreq < freqid[itable].size() ; ifreq++ ) {
|
---|
| 3362 | double minf = iffreq[itable][2*ifreq] ;
|
---|
| 3363 | uInt groupid ;
|
---|
| 3364 | for ( uInt igrp = 0 ; igrp < freqgrp.size() ; igrp++ ) {
|
---|
| 3365 | vector<uInt> memberlist = freqgrp[igrp] ;
|
---|
| 3366 | if ( (minf >= grprange[2*igrp]) && (minf <= grprange[2*igrp+1]) ) {
|
---|
| 3367 | groupid = igrp ;
|
---|
| 3368 | break ;
|
---|
| 3369 | }
|
---|
| 3370 | }
|
---|
| 3371 | groups[itable][ifreq] = groupid ;
|
---|
[1819] | 3372 | }
|
---|
| 3373 | }
|
---|
[2595] | 3374 |
|
---|
[1819] | 3375 |
|
---|
| 3376 | // print membership
|
---|
[2595] | 3377 | oss.str("") ;
|
---|
[1819] | 3378 | for ( uInt i = 0 ; i < insize ; i++ ) {
|
---|
[2595] | 3379 | oss << "Table " << i << endl ;
|
---|
| 3380 | for ( uInt j = 0 ; j < groups[i].size() ; j++ ) {
|
---|
| 3381 | oss << " FREQ_ID " << setw( 2 ) << freqid[i][j] << ": " ;
|
---|
| 3382 | oss << setw( 2 ) << groups[i][j] ;
|
---|
| 3383 | oss << endl ;
|
---|
[1819] | 3384 | }
|
---|
| 3385 | }
|
---|
[2595] | 3386 | os << oss.str() << LogIO::POST ;
|
---|
[1819] | 3387 |
|
---|
| 3388 | // reset SCANNO and IFNO/FREQ_ID: IF is reset by the result of sortation
|
---|
| 3389 | //os << "All IF number is set to IF group index" << LogIO::POST ;
|
---|
[2479] | 3390 | // reset SCANNO only when avmode != "SCAN"
|
---|
| 3391 | if ( avmode != "SCAN" ) {
|
---|
| 3392 | os << "All scan number is set to 0" << LogIO::POST ;
|
---|
| 3393 | for ( uInt itable = 0 ; itable < insize ; itable++ ) {
|
---|
| 3394 | uInt nrow = newin[itable]->nrow() ;
|
---|
[2595] | 3395 | Vector<uInt> resetScan( nrow, 0 ) ;
|
---|
| 3396 | newin[itable]->scanCol_.putColumn( resetScan ) ;
|
---|
[2479] | 3397 | }
|
---|
| 3398 | }
|
---|
[2595] | 3399 |
|
---|
| 3400 | // reset spectra and flagtra: align spectral resolution
|
---|
| 3401 | //os << "Align spectral resolution" << LogIO::POST ;
|
---|
| 3402 | // gmaxdnu: the coarsest frequency resolution in the frequency group
|
---|
| 3403 | // gminfreq: lower frequency edge of the frequency group
|
---|
| 3404 | // gnchan: number of channels for the frequency group
|
---|
| 3405 | vector<double> gmaxdnu( freqgrp.size(), 0.0 ) ;
|
---|
| 3406 | vector<double> gminfreq( freqgrp.size() ) ;
|
---|
| 3407 | vector<double> gnchan( freqgrp.size() ) ;
|
---|
| 3408 | for ( uInt i = 0 ; i < insize ; i++ ) {
|
---|
| 3409 | vector<uInt> members = groups[i] ;
|
---|
| 3410 | for ( uInt j = 0 ; j < members.size() ; j++ ) {
|
---|
| 3411 | uInt groupid = members[j] ;
|
---|
| 3412 | Double rp,rv,ic ;
|
---|
| 3413 | newin[i]->frequencies().getEntry( rp, rv, ic, j ) ;
|
---|
| 3414 | if ( abs(ic) > abs(gmaxdnu[groupid]) )
|
---|
| 3415 | gmaxdnu[groupid] = ic ;
|
---|
[1819] | 3416 | }
|
---|
| 3417 | }
|
---|
[2595] | 3418 | for ( uInt igrp = 0 ; igrp < freqgrp.size() ; igrp++ ) {
|
---|
| 3419 | gminfreq[igrp] = grprange[2*igrp] ;
|
---|
| 3420 | double maxfreq = grprange[2*igrp+1] ;
|
---|
| 3421 | gnchan[igrp] = (int)(abs((maxfreq-gminfreq[igrp])/gmaxdnu[igrp])+0.9) ;
|
---|
[1819] | 3422 | }
|
---|
[2595] | 3423 |
|
---|
| 3424 | // regrid spectral data and update frequency info
|
---|
[1819] | 3425 | for ( uInt itable = 0 ; itable < insize ; itable++ ) {
|
---|
[2595] | 3426 | Vector<uInt> oldFreqId = newin[itable]->mfreqidCol_.getColumn() ;
|
---|
| 3427 | Vector<uInt> newFreqId( oldFreqId.nelements() ) ;
|
---|
[1819] | 3428 |
|
---|
[2595] | 3429 | // update MAIN
|
---|
| 3430 | for ( uInt irow = 0 ; irow < newin[itable]->nrow() ; irow++ ) {
|
---|
| 3431 | uInt groupid = groups[itable][oldFreqId[irow]] ;
|
---|
| 3432 | newFreqId[irow] = groupid ;
|
---|
| 3433 | newin[itable]->regridChannel( gnchan[groupid],
|
---|
| 3434 | gmaxdnu[groupid],
|
---|
| 3435 | gminfreq[groupid],
|
---|
| 3436 | irow ) ;
|
---|
[1819] | 3437 | }
|
---|
[2595] | 3438 | newin[itable]->mfreqidCol_.putColumn( newFreqId ) ;
|
---|
| 3439 | newin[itable]->ifCol_.putColumn( newFreqId ) ;
|
---|
[1819] | 3440 |
|
---|
[2595] | 3441 | // update FREQUENCIES
|
---|
| 3442 | Table tab = newin[itable]->frequencies().table() ;
|
---|
| 3443 | ScalarColumn<uInt> fIdCol( tab, "ID" ) ;
|
---|
| 3444 | ScalarColumn<Double> fRefPixCol( tab, "REFPIX" ) ;
|
---|
| 3445 | ScalarColumn<Double> fRefValCol( tab, "REFVAL" ) ;
|
---|
| 3446 | ScalarColumn<Double> fIncrCol( tab, "INCREMENT" ) ;
|
---|
| 3447 | if ( freqgrp.size() > tab.nrow() ) {
|
---|
| 3448 | tab.addRow( freqgrp.size()-tab.nrow() ) ;
|
---|
[1819] | 3449 | }
|
---|
[2595] | 3450 | for ( uInt irow = 0 ; irow < freqgrp.size() ; irow++ ) {
|
---|
| 3451 | Double refval = gminfreq[irow] + 0.5 * abs(gmaxdnu[irow]) ;
|
---|
| 3452 | Double refpix = (gmaxdnu[irow] > 0.0) ? 0 : gnchan[irow]-1 ;
|
---|
| 3453 | Double increment = gmaxdnu[irow] ;
|
---|
| 3454 | fIdCol.put( irow, irow ) ;
|
---|
| 3455 | fRefPixCol.put( irow, refpix ) ;
|
---|
| 3456 | fRefValCol.put( irow, refval ) ;
|
---|
| 3457 | fIncrCol.put( irow, increment ) ;
|
---|
[1819] | 3458 | }
|
---|
| 3459 | }
|
---|
| 3460 |
|
---|
| 3461 | // set back coordinfo
|
---|
| 3462 | for ( uInt itable = 0 ; itable < insize ; itable++ ) {
|
---|
| 3463 | vector<string> coordinfo = newin[itable]->getCoordInfo() ;
|
---|
| 3464 | coordinfo[0] = oldinfo[itable] ;
|
---|
| 3465 | newin[itable]->setCoordInfo( coordinfo ) ;
|
---|
[2595] | 3466 | }
|
---|
[1819] | 3467 |
|
---|
| 3468 | // average
|
---|
[2595] | 3469 | out = average( newin, mask, weight, avmode ) ;
|
---|
[1819] | 3470 | }
|
---|
| 3471 | else {
|
---|
| 3472 | // simple average
|
---|
| 3473 | out = average( in, mask, weight, avmode ) ;
|
---|
| 3474 | }
|
---|
| 3475 |
|
---|
[2345] | 3476 | return out;
|
---|
[1819] | 3477 | }
|
---|
| 3478 |
|
---|
| 3479 | CountedPtr<Scantable> STMath::cwcal( const CountedPtr<Scantable>& s,
|
---|
| 3480 | const String calmode,
|
---|
| 3481 | const String antname )
|
---|
| 3482 | {
|
---|
| 3483 | // frequency switch
|
---|
| 3484 | if ( calmode == "fs" ) {
|
---|
| 3485 | return cwcalfs( s, antname ) ;
|
---|
| 3486 | }
|
---|
| 3487 | else {
|
---|
| 3488 | vector<bool> masks = s->getMask( 0 ) ;
|
---|
| 3489 | vector<int> types ;
|
---|
| 3490 |
|
---|
[2580] | 3491 | // save original table selection
|
---|
| 3492 | Table torg = s->table_ ;
|
---|
| 3493 |
|
---|
[1819] | 3494 | // sky scan
|
---|
[2580] | 3495 | bool insitu = insitu_ ;
|
---|
| 3496 | insitu_ = false ;
|
---|
| 3497 | // share calibration scans before average with out
|
---|
| 3498 | CountedPtr<Scantable> out = getScantable( s, true ) ;
|
---|
| 3499 | insitu_ = insitu ;
|
---|
| 3500 | out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::SKY ) ;
|
---|
| 3501 | out->attach() ;
|
---|
| 3502 | CountedPtr<Scantable> asky = averageWithinSession( out,
|
---|
| 3503 | masks,
|
---|
| 3504 | "TINT" ) ;
|
---|
[1819] | 3505 | // hot scan
|
---|
[2580] | 3506 | out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::HOT ) ;
|
---|
| 3507 | out->attach() ;
|
---|
| 3508 | CountedPtr<Scantable> ahot = averageWithinSession( out,
|
---|
| 3509 | masks,
|
---|
| 3510 | "TINT" ) ;
|
---|
[1819] | 3511 | // cold scan
|
---|
| 3512 | CountedPtr<Scantable> acold ;
|
---|
[2580] | 3513 | // out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::COLD ) ;
|
---|
| 3514 | // out->attach() ;
|
---|
| 3515 | // CountedPtr<Scantable> acold = averageWithinSession( out,
|
---|
| 3516 | // masks,
|
---|
| 3517 | // "TINT" ) ;
|
---|
[1819] | 3518 |
|
---|
| 3519 | // off scan
|
---|
[2580] | 3520 | out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::PSOFF ) ;
|
---|
| 3521 | out->attach() ;
|
---|
| 3522 | CountedPtr<Scantable> aoff = averageWithinSession( out,
|
---|
| 3523 | masks,
|
---|
| 3524 | "TINT" ) ;
|
---|
[1819] | 3525 |
|
---|
| 3526 | // on scan
|
---|
[2580] | 3527 | s->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::PSON ) ;
|
---|
| 3528 | s->attach() ;
|
---|
| 3529 | out->table_ = out->originalTable_ ;
|
---|
| 3530 | out->attach() ;
|
---|
| 3531 | out->table().addRow( s->nrow() ) ;
|
---|
| 3532 | copyRows( out->table(), s->table(), 0, 0, s->nrow(), False, True, False ) ;
|
---|
[1819] | 3533 |
|
---|
| 3534 | // process each on scan
|
---|
[2580] | 3535 | STSelector sel ;
|
---|
| 3536 | vector<string> cols( 3 ) ;
|
---|
| 3537 | cols[0] = "BEAMNO" ;
|
---|
| 3538 | cols[1] = "POLNO" ;
|
---|
| 3539 | cols[2] = "IFNO" ;
|
---|
| 3540 | STIdxIter *iter = new STIdxIterAcc( out, cols ) ;
|
---|
| 3541 | while ( !iter->pastEnd() ) {
|
---|
| 3542 | Vector<uInt> ids = iter->current() ;
|
---|
| 3543 | stringstream ss ;
|
---|
| 3544 | ss << "SELECT FROM $1 WHERE "
|
---|
| 3545 | << "BEAMNO==" << ids[0] << "&&"
|
---|
| 3546 | << "POLNO==" << ids[1] << "&&"
|
---|
| 3547 | << "IFNO==" << ids[2] ;
|
---|
| 3548 | //cout << "TaQL string: " << ss.str() << endl ;
|
---|
| 3549 | sel.setTaQL( ss.str() ) ;
|
---|
| 3550 | aoff->setSelection( sel ) ;
|
---|
| 3551 | ahot->setSelection( sel ) ;
|
---|
| 3552 | asky->setSelection( sel ) ;
|
---|
| 3553 | Vector<uInt> rows = iter->getRows( SHARE ) ;
|
---|
| 3554 | // out should be an exact copy of s except that SPECTRA column is empty
|
---|
| 3555 | calibrateCW( out, s, aoff, asky, ahot, acold, rows, antname ) ;
|
---|
| 3556 | aoff->unsetSelection() ;
|
---|
| 3557 | ahot->unsetSelection() ;
|
---|
[1819] | 3558 | asky->unsetSelection() ;
|
---|
| 3559 | sel.reset() ;
|
---|
[2580] | 3560 | iter->next() ;
|
---|
[1819] | 3561 | }
|
---|
[2580] | 3562 | delete iter ;
|
---|
| 3563 | s->table_ = torg ;
|
---|
| 3564 | s->attach() ;
|
---|
[1819] | 3565 |
|
---|
| 3566 | // flux unit
|
---|
| 3567 | out->setFluxUnit( "K" ) ;
|
---|
| 3568 |
|
---|
| 3569 | return out ;
|
---|
| 3570 | }
|
---|
| 3571 | }
|
---|
| 3572 |
|
---|
| 3573 | CountedPtr<Scantable> STMath::almacal( const CountedPtr<Scantable>& s,
|
---|
| 3574 | const String calmode )
|
---|
| 3575 | {
|
---|
| 3576 | // frequency switch
|
---|
| 3577 | if ( calmode == "fs" ) {
|
---|
| 3578 | return almacalfs( s ) ;
|
---|
| 3579 | }
|
---|
| 3580 | else {
|
---|
[2580] | 3581 | // double t0, t1 ;
|
---|
| 3582 | // t0 = mathutil::gettimeofday_sec() ;
|
---|
[1819] | 3583 | vector<bool> masks = s->getMask( 0 ) ;
|
---|
[2580] | 3584 |
|
---|
| 3585 | // save original table selection
|
---|
| 3586 | Table torg = s->table_ ;
|
---|
| 3587 |
|
---|
[1819] | 3588 | // off scan
|
---|
| 3589 | // TODO 2010/01/08 TN
|
---|
| 3590 | // Grouping by time should be needed before averaging.
|
---|
| 3591 | // Each group must have own unique SCANNO (should be renumbered).
|
---|
| 3592 | // See PIPELINE/SDCalibration.py
|
---|
| 3593 | bool insitu = insitu_ ;
|
---|
| 3594 | insitu_ = false ;
|
---|
[2580] | 3595 | // share off scan before average with out
|
---|
[1819] | 3596 | CountedPtr<Scantable> out = getScantable( s, true ) ;
|
---|
[2580] | 3597 | out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::PSOFF ) ;
|
---|
| 3598 | out->attach() ;
|
---|
[1819] | 3599 | insitu_ = insitu ;
|
---|
[2580] | 3600 | CountedPtr<Scantable> aoff = averageWithinSession( out,
|
---|
| 3601 | masks,
|
---|
| 3602 | "TINT" ) ;
|
---|
| 3603 |
|
---|
| 3604 | // on scan
|
---|
| 3605 | // t0 = mathutil::gettimeofday_sec() ;
|
---|
| 3606 | s->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::PSON ) ;
|
---|
| 3607 | s->attach() ;
|
---|
| 3608 | out->table_ = out->originalTable_ ;
|
---|
| 3609 | out->attach() ;
|
---|
| 3610 | out->table().addRow( s->nrow() ) ;
|
---|
| 3611 | copyRows( out->table(), s->table(), 0, 0, s->nrow(), False ) ;
|
---|
| 3612 | // t1 = mathutil::gettimeofday_sec() ;
|
---|
| 3613 | // cout << "elapsed time for preparing output table: " << t1-t0 << " sec" << endl ;
|
---|
| 3614 |
|
---|
[1819] | 3615 | // process each on scan
|
---|
[2580] | 3616 | // t0 = mathutil::gettimeofday_sec() ;
|
---|
| 3617 |
|
---|
| 3618 | // using STIdxIterAcc
|
---|
| 3619 | vector<string> cols( 3 ) ;
|
---|
| 3620 | cols[0] = "BEAMNO" ;
|
---|
| 3621 | cols[1] = "POLNO" ;
|
---|
| 3622 | cols[2] = "IFNO" ;
|
---|
[2911] | 3623 | STIdxIter2 iter( out, cols ) ;
|
---|
[2580] | 3624 | STSelector sel ;
|
---|
[2911] | 3625 | while ( !iter.pastEnd() ) {
|
---|
| 3626 | Record ids = iter.currentValue() ;
|
---|
[2580] | 3627 | stringstream ss ;
|
---|
| 3628 | ss << "SELECT FROM $1 WHERE "
|
---|
[2911] | 3629 | << "BEAMNO==" << ids.asuInt(cols[0]) << "&&"
|
---|
| 3630 | << "POLNO==" << ids.asuInt(cols[1]) << "&&"
|
---|
| 3631 | << "IFNO==" << ids.asuInt(cols[2]) ;
|
---|
[2580] | 3632 | //cout << "TaQL string: " << ss.str() << endl ;
|
---|
| 3633 | sel.setTaQL( ss.str() ) ;
|
---|
| 3634 | aoff->setSelection( sel ) ;
|
---|
[2911] | 3635 | Vector<uInt> rows = iter.getRows( SHARE ) ;
|
---|
[2580] | 3636 | // out should be an exact copy of s except that SPECTRA column is empty
|
---|
| 3637 | calibrateALMA( out, s, aoff, rows ) ;
|
---|
| 3638 | aoff->unsetSelection() ;
|
---|
| 3639 | sel.reset() ;
|
---|
[2911] | 3640 | iter.next() ;
|
---|
[1819] | 3641 | }
|
---|
[2580] | 3642 | s->table_ = torg ;
|
---|
| 3643 | s->attach() ;
|
---|
[1819] | 3644 |
|
---|
[2580] | 3645 | // t1 = mathutil::gettimeofday_sec() ;
|
---|
| 3646 | // cout << "elapsed time for calibration: " << t1-t0 << " sec" << endl ;
|
---|
| 3647 |
|
---|
[1819] | 3648 | // flux unit
|
---|
| 3649 | out->setFluxUnit( "K" ) ;
|
---|
| 3650 |
|
---|
| 3651 | return out ;
|
---|
| 3652 | }
|
---|
| 3653 | }
|
---|
| 3654 |
|
---|
| 3655 | CountedPtr<Scantable> STMath::cwcalfs( const CountedPtr<Scantable>& s,
|
---|
| 3656 | const String antname )
|
---|
| 3657 | {
|
---|
| 3658 | vector<int> types ;
|
---|
| 3659 |
|
---|
| 3660 | // APEX calibration mode
|
---|
| 3661 | int apexcalmode = 1 ;
|
---|
| 3662 |
|
---|
| 3663 | if ( antname.find( "APEX" ) != string::npos ) {
|
---|
| 3664 | // check if off scan exists or not
|
---|
| 3665 | STSelector sel = STSelector() ;
|
---|
| 3666 | //sel.setName( offstr1 ) ;
|
---|
| 3667 | types.push_back( SrcType::FLOOFF ) ;
|
---|
| 3668 | sel.setTypes( types ) ;
|
---|
| 3669 | try {
|
---|
| 3670 | s->setSelection( sel ) ;
|
---|
| 3671 | }
|
---|
| 3672 | catch ( AipsError &e ) {
|
---|
| 3673 | apexcalmode = 0 ;
|
---|
| 3674 | }
|
---|
| 3675 | sel.reset() ;
|
---|
| 3676 | }
|
---|
| 3677 | s->unsetSelection() ;
|
---|
| 3678 | types.clear() ;
|
---|
| 3679 |
|
---|
| 3680 | vector<bool> masks = s->getMask( 0 ) ;
|
---|
| 3681 | CountedPtr<Scantable> ssig, sref ;
|
---|
[2580] | 3682 | //CountedPtr<Scantable> out ;
|
---|
| 3683 | bool insitu = insitu_ ;
|
---|
| 3684 | insitu_ = False ;
|
---|
| 3685 | CountedPtr<Scantable> out = getScantable( s, true ) ;
|
---|
| 3686 | insitu_ = insitu ;
|
---|
[1819] | 3687 |
|
---|
| 3688 | if ( antname.find( "APEX" ) != string::npos ) {
|
---|
| 3689 | // APEX calibration
|
---|
| 3690 | // sky scan
|
---|
[2580] | 3691 | out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FLOSKY ) ;
|
---|
| 3692 | out->attach() ;
|
---|
| 3693 | CountedPtr<Scantable> askylo = averageWithinSession( out,
|
---|
| 3694 | masks,
|
---|
| 3695 | "TINT" ) ;
|
---|
| 3696 | out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FHISKY ) ;
|
---|
| 3697 | out->attach() ;
|
---|
| 3698 | CountedPtr<Scantable> askyhi = averageWithinSession( out,
|
---|
| 3699 | masks,
|
---|
| 3700 | "TINT" ) ;
|
---|
[1819] | 3701 |
|
---|
| 3702 | // hot scan
|
---|
[2580] | 3703 | out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FLOHOT ) ;
|
---|
| 3704 | out->attach() ;
|
---|
| 3705 | CountedPtr<Scantable> ahotlo = averageWithinSession( out,
|
---|
| 3706 | masks,
|
---|
| 3707 | "TINT" ) ;
|
---|
| 3708 | out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FHIHOT ) ;
|
---|
| 3709 | out->attach() ;
|
---|
| 3710 | CountedPtr<Scantable> ahothi = averageWithinSession( out,
|
---|
| 3711 | masks,
|
---|
| 3712 | "TINT" ) ;
|
---|
[1819] | 3713 |
|
---|
| 3714 | // cold scan
|
---|
| 3715 | CountedPtr<Scantable> acoldlo, acoldhi ;
|
---|
[2580] | 3716 | // out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FLOCOLD ) ;
|
---|
| 3717 | // out->attach() ;
|
---|
| 3718 | // CountedPtr<Scantable> acoldlo = averageWithinSession( out,
|
---|
| 3719 | // masks,
|
---|
| 3720 | // "TINT" ) ;
|
---|
| 3721 | // out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FHICOLD ) ;
|
---|
| 3722 | // out->attach() ;
|
---|
| 3723 | // CountedPtr<Scantable> acoldhi = averageWithinSession( out,
|
---|
| 3724 | // masks,
|
---|
| 3725 | // "TINT" ) ;
|
---|
[1819] | 3726 |
|
---|
| 3727 | // ref scan
|
---|
| 3728 | insitu_ = false ;
|
---|
| 3729 | sref = getScantable( s, true ) ;
|
---|
[2580] | 3730 | CountedPtr<Scantable> rref = getScantable( s, true ) ;
|
---|
[1819] | 3731 | insitu_ = insitu ;
|
---|
[2580] | 3732 | rref->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FSLO ) ;
|
---|
| 3733 | rref->attach() ;
|
---|
| 3734 | copyRows( sref->table_, rref->table_, 0, 0, rref->nrow(), False, True, False ) ;
|
---|
[1819] | 3735 |
|
---|
| 3736 | // sig scan
|
---|
| 3737 | insitu_ = false ;
|
---|
| 3738 | ssig = getScantable( s, true ) ;
|
---|
[2580] | 3739 | CountedPtr<Scantable> rsig = getScantable( s, true ) ;
|
---|
[1819] | 3740 | insitu_ = insitu ;
|
---|
[2580] | 3741 | rsig->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FSHI ) ;
|
---|
| 3742 | rsig->attach() ;
|
---|
| 3743 | copyRows( ssig->table_, rsig->table_, 0, 0, rsig->nrow(), False, True, False ) ;
|
---|
[1819] | 3744 |
|
---|
| 3745 | if ( apexcalmode == 0 ) {
|
---|
[2580] | 3746 | // using STIdxIterAcc
|
---|
| 3747 | vector<string> cols( 3 ) ;
|
---|
| 3748 | cols[0] = "BEAMNO" ;
|
---|
| 3749 | cols[1] = "POLNO" ;
|
---|
| 3750 | cols[2] = "IFNO" ;
|
---|
| 3751 | STIdxIter *iter = new STIdxIterAcc( ssig, cols ) ;
|
---|
| 3752 | STSelector sel ;
|
---|
| 3753 | vector< CountedPtr<Scantable> > on( 2 ) ;
|
---|
| 3754 | on[0] = rsig ;
|
---|
| 3755 | on[1] = rref ;
|
---|
| 3756 | vector< CountedPtr<Scantable> > sky( 2 ) ;
|
---|
| 3757 | sky[0] = askylo ;
|
---|
| 3758 | sky[1] = askyhi ;
|
---|
| 3759 | vector< CountedPtr<Scantable> > hot( 2 ) ;
|
---|
| 3760 | hot[0] = ahotlo ;
|
---|
| 3761 | hot[1] = ahothi ;
|
---|
| 3762 | vector< CountedPtr<Scantable> > cold( 2 ) ;
|
---|
| 3763 | while ( !iter->pastEnd() ) {
|
---|
| 3764 | Vector<uInt> ids = iter->current() ;
|
---|
| 3765 | stringstream ss ;
|
---|
| 3766 | ss << "SELECT FROM $1 WHERE "
|
---|
| 3767 | << "BEAMNO==" << ids[0] << "&&"
|
---|
| 3768 | << "POLNO==" << ids[1] << "&&"
|
---|
| 3769 | << "IFNO==" << ids[2] ;
|
---|
| 3770 | //cout << "TaQL string: " << ss.str() << endl ;
|
---|
| 3771 | sel.setTaQL( ss.str() ) ;
|
---|
| 3772 | sky[0]->setSelection( sel ) ;
|
---|
| 3773 | sky[1]->setSelection( sel ) ;
|
---|
| 3774 | hot[0]->setSelection( sel ) ;
|
---|
| 3775 | hot[1]->setSelection( sel ) ;
|
---|
| 3776 | Vector<uInt> rows = iter->getRows( SHARE ) ;
|
---|
| 3777 | calibrateAPEXFS( ssig, sref, on, sky, hot, cold, rows ) ;
|
---|
| 3778 | sky[0]->unsetSelection() ;
|
---|
| 3779 | sky[1]->unsetSelection() ;
|
---|
| 3780 | hot[0]->unsetSelection() ;
|
---|
| 3781 | hot[1]->unsetSelection() ;
|
---|
[1819] | 3782 | sel.reset() ;
|
---|
[2580] | 3783 | iter->next() ;
|
---|
[1819] | 3784 | }
|
---|
[2580] | 3785 | delete iter ;
|
---|
| 3786 |
|
---|
[1819] | 3787 | }
|
---|
| 3788 | else if ( apexcalmode == 1 ) {
|
---|
| 3789 | // APEX fs data with off scan
|
---|
| 3790 | // off scan
|
---|
[2580] | 3791 | out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FLOOFF ) ;
|
---|
| 3792 | out->attach() ;
|
---|
| 3793 | CountedPtr<Scantable> aofflo = averageWithinSession( out,
|
---|
| 3794 | masks,
|
---|
| 3795 | "TINT" ) ;
|
---|
| 3796 | out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::FHIOFF ) ;
|
---|
| 3797 | out->attach() ;
|
---|
| 3798 | CountedPtr<Scantable> aoffhi = averageWithinSession( out,
|
---|
| 3799 | masks,
|
---|
| 3800 | "TINT" ) ;
|
---|
[1819] | 3801 |
|
---|
| 3802 | // process each sig and ref scan
|
---|
[2580] | 3803 | // STSelector sel ;
|
---|
| 3804 | vector<string> cols( 3 ) ;
|
---|
| 3805 | cols[0] = "BEAMNO" ;
|
---|
| 3806 | cols[1] = "POLNO" ;
|
---|
| 3807 | cols[2] = "IFNO" ;
|
---|
| 3808 | STIdxIter *iter = new STIdxIterAcc( ssig, cols ) ;
|
---|
| 3809 | STSelector sel ;
|
---|
| 3810 | while ( !iter->pastEnd() ) {
|
---|
| 3811 | Vector<uInt> ids = iter->current() ;
|
---|
| 3812 | stringstream ss ;
|
---|
| 3813 | ss << "SELECT FROM $1 WHERE "
|
---|
| 3814 | << "BEAMNO==" << ids[0] << "&&"
|
---|
| 3815 | << "POLNO==" << ids[1] << "&&"
|
---|
| 3816 | << "IFNO==" << ids[2] ;
|
---|
| 3817 | //cout << "TaQL string: " << ss.str() << endl ;
|
---|
| 3818 | sel.setTaQL( ss.str() ) ;
|
---|
| 3819 | aofflo->setSelection( sel ) ;
|
---|
| 3820 | ahotlo->setSelection( sel ) ;
|
---|
[1819] | 3821 | askylo->setSelection( sel ) ;
|
---|
[2580] | 3822 | Vector<uInt> rows = iter->getRows( SHARE ) ;
|
---|
| 3823 | calibrateCW( ssig, rsig, aofflo, askylo, ahotlo, acoldlo, rows, antname ) ;
|
---|
| 3824 | aofflo->unsetSelection() ;
|
---|
| 3825 | ahotlo->unsetSelection() ;
|
---|
[1819] | 3826 | askylo->unsetSelection() ;
|
---|
| 3827 | sel.reset() ;
|
---|
[2580] | 3828 | iter->next() ;
|
---|
| 3829 | }
|
---|
| 3830 | delete iter ;
|
---|
| 3831 | iter = new STIdxIterAcc( sref, cols ) ;
|
---|
| 3832 | while ( !iter->pastEnd() ) {
|
---|
| 3833 | Vector<uInt> ids = iter->current() ;
|
---|
| 3834 | stringstream ss ;
|
---|
| 3835 | ss << "SELECT FROM $1 WHERE "
|
---|
| 3836 | << "BEAMNO==" << ids[0] << "&&"
|
---|
| 3837 | << "POLNO==" << ids[1] << "&&"
|
---|
| 3838 | << "IFNO==" << ids[2] ;
|
---|
| 3839 | //cout << "TaQL string: " << ss.str() << endl ;
|
---|
| 3840 | sel.setTaQL( ss.str() ) ;
|
---|
| 3841 | aoffhi->setSelection( sel ) ;
|
---|
| 3842 | ahothi->setSelection( sel ) ;
|
---|
| 3843 | askyhi->setSelection( sel ) ;
|
---|
| 3844 | Vector<uInt> rows = iter->getRows( SHARE ) ;
|
---|
| 3845 | calibrateCW( sref, rref, aoffhi, askyhi, ahothi, acoldhi, rows, antname ) ;
|
---|
| 3846 | aoffhi->unsetSelection() ;
|
---|
| 3847 | ahothi->unsetSelection() ;
|
---|
[1819] | 3848 | askyhi->unsetSelection() ;
|
---|
| 3849 | sel.reset() ;
|
---|
[2580] | 3850 | iter->next() ;
|
---|
[1819] | 3851 | }
|
---|
[2580] | 3852 | delete iter ;
|
---|
[1819] | 3853 | }
|
---|
| 3854 | }
|
---|
| 3855 | else {
|
---|
| 3856 | // non-APEX fs data
|
---|
| 3857 | // sky scan
|
---|
[2580] | 3858 | out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::SKY ) ;
|
---|
| 3859 | out->attach() ;
|
---|
| 3860 | CountedPtr<Scantable> asky = averageWithinSession( out,
|
---|
| 3861 | masks,
|
---|
| 3862 | "TINT" ) ;
|
---|
[1819] | 3863 | STSelector sel = STSelector() ;
|
---|
[2580] | 3864 |
|
---|
[1819] | 3865 | // hot scan
|
---|
[2580] | 3866 | out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::HOT ) ;
|
---|
| 3867 | out->attach() ;
|
---|
| 3868 | CountedPtr<Scantable> ahot = averageWithinSession( out,
|
---|
| 3869 | masks,
|
---|
| 3870 | "TINT" ) ;
|
---|
[1819] | 3871 |
|
---|
| 3872 | // cold scan
|
---|
| 3873 | CountedPtr<Scantable> acold ;
|
---|
[2580] | 3874 | // out->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::COLD ) ;
|
---|
| 3875 | // out->attach() ;
|
---|
| 3876 | // CountedPtr<Scantable> acold = averageWithinSession( out,
|
---|
| 3877 | // masks,
|
---|
| 3878 | // "TINT" ) ;
|
---|
[1819] | 3879 |
|
---|
| 3880 | // ref scan
|
---|
| 3881 | bool insitu = insitu_ ;
|
---|
| 3882 | insitu_ = false ;
|
---|
| 3883 | sref = getScantable( s, true ) ;
|
---|
[2580] | 3884 | CountedPtr<Scantable> rref = getScantable( s, true ) ;
|
---|
[1819] | 3885 | insitu_ = insitu ;
|
---|
[2580] | 3886 | rref->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::PSOFF ) ;
|
---|
| 3887 | rref->attach() ;
|
---|
| 3888 | copyRows( sref->table_, rref->table_, 0, 0, rref->nrow(), False, True, False ) ;
|
---|
[1819] | 3889 |
|
---|
| 3890 | // sig scan
|
---|
| 3891 | insitu_ = false ;
|
---|
| 3892 | ssig = getScantable( s, true ) ;
|
---|
[2580] | 3893 | CountedPtr<Scantable> rsig = getScantable( s, true ) ;
|
---|
[1819] | 3894 | insitu_ = insitu ;
|
---|
[2580] | 3895 | rsig->table_ = s->table_( s->table_.col("SRCTYPE") == (Int)SrcType::PSON ) ;
|
---|
| 3896 | rsig->attach() ;
|
---|
| 3897 | copyRows( ssig->table_, rsig->table_, 0, 0, rsig->nrow(), False, True, False ) ;
|
---|
[1819] | 3898 |
|
---|
| 3899 | // process each sig and ref scan
|
---|
[2580] | 3900 | vector<string> cols( 3 ) ;
|
---|
| 3901 | cols[0] = "BEAMNO" ;
|
---|
| 3902 | cols[1] = "POLNO" ;
|
---|
| 3903 | cols[2] = "IFNO" ;
|
---|
| 3904 | STIdxIter *iter = new STIdxIterAcc( ssig, cols ) ;
|
---|
| 3905 | while ( !iter->pastEnd() ) {
|
---|
| 3906 | Vector<uInt> ids = iter->current() ;
|
---|
| 3907 | stringstream ss ;
|
---|
| 3908 | ss << "SELECT FROM $1 WHERE "
|
---|
| 3909 | << "BEAMNO==" << ids[0] << "&&"
|
---|
| 3910 | << "POLNO==" << ids[1] << "&&"
|
---|
| 3911 | << "IFNO==" << ids[2] ;
|
---|
| 3912 | //cout << "TaQL string: " << ss.str() << endl ;
|
---|
| 3913 | sel.setTaQL( ss.str() ) ;
|
---|
| 3914 | ahot->setSelection( sel ) ;
|
---|
[1819] | 3915 | asky->setSelection( sel ) ;
|
---|
[2580] | 3916 | Vector<uInt> rows = iter->getRows( SHARE ) ;
|
---|
| 3917 | // out should be an exact copy of s except that SPECTRA column is empty
|
---|
| 3918 | calibrateFS( ssig, sref, rsig, rref, asky, ahot, acold, rows ) ;
|
---|
| 3919 | ahot->unsetSelection() ;
|
---|
[1819] | 3920 | asky->unsetSelection() ;
|
---|
| 3921 | sel.reset() ;
|
---|
[2580] | 3922 | iter->next() ;
|
---|
[1819] | 3923 | }
|
---|
[2580] | 3924 | delete iter ;
|
---|
[1819] | 3925 | }
|
---|
| 3926 |
|
---|
| 3927 | // do folding if necessary
|
---|
| 3928 | Table sigtab = ssig->table() ;
|
---|
| 3929 | Table reftab = sref->table() ;
|
---|
| 3930 | ScalarColumn<uInt> reffidCol ;
|
---|
| 3931 | Int nchan = (Int)ssig->nchan() ;
|
---|
| 3932 | reffidCol.attach( reftab, "FREQ_ID" ) ;
|
---|
[2580] | 3933 | Vector<uInt> sfids = ssig->mfreqidCol_.getColumn() ;
|
---|
| 3934 | Vector<uInt> rfids = sref->mfreqidCol_.getColumn() ;
|
---|
[1819] | 3935 | vector<uInt> sfids_unique ;
|
---|
| 3936 | vector<uInt> rfids_unique ;
|
---|
| 3937 | vector<uInt> sifno_unique ;
|
---|
| 3938 | vector<uInt> rifno_unique ;
|
---|
| 3939 | for ( uInt i = 0 ; i < sfids.nelements() ; i++ ) {
|
---|
| 3940 | if ( count( sfids_unique.begin(), sfids_unique.end(), sfids[i] ) == 0 ) {
|
---|
| 3941 | sfids_unique.push_back( sfids[i] ) ;
|
---|
| 3942 | sifno_unique.push_back( ssig->getIF( i ) ) ;
|
---|
| 3943 | }
|
---|
| 3944 | if ( count( rfids_unique.begin(), rfids_unique.end(), rfids[i] ) == 0 ) {
|
---|
| 3945 | rfids_unique.push_back( rfids[i] ) ;
|
---|
| 3946 | rifno_unique.push_back( sref->getIF( i ) ) ;
|
---|
| 3947 | }
|
---|
| 3948 | }
|
---|
| 3949 | double refpix_sig, refval_sig, increment_sig ;
|
---|
| 3950 | double refpix_ref, refval_ref, increment_ref ;
|
---|
| 3951 | vector< CountedPtr<Scantable> > tmp( sfids_unique.size() ) ;
|
---|
| 3952 | for ( uInt i = 0 ; i < sfids_unique.size() ; i++ ) {
|
---|
| 3953 | ssig->frequencies().getEntry( refpix_sig, refval_sig, increment_sig, sfids_unique[i] ) ;
|
---|
| 3954 | sref->frequencies().getEntry( refpix_ref, refval_ref, increment_ref, rfids_unique[i] ) ;
|
---|
| 3955 | if ( refpix_sig == refpix_ref ) {
|
---|
| 3956 | double foffset = refval_ref - refval_sig ;
|
---|
| 3957 | int choffset = static_cast<int>(foffset/increment_sig) ;
|
---|
| 3958 | double doffset = foffset / increment_sig ;
|
---|
| 3959 | if ( abs(choffset) >= nchan ) {
|
---|
| 3960 | LogIO os( LogOrigin( "STMath", "cwcalfs", WHERE ) ) ;
|
---|
| 3961 | os << "FREQ_ID=[" << sfids_unique[i] << "," << rfids_unique[i] << "]: out-band frequency switching, no folding" << LogIO::POST ;
|
---|
| 3962 | os << "Just return signal data" << LogIO::POST ;
|
---|
| 3963 | //std::vector< CountedPtr<Scantable> > tabs ;
|
---|
| 3964 | //tabs.push_back( ssig ) ;
|
---|
| 3965 | //tabs.push_back( sref ) ;
|
---|
| 3966 | //out = merge( tabs ) ;
|
---|
| 3967 | tmp[i] = ssig ;
|
---|
| 3968 | }
|
---|
| 3969 | else {
|
---|
| 3970 | STSelector sel = STSelector() ;
|
---|
| 3971 | vector<int> v( 1, sifno_unique[i] ) ;
|
---|
| 3972 | sel.setIFs( v ) ;
|
---|
| 3973 | ssig->setSelection( sel ) ;
|
---|
| 3974 | sel.reset() ;
|
---|
| 3975 | v[0] = rifno_unique[i] ;
|
---|
| 3976 | sel.setIFs( v ) ;
|
---|
| 3977 | sref->setSelection( sel ) ;
|
---|
| 3978 | sel.reset() ;
|
---|
| 3979 | if ( antname.find( "APEX" ) != string::npos ) {
|
---|
| 3980 | tmp[i] = dofold( ssig, sref, 0.5*doffset, -0.5*doffset ) ;
|
---|
| 3981 | //tmp[i] = dofold( ssig, sref, doffset ) ;
|
---|
| 3982 | }
|
---|
| 3983 | else {
|
---|
| 3984 | tmp[i] = dofold( ssig, sref, doffset ) ;
|
---|
| 3985 | }
|
---|
| 3986 | ssig->unsetSelection() ;
|
---|
| 3987 | sref->unsetSelection() ;
|
---|
| 3988 | }
|
---|
| 3989 | }
|
---|
| 3990 | }
|
---|
| 3991 |
|
---|
| 3992 | if ( tmp.size() > 1 ) {
|
---|
| 3993 | out = merge( tmp ) ;
|
---|
| 3994 | }
|
---|
| 3995 | else {
|
---|
| 3996 | out = tmp[0] ;
|
---|
| 3997 | }
|
---|
| 3998 |
|
---|
| 3999 | // flux unit
|
---|
| 4000 | out->setFluxUnit( "K" ) ;
|
---|
| 4001 |
|
---|
| 4002 | return out ;
|
---|
| 4003 | }
|
---|
| 4004 |
|
---|
| 4005 | CountedPtr<Scantable> STMath::almacalfs( const CountedPtr<Scantable>& s )
|
---|
| 4006 | {
|
---|
[2163] | 4007 | (void) s; //currently unused
|
---|
[1819] | 4008 | CountedPtr<Scantable> out ;
|
---|
| 4009 |
|
---|
| 4010 | return out ;
|
---|
| 4011 | }
|
---|
| 4012 |
|
---|
[2580] | 4013 | Vector<Float> STMath::getSpectrumFromTime( double reftime,
|
---|
| 4014 | const Vector<Double> &timeVec,
|
---|
| 4015 | const vector<int> &idx,
|
---|
| 4016 | const Matrix<Float>& spectra,
|
---|
[1819] | 4017 | string mode )
|
---|
| 4018 | {
|
---|
| 4019 | LogIO os( LogOrigin( "STMath", "getSpectrumFromTime", WHERE ) ) ;
|
---|
[2580] | 4020 | Vector<Float> sp ;
|
---|
| 4021 | uInt ncol = spectra.ncolumn() ;
|
---|
[1819] | 4022 |
|
---|
[2580] | 4023 | if ( ncol == 0 ) {
|
---|
[1819] | 4024 | os << LogIO::SEVERE << "No spectra in the input scantable. Return empty spectrum." << LogIO::POST ;
|
---|
| 4025 | return sp ;
|
---|
| 4026 | }
|
---|
[2580] | 4027 | else if ( ncol == 1 ) {
|
---|
[1819] | 4028 | //os << "use row " << 0 << " (scanno = " << s->getScan( 0 ) << ")" << LogIO::POST ;
|
---|
[2580] | 4029 | sp.reference( spectra.column( 0 ) ) ;
|
---|
| 4030 | return sp ;
|
---|
[1819] | 4031 | }
|
---|
| 4032 | else {
|
---|
| 4033 | if ( mode == "before" ) {
|
---|
| 4034 | int id = -1 ;
|
---|
| 4035 | if ( idx[0] != -1 ) {
|
---|
| 4036 | id = idx[0] ;
|
---|
| 4037 | }
|
---|
| 4038 | else if ( idx[1] != -1 ) {
|
---|
| 4039 | os << LogIO::WARN << "Failed to find a scan before reftime. return a spectrum just after the reftime." << LogIO::POST ;
|
---|
| 4040 | id = idx[1] ;
|
---|
| 4041 | }
|
---|
| 4042 | //os << "use row " << id << " (scanno = " << s->getScan( id ) << ")" << LogIO::POST ;
|
---|
[2580] | 4043 | sp.reference( spectra.column( id ) ) ;
|
---|
[1819] | 4044 | }
|
---|
| 4045 | else if ( mode == "after" ) {
|
---|
| 4046 | int id = -1 ;
|
---|
| 4047 | if ( idx[1] != -1 ) {
|
---|
| 4048 | id = idx[1] ;
|
---|
| 4049 | }
|
---|
| 4050 | else if ( idx[0] != -1 ) {
|
---|
| 4051 | os << LogIO::WARN << "Failed to find a scan after reftime. return a spectrum just before the reftime." << LogIO::POST ;
|
---|
| 4052 | id = idx[1] ;
|
---|
| 4053 | }
|
---|
| 4054 | //os << "use row " << id << " (scanno = " << s->getScan( id ) << ")" << LogIO::POST ;
|
---|
[2580] | 4055 | sp.reference( spectra.column( id ) ) ;
|
---|
[1819] | 4056 | }
|
---|
| 4057 | else if ( mode == "nearest" ) {
|
---|
| 4058 | int id = -1 ;
|
---|
| 4059 | if ( idx[0] == -1 ) {
|
---|
| 4060 | id = idx[1] ;
|
---|
| 4061 | }
|
---|
| 4062 | else if ( idx[1] == -1 ) {
|
---|
| 4063 | id = idx[0] ;
|
---|
| 4064 | }
|
---|
| 4065 | else if ( idx[0] == idx[1] ) {
|
---|
| 4066 | id = idx[0] ;
|
---|
| 4067 | }
|
---|
| 4068 | else {
|
---|
[2580] | 4069 | double t0 = timeVec[idx[0]] ;
|
---|
| 4070 | double t1 = timeVec[idx[1]] ;
|
---|
| 4071 | double tref = reftime ;
|
---|
[1819] | 4072 | if ( abs( t0 - tref ) > abs( t1 - tref ) ) {
|
---|
| 4073 | id = idx[1] ;
|
---|
| 4074 | }
|
---|
| 4075 | else {
|
---|
| 4076 | id = idx[0] ;
|
---|
| 4077 | }
|
---|
| 4078 | }
|
---|
| 4079 | //os << "use row " << id << " (scanno = " << s->getScan( id ) << ")" << LogIO::POST ;
|
---|
[2580] | 4080 | sp.reference( spectra.column( id ) ) ;
|
---|
[1819] | 4081 | }
|
---|
| 4082 | else if ( mode == "linear" ) {
|
---|
| 4083 | if ( idx[0] == -1 ) {
|
---|
| 4084 | // use after
|
---|
| 4085 | os << LogIO::WARN << "Failed to interpolate. return a spectrum just after the reftime." << LogIO::POST ;
|
---|
| 4086 | int id = idx[1] ;
|
---|
| 4087 | //os << "use row " << id << " (scanno = " << s->getScan( id ) << ")" << LogIO::POST ;
|
---|
[2580] | 4088 | sp.reference( spectra.column( id ) ) ;
|
---|
[1819] | 4089 | }
|
---|
| 4090 | else if ( idx[1] == -1 ) {
|
---|
| 4091 | // use before
|
---|
| 4092 | os << LogIO::WARN << "Failed to interpolate. return a spectrum just before the reftime." << LogIO::POST ;
|
---|
| 4093 | int id = idx[0] ;
|
---|
| 4094 | //os << "use row " << id << " (scanno = " << s->getScan( id ) << ")" << LogIO::POST ;
|
---|
[2580] | 4095 | sp.reference( spectra.column( id ) ) ;
|
---|
[1819] | 4096 | }
|
---|
| 4097 | else if ( idx[0] == idx[1] ) {
|
---|
| 4098 | // use before
|
---|
| 4099 | //os << "No need to interporate." << LogIO::POST ;
|
---|
| 4100 | int id = idx[0] ;
|
---|
| 4101 | //os << "use row " << id << " (scanno = " << s->getScan( id ) << ")" << LogIO::POST ;
|
---|
[2580] | 4102 | sp.reference( spectra.column( id ) ) ;
|
---|
[1819] | 4103 | }
|
---|
| 4104 | else {
|
---|
| 4105 | // do interpolation
|
---|
| 4106 | //os << "interpolate between " << idx[0] << " and " << idx[1] << " (scanno: " << s->getScan( idx[0] ) << ", " << s->getScan( idx[1] ) << ")" << LogIO::POST ;
|
---|
[2580] | 4107 | double t0 = timeVec[idx[0]] ;
|
---|
| 4108 | double t1 = timeVec[idx[1]] ;
|
---|
| 4109 | double tref = reftime ;
|
---|
| 4110 | sp = spectra.column( idx[0] ).copy() ;
|
---|
| 4111 | Vector<Float> sp1( spectra.column( idx[1] ) ) ;
|
---|
| 4112 | double tfactor = ( tref - t0 ) / ( t1 - t0 ) ;
|
---|
| 4113 | for ( unsigned int i = 0 ; i < sp.size() ; i++ ) {
|
---|
| 4114 | sp[i] = ( sp1[i] - sp[i] ) * tfactor + sp[i] ;
|
---|
[1819] | 4115 | }
|
---|
| 4116 | }
|
---|
| 4117 | }
|
---|
| 4118 | else {
|
---|
| 4119 | os << LogIO::SEVERE << "Unknown mode" << LogIO::POST ;
|
---|
| 4120 | }
|
---|
| 4121 | return sp ;
|
---|
| 4122 | }
|
---|
| 4123 | }
|
---|
| 4124 |
|
---|
[2580] | 4125 | vector<int> STMath::getRowIdFromTime( double reftime, const Vector<Double> &t )
|
---|
[1819] | 4126 | {
|
---|
[2580] | 4127 | // double reft = reftime ;
|
---|
[1819] | 4128 | double dtmin = 1.0e100 ;
|
---|
| 4129 | double dtmax = -1.0e100 ;
|
---|
[2580] | 4130 | // vector<double> dt ;
|
---|
[1819] | 4131 | int just_before = -1 ;
|
---|
| 4132 | int just_after = -1 ;
|
---|
[2580] | 4133 | Vector<Double> dt = t - reftime ;
|
---|
[1819] | 4134 | for ( unsigned int i = 0 ; i < dt.size() ; i++ ) {
|
---|
| 4135 | if ( dt[i] > 0.0 ) {
|
---|
| 4136 | // after reftime
|
---|
| 4137 | if ( dt[i] < dtmin ) {
|
---|
| 4138 | just_after = i ;
|
---|
| 4139 | dtmin = dt[i] ;
|
---|
| 4140 | }
|
---|
| 4141 | }
|
---|
| 4142 | else if ( dt[i] < 0.0 ) {
|
---|
| 4143 | // before reftime
|
---|
| 4144 | if ( dt[i] > dtmax ) {
|
---|
| 4145 | just_before = i ;
|
---|
| 4146 | dtmax = dt[i] ;
|
---|
| 4147 | }
|
---|
| 4148 | }
|
---|
| 4149 | else {
|
---|
| 4150 | // just a reftime
|
---|
| 4151 | just_before = i ;
|
---|
| 4152 | just_after = i ;
|
---|
| 4153 | dtmax = 0 ;
|
---|
| 4154 | dtmin = 0 ;
|
---|
| 4155 | break ;
|
---|
| 4156 | }
|
---|
| 4157 | }
|
---|
| 4158 |
|
---|
[2580] | 4159 | vector<int> v(2) ;
|
---|
| 4160 | v[0] = just_before ;
|
---|
| 4161 | v[1] = just_after ;
|
---|
[1819] | 4162 |
|
---|
| 4163 | return v ;
|
---|
| 4164 | }
|
---|
| 4165 |
|
---|
[2580] | 4166 | Vector<Float> STMath::getTcalFromTime( double reftime,
|
---|
| 4167 | const Vector<Double> &timeVec,
|
---|
| 4168 | const vector<int> &idx,
|
---|
| 4169 | const CountedPtr<Scantable>& s,
|
---|
[1819] | 4170 | string mode )
|
---|
| 4171 | {
|
---|
| 4172 | LogIO os( LogOrigin( "STMath", "getTcalFromTime", WHERE ) ) ;
|
---|
| 4173 | STTcal tcalTable = s->tcal() ;
|
---|
| 4174 | String time ;
|
---|
| 4175 | Vector<Float> tcalval ;
|
---|
| 4176 | if ( s->nrow() == 0 ) {
|
---|
| 4177 | os << LogIO::SEVERE << "No row in the input scantable. Return empty tcal." << LogIO::POST ;
|
---|
[2580] | 4178 | return tcalval ;
|
---|
[1819] | 4179 | }
|
---|
| 4180 | else if ( s->nrow() == 1 ) {
|
---|
| 4181 | uInt tcalid = s->getTcalId( 0 ) ;
|
---|
| 4182 | //os << "use row " << 0 << " (tcalid = " << tcalid << ")" << LogIO::POST ;
|
---|
| 4183 | tcalTable.getEntry( time, tcalval, tcalid ) ;
|
---|
[2580] | 4184 | return tcalval ;
|
---|
[1819] | 4185 | }
|
---|
| 4186 | else {
|
---|
| 4187 | if ( mode == "before" ) {
|
---|
| 4188 | int id = -1 ;
|
---|
| 4189 | if ( idx[0] != -1 ) {
|
---|
| 4190 | id = idx[0] ;
|
---|
| 4191 | }
|
---|
| 4192 | else if ( idx[1] != -1 ) {
|
---|
| 4193 | os << LogIO::WARN << "Failed to find a scan before reftime. return a spectrum just after the reftime." << LogIO::POST ;
|
---|
| 4194 | id = idx[1] ;
|
---|
| 4195 | }
|
---|
| 4196 | uInt tcalid = s->getTcalId( id ) ;
|
---|
| 4197 | //os << "use row " << id << " (tcalid = " << tcalid << ")" << LogIO::POST ;
|
---|
| 4198 | tcalTable.getEntry( time, tcalval, tcalid ) ;
|
---|
| 4199 | }
|
---|
| 4200 | else if ( mode == "after" ) {
|
---|
| 4201 | int id = -1 ;
|
---|
| 4202 | if ( idx[1] != -1 ) {
|
---|
| 4203 | id = idx[1] ;
|
---|
| 4204 | }
|
---|
| 4205 | else if ( idx[0] != -1 ) {
|
---|
| 4206 | os << LogIO::WARN << "Failed to find a scan after reftime. return a spectrum just before the reftime." << LogIO::POST ;
|
---|
| 4207 | id = idx[1] ;
|
---|
| 4208 | }
|
---|
| 4209 | uInt tcalid = s->getTcalId( id ) ;
|
---|
| 4210 | //os << "use row " << id << " (tcalid = " << tcalid << ")" << LogIO::POST ;
|
---|
| 4211 | tcalTable.getEntry( time, tcalval, tcalid ) ;
|
---|
| 4212 | }
|
---|
| 4213 | else if ( mode == "nearest" ) {
|
---|
| 4214 | int id = -1 ;
|
---|
| 4215 | if ( idx[0] == -1 ) {
|
---|
| 4216 | id = idx[1] ;
|
---|
| 4217 | }
|
---|
| 4218 | else if ( idx[1] == -1 ) {
|
---|
| 4219 | id = idx[0] ;
|
---|
| 4220 | }
|
---|
| 4221 | else if ( idx[0] == idx[1] ) {
|
---|
| 4222 | id = idx[0] ;
|
---|
| 4223 | }
|
---|
| 4224 | else {
|
---|
[2580] | 4225 | double t0 = timeVec[idx[0]] ;
|
---|
| 4226 | double t1 = timeVec[idx[1]] ;
|
---|
| 4227 | if ( abs( t0 - reftime ) > abs( t1 - reftime ) ) {
|
---|
[1819] | 4228 | id = idx[1] ;
|
---|
| 4229 | }
|
---|
| 4230 | else {
|
---|
| 4231 | id = idx[0] ;
|
---|
| 4232 | }
|
---|
| 4233 | }
|
---|
| 4234 | uInt tcalid = s->getTcalId( id ) ;
|
---|
| 4235 | //os << "use row " << id << " (tcalid = " << tcalid << ")" << LogIO::POST ;
|
---|
| 4236 | tcalTable.getEntry( time, tcalval, tcalid ) ;
|
---|
| 4237 | }
|
---|
| 4238 | else if ( mode == "linear" ) {
|
---|
| 4239 | if ( idx[0] == -1 ) {
|
---|
| 4240 | // use after
|
---|
| 4241 | os << LogIO::WARN << "Failed to interpolate. return a spectrum just after the reftime." << LogIO::POST ;
|
---|
| 4242 | int id = idx[1] ;
|
---|
| 4243 | uInt tcalid = s->getTcalId( id ) ;
|
---|
| 4244 | //os << "use row " << id << " (tcalid = " << tcalid << ")" << LogIO::POST ;
|
---|
| 4245 | tcalTable.getEntry( time, tcalval, tcalid ) ;
|
---|
| 4246 | }
|
---|
| 4247 | else if ( idx[1] == -1 ) {
|
---|
| 4248 | // use before
|
---|
| 4249 | os << LogIO::WARN << "Failed to interpolate. return a spectrum just before the reftime." << LogIO::POST ;
|
---|
| 4250 | int id = idx[0] ;
|
---|
| 4251 | uInt tcalid = s->getTcalId( id ) ;
|
---|
| 4252 | //os << "use row " << id << " (tcalid = " << tcalid << ")" << LogIO::POST ;
|
---|
| 4253 | tcalTable.getEntry( time, tcalval, tcalid ) ;
|
---|
| 4254 | }
|
---|
| 4255 | else if ( idx[0] == idx[1] ) {
|
---|
| 4256 | // use before
|
---|
| 4257 | //os << "No need to interporate." << LogIO::POST ;
|
---|
| 4258 | int id = idx[0] ;
|
---|
| 4259 | uInt tcalid = s->getTcalId( id ) ;
|
---|
| 4260 | //os << "use row " << id << " (tcalid = " << tcalid << ")" << LogIO::POST ;
|
---|
| 4261 | tcalTable.getEntry( time, tcalval, tcalid ) ;
|
---|
| 4262 | }
|
---|
| 4263 | else {
|
---|
| 4264 | // do interpolation
|
---|
| 4265 | //os << "interpolate between " << idx[0] << " and " << idx[1] << " (scanno: " << s->getScan( idx[0] ) << ", " << s->getScan( idx[1] ) << ")" << LogIO::POST ;
|
---|
[2580] | 4266 | double t0 = timeVec[idx[0]] ;
|
---|
| 4267 | double t1 = timeVec[idx[1]] ;
|
---|
| 4268 | Vector<Float> tcal0 ;
|
---|
[1819] | 4269 | uInt tcalid0 = s->getTcalId( idx[0] ) ;
|
---|
| 4270 | uInt tcalid1 = s->getTcalId( idx[1] ) ;
|
---|
[2580] | 4271 | tcalTable.getEntry( time, tcal0, tcalid0 ) ;
|
---|
[1819] | 4272 | tcalTable.getEntry( time, tcalval, tcalid1 ) ;
|
---|
[2580] | 4273 | double tfactor = (reftime - t0) / (t1 - t0) ;
|
---|
[1819] | 4274 | for ( unsigned int i = 0 ; i < tcal0.size() ; i++ ) {
|
---|
[2580] | 4275 | tcalval[i] = ( tcalval[i] - tcal0[i] ) * tfactor + tcal0[i] ;
|
---|
[1819] | 4276 | }
|
---|
| 4277 | }
|
---|
| 4278 | }
|
---|
| 4279 | else {
|
---|
| 4280 | os << LogIO::SEVERE << "Unknown mode" << LogIO::POST ;
|
---|
| 4281 | }
|
---|
[2580] | 4282 | return tcalval ;
|
---|
[1819] | 4283 | }
|
---|
| 4284 | }
|
---|
| 4285 |
|
---|
[2580] | 4286 | Vector<Float> STMath::getTsysFromTime( double reftime,
|
---|
| 4287 | const Vector<Double> &timeVec,
|
---|
| 4288 | const vector<int> &idx,
|
---|
| 4289 | const CountedPtr<Scantable> &s,
|
---|
[1819] | 4290 | string mode )
|
---|
| 4291 | {
|
---|
| 4292 | LogIO os( LogOrigin( "STMath", "getTsysFromTime", WHERE ) ) ;
|
---|
| 4293 | ArrayColumn<Float> tsysCol ;
|
---|
| 4294 | tsysCol.attach( s->table(), "TSYS" ) ;
|
---|
| 4295 | Vector<Float> tsysval ;
|
---|
| 4296 | if ( s->nrow() == 0 ) {
|
---|
| 4297 | os << LogIO::SEVERE << "No row in the input scantable. Return empty tsys." << LogIO::POST ;
|
---|
[2580] | 4298 | return tsysval ;
|
---|
[1819] | 4299 | }
|
---|
| 4300 | else if ( s->nrow() == 1 ) {
|
---|
| 4301 | //os << "use row " << 0 << LogIO::POST ;
|
---|
| 4302 | tsysval = tsysCol( 0 ) ;
|
---|
[2580] | 4303 | return tsysval ;
|
---|
[1819] | 4304 | }
|
---|
| 4305 | else {
|
---|
| 4306 | if ( mode == "before" ) {
|
---|
| 4307 | int id = -1 ;
|
---|
| 4308 | if ( idx[0] != -1 ) {
|
---|
| 4309 | id = idx[0] ;
|
---|
| 4310 | }
|
---|
| 4311 | else if ( idx[1] != -1 ) {
|
---|
| 4312 | os << LogIO::WARN << "Failed to find a scan before reftime. return a spectrum just after the reftime." << LogIO::POST ;
|
---|
| 4313 | id = idx[1] ;
|
---|
| 4314 | }
|
---|
| 4315 | //os << "use row " << id << LogIO::POST ;
|
---|
| 4316 | tsysval = tsysCol( id ) ;
|
---|
| 4317 | }
|
---|
| 4318 | else if ( mode == "after" ) {
|
---|
| 4319 | int id = -1 ;
|
---|
| 4320 | if ( idx[1] != -1 ) {
|
---|
| 4321 | id = idx[1] ;
|
---|
| 4322 | }
|
---|
| 4323 | else if ( idx[0] != -1 ) {
|
---|
| 4324 | os << LogIO::WARN << "Failed to find a scan after reftime. return a spectrum just before the reftime." << LogIO::POST ;
|
---|
| 4325 | id = idx[1] ;
|
---|
| 4326 | }
|
---|
| 4327 | //os << "use row " << id << LogIO::POST ;
|
---|
| 4328 | tsysval = tsysCol( id ) ;
|
---|
| 4329 | }
|
---|
| 4330 | else if ( mode == "nearest" ) {
|
---|
| 4331 | int id = -1 ;
|
---|
| 4332 | if ( idx[0] == -1 ) {
|
---|
| 4333 | id = idx[1] ;
|
---|
| 4334 | }
|
---|
| 4335 | else if ( idx[1] == -1 ) {
|
---|
| 4336 | id = idx[0] ;
|
---|
| 4337 | }
|
---|
| 4338 | else if ( idx[0] == idx[1] ) {
|
---|
| 4339 | id = idx[0] ;
|
---|
| 4340 | }
|
---|
| 4341 | else {
|
---|
[2580] | 4342 | double t0 = timeVec[idx[0]] ;
|
---|
| 4343 | double t1 = timeVec[idx[1]] ;
|
---|
| 4344 | if ( abs( t0 - reftime ) > abs( t1 - reftime ) ) {
|
---|
[1819] | 4345 | id = idx[1] ;
|
---|
| 4346 | }
|
---|
| 4347 | else {
|
---|
| 4348 | id = idx[0] ;
|
---|
| 4349 | }
|
---|
| 4350 | }
|
---|
| 4351 | //os << "use row " << id << LogIO::POST ;
|
---|
| 4352 | tsysval = tsysCol( id ) ;
|
---|
| 4353 | }
|
---|
| 4354 | else if ( mode == "linear" ) {
|
---|
| 4355 | if ( idx[0] == -1 ) {
|
---|
| 4356 | // use after
|
---|
| 4357 | os << LogIO::WARN << "Failed to interpolate. return a spectrum just after the reftime." << LogIO::POST ;
|
---|
| 4358 | int id = idx[1] ;
|
---|
| 4359 | //os << "use row " << id << LogIO::POST ;
|
---|
| 4360 | tsysval = tsysCol( id ) ;
|
---|
| 4361 | }
|
---|
| 4362 | else if ( idx[1] == -1 ) {
|
---|
| 4363 | // use before
|
---|
| 4364 | os << LogIO::WARN << "Failed to interpolate. return a spectrum just before the reftime." << LogIO::POST ;
|
---|
| 4365 | int id = idx[0] ;
|
---|
| 4366 | //os << "use row " << id << LogIO::POST ;
|
---|
| 4367 | tsysval = tsysCol( id ) ;
|
---|
| 4368 | }
|
---|
| 4369 | else if ( idx[0] == idx[1] ) {
|
---|
| 4370 | // use before
|
---|
| 4371 | //os << "No need to interporate." << LogIO::POST ;
|
---|
| 4372 | int id = idx[0] ;
|
---|
| 4373 | //os << "use row " << id << LogIO::POST ;
|
---|
| 4374 | tsysval = tsysCol( id ) ;
|
---|
| 4375 | }
|
---|
| 4376 | else {
|
---|
| 4377 | // do interpolation
|
---|
| 4378 | //os << "interpolate between " << idx[0] << " and " << idx[1] << " (scanno: " << s->getScan( idx[0] ) << ", " << s->getScan( idx[1] ) << ")" << LogIO::POST ;
|
---|
[2580] | 4379 | double t0 = timeVec[idx[0]] ;
|
---|
| 4380 | double t1 = timeVec[idx[1]] ;
|
---|
| 4381 | Vector<Float> tsys0 ;
|
---|
| 4382 | tsys0 = tsysCol( idx[0] ) ;
|
---|
[1819] | 4383 | tsysval = tsysCol( idx[1] ) ;
|
---|
[2580] | 4384 | double tfactor = (reftime - t0) / (t1 - t0) ;
|
---|
[1819] | 4385 | for ( unsigned int i = 0 ; i < tsys0.size() ; i++ ) {
|
---|
[2580] | 4386 | tsysval[i] = ( tsysval[i] - tsys0[i] ) * tfactor + tsys0[i] ;
|
---|
[1819] | 4387 | }
|
---|
| 4388 | }
|
---|
| 4389 | }
|
---|
| 4390 | else {
|
---|
| 4391 | os << LogIO::SEVERE << "Unknown mode" << LogIO::POST ;
|
---|
| 4392 | }
|
---|
[2580] | 4393 | return tsysval ;
|
---|
[1819] | 4394 | }
|
---|
| 4395 | }
|
---|
| 4396 |
|
---|
[2580] | 4397 | void STMath::calibrateCW( CountedPtr<Scantable> &out,
|
---|
| 4398 | const CountedPtr<Scantable>& on,
|
---|
| 4399 | const CountedPtr<Scantable>& off,
|
---|
| 4400 | const CountedPtr<Scantable>& sky,
|
---|
| 4401 | const CountedPtr<Scantable>& hot,
|
---|
| 4402 | const CountedPtr<Scantable>& cold,
|
---|
| 4403 | const Vector<uInt> &rows,
|
---|
| 4404 | const String &antname )
|
---|
[1819] | 4405 | {
|
---|
[2580] | 4406 | // 2012/05/22 TN
|
---|
| 4407 | // Assume that out has empty SPECTRA column
|
---|
| 4408 |
|
---|
| 4409 | // if rows is empty, just return
|
---|
| 4410 | if ( rows.nelements() == 0 )
|
---|
| 4411 | return ;
|
---|
| 4412 | ROScalarColumn<Double> timeCol( off->table(), "TIME" ) ;
|
---|
| 4413 | Vector<Double> timeOff = timeCol.getColumn() ;
|
---|
| 4414 | timeCol.attach( sky->table(), "TIME" ) ;
|
---|
| 4415 | Vector<Double> timeSky = timeCol.getColumn() ;
|
---|
| 4416 | timeCol.attach( hot->table(), "TIME" ) ;
|
---|
| 4417 | Vector<Double> timeHot = timeCol.getColumn() ;
|
---|
| 4418 | timeCol.attach( on->table(), "TIME" ) ;
|
---|
| 4419 | ROArrayColumn<Float> arrayFloatCol( off->table(), "SPECTRA" ) ;
|
---|
| 4420 | Matrix<Float> offspectra = arrayFloatCol.getColumn() ;
|
---|
| 4421 | arrayFloatCol.attach( sky->table(), "SPECTRA" ) ;
|
---|
| 4422 | Matrix<Float> skyspectra = arrayFloatCol.getColumn() ;
|
---|
| 4423 | arrayFloatCol.attach( hot->table(), "SPECTRA" ) ;
|
---|
| 4424 | Matrix<Float> hotspectra = arrayFloatCol.getColumn() ;
|
---|
| 4425 | unsigned int spsize = on->nchan( on->getIF(rows[0]) ) ;
|
---|
| 4426 | // I know that the data is contiguous
|
---|
| 4427 | const uInt *p = rows.data() ;
|
---|
| 4428 | vector<int> ids( 2 ) ;
|
---|
| 4429 | Block<uInt> flagchan( spsize ) ;
|
---|
| 4430 | uInt nflag = 0 ;
|
---|
| 4431 | for ( int irow = 0 ; irow < rows.nelements() ; irow++ ) {
|
---|
| 4432 | double reftime = timeCol.asdouble(*p) ;
|
---|
| 4433 | ids = getRowIdFromTime( reftime, timeOff ) ;
|
---|
| 4434 | Vector<Float> spoff = getSpectrumFromTime( reftime, timeOff, ids, offspectra, "linear" ) ;
|
---|
| 4435 | ids = getRowIdFromTime( reftime, timeSky ) ;
|
---|
| 4436 | Vector<Float> spsky = getSpectrumFromTime( reftime, timeSky, ids, skyspectra, "linear" ) ;
|
---|
| 4437 | Vector<Float> tcal = getTcalFromTime( reftime, timeSky, ids, sky, "linear" ) ;
|
---|
| 4438 | Vector<Float> tsys = getTsysFromTime( reftime, timeSky, ids, sky, "linear" ) ;
|
---|
| 4439 | ids = getRowIdFromTime( reftime, timeHot ) ;
|
---|
| 4440 | Vector<Float> sphot = getSpectrumFromTime( reftime, timeHot, ids, hotspectra, "linear" ) ;
|
---|
| 4441 | Vector<Float> spec = on->specCol_( *p ) ;
|
---|
| 4442 | if ( antname.find( "APEX" ) != String::npos ) {
|
---|
| 4443 | // using gain array
|
---|
| 4444 | for ( unsigned int j = 0 ; j < tcal.size() ; j++ ) {
|
---|
| 4445 | if ( spoff[j] == 0.0 || (sphot[j]-spsky[j]) == 0.0 ) {
|
---|
| 4446 | spec[j] = 0.0 ;
|
---|
| 4447 | flagchan[nflag++] = j ;
|
---|
| 4448 | }
|
---|
| 4449 | else {
|
---|
| 4450 | spec[j] = ( ( spec[j] - spoff[j] ) / spoff[j] )
|
---|
| 4451 | * ( spsky[j] / ( sphot[j] - spsky[j] ) ) * tcal[j] ;
|
---|
| 4452 | }
|
---|
| 4453 | }
|
---|
[1819] | 4454 | }
|
---|
[2580] | 4455 | else {
|
---|
| 4456 | // Chopper-Wheel calibration (Ulich & Haas 1976)
|
---|
| 4457 | for ( unsigned int j = 0 ; j < tcal.size() ; j++ ) {
|
---|
| 4458 | if ( (sphot[j]-spsky[j]) == 0.0 ) {
|
---|
| 4459 | spec[j] = 0.0 ;
|
---|
| 4460 | flagchan[nflag++] = j ;
|
---|
| 4461 | }
|
---|
| 4462 | else {
|
---|
| 4463 | spec[j] = ( spec[j] - spoff[j] ) / ( sphot[j] - spsky[j] ) * tcal[j] ;
|
---|
| 4464 | }
|
---|
| 4465 | }
|
---|
| 4466 | }
|
---|
| 4467 | out->specCol_.put( *p, spec ) ;
|
---|
| 4468 | out->tsysCol_.put( *p, tsys ) ;
|
---|
| 4469 | if ( nflag > 0 ) {
|
---|
| 4470 | Vector<uChar> fl = out->flagsCol_( *p ) ;
|
---|
| 4471 | for ( unsigned int j = 0 ; j < nflag ; j++ ) {
|
---|
| 4472 | fl[flagchan[j]] = (uChar)True ;
|
---|
| 4473 | }
|
---|
| 4474 | out->flagsCol_.put( *p, fl ) ;
|
---|
| 4475 | }
|
---|
| 4476 | nflag = 0 ;
|
---|
| 4477 | p++ ;
|
---|
[1819] | 4478 | }
|
---|
[2580] | 4479 | }
|
---|
| 4480 |
|
---|
| 4481 | void STMath::calibrateALMA( CountedPtr<Scantable>& out,
|
---|
| 4482 | const CountedPtr<Scantable>& on,
|
---|
| 4483 | const CountedPtr<Scantable>& off,
|
---|
| 4484 | const Vector<uInt>& rows )
|
---|
| 4485 | {
|
---|
| 4486 | // 2012/05/22 TN
|
---|
| 4487 | // Assume that out has empty SPECTRA column
|
---|
| 4488 |
|
---|
| 4489 | // if rows is empty, just return
|
---|
| 4490 | if ( rows.nelements() == 0 )
|
---|
| 4491 | return ;
|
---|
| 4492 | ROScalarColumn<Double> timeCol( off->table(), "TIME" ) ;
|
---|
| 4493 | Vector<Double> timeVec = timeCol.getColumn() ;
|
---|
| 4494 | timeCol.attach( on->table(), "TIME" ) ;
|
---|
| 4495 | ROArrayColumn<Float> arrayFloatCol( off->table(), "SPECTRA" ) ;
|
---|
| 4496 | Matrix<Float> offspectra = arrayFloatCol.getColumn() ;
|
---|
| 4497 | unsigned int spsize = on->nchan( on->getIF(rows[0]) ) ;
|
---|
| 4498 | // I know that the data is contiguous
|
---|
| 4499 | const uInt *p = rows.data() ;
|
---|
| 4500 | vector<int> ids( 2 ) ;
|
---|
| 4501 | Block<uInt> flagchan( spsize ) ;
|
---|
| 4502 | uInt nflag = 0 ;
|
---|
| 4503 | for ( int irow = 0 ; irow < rows.nelements() ; irow++ ) {
|
---|
| 4504 | double reftime = timeCol.asdouble(*p) ;
|
---|
| 4505 | ids = getRowIdFromTime( reftime, timeVec ) ;
|
---|
| 4506 | Vector<Float> spoff = getSpectrumFromTime( reftime, timeVec, ids, offspectra, "linear" ) ;
|
---|
| 4507 | //Vector<Float> spoff = getSpectrumFromTime( reftime, timeVec, off, "linear" ) ;
|
---|
| 4508 | Vector<Float> spec = on->specCol_( *p ) ;
|
---|
| 4509 | Vector<Float> tsys = on->tsysCol_( *p ) ;
|
---|
| 4510 | // ALMA Calibration
|
---|
| 4511 | //
|
---|
| 4512 | // Ta* = Tsys * ( ON - OFF ) / OFF
|
---|
| 4513 | //
|
---|
| 4514 | // 2010/01/07 Takeshi Nakazato
|
---|
| 4515 | unsigned int tsyssize = tsys.nelements() ;
|
---|
| 4516 | for ( unsigned int j = 0 ; j < spsize ; j++ ) {
|
---|
| 4517 | if ( spoff[j] == 0.0 ) {
|
---|
| 4518 | spec[j] = 0.0 ;
|
---|
| 4519 | flagchan[nflag++] = j ;
|
---|
| 4520 | }
|
---|
| 4521 | else {
|
---|
| 4522 | spec[j] = ( spec[j] - spoff[j] ) / spoff[j] ;
|
---|
| 4523 | }
|
---|
| 4524 | if ( tsyssize == spsize )
|
---|
| 4525 | spec[j] *= tsys[j] ;
|
---|
| 4526 | else
|
---|
| 4527 | spec[j] *= tsys[0] ;
|
---|
[1819] | 4528 | }
|
---|
[2580] | 4529 | out->specCol_.put( *p, spec ) ;
|
---|
| 4530 | if ( nflag > 0 ) {
|
---|
| 4531 | Vector<uChar> fl = out->flagsCol_( *p ) ;
|
---|
| 4532 | for ( unsigned int j = 0 ; j < nflag ; j++ ) {
|
---|
| 4533 | fl[flagchan[j]] = (uChar)True ;
|
---|
| 4534 | }
|
---|
| 4535 | out->flagsCol_.put( *p, fl ) ;
|
---|
| 4536 | }
|
---|
| 4537 | nflag = 0 ;
|
---|
| 4538 | p++ ;
|
---|
[1819] | 4539 | }
|
---|
[2580] | 4540 | }
|
---|
[1819] | 4541 |
|
---|
[2580] | 4542 | void STMath::calibrateAPEXFS( CountedPtr<Scantable> &sig,
|
---|
| 4543 | CountedPtr<Scantable> &ref,
|
---|
| 4544 | const vector< CountedPtr<Scantable> >& on,
|
---|
| 4545 | const vector< CountedPtr<Scantable> >& sky,
|
---|
| 4546 | const vector< CountedPtr<Scantable> >& hot,
|
---|
| 4547 | const vector< CountedPtr<Scantable> >& cold,
|
---|
| 4548 | const Vector<uInt> &rows )
|
---|
| 4549 | {
|
---|
| 4550 | // if rows is empty, just return
|
---|
| 4551 | if ( rows.nelements() == 0 )
|
---|
| 4552 | return ;
|
---|
| 4553 | ROScalarColumn<Double> timeCol( sky[0]->table(), "TIME" ) ;
|
---|
| 4554 | Vector<Double> timeSkyS = timeCol.getColumn() ;
|
---|
| 4555 | timeCol.attach( sky[1]->table(), "TIME" ) ;
|
---|
| 4556 | Vector<Double> timeSkyR = timeCol.getColumn() ;
|
---|
| 4557 | timeCol.attach( hot[0]->table(), "TIME" ) ;
|
---|
| 4558 | Vector<Double> timeHotS = timeCol.getColumn() ;
|
---|
| 4559 | timeCol.attach( hot[1]->table(), "TIME" ) ;
|
---|
| 4560 | Vector<Double> timeHotR = timeCol.getColumn() ;
|
---|
| 4561 | timeCol.attach( sig->table(), "TIME" ) ;
|
---|
| 4562 | ROScalarColumn<Double> timeCol2( ref->table(), "TIME" ) ;
|
---|
| 4563 | ROArrayColumn<Float> arrayFloatCol( sky[0]->table(), "SPECTRA" ) ;
|
---|
| 4564 | Matrix<Float> skyspectraS = arrayFloatCol.getColumn() ;
|
---|
| 4565 | arrayFloatCol.attach( sky[1]->table(), "SPECTRA" ) ;
|
---|
| 4566 | Matrix<Float> skyspectraR = arrayFloatCol.getColumn() ;
|
---|
| 4567 | arrayFloatCol.attach( hot[0]->table(), "SPECTRA" ) ;
|
---|
| 4568 | Matrix<Float> hotspectraS = arrayFloatCol.getColumn() ;
|
---|
| 4569 | arrayFloatCol.attach( hot[1]->table(), "SPECTRA" ) ;
|
---|
| 4570 | Matrix<Float> hotspectraR = arrayFloatCol.getColumn() ;
|
---|
| 4571 | unsigned int spsize = sig->nchan( sig->getIF(rows[0]) ) ;
|
---|
| 4572 | Vector<Float> spec( spsize ) ;
|
---|
| 4573 | // I know that the data is contiguous
|
---|
| 4574 | const uInt *p = rows.data() ;
|
---|
| 4575 | vector<int> ids( 2 ) ;
|
---|
| 4576 | Block<uInt> flagchan( spsize ) ;
|
---|
| 4577 | uInt nflag = 0 ;
|
---|
| 4578 | for ( int irow = 0 ; irow < rows.nelements() ; irow++ ) {
|
---|
| 4579 | double reftime = timeCol.asdouble(*p) ;
|
---|
| 4580 | ids = getRowIdFromTime( reftime, timeSkyS ) ;
|
---|
| 4581 | Vector<Float> spskyS = getSpectrumFromTime( reftime, timeSkyS, ids, skyspectraS, "linear" ) ;
|
---|
| 4582 | Vector<Float> tcalS = getTcalFromTime( reftime, timeSkyS, ids, sky[0], "linear" ) ;
|
---|
| 4583 | Vector<Float> tsysS = getTsysFromTime( reftime, timeSkyS, ids, sky[0], "linear" ) ;
|
---|
| 4584 | ids = getRowIdFromTime( reftime, timeHotS ) ;
|
---|
| 4585 | Vector<Float> sphotS = getSpectrumFromTime( reftime, timeHotS, ids, hotspectraS ) ;
|
---|
| 4586 | reftime = timeCol2.asdouble(*p) ;
|
---|
| 4587 | ids = getRowIdFromTime( reftime, timeSkyR ) ;
|
---|
| 4588 | Vector<Float> spskyR = getSpectrumFromTime( reftime, timeSkyR, ids, skyspectraR, "linear" ) ;
|
---|
| 4589 | Vector<Float> tcalR = getTcalFromTime( reftime, timeSkyR, ids, sky[1], "linear" ) ;
|
---|
| 4590 | Vector<Float> tsysR = getTsysFromTime( reftime, timeSkyR, ids, sky[1], "linear" ) ;
|
---|
| 4591 | ids = getRowIdFromTime( reftime, timeHotR ) ;
|
---|
| 4592 | Vector<Float> sphotR = getSpectrumFromTime( reftime, timeHotR, ids, hotspectraR ) ;
|
---|
| 4593 | Vector<Float> spsig = on[0]->specCol_( *p ) ;
|
---|
| 4594 | Vector<Float> spref = on[1]->specCol_( *p ) ;
|
---|
| 4595 | for ( unsigned int j = 0 ; j < spsize ; j++ ) {
|
---|
| 4596 | if ( (sphotS[j]-spskyS[j]) == 0.0 || (sphotR[j]-spskyR[j]) == 0.0 ) {
|
---|
| 4597 | spec[j] = 0.0 ;
|
---|
| 4598 | flagchan[nflag++] = j ;
|
---|
| 4599 | }
|
---|
| 4600 | else {
|
---|
| 4601 | spec[j] = tcalS[j] * spsig[j] / ( sphotS[j] - spskyS[j] )
|
---|
| 4602 | - tcalR[j] * spref[j] / ( sphotR[j] - spskyR[j] ) ;
|
---|
| 4603 | }
|
---|
| 4604 | }
|
---|
| 4605 | sig->specCol_.put( *p, spec ) ;
|
---|
| 4606 | sig->tsysCol_.put( *p, tsysS ) ;
|
---|
| 4607 | spec *= (Float)-1.0 ;
|
---|
| 4608 | ref->specCol_.put( *p, spec ) ;
|
---|
| 4609 | ref->tsysCol_.put( *p, tsysR ) ;
|
---|
| 4610 | if ( nflag > 0 ) {
|
---|
| 4611 | Vector<uChar> flsig = sig->flagsCol_( *p ) ;
|
---|
| 4612 | Vector<uChar> flref = ref->flagsCol_( *p ) ;
|
---|
| 4613 | for ( unsigned int j = 0 ; j < nflag ; j++ ) {
|
---|
| 4614 | flsig[flagchan[j]] = (uChar)True ;
|
---|
| 4615 | flref[flagchan[j]] = (uChar)True ;
|
---|
| 4616 | }
|
---|
| 4617 | sig->flagsCol_.put( *p, flsig ) ;
|
---|
| 4618 | ref->flagsCol_.put( *p, flref ) ;
|
---|
| 4619 | }
|
---|
| 4620 | nflag = 0 ;
|
---|
| 4621 | p++ ;
|
---|
| 4622 | }
|
---|
[1819] | 4623 | }
|
---|
| 4624 |
|
---|
[2580] | 4625 | void STMath::calibrateFS( CountedPtr<Scantable> &sig,
|
---|
| 4626 | CountedPtr<Scantable> &ref,
|
---|
| 4627 | const CountedPtr<Scantable>& rsig,
|
---|
| 4628 | const CountedPtr<Scantable>& rref,
|
---|
| 4629 | const CountedPtr<Scantable>& sky,
|
---|
| 4630 | const CountedPtr<Scantable>& hot,
|
---|
| 4631 | const CountedPtr<Scantable>& cold,
|
---|
| 4632 | const Vector<uInt> &rows )
|
---|
[1819] | 4633 | {
|
---|
[2580] | 4634 | // if rows is empty, just return
|
---|
| 4635 | if ( rows.nelements() == 0 )
|
---|
| 4636 | return ;
|
---|
| 4637 | ROScalarColumn<Double> timeCol( sky->table(), "TIME" ) ;
|
---|
| 4638 | Vector<Double> timeSky = timeCol.getColumn() ;
|
---|
| 4639 | timeCol.attach( hot->table(), "TIME" ) ;
|
---|
| 4640 | Vector<Double> timeHot = timeCol.getColumn() ;
|
---|
| 4641 | timeCol.attach( sig->table(), "TIME" ) ;
|
---|
| 4642 | ROScalarColumn<Double> timeCol2( ref->table(), "TIME" ) ;
|
---|
| 4643 | ROArrayColumn<Float> arrayFloatCol( sky->table(), "SPECTRA" ) ;
|
---|
| 4644 | Matrix<Float> skyspectra = arrayFloatCol.getColumn() ;
|
---|
| 4645 | arrayFloatCol.attach( hot->table(), "SPECTRA" ) ;
|
---|
| 4646 | Matrix<Float> hotspectra = arrayFloatCol.getColumn() ;
|
---|
| 4647 | unsigned int spsize = sig->nchan( sig->getIF(rows[0]) ) ;
|
---|
| 4648 | Vector<Float> spec( spsize ) ;
|
---|
| 4649 | // I know that the data is contiguous
|
---|
| 4650 | const uInt *p = rows.data() ;
|
---|
| 4651 | vector<int> ids( 2 ) ;
|
---|
| 4652 | Block<uInt> flagchan( spsize ) ;
|
---|
| 4653 | uInt nflag = 0 ;
|
---|
| 4654 | for ( int irow = 0 ; irow < rows.nelements() ; irow++ ) {
|
---|
| 4655 | double reftime = timeCol.asdouble(*p) ;
|
---|
| 4656 | ids = getRowIdFromTime( reftime, timeSky ) ;
|
---|
| 4657 | Vector<Float> spsky = getSpectrumFromTime( reftime, timeSky, ids, skyspectra, "linear" ) ;
|
---|
| 4658 | Vector<Float> tcal = getTcalFromTime( reftime, timeSky, ids, sky, "linear" ) ;
|
---|
| 4659 | Vector<Float> tsys = getTsysFromTime( reftime, timeSky, ids, sky, "linear" ) ;
|
---|
| 4660 | ids = getRowIdFromTime( reftime, timeHot ) ;
|
---|
| 4661 | Vector<Float> sphot = getSpectrumFromTime( reftime, timeHot, ids, hotspectra ) ;
|
---|
| 4662 | Vector<Float> spsig = rsig->specCol_( *p ) ;
|
---|
| 4663 | Vector<Float> spref = rref->specCol_( *p ) ;
|
---|
| 4664 | // using gain array
|
---|
| 4665 | for ( unsigned int j = 0 ; j < spsize ; j++ ) {
|
---|
| 4666 | if ( spref[j] == 0.0 || (sphot[j]-spsky[j]) == 0.0 ) {
|
---|
| 4667 | spec[j] = 0.0 ;
|
---|
| 4668 | flagchan[nflag++] = j ;
|
---|
| 4669 | }
|
---|
| 4670 | else {
|
---|
| 4671 | spec[j] = ( ( spsig[j] - spref[j] ) / spref[j] )
|
---|
| 4672 | * ( spsky[j] / ( sphot[j] - spsky[j] ) ) * tcal[j] ;
|
---|
| 4673 | }
|
---|
| 4674 | }
|
---|
| 4675 | sig->specCol_.put( *p, spec ) ;
|
---|
| 4676 | sig->tsysCol_.put( *p, tsys ) ;
|
---|
| 4677 | if ( nflag > 0 ) {
|
---|
| 4678 | Vector<uChar> fl = sig->flagsCol_( *p ) ;
|
---|
| 4679 | for ( unsigned int j = 0 ; j < nflag ; j++ ) {
|
---|
| 4680 | fl[flagchan[j]] = (uChar)True ;
|
---|
| 4681 | }
|
---|
| 4682 | sig->flagsCol_.put( *p, fl ) ;
|
---|
| 4683 | }
|
---|
| 4684 | nflag = 0 ;
|
---|
| 4685 |
|
---|
| 4686 | reftime = timeCol2.asdouble(*p) ;
|
---|
| 4687 | spsky = getSpectrumFromTime( reftime, timeSky, ids, skyspectra, "linear" ) ;
|
---|
| 4688 | tcal = getTcalFromTime( reftime, timeSky, ids, sky, "linear" ) ;
|
---|
| 4689 | tsys = getTsysFromTime( reftime, timeSky, ids, sky, "linear" ) ;
|
---|
| 4690 | ids = getRowIdFromTime( reftime, timeHot ) ;
|
---|
| 4691 | sphot = getSpectrumFromTime( reftime, timeHot, ids, hotspectra ) ;
|
---|
| 4692 | // using gain array
|
---|
| 4693 | for ( unsigned int j = 0 ; j < spsize ; j++ ) {
|
---|
| 4694 | if ( spsig[j] == 0.0 || (sphot[j]-spsky[j]) == 0.0 ) {
|
---|
| 4695 | spec[j] = 0.0 ;
|
---|
| 4696 | flagchan[nflag++] = j ;
|
---|
| 4697 | }
|
---|
| 4698 | else {
|
---|
| 4699 | spec[j] = ( ( spref[j] - spsig[j] ) / spsig[j] )
|
---|
| 4700 | * ( spsky[j] / ( sphot[j] - spsky[j] ) ) * tcal[j] ;
|
---|
| 4701 | }
|
---|
| 4702 | }
|
---|
| 4703 | ref->specCol_.put( *p, spec ) ;
|
---|
| 4704 | ref->tsysCol_.put( *p, tsys ) ;
|
---|
| 4705 | if ( nflag > 0 ) {
|
---|
| 4706 | Vector<uChar> fl = ref->flagsCol_( *p ) ;
|
---|
| 4707 | for ( unsigned int j = 0 ; j < nflag ; j++ ) {
|
---|
| 4708 | fl[flagchan[j]] = (uChar)True ;
|
---|
| 4709 | }
|
---|
| 4710 | ref->flagsCol_.put( *p, fl ) ;
|
---|
| 4711 | }
|
---|
| 4712 | nflag = 0 ;
|
---|
| 4713 | p++ ;
|
---|
[1819] | 4714 | }
|
---|
| 4715 | }
|
---|
| 4716 |
|
---|
[2580] | 4717 | void STMath::copyRows( Table &out,
|
---|
| 4718 | const Table &in,
|
---|
| 4719 | uInt startout,
|
---|
| 4720 | uInt startin,
|
---|
| 4721 | uInt nrow,
|
---|
| 4722 | Bool copySpectra,
|
---|
| 4723 | Bool copyFlagtra,
|
---|
| 4724 | Bool copyTsys )
|
---|
[1819] | 4725 | {
|
---|
[2580] | 4726 | uInt nexclude = 0 ;
|
---|
| 4727 | Block<String> excludeColsBlock( 3 ) ;
|
---|
| 4728 | if ( !copySpectra ) {
|
---|
| 4729 | excludeColsBlock[nexclude] = "SPECTRA" ;
|
---|
| 4730 | nexclude++ ;
|
---|
[1819] | 4731 | }
|
---|
[2580] | 4732 | if ( !copyFlagtra ) {
|
---|
| 4733 | excludeColsBlock[nexclude] = "FLAGTRA" ;
|
---|
| 4734 | nexclude++ ;
|
---|
| 4735 | }
|
---|
| 4736 | if ( !copyTsys ) {
|
---|
| 4737 | excludeColsBlock[nexclude] = "TSYS" ;
|
---|
| 4738 | nexclude++ ;
|
---|
| 4739 | }
|
---|
| 4740 | // if ( nexclude < 3 ) {
|
---|
| 4741 | // excludeCols.resize( nexclude, True ) ;
|
---|
| 4742 | // }
|
---|
| 4743 | Vector<String> excludeCols( IPosition(1,nexclude),
|
---|
| 4744 | excludeColsBlock.storage(),
|
---|
| 4745 | SHARE ) ;
|
---|
| 4746 | // cout << "excludeCols=" << excludeCols << endl ;
|
---|
| 4747 | TableRow rowout( out, excludeCols, True ) ;
|
---|
| 4748 | ROTableRow rowin( in, excludeCols, True ) ;
|
---|
| 4749 | uInt rin = startin ;
|
---|
| 4750 | uInt rout = startout ;
|
---|
| 4751 | for ( uInt i = 0 ; i < nrow ; i++ ) {
|
---|
| 4752 | rowin.get( rin ) ;
|
---|
| 4753 | rowout.putMatchingFields( rout, rowin.record() ) ;
|
---|
| 4754 | rin++ ;
|
---|
| 4755 | rout++ ;
|
---|
| 4756 | }
|
---|
[1819] | 4757 | }
|
---|
| 4758 |
|
---|
[2580] | 4759 | CountedPtr<Scantable> STMath::averageWithinSession( CountedPtr<Scantable> &s,
|
---|
| 4760 | vector<bool> &mask,
|
---|
| 4761 | string weight )
|
---|
[1819] | 4762 | {
|
---|
[2580] | 4763 | // prepare output table
|
---|
| 4764 | bool insitu = insitu_ ;
|
---|
| 4765 | insitu_ = false ;
|
---|
| 4766 | CountedPtr<Scantable> a = getScantable( s, true ) ;
|
---|
| 4767 | insitu_ = insitu ;
|
---|
| 4768 | Table &atab = a->table() ;
|
---|
| 4769 | ScalarColumn<Double> timeColOut( atab, "TIME" ) ;
|
---|
| 4770 |
|
---|
| 4771 | if ( s->nrow() == 0 )
|
---|
| 4772 | return a ;
|
---|
| 4773 |
|
---|
| 4774 | // setup RowAccumulator
|
---|
| 4775 | WeightType wtype = stringToWeight( weight ) ;
|
---|
| 4776 | RowAccumulator acc( wtype ) ;
|
---|
| 4777 | Vector<Bool> cmask( mask ) ;
|
---|
| 4778 | acc.setUserMask( cmask ) ;
|
---|
| 4779 |
|
---|
| 4780 | vector<string> cols( 3 ) ;
|
---|
| 4781 | cols[0] = "IFNO" ;
|
---|
| 4782 | cols[1] = "POLNO" ;
|
---|
| 4783 | cols[2] = "BEAMNO" ;
|
---|
| 4784 | STIdxIterAcc iter( s, cols ) ;
|
---|
| 4785 |
|
---|
| 4786 | Table ttab = s->table() ;
|
---|
| 4787 | ROScalarColumn<Double> *timeCol = new ROScalarColumn<Double>( ttab, "TIME" ) ;
|
---|
| 4788 | Vector<Double> timeVec = timeCol->getColumn() ;
|
---|
| 4789 | delete timeCol ;
|
---|
| 4790 | Vector<Double> interval = s->integrCol_.getColumn() ;
|
---|
| 4791 | uInt nrow = timeVec.nelements() ;
|
---|
| 4792 | uInt outrow = 0 ;
|
---|
| 4793 |
|
---|
| 4794 | while( !iter.pastEnd() ) {
|
---|
| 4795 |
|
---|
| 4796 | Vector<uInt> rows = iter.getRows( SHARE ) ;
|
---|
[2612] | 4797 | uInt len = rows.nelements() ;
|
---|
[2580] | 4798 |
|
---|
[2612] | 4799 | if ( len == 0 ) {
|
---|
| 4800 | iter.next() ;
|
---|
| 4801 | continue ;
|
---|
| 4802 | }
|
---|
| 4803 |
|
---|
[2580] | 4804 | uInt nchan = s->nchan(s->getIF(rows[0])) ;
|
---|
| 4805 | Vector<uChar> flag( nchan ) ;
|
---|
| 4806 | Vector<Bool> bflag( nchan ) ;
|
---|
| 4807 | Vector<Float> spec( nchan ) ;
|
---|
| 4808 | Vector<Float> tsys( nchan ) ;
|
---|
| 4809 |
|
---|
| 4810 | Vector<Double> timeSep( len-1 ) ;
|
---|
| 4811 | for ( uInt i = 0 ; i < len-1 ; i++ ) {
|
---|
| 4812 | timeSep[i] = timeVec[rows[i+1]] - timeVec[rows[i]] ;
|
---|
| 4813 | }
|
---|
| 4814 |
|
---|
| 4815 | uInt irow ;
|
---|
| 4816 | uInt jrow ;
|
---|
| 4817 | for ( uInt i = 0 ; i < len-1 ; i++ ) {
|
---|
| 4818 | irow = rows[i] ;
|
---|
| 4819 | jrow = rows[i+1] ;
|
---|
| 4820 | // accumulate data
|
---|
| 4821 | s->flagsCol_.get( irow, flag ) ;
|
---|
| 4822 | convertArray( bflag, flag ) ;
|
---|
| 4823 | s->specCol_.get( irow, spec ) ;
|
---|
| 4824 | tsys.assign( s->tsysCol_( irow ) ) ;
|
---|
| 4825 | if ( !allEQ(bflag,True) )
|
---|
| 4826 | acc.add( spec, !bflag, tsys, interval[irow], timeVec[irow] ) ;
|
---|
| 4827 | double gap = 2.0 * 86400.0 * timeSep[i] / ( interval[jrow] + interval[irow] ) ;
|
---|
| 4828 | //cout << "gap[" << i << "]=" << setw(5) << gap << endl ;
|
---|
| 4829 | if ( gap > 1.1 ) {
|
---|
| 4830 | //cout << "detected gap between " << i << " and " << i+1 << endl ;
|
---|
| 4831 | // put data to output table
|
---|
| 4832 | // reset RowAccumulator
|
---|
| 4833 | if ( acc.state() ) {
|
---|
| 4834 | atab.addRow() ;
|
---|
| 4835 | copyRows( atab, ttab, outrow, irow, 1, False, False, False ) ;
|
---|
| 4836 | acc.replaceNaN() ;
|
---|
| 4837 | const Vector<Bool> &msk = acc.getMask() ;
|
---|
| 4838 | convertArray( flag, !msk ) ;
|
---|
| 4839 | for (uInt k = 0; k < nchan; ++k) {
|
---|
| 4840 | uChar userFlag = 1 << 7;
|
---|
| 4841 | if (msk[k]==True) userFlag = 0 << 7;
|
---|
| 4842 | flag(k) = userFlag;
|
---|
| 4843 | }
|
---|
| 4844 | a->flagsCol_.put( outrow, flag ) ;
|
---|
| 4845 | a->specCol_.put( outrow, acc.getSpectrum() ) ;
|
---|
| 4846 | a->tsysCol_.put( outrow, acc.getTsys() ) ;
|
---|
| 4847 | a->integrCol_.put( outrow, acc.getInterval() ) ;
|
---|
| 4848 | timeColOut.put( outrow, acc.getTime() ) ;
|
---|
| 4849 | a->cycleCol_.put( outrow, 0 ) ;
|
---|
| 4850 | }
|
---|
| 4851 | acc.reset() ;
|
---|
| 4852 | outrow++ ;
|
---|
| 4853 | }
|
---|
| 4854 | }
|
---|
| 4855 |
|
---|
| 4856 | // accumulate and add last data
|
---|
| 4857 | irow = rows[len-1] ;
|
---|
| 4858 | s->flagsCol_.get( irow, flag ) ;
|
---|
| 4859 | convertArray( bflag, flag ) ;
|
---|
| 4860 | s->specCol_.get( irow, spec ) ;
|
---|
| 4861 | tsys.assign( s->tsysCol_( irow ) ) ;
|
---|
| 4862 | if (!allEQ(bflag,True) )
|
---|
| 4863 | acc.add( spec, !bflag, tsys, interval[irow], timeVec[irow] ) ;
|
---|
| 4864 | if ( acc.state() ) {
|
---|
| 4865 | atab.addRow() ;
|
---|
| 4866 | copyRows( atab, ttab, outrow, irow, 1, False, False, False ) ;
|
---|
| 4867 | acc.replaceNaN() ;
|
---|
| 4868 | const Vector<Bool> &msk = acc.getMask() ;
|
---|
| 4869 | convertArray( flag, !msk ) ;
|
---|
| 4870 | for (uInt k = 0; k < nchan; ++k) {
|
---|
| 4871 | uChar userFlag = 1 << 7;
|
---|
| 4872 | if (msk[k]==True) userFlag = 0 << 7;
|
---|
| 4873 | flag(k) = userFlag;
|
---|
| 4874 | }
|
---|
| 4875 | a->flagsCol_.put( outrow, flag ) ;
|
---|
| 4876 | a->specCol_.put( outrow, acc.getSpectrum() ) ;
|
---|
| 4877 | a->tsysCol_.put( outrow, acc.getTsys() ) ;
|
---|
| 4878 | a->integrCol_.put( outrow, acc.getInterval() ) ;
|
---|
| 4879 | timeColOut.put( outrow, acc.getTime() ) ;
|
---|
| 4880 | a->cycleCol_.put( outrow, 0 ) ;
|
---|
| 4881 | }
|
---|
| 4882 | acc.reset() ;
|
---|
| 4883 | outrow++ ;
|
---|
| 4884 |
|
---|
| 4885 | iter.next() ;
|
---|
[1819] | 4886 | }
|
---|
| 4887 |
|
---|
[2580] | 4888 | return a ;
|
---|
[1819] | 4889 | }
|
---|