| [805] | 1 | //
 | 
|---|
 | 2 | // C++ Implementation: Scantable
 | 
|---|
 | 3 | //
 | 
|---|
 | 4 | // Description:
 | 
|---|
 | 5 | //
 | 
|---|
 | 6 | //
 | 
|---|
| [2791] | 7 | // Author: Malte Marquarding <asap@atnf.csiro.au>, (C) 2005-2013
 | 
|---|
| [805] | 8 | //
 | 
|---|
 | 9 | // Copyright: See COPYING file that comes with this distribution
 | 
|---|
 | 10 | //
 | 
|---|
 | 11 | //
 | 
|---|
| [206] | 12 | #include <map>
 | 
|---|
| [2591] | 13 | #include <sys/time.h>
 | 
|---|
| [206] | 14 | 
 | 
|---|
| [2186] | 15 | #include <atnf/PKSIO/SrcType.h>
 | 
|---|
 | 16 | 
 | 
|---|
| [125] | 17 | #include <casa/aips.h>
 | 
|---|
| [2186] | 18 | #include <casa/iomanip.h>
 | 
|---|
| [80] | 19 | #include <casa/iostream.h>
 | 
|---|
| [2186] | 20 | #include <casa/OS/File.h>
 | 
|---|
| [805] | 21 | #include <casa/OS/Path.h>
 | 
|---|
| [2658] | 22 | #include <casa/Logging/LogIO.h>
 | 
|---|
| [80] | 23 | #include <casa/Arrays/Array.h>
 | 
|---|
| [2186] | 24 | #include <casa/Arrays/ArrayAccessor.h>
 | 
|---|
 | 25 | #include <casa/Arrays/ArrayLogical.h>
 | 
|---|
| [80] | 26 | #include <casa/Arrays/ArrayMath.h>
 | 
|---|
 | 27 | #include <casa/Arrays/MaskArrMath.h>
 | 
|---|
| [2186] | 28 | #include <casa/Arrays/Slice.h>
 | 
|---|
| [1325] | 29 | #include <casa/Arrays/Vector.h>
 | 
|---|
| [455] | 30 | #include <casa/Arrays/VectorSTLIterator.h>
 | 
|---|
| [418] | 31 | #include <casa/BasicMath/Math.h>
 | 
|---|
| [504] | 32 | #include <casa/BasicSL/Constants.h>
 | 
|---|
| [2186] | 33 | #include <casa/Containers/RecordField.h>
 | 
|---|
 | 34 | #include <casa/Logging/LogIO.h>
 | 
|---|
| [286] | 35 | #include <casa/Quanta/MVAngle.h>
 | 
|---|
| [2186] | 36 | #include <casa/Quanta/MVTime.h>
 | 
|---|
| [902] | 37 | #include <casa/Utilities/GenSort.h>
 | 
|---|
| [2] | 38 | 
 | 
|---|
| [2186] | 39 | #include <coordinates/Coordinates/CoordinateUtil.h>
 | 
|---|
| [2] | 40 | 
 | 
|---|
| [1325] | 41 | // needed to avoid error in .tcc
 | 
|---|
 | 42 | #include <measures/Measures/MCDirection.h>
 | 
|---|
 | 43 | //
 | 
|---|
 | 44 | #include <measures/Measures/MDirection.h>
 | 
|---|
| [2186] | 45 | #include <measures/Measures/MEpoch.h>
 | 
|---|
| [80] | 46 | #include <measures/Measures/MFrequency.h>
 | 
|---|
| [2186] | 47 | #include <measures/Measures/MeasRef.h>
 | 
|---|
 | 48 | #include <measures/Measures/MeasTable.h>
 | 
|---|
 | 49 | #include <measures/TableMeasures/ScalarMeasColumn.h>
 | 
|---|
 | 50 | #include <measures/TableMeasures/TableMeasDesc.h>
 | 
|---|
| [805] | 51 | #include <measures/TableMeasures/TableMeasRefDesc.h>
 | 
|---|
 | 52 | #include <measures/TableMeasures/TableMeasValueDesc.h>
 | 
|---|
| [2] | 53 | 
 | 
|---|
| [2186] | 54 | #include <tables/Tables/ArrColDesc.h>
 | 
|---|
 | 55 | #include <tables/Tables/ExprNode.h>
 | 
|---|
 | 56 | #include <tables/Tables/ScaColDesc.h>
 | 
|---|
 | 57 | #include <tables/Tables/SetupNewTab.h>
 | 
|---|
 | 58 | #include <tables/Tables/TableCopy.h>
 | 
|---|
 | 59 | #include <tables/Tables/TableDesc.h>
 | 
|---|
 | 60 | #include <tables/Tables/TableIter.h>
 | 
|---|
 | 61 | #include <tables/Tables/TableParse.h>
 | 
|---|
 | 62 | #include <tables/Tables/TableRecord.h>
 | 
|---|
 | 63 | #include <tables/Tables/TableRow.h>
 | 
|---|
 | 64 | #include <tables/Tables/TableVector.h>
 | 
|---|
 | 65 | 
 | 
|---|
 | 66 | #include "MathUtils.h"
 | 
|---|
 | 67 | #include "STAttr.h"
 | 
|---|
| [2737] | 68 | #include "STBaselineTable.h"
 | 
|---|
| [2186] | 69 | #include "STLineFinder.h"
 | 
|---|
 | 70 | #include "STPolCircular.h"
 | 
|---|
| [896] | 71 | #include "STPolLinear.h"
 | 
|---|
| [913] | 72 | #include "STPolStokes.h"
 | 
|---|
| [2321] | 73 | #include "STUpgrade.h"
 | 
|---|
| [2666] | 74 | #include "STFitter.h"
 | 
|---|
| [2186] | 75 | #include "Scantable.h"
 | 
|---|
| [2] | 76 | 
 | 
|---|
| [2462] | 77 | #define debug 1
 | 
|---|
 | 78 | 
 | 
|---|
| [125] | 79 | using namespace casa;
 | 
|---|
| [2] | 80 | 
 | 
|---|
| [805] | 81 | namespace asap {
 | 
|---|
 | 82 | 
 | 
|---|
| [896] | 83 | std::map<std::string, STPol::STPolFactory *> Scantable::factories_;
 | 
|---|
 | 84 | 
 | 
|---|
 | 85 | void Scantable::initFactories() {
 | 
|---|
 | 86 |   if ( factories_.empty() ) {
 | 
|---|
 | 87 |     Scantable::factories_["linear"] = &STPolLinear::myFactory;
 | 
|---|
| [1323] | 88 |     Scantable::factories_["circular"] = &STPolCircular::myFactory;
 | 
|---|
| [913] | 89 |     Scantable::factories_["stokes"] = &STPolStokes::myFactory;
 | 
|---|
| [896] | 90 |   }
 | 
|---|
 | 91 | }
 | 
|---|
 | 92 | 
 | 
|---|
| [805] | 93 | Scantable::Scantable(Table::TableType ttype) :
 | 
|---|
| [852] | 94 |   type_(ttype)
 | 
|---|
| [206] | 95 | {
 | 
|---|
| [896] | 96 |   initFactories();
 | 
|---|
| [805] | 97 |   setupMainTable();
 | 
|---|
| [2346] | 98 |   freqTable_ = STFrequencies(*this);
 | 
|---|
 | 99 |   table_.rwKeywordSet().defineTable("FREQUENCIES", freqTable_.table());
 | 
|---|
| [852] | 100 |   weatherTable_ = STWeather(*this);
 | 
|---|
| [805] | 101 |   table_.rwKeywordSet().defineTable("WEATHER", weatherTable_.table());
 | 
|---|
| [852] | 102 |   focusTable_ = STFocus(*this);
 | 
|---|
| [805] | 103 |   table_.rwKeywordSet().defineTable("FOCUS", focusTable_.table());
 | 
|---|
| [852] | 104 |   tcalTable_ = STTcal(*this);
 | 
|---|
| [805] | 105 |   table_.rwKeywordSet().defineTable("TCAL", tcalTable_.table());
 | 
|---|
| [852] | 106 |   moleculeTable_ = STMolecules(*this);
 | 
|---|
| [805] | 107 |   table_.rwKeywordSet().defineTable("MOLECULES", moleculeTable_.table());
 | 
|---|
| [860] | 108 |   historyTable_ = STHistory(*this);
 | 
|---|
 | 109 |   table_.rwKeywordSet().defineTable("HISTORY", historyTable_.table());
 | 
|---|
| [959] | 110 |   fitTable_ = STFit(*this);
 | 
|---|
 | 111 |   table_.rwKeywordSet().defineTable("FIT", fitTable_.table());
 | 
|---|
| [1881] | 112 |   table_.tableInfo().setType( "Scantable" ) ;
 | 
|---|
| [805] | 113 |   originalTable_ = table_;
 | 
|---|
| [322] | 114 |   attach();
 | 
|---|
| [18] | 115 | }
 | 
|---|
| [206] | 116 | 
 | 
|---|
| [805] | 117 | Scantable::Scantable(const std::string& name, Table::TableType ttype) :
 | 
|---|
| [852] | 118 |   type_(ttype)
 | 
|---|
| [206] | 119 | {
 | 
|---|
| [896] | 120 |   initFactories();
 | 
|---|
| [1819] | 121 | 
 | 
|---|
| [865] | 122 |   Table tab(name, Table::Update);
 | 
|---|
| [1009] | 123 |   uInt version = tab.keywordSet().asuInt("VERSION");
 | 
|---|
| [483] | 124 |   if (version != version_) {
 | 
|---|
| [2321] | 125 |       STUpgrade upgrader(version_);
 | 
|---|
| [2162] | 126 |       LogIO os( LogOrigin( "Scantable" ) ) ;
 | 
|---|
 | 127 |       os << LogIO::WARN
 | 
|---|
| [2321] | 128 |          << name << " data format version " << version 
 | 
|---|
 | 129 |          << " is deprecated" << endl 
 | 
|---|
 | 130 |          << "Running upgrade."<< endl  
 | 
|---|
| [2162] | 131 |          << LogIO::POST ;  
 | 
|---|
| [2321] | 132 |       std::string outname = upgrader.upgrade(name);
 | 
|---|
| [2332] | 133 |       if ( outname != name ) {
 | 
|---|
 | 134 |         os << LogIO::WARN
 | 
|---|
 | 135 |            << "Data will be loaded from " << outname << " instead of " 
 | 
|---|
 | 136 |            << name << LogIO::POST ;
 | 
|---|
 | 137 |         tab = Table(outname, Table::Update ) ;
 | 
|---|
 | 138 |       }
 | 
|---|
| [483] | 139 |   }
 | 
|---|
| [1009] | 140 |   if ( type_ == Table::Memory ) {
 | 
|---|
| [852] | 141 |     table_ = tab.copyToMemoryTable(generateName());
 | 
|---|
| [1009] | 142 |   } else {
 | 
|---|
| [805] | 143 |     table_ = tab;
 | 
|---|
| [1009] | 144 |   }
 | 
|---|
| [1881] | 145 |   table_.tableInfo().setType( "Scantable" ) ;
 | 
|---|
| [1009] | 146 | 
 | 
|---|
| [859] | 147 |   attachSubtables();
 | 
|---|
| [805] | 148 |   originalTable_ = table_;
 | 
|---|
| [329] | 149 |   attach();
 | 
|---|
| [2] | 150 | }
 | 
|---|
| [1819] | 151 | /*
 | 
|---|
 | 152 | Scantable::Scantable(const std::string& name, Table::TableType ttype) :
 | 
|---|
 | 153 |   type_(ttype)
 | 
|---|
 | 154 | {
 | 
|---|
 | 155 |   initFactories();
 | 
|---|
 | 156 |   Table tab(name, Table::Update);
 | 
|---|
 | 157 |   uInt version = tab.keywordSet().asuInt("VERSION");
 | 
|---|
 | 158 |   if (version != version_) {
 | 
|---|
 | 159 |     throw(AipsError("Unsupported version of ASAP file."));
 | 
|---|
 | 160 |   }
 | 
|---|
 | 161 |   if ( type_ == Table::Memory ) {
 | 
|---|
 | 162 |     table_ = tab.copyToMemoryTable(generateName());
 | 
|---|
 | 163 |   } else {
 | 
|---|
 | 164 |     table_ = tab;
 | 
|---|
 | 165 |   }
 | 
|---|
| [2] | 166 | 
 | 
|---|
| [1819] | 167 |   attachSubtables();
 | 
|---|
 | 168 |   originalTable_ = table_;
 | 
|---|
 | 169 |   attach();
 | 
|---|
 | 170 | }
 | 
|---|
 | 171 | */
 | 
|---|
 | 172 | 
 | 
|---|
| [2658] | 173 | Scantable::Scantable( const Scantable& other, bool clear )
 | 
|---|
| [206] | 174 | {
 | 
|---|
| [805] | 175 |   // with or without data
 | 
|---|
| [859] | 176 |   String newname = String(generateName());
 | 
|---|
| [865] | 177 |   type_ = other.table_.tableType();
 | 
|---|
| [859] | 178 |   if ( other.table_.tableType() == Table::Memory ) {
 | 
|---|
 | 179 |       if ( clear ) {
 | 
|---|
 | 180 |         table_ = TableCopy::makeEmptyMemoryTable(newname,
 | 
|---|
 | 181 |                                                  other.table_, True);
 | 
|---|
| [2818] | 182 |       } else {
 | 
|---|
| [859] | 183 |         table_ = other.table_.copyToMemoryTable(newname);
 | 
|---|
| [2818] | 184 |       }
 | 
|---|
| [16] | 185 |   } else {
 | 
|---|
| [915] | 186 |       other.table_.deepCopy(newname, Table::New, False,
 | 
|---|
 | 187 |                             other.table_.endianFormat(),
 | 
|---|
| [865] | 188 |                             Bool(clear));
 | 
|---|
 | 189 |       table_ = Table(newname, Table::Update);
 | 
|---|
 | 190 |       table_.markForDelete();
 | 
|---|
 | 191 |   }
 | 
|---|
| [1881] | 192 |   table_.tableInfo().setType( "Scantable" ) ;
 | 
|---|
| [1111] | 193 |   /// @todo reindex SCANNO, recompute nbeam, nif, npol
 | 
|---|
| [2846] | 194 |   if ( clear ) copySubtables(other);
 | 
|---|
| [859] | 195 |   attachSubtables();
 | 
|---|
| [805] | 196 |   originalTable_ = table_;
 | 
|---|
| [322] | 197 |   attach();
 | 
|---|
| [2] | 198 | }
 | 
|---|
 | 199 | 
 | 
|---|
| [865] | 200 | void Scantable::copySubtables(const Scantable& other) {
 | 
|---|
 | 201 |   Table t = table_.rwKeywordSet().asTable("FREQUENCIES");
 | 
|---|
| [2346] | 202 |   TableCopy::copyRows(t, other.freqTable_.table());
 | 
|---|
| [865] | 203 |   t = table_.rwKeywordSet().asTable("FOCUS");
 | 
|---|
 | 204 |   TableCopy::copyRows(t, other.focusTable_.table());
 | 
|---|
 | 205 |   t = table_.rwKeywordSet().asTable("WEATHER");
 | 
|---|
 | 206 |   TableCopy::copyRows(t, other.weatherTable_.table());
 | 
|---|
 | 207 |   t = table_.rwKeywordSet().asTable("TCAL");
 | 
|---|
 | 208 |   TableCopy::copyRows(t, other.tcalTable_.table());
 | 
|---|
 | 209 |   t = table_.rwKeywordSet().asTable("MOLECULES");
 | 
|---|
 | 210 |   TableCopy::copyRows(t, other.moleculeTable_.table());
 | 
|---|
 | 211 |   t = table_.rwKeywordSet().asTable("HISTORY");
 | 
|---|
 | 212 |   TableCopy::copyRows(t, other.historyTable_.table());
 | 
|---|
| [972] | 213 |   t = table_.rwKeywordSet().asTable("FIT");
 | 
|---|
 | 214 |   TableCopy::copyRows(t, other.fitTable_.table());
 | 
|---|
| [865] | 215 | }
 | 
|---|
 | 216 | 
 | 
|---|
| [859] | 217 | void Scantable::attachSubtables()
 | 
|---|
 | 218 | {
 | 
|---|
| [2346] | 219 |   freqTable_ = STFrequencies(table_);
 | 
|---|
| [859] | 220 |   focusTable_ = STFocus(table_);
 | 
|---|
 | 221 |   weatherTable_ = STWeather(table_);
 | 
|---|
 | 222 |   tcalTable_ = STTcal(table_);
 | 
|---|
 | 223 |   moleculeTable_ = STMolecules(table_);
 | 
|---|
| [860] | 224 |   historyTable_ = STHistory(table_);
 | 
|---|
| [972] | 225 |   fitTable_ = STFit(table_);
 | 
|---|
| [859] | 226 | }
 | 
|---|
 | 227 | 
 | 
|---|
| [805] | 228 | Scantable::~Scantable()
 | 
|---|
| [206] | 229 | {
 | 
|---|
| [2] | 230 | }
 | 
|---|
 | 231 | 
 | 
|---|
| [805] | 232 | void Scantable::setupMainTable()
 | 
|---|
| [206] | 233 | {
 | 
|---|
| [805] | 234 |   TableDesc td("", "1", TableDesc::Scratch);
 | 
|---|
 | 235 |   td.comment() = "An ASAP Scantable";
 | 
|---|
| [1009] | 236 |   td.rwKeywordSet().define("VERSION", uInt(version_));
 | 
|---|
| [2] | 237 | 
 | 
|---|
| [805] | 238 |   // n Cycles
 | 
|---|
 | 239 |   td.addColumn(ScalarColumnDesc<uInt>("SCANNO"));
 | 
|---|
 | 240 |   // new index every nBeam x nIF x nPol
 | 
|---|
 | 241 |   td.addColumn(ScalarColumnDesc<uInt>("CYCLENO"));
 | 
|---|
| [2] | 242 | 
 | 
|---|
| [805] | 243 |   td.addColumn(ScalarColumnDesc<uInt>("BEAMNO"));
 | 
|---|
 | 244 |   td.addColumn(ScalarColumnDesc<uInt>("IFNO"));
 | 
|---|
| [972] | 245 |   // linear, circular, stokes
 | 
|---|
| [805] | 246 |   td.rwKeywordSet().define("POLTYPE", String("linear"));
 | 
|---|
 | 247 |   td.addColumn(ScalarColumnDesc<uInt>("POLNO"));
 | 
|---|
| [138] | 248 | 
 | 
|---|
| [805] | 249 |   td.addColumn(ScalarColumnDesc<uInt>("FREQ_ID"));
 | 
|---|
 | 250 |   td.addColumn(ScalarColumnDesc<uInt>("MOLECULE_ID"));
 | 
|---|
| [80] | 251 | 
 | 
|---|
| [1819] | 252 |   ScalarColumnDesc<Int> refbeamnoColumn("REFBEAMNO");
 | 
|---|
 | 253 |   refbeamnoColumn.setDefault(Int(-1));
 | 
|---|
 | 254 |   td.addColumn(refbeamnoColumn);
 | 
|---|
 | 255 | 
 | 
|---|
 | 256 |   ScalarColumnDesc<uInt> flagrowColumn("FLAGROW");
 | 
|---|
 | 257 |   flagrowColumn.setDefault(uInt(0));
 | 
|---|
 | 258 |   td.addColumn(flagrowColumn);
 | 
|---|
 | 259 | 
 | 
|---|
| [805] | 260 |   td.addColumn(ScalarColumnDesc<Double>("TIME"));
 | 
|---|
 | 261 |   TableMeasRefDesc measRef(MEpoch::UTC); // UTC as default
 | 
|---|
 | 262 |   TableMeasValueDesc measVal(td, "TIME");
 | 
|---|
 | 263 |   TableMeasDesc<MEpoch> mepochCol(measVal, measRef);
 | 
|---|
 | 264 |   mepochCol.write(td);
 | 
|---|
| [483] | 265 | 
 | 
|---|
| [805] | 266 |   td.addColumn(ScalarColumnDesc<Double>("INTERVAL"));
 | 
|---|
 | 267 | 
 | 
|---|
| [2] | 268 |   td.addColumn(ScalarColumnDesc<String>("SRCNAME"));
 | 
|---|
| [805] | 269 |   // Type of source (on=0, off=1, other=-1)
 | 
|---|
| [1503] | 270 |   ScalarColumnDesc<Int> stypeColumn("SRCTYPE");
 | 
|---|
 | 271 |   stypeColumn.setDefault(Int(-1));
 | 
|---|
 | 272 |   td.addColumn(stypeColumn);
 | 
|---|
| [805] | 273 |   td.addColumn(ScalarColumnDesc<String>("FIELDNAME"));
 | 
|---|
 | 274 | 
 | 
|---|
 | 275 |   //The actual Data Vectors
 | 
|---|
| [2] | 276 |   td.addColumn(ArrayColumnDesc<Float>("SPECTRA"));
 | 
|---|
 | 277 |   td.addColumn(ArrayColumnDesc<uChar>("FLAGTRA"));
 | 
|---|
| [89] | 278 |   td.addColumn(ArrayColumnDesc<Float>("TSYS"));
 | 
|---|
| [805] | 279 | 
 | 
|---|
 | 280 |   td.addColumn(ArrayColumnDesc<Double>("DIRECTION",
 | 
|---|
 | 281 |                                        IPosition(1,2),
 | 
|---|
 | 282 |                                        ColumnDesc::Direct));
 | 
|---|
 | 283 |   TableMeasRefDesc mdirRef(MDirection::J2000); // default
 | 
|---|
 | 284 |   TableMeasValueDesc tmvdMDir(td, "DIRECTION");
 | 
|---|
 | 285 |   // the TableMeasDesc gives the column a type
 | 
|---|
 | 286 |   TableMeasDesc<MDirection> mdirCol(tmvdMDir, mdirRef);
 | 
|---|
| [987] | 287 |   // a uder set table type e.g. GALCTIC, B1950 ...
 | 
|---|
 | 288 |   td.rwKeywordSet().define("DIRECTIONREF", String("J2000"));
 | 
|---|
| [805] | 289 |   // writing create the measure column
 | 
|---|
 | 290 |   mdirCol.write(td);
 | 
|---|
| [923] | 291 |   td.addColumn(ScalarColumnDesc<Float>("AZIMUTH"));
 | 
|---|
 | 292 |   td.addColumn(ScalarColumnDesc<Float>("ELEVATION"));
 | 
|---|
| [1047] | 293 |   td.addColumn(ScalarColumnDesc<Float>("OPACITY"));
 | 
|---|
| [105] | 294 | 
 | 
|---|
| [805] | 295 |   td.addColumn(ScalarColumnDesc<uInt>("TCAL_ID"));
 | 
|---|
| [972] | 296 |   ScalarColumnDesc<Int> fitColumn("FIT_ID");
 | 
|---|
| [973] | 297 |   fitColumn.setDefault(Int(-1));
 | 
|---|
| [972] | 298 |   td.addColumn(fitColumn);
 | 
|---|
| [805] | 299 | 
 | 
|---|
 | 300 |   td.addColumn(ScalarColumnDesc<uInt>("FOCUS_ID"));
 | 
|---|
 | 301 |   td.addColumn(ScalarColumnDesc<uInt>("WEATHER_ID"));
 | 
|---|
 | 302 | 
 | 
|---|
| [999] | 303 |   // columns which just get dragged along, as they aren't used in asap
 | 
|---|
 | 304 |   td.addColumn(ScalarColumnDesc<Double>("SRCVELOCITY"));
 | 
|---|
 | 305 |   td.addColumn(ArrayColumnDesc<Double>("SRCPROPERMOTION"));
 | 
|---|
 | 306 |   td.addColumn(ArrayColumnDesc<Double>("SRCDIRECTION"));
 | 
|---|
 | 307 |   td.addColumn(ArrayColumnDesc<Double>("SCANRATE"));
 | 
|---|
 | 308 | 
 | 
|---|
| [805] | 309 |   td.rwKeywordSet().define("OBSMODE", String(""));
 | 
|---|
 | 310 | 
 | 
|---|
| [418] | 311 |   // Now create Table SetUp from the description.
 | 
|---|
| [859] | 312 |   SetupNewTable aNewTab(generateName(), td, Table::Scratch);
 | 
|---|
| [852] | 313 |   table_ = Table(aNewTab, type_, 0);
 | 
|---|
| [805] | 314 |   originalTable_ = table_;
 | 
|---|
 | 315 | }
 | 
|---|
| [418] | 316 | 
 | 
|---|
| [805] | 317 | void Scantable::attach()
 | 
|---|
| [455] | 318 | {
 | 
|---|
| [805] | 319 |   timeCol_.attach(table_, "TIME");
 | 
|---|
 | 320 |   srcnCol_.attach(table_, "SRCNAME");
 | 
|---|
| [1068] | 321 |   srctCol_.attach(table_, "SRCTYPE");
 | 
|---|
| [805] | 322 |   specCol_.attach(table_, "SPECTRA");
 | 
|---|
 | 323 |   flagsCol_.attach(table_, "FLAGTRA");
 | 
|---|
| [865] | 324 |   tsysCol_.attach(table_, "TSYS");
 | 
|---|
| [805] | 325 |   cycleCol_.attach(table_,"CYCLENO");
 | 
|---|
 | 326 |   scanCol_.attach(table_, "SCANNO");
 | 
|---|
 | 327 |   beamCol_.attach(table_, "BEAMNO");
 | 
|---|
| [847] | 328 |   ifCol_.attach(table_, "IFNO");
 | 
|---|
 | 329 |   polCol_.attach(table_, "POLNO");
 | 
|---|
| [805] | 330 |   integrCol_.attach(table_, "INTERVAL");
 | 
|---|
 | 331 |   azCol_.attach(table_, "AZIMUTH");
 | 
|---|
 | 332 |   elCol_.attach(table_, "ELEVATION");
 | 
|---|
 | 333 |   dirCol_.attach(table_, "DIRECTION");
 | 
|---|
 | 334 |   fldnCol_.attach(table_, "FIELDNAME");
 | 
|---|
 | 335 |   rbeamCol_.attach(table_, "REFBEAMNO");
 | 
|---|
| [455] | 336 | 
 | 
|---|
| [1730] | 337 |   mweatheridCol_.attach(table_,"WEATHER_ID");
 | 
|---|
| [805] | 338 |   mfitidCol_.attach(table_,"FIT_ID");
 | 
|---|
 | 339 |   mfreqidCol_.attach(table_, "FREQ_ID");
 | 
|---|
 | 340 |   mtcalidCol_.attach(table_, "TCAL_ID");
 | 
|---|
 | 341 |   mfocusidCol_.attach(table_, "FOCUS_ID");
 | 
|---|
 | 342 |   mmolidCol_.attach(table_, "MOLECULE_ID");
 | 
|---|
| [1819] | 343 | 
 | 
|---|
 | 344 |   //Add auxiliary column for row-based flagging (CAS-1433 Wataru Kawasaki)
 | 
|---|
 | 345 |   attachAuxColumnDef(flagrowCol_, "FLAGROW", 0);
 | 
|---|
 | 346 | 
 | 
|---|
| [455] | 347 | }
 | 
|---|
 | 348 | 
 | 
|---|
| [1819] | 349 | template<class T, class T2>
 | 
|---|
 | 350 | void Scantable::attachAuxColumnDef(ScalarColumn<T>& col,
 | 
|---|
 | 351 |                                    const String& colName,
 | 
|---|
 | 352 |                                    const T2& defValue)
 | 
|---|
 | 353 | {
 | 
|---|
 | 354 |   try {
 | 
|---|
 | 355 |     col.attach(table_, colName);
 | 
|---|
 | 356 |   } catch (TableError& err) {
 | 
|---|
 | 357 |     String errMesg = err.getMesg();
 | 
|---|
 | 358 |     if (errMesg == "Table column " + colName + " is unknown") {
 | 
|---|
 | 359 |       table_.addColumn(ScalarColumnDesc<T>(colName));
 | 
|---|
 | 360 |       col.attach(table_, colName);
 | 
|---|
 | 361 |       col.fillColumn(static_cast<T>(defValue));
 | 
|---|
 | 362 |     } else {
 | 
|---|
 | 363 |       throw;
 | 
|---|
 | 364 |     }
 | 
|---|
 | 365 |   } catch (...) {
 | 
|---|
 | 366 |     throw;
 | 
|---|
 | 367 |   }
 | 
|---|
 | 368 | }
 | 
|---|
 | 369 | 
 | 
|---|
 | 370 | template<class T, class T2>
 | 
|---|
 | 371 | void Scantable::attachAuxColumnDef(ArrayColumn<T>& col,
 | 
|---|
 | 372 |                                    const String& colName,
 | 
|---|
 | 373 |                                    const Array<T2>& defValue)
 | 
|---|
 | 374 | {
 | 
|---|
 | 375 |   try {
 | 
|---|
 | 376 |     col.attach(table_, colName);
 | 
|---|
 | 377 |   } catch (TableError& err) {
 | 
|---|
 | 378 |     String errMesg = err.getMesg();
 | 
|---|
 | 379 |     if (errMesg == "Table column " + colName + " is unknown") {
 | 
|---|
 | 380 |       table_.addColumn(ArrayColumnDesc<T>(colName));
 | 
|---|
 | 381 |       col.attach(table_, colName);
 | 
|---|
 | 382 | 
 | 
|---|
 | 383 |       int size = 0;
 | 
|---|
 | 384 |       ArrayIterator<T2>& it = defValue.begin();
 | 
|---|
 | 385 |       while (it != defValue.end()) {
 | 
|---|
 | 386 |         ++size;
 | 
|---|
 | 387 |         ++it;
 | 
|---|
 | 388 |       }
 | 
|---|
 | 389 |       IPosition ip(1, size);
 | 
|---|
 | 390 |       Array<T>& arr(ip);
 | 
|---|
 | 391 |       for (int i = 0; i < size; ++i)
 | 
|---|
 | 392 |         arr[i] = static_cast<T>(defValue[i]);
 | 
|---|
 | 393 | 
 | 
|---|
 | 394 |       col.fillColumn(arr);
 | 
|---|
 | 395 |     } else {
 | 
|---|
 | 396 |       throw;
 | 
|---|
 | 397 |     }
 | 
|---|
 | 398 |   } catch (...) {
 | 
|---|
 | 399 |     throw;
 | 
|---|
 | 400 |   }
 | 
|---|
 | 401 | }
 | 
|---|
 | 402 | 
 | 
|---|
| [901] | 403 | void Scantable::setHeader(const STHeader& sdh)
 | 
|---|
| [206] | 404 | {
 | 
|---|
| [18] | 405 |   table_.rwKeywordSet().define("nIF", sdh.nif);
 | 
|---|
 | 406 |   table_.rwKeywordSet().define("nBeam", sdh.nbeam);
 | 
|---|
 | 407 |   table_.rwKeywordSet().define("nPol", sdh.npol);
 | 
|---|
 | 408 |   table_.rwKeywordSet().define("nChan", sdh.nchan);
 | 
|---|
 | 409 |   table_.rwKeywordSet().define("Observer", sdh.observer);
 | 
|---|
 | 410 |   table_.rwKeywordSet().define("Project", sdh.project);
 | 
|---|
 | 411 |   table_.rwKeywordSet().define("Obstype", sdh.obstype);
 | 
|---|
 | 412 |   table_.rwKeywordSet().define("AntennaName", sdh.antennaname);
 | 
|---|
 | 413 |   table_.rwKeywordSet().define("AntennaPosition", sdh.antennaposition);
 | 
|---|
 | 414 |   table_.rwKeywordSet().define("Equinox", sdh.equinox);
 | 
|---|
 | 415 |   table_.rwKeywordSet().define("FreqRefFrame", sdh.freqref);
 | 
|---|
 | 416 |   table_.rwKeywordSet().define("FreqRefVal", sdh.reffreq);
 | 
|---|
 | 417 |   table_.rwKeywordSet().define("Bandwidth", sdh.bandwidth);
 | 
|---|
 | 418 |   table_.rwKeywordSet().define("UTC", sdh.utc);
 | 
|---|
| [206] | 419 |   table_.rwKeywordSet().define("FluxUnit", sdh.fluxunit);
 | 
|---|
 | 420 |   table_.rwKeywordSet().define("Epoch", sdh.epoch);
 | 
|---|
| [905] | 421 |   table_.rwKeywordSet().define("POLTYPE", sdh.poltype);
 | 
|---|
| [50] | 422 | }
 | 
|---|
| [21] | 423 | 
 | 
|---|
| [901] | 424 | STHeader Scantable::getHeader() const
 | 
|---|
| [206] | 425 | {
 | 
|---|
| [901] | 426 |   STHeader sdh;
 | 
|---|
| [21] | 427 |   table_.keywordSet().get("nBeam",sdh.nbeam);
 | 
|---|
 | 428 |   table_.keywordSet().get("nIF",sdh.nif);
 | 
|---|
 | 429 |   table_.keywordSet().get("nPol",sdh.npol);
 | 
|---|
 | 430 |   table_.keywordSet().get("nChan",sdh.nchan);
 | 
|---|
 | 431 |   table_.keywordSet().get("Observer", sdh.observer);
 | 
|---|
 | 432 |   table_.keywordSet().get("Project", sdh.project);
 | 
|---|
 | 433 |   table_.keywordSet().get("Obstype", sdh.obstype);
 | 
|---|
 | 434 |   table_.keywordSet().get("AntennaName", sdh.antennaname);
 | 
|---|
 | 435 |   table_.keywordSet().get("AntennaPosition", sdh.antennaposition);
 | 
|---|
 | 436 |   table_.keywordSet().get("Equinox", sdh.equinox);
 | 
|---|
 | 437 |   table_.keywordSet().get("FreqRefFrame", sdh.freqref);
 | 
|---|
 | 438 |   table_.keywordSet().get("FreqRefVal", sdh.reffreq);
 | 
|---|
 | 439 |   table_.keywordSet().get("Bandwidth", sdh.bandwidth);
 | 
|---|
 | 440 |   table_.keywordSet().get("UTC", sdh.utc);
 | 
|---|
| [206] | 441 |   table_.keywordSet().get("FluxUnit", sdh.fluxunit);
 | 
|---|
 | 442 |   table_.keywordSet().get("Epoch", sdh.epoch);
 | 
|---|
| [905] | 443 |   table_.keywordSet().get("POLTYPE", sdh.poltype);
 | 
|---|
| [21] | 444 |   return sdh;
 | 
|---|
| [18] | 445 | }
 | 
|---|
| [805] | 446 | 
 | 
|---|
| [1360] | 447 | void Scantable::setSourceType( int stype )
 | 
|---|
| [1068] | 448 | {
 | 
|---|
 | 449 |   if ( stype < 0 || stype > 1 )
 | 
|---|
 | 450 |     throw(AipsError("Illegal sourcetype."));
 | 
|---|
 | 451 |   TableVector<Int> tabvec(table_, "SRCTYPE");
 | 
|---|
 | 452 |   tabvec = Int(stype);
 | 
|---|
 | 453 | }
 | 
|---|
 | 454 | 
 | 
|---|
| [2818] | 455 | void Scantable::setSourceName( const std::string& name )
 | 
|---|
 | 456 | {
 | 
|---|
 | 457 |   TableVector<String> tabvec(table_, "SRCNAME");
 | 
|---|
 | 458 |   tabvec = name;
 | 
|---|
 | 459 | }
 | 
|---|
 | 460 | 
 | 
|---|
| [845] | 461 | bool Scantable::conformant( const Scantable& other )
 | 
|---|
 | 462 | {
 | 
|---|
 | 463 |   return this->getHeader().conformant(other.getHeader());
 | 
|---|
 | 464 | }
 | 
|---|
 | 465 | 
 | 
|---|
 | 466 | 
 | 
|---|
| [50] | 467 | 
 | 
|---|
| [805] | 468 | std::string Scantable::formatSec(Double x) const
 | 
|---|
| [206] | 469 | {
 | 
|---|
| [105] | 470 |   Double xcop = x;
 | 
|---|
 | 471 |   MVTime mvt(xcop/24./3600.);  // make days
 | 
|---|
| [365] | 472 | 
 | 
|---|
| [105] | 473 |   if (x < 59.95)
 | 
|---|
| [281] | 474 |     return  String("      ") + mvt.string(MVTime::TIME_CLEAN_NO_HM, 7)+"s";
 | 
|---|
| [745] | 475 |   else if (x < 3599.95)
 | 
|---|
| [281] | 476 |     return String("   ") + mvt.string(MVTime::TIME_CLEAN_NO_H,7)+" ";
 | 
|---|
 | 477 |   else {
 | 
|---|
 | 478 |     ostringstream oss;
 | 
|---|
 | 479 |     oss << setw(2) << std::right << setprecision(1) << mvt.hour();
 | 
|---|
 | 480 |     oss << ":" << mvt.string(MVTime::TIME_CLEAN_NO_H,7) << " ";
 | 
|---|
 | 481 |     return String(oss);
 | 
|---|
| [745] | 482 |   }
 | 
|---|
| [105] | 483 | };
 | 
|---|
 | 484 | 
 | 
|---|
| [805] | 485 | std::string Scantable::formatDirection(const MDirection& md) const
 | 
|---|
| [281] | 486 | {
 | 
|---|
 | 487 |   Vector<Double> t = md.getAngle(Unit(String("rad"))).getValue();
 | 
|---|
 | 488 |   Int prec = 7;
 | 
|---|
 | 489 | 
 | 
|---|
| [2575] | 490 |   String ref = md.getRefString();
 | 
|---|
| [281] | 491 |   MVAngle mvLon(t[0]);
 | 
|---|
 | 492 |   String sLon = mvLon.string(MVAngle::TIME,prec);
 | 
|---|
| [987] | 493 |   uInt tp = md.getRef().getType();
 | 
|---|
 | 494 |   if (tp == MDirection::GALACTIC ||
 | 
|---|
 | 495 |       tp == MDirection::SUPERGAL ) {
 | 
|---|
 | 496 |     sLon = mvLon(0.0).string(MVAngle::ANGLE_CLEAN,prec);
 | 
|---|
 | 497 |   }
 | 
|---|
| [281] | 498 |   MVAngle mvLat(t[1]);
 | 
|---|
 | 499 |   String sLat = mvLat.string(MVAngle::ANGLE+MVAngle::DIG2,prec);
 | 
|---|
| [2575] | 500 |   return  ref + String(" ") + sLon + String(" ") + sLat;
 | 
|---|
| [281] | 501 | }
 | 
|---|
 | 502 | 
 | 
|---|
 | 503 | 
 | 
|---|
| [805] | 504 | std::string Scantable::getFluxUnit() const
 | 
|---|
| [206] | 505 | {
 | 
|---|
| [847] | 506 |   return table_.keywordSet().asString("FluxUnit");
 | 
|---|
| [206] | 507 | }
 | 
|---|
 | 508 | 
 | 
|---|
| [805] | 509 | void Scantable::setFluxUnit(const std::string& unit)
 | 
|---|
| [218] | 510 | {
 | 
|---|
 | 511 |   String tmp(unit);
 | 
|---|
 | 512 |   Unit tU(tmp);
 | 
|---|
 | 513 |   if (tU==Unit("K") || tU==Unit("Jy")) {
 | 
|---|
 | 514 |      table_.rwKeywordSet().define(String("FluxUnit"), tmp);
 | 
|---|
 | 515 |   } else {
 | 
|---|
 | 516 |      throw AipsError("Illegal unit - must be compatible with Jy or K");
 | 
|---|
 | 517 |   }
 | 
|---|
 | 518 | }
 | 
|---|
 | 519 | 
 | 
|---|
| [805] | 520 | void Scantable::setInstrument(const std::string& name)
 | 
|---|
| [236] | 521 | {
 | 
|---|
| [805] | 522 |   bool throwIt = true;
 | 
|---|
| [996] | 523 |   // create an Instrument to see if this is valid
 | 
|---|
 | 524 |   STAttr::convertInstrument(name, throwIt);
 | 
|---|
| [236] | 525 |   String nameU(name);
 | 
|---|
 | 526 |   nameU.upcase();
 | 
|---|
 | 527 |   table_.rwKeywordSet().define(String("AntennaName"), nameU);
 | 
|---|
 | 528 | }
 | 
|---|
 | 529 | 
 | 
|---|
| [1189] | 530 | void Scantable::setFeedType(const std::string& feedtype)
 | 
|---|
 | 531 | {
 | 
|---|
 | 532 |   if ( Scantable::factories_.find(feedtype) ==  Scantable::factories_.end() ) {
 | 
|---|
 | 533 |     std::string msg = "Illegal feed type "+ feedtype;
 | 
|---|
 | 534 |     throw(casa::AipsError(msg));
 | 
|---|
 | 535 |   }
 | 
|---|
 | 536 |   table_.rwKeywordSet().define(String("POLTYPE"), feedtype);
 | 
|---|
 | 537 | }
 | 
|---|
 | 538 | 
 | 
|---|
| [1743] | 539 | MPosition Scantable::getAntennaPosition() const
 | 
|---|
| [805] | 540 | {
 | 
|---|
 | 541 |   Vector<Double> antpos;
 | 
|---|
 | 542 |   table_.keywordSet().get("AntennaPosition", antpos);
 | 
|---|
 | 543 |   MVPosition mvpos(antpos(0),antpos(1),antpos(2));
 | 
|---|
 | 544 |   return MPosition(mvpos);
 | 
|---|
 | 545 | }
 | 
|---|
| [281] | 546 | 
 | 
|---|
| [805] | 547 | void Scantable::makePersistent(const std::string& filename)
 | 
|---|
 | 548 | {
 | 
|---|
 | 549 |   String inname(filename);
 | 
|---|
 | 550 |   Path path(inname);
 | 
|---|
| [1111] | 551 |   /// @todo reindex SCANNO, recompute nbeam, nif, npol
 | 
|---|
| [805] | 552 |   inname = path.expandedName();
 | 
|---|
| [2030] | 553 |   // 2011/03/04 TN
 | 
|---|
 | 554 |   // We can comment out this workaround since the essential bug is 
 | 
|---|
 | 555 |   // fixed in casacore (r20889 in google code).
 | 
|---|
 | 556 |   table_.deepCopy(inname, Table::New);
 | 
|---|
 | 557 | //   // WORKAROUND !!! for Table bug
 | 
|---|
 | 558 | //   // Remove when fixed in casacore
 | 
|---|
 | 559 | //   if ( table_.tableType() == Table::Memory  && !selector_.empty() ) {
 | 
|---|
 | 560 | //     Table tab = table_.copyToMemoryTable(generateName());
 | 
|---|
 | 561 | //     tab.deepCopy(inname, Table::New);
 | 
|---|
 | 562 | //     tab.markForDelete();
 | 
|---|
 | 563 | //
 | 
|---|
 | 564 | //   } else {
 | 
|---|
 | 565 | //     table_.deepCopy(inname, Table::New);
 | 
|---|
 | 566 | //   }
 | 
|---|
| [805] | 567 | }
 | 
|---|
 | 568 | 
 | 
|---|
| [837] | 569 | int Scantable::nbeam( int scanno ) const
 | 
|---|
| [805] | 570 | {
 | 
|---|
 | 571 |   if ( scanno < 0 ) {
 | 
|---|
 | 572 |     Int n;
 | 
|---|
 | 573 |     table_.keywordSet().get("nBeam",n);
 | 
|---|
 | 574 |     return int(n);
 | 
|---|
| [105] | 575 |   } else {
 | 
|---|
| [805] | 576 |     // take the first POLNO,IFNO,CYCLENO as nbeam shouldn't vary with these
 | 
|---|
| [888] | 577 |     Table t = table_(table_.col("SCANNO") == scanno);
 | 
|---|
 | 578 |     ROTableRow row(t);
 | 
|---|
 | 579 |     const TableRecord& rec = row.get(0);
 | 
|---|
 | 580 |     Table subt = t( t.col("IFNO") == Int(rec.asuInt("IFNO"))
 | 
|---|
 | 581 |                     && t.col("POLNO") == Int(rec.asuInt("POLNO"))
 | 
|---|
 | 582 |                     && t.col("CYCLENO") == Int(rec.asuInt("CYCLENO")) );
 | 
|---|
 | 583 |     ROTableVector<uInt> v(subt, "BEAMNO");
 | 
|---|
| [805] | 584 |     return int(v.nelements());
 | 
|---|
| [105] | 585 |   }
 | 
|---|
| [805] | 586 |   return 0;
 | 
|---|
 | 587 | }
 | 
|---|
| [455] | 588 | 
 | 
|---|
| [837] | 589 | int Scantable::nif( int scanno ) const
 | 
|---|
| [805] | 590 | {
 | 
|---|
 | 591 |   if ( scanno < 0 ) {
 | 
|---|
 | 592 |     Int n;
 | 
|---|
 | 593 |     table_.keywordSet().get("nIF",n);
 | 
|---|
 | 594 |     return int(n);
 | 
|---|
 | 595 |   } else {
 | 
|---|
 | 596 |     // take the first POLNO,BEAMNO,CYCLENO as nbeam shouldn't vary with these
 | 
|---|
| [888] | 597 |     Table t = table_(table_.col("SCANNO") == scanno);
 | 
|---|
 | 598 |     ROTableRow row(t);
 | 
|---|
 | 599 |     const TableRecord& rec = row.get(0);
 | 
|---|
 | 600 |     Table subt = t( t.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
 | 
|---|
 | 601 |                     && t.col("POLNO") == Int(rec.asuInt("POLNO"))
 | 
|---|
 | 602 |                     && t.col("CYCLENO") == Int(rec.asuInt("CYCLENO")) );
 | 
|---|
 | 603 |     if ( subt.nrow() == 0 ) return 0;
 | 
|---|
 | 604 |     ROTableVector<uInt> v(subt, "IFNO");
 | 
|---|
| [805] | 605 |     return int(v.nelements());
 | 
|---|
| [2] | 606 |   }
 | 
|---|
| [805] | 607 |   return 0;
 | 
|---|
 | 608 | }
 | 
|---|
| [321] | 609 | 
 | 
|---|
| [837] | 610 | int Scantable::npol( int scanno ) const
 | 
|---|
| [805] | 611 | {
 | 
|---|
 | 612 |   if ( scanno < 0 ) {
 | 
|---|
 | 613 |     Int n;
 | 
|---|
 | 614 |     table_.keywordSet().get("nPol",n);
 | 
|---|
 | 615 |     return n;
 | 
|---|
 | 616 |   } else {
 | 
|---|
 | 617 |     // take the first POLNO,IFNO,CYCLENO as nbeam shouldn't vary with these
 | 
|---|
| [888] | 618 |     Table t = table_(table_.col("SCANNO") == scanno);
 | 
|---|
 | 619 |     ROTableRow row(t);
 | 
|---|
 | 620 |     const TableRecord& rec = row.get(0);
 | 
|---|
 | 621 |     Table subt = t( t.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
 | 
|---|
 | 622 |                     && t.col("IFNO") == Int(rec.asuInt("IFNO"))
 | 
|---|
 | 623 |                     && t.col("CYCLENO") == Int(rec.asuInt("CYCLENO")) );
 | 
|---|
 | 624 |     if ( subt.nrow() == 0 ) return 0;
 | 
|---|
 | 625 |     ROTableVector<uInt> v(subt, "POLNO");
 | 
|---|
| [805] | 626 |     return int(v.nelements());
 | 
|---|
| [321] | 627 |   }
 | 
|---|
| [805] | 628 |   return 0;
 | 
|---|
| [2] | 629 | }
 | 
|---|
| [805] | 630 | 
 | 
|---|
| [845] | 631 | int Scantable::ncycle( int scanno ) const
 | 
|---|
| [206] | 632 | {
 | 
|---|
| [805] | 633 |   if ( scanno < 0 ) {
 | 
|---|
| [837] | 634 |     Block<String> cols(2);
 | 
|---|
 | 635 |     cols[0] = "SCANNO";
 | 
|---|
 | 636 |     cols[1] = "CYCLENO";
 | 
|---|
 | 637 |     TableIterator it(table_, cols);
 | 
|---|
 | 638 |     int n = 0;
 | 
|---|
 | 639 |     while ( !it.pastEnd() ) {
 | 
|---|
 | 640 |       ++n;
 | 
|---|
| [902] | 641 |       ++it;
 | 
|---|
| [837] | 642 |     }
 | 
|---|
 | 643 |     return n;
 | 
|---|
| [805] | 644 |   } else {
 | 
|---|
| [888] | 645 |     Table t = table_(table_.col("SCANNO") == scanno);
 | 
|---|
 | 646 |     ROTableRow row(t);
 | 
|---|
 | 647 |     const TableRecord& rec = row.get(0);
 | 
|---|
 | 648 |     Table subt = t( t.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
 | 
|---|
 | 649 |                     && t.col("POLNO") == Int(rec.asuInt("POLNO"))
 | 
|---|
 | 650 |                     && t.col("IFNO") == Int(rec.asuInt("IFNO")) );
 | 
|---|
 | 651 |     if ( subt.nrow() == 0 ) return 0;
 | 
|---|
 | 652 |     return int(subt.nrow());
 | 
|---|
| [805] | 653 |   }
 | 
|---|
 | 654 |   return 0;
 | 
|---|
| [18] | 655 | }
 | 
|---|
| [455] | 656 | 
 | 
|---|
 | 657 | 
 | 
|---|
| [845] | 658 | int Scantable::nrow( int scanno ) const
 | 
|---|
| [805] | 659 | {
 | 
|---|
| [845] | 660 |   return int(table_.nrow());
 | 
|---|
 | 661 | }
 | 
|---|
 | 662 | 
 | 
|---|
 | 663 | int Scantable::nchan( int ifno ) const
 | 
|---|
 | 664 | {
 | 
|---|
 | 665 |   if ( ifno < 0 ) {
 | 
|---|
| [805] | 666 |     Int n;
 | 
|---|
 | 667 |     table_.keywordSet().get("nChan",n);
 | 
|---|
 | 668 |     return int(n);
 | 
|---|
 | 669 |   } else {
 | 
|---|
| [1360] | 670 |     // take the first SCANNO,POLNO,BEAMNO,CYCLENO as nbeam shouldn't
 | 
|---|
 | 671 |     // vary with these
 | 
|---|
| [2244] | 672 |     Table t = table_(table_.col("IFNO") == ifno, 1);
 | 
|---|
| [888] | 673 |     if ( t.nrow() == 0 ) return 0;
 | 
|---|
 | 674 |     ROArrayColumn<Float> v(t, "SPECTRA");
 | 
|---|
| [923] | 675 |     return v.shape(0)(0);
 | 
|---|
| [805] | 676 |   }
 | 
|---|
 | 677 |   return 0;
 | 
|---|
| [18] | 678 | }
 | 
|---|
| [455] | 679 | 
 | 
|---|
| [1111] | 680 | int Scantable::nscan() const {
 | 
|---|
 | 681 |   Vector<uInt> scannos(scanCol_.getColumn());
 | 
|---|
| [1148] | 682 |   uInt nout = genSort( scannos, Sort::Ascending,
 | 
|---|
| [1111] | 683 |                        Sort::QuickSort|Sort::NoDuplicates );
 | 
|---|
 | 684 |   return int(nout);
 | 
|---|
 | 685 | }
 | 
|---|
 | 686 | 
 | 
|---|
| [923] | 687 | int Scantable::getChannels(int whichrow) const
 | 
|---|
 | 688 | {
 | 
|---|
 | 689 |   return specCol_.shape(whichrow)(0);
 | 
|---|
 | 690 | }
 | 
|---|
| [847] | 691 | 
 | 
|---|
 | 692 | int Scantable::getBeam(int whichrow) const
 | 
|---|
 | 693 | {
 | 
|---|
 | 694 |   return beamCol_(whichrow);
 | 
|---|
 | 695 | }
 | 
|---|
 | 696 | 
 | 
|---|
| [1694] | 697 | std::vector<uint> Scantable::getNumbers(const ScalarColumn<uInt>& col) const
 | 
|---|
| [1111] | 698 | {
 | 
|---|
 | 699 |   Vector<uInt> nos(col.getColumn());
 | 
|---|
| [1148] | 700 |   uInt n = genSort( nos, Sort::Ascending, Sort::QuickSort|Sort::NoDuplicates );
 | 
|---|
 | 701 |   nos.resize(n, True);
 | 
|---|
| [1111] | 702 |   std::vector<uint> stlout;
 | 
|---|
 | 703 |   nos.tovector(stlout);
 | 
|---|
 | 704 |   return stlout;
 | 
|---|
 | 705 | }
 | 
|---|
 | 706 | 
 | 
|---|
| [847] | 707 | int Scantable::getIF(int whichrow) const
 | 
|---|
 | 708 | {
 | 
|---|
 | 709 |   return ifCol_(whichrow);
 | 
|---|
 | 710 | }
 | 
|---|
 | 711 | 
 | 
|---|
 | 712 | int Scantable::getPol(int whichrow) const
 | 
|---|
 | 713 | {
 | 
|---|
 | 714 |   return polCol_(whichrow);
 | 
|---|
 | 715 | }
 | 
|---|
 | 716 | 
 | 
|---|
| [805] | 717 | std::string Scantable::formatTime(const MEpoch& me, bool showdate) const
 | 
|---|
 | 718 | {
 | 
|---|
| [1947] | 719 |   return formatTime(me, showdate, 0);
 | 
|---|
 | 720 | }
 | 
|---|
 | 721 | 
 | 
|---|
 | 722 | std::string Scantable::formatTime(const MEpoch& me, bool showdate, uInt prec) const
 | 
|---|
 | 723 | {
 | 
|---|
| [805] | 724 |   MVTime mvt(me.getValue());
 | 
|---|
 | 725 |   if (showdate)
 | 
|---|
| [1947] | 726 |     //mvt.setFormat(MVTime::YMD);
 | 
|---|
 | 727 |     mvt.setFormat(MVTime::YMD, prec);
 | 
|---|
| [805] | 728 |   else
 | 
|---|
| [1947] | 729 |     //mvt.setFormat(MVTime::TIME);
 | 
|---|
 | 730 |     mvt.setFormat(MVTime::TIME, prec);
 | 
|---|
| [805] | 731 |   ostringstream oss;
 | 
|---|
 | 732 |   oss << mvt;
 | 
|---|
 | 733 |   return String(oss);
 | 
|---|
 | 734 | }
 | 
|---|
| [488] | 735 | 
 | 
|---|
| [805] | 736 | void Scantable::calculateAZEL()
 | 
|---|
| [2658] | 737 | {  
 | 
|---|
 | 738 |   LogIO os( LogOrigin( "Scantable", "calculateAZEL()", WHERE ) ) ;
 | 
|---|
| [805] | 739 |   MPosition mp = getAntennaPosition();
 | 
|---|
 | 740 |   MEpoch::ROScalarColumn timeCol(table_, "TIME");
 | 
|---|
 | 741 |   ostringstream oss;
 | 
|---|
| [2658] | 742 |   oss << mp;
 | 
|---|
 | 743 |   os << "Computed azimuth/elevation using " << endl
 | 
|---|
 | 744 |      << String(oss) << endl;
 | 
|---|
| [996] | 745 |   for (Int i=0; i<nrow(); ++i) {
 | 
|---|
| [805] | 746 |     MEpoch me = timeCol(i);
 | 
|---|
| [987] | 747 |     MDirection md = getDirection(i);
 | 
|---|
| [2658] | 748 |     os  << " Time: " << formatTime(me,False) 
 | 
|---|
 | 749 |         << " Direction: " << formatDirection(md)
 | 
|---|
| [805] | 750 |          << endl << "     => ";
 | 
|---|
 | 751 |     MeasFrame frame(mp, me);
 | 
|---|
 | 752 |     Vector<Double> azel =
 | 
|---|
 | 753 |         MDirection::Convert(md, MDirection::Ref(MDirection::AZEL,
 | 
|---|
 | 754 |                                                 frame)
 | 
|---|
 | 755 |                             )().getAngle("rad").getValue();
 | 
|---|
| [923] | 756 |     azCol_.put(i,Float(azel[0]));
 | 
|---|
 | 757 |     elCol_.put(i,Float(azel[1]));
 | 
|---|
| [2658] | 758 |     os << "azel: " << azel[0]/C::pi*180.0 << " "
 | 
|---|
 | 759 |        << azel[1]/C::pi*180.0 << " (deg)" << LogIO::POST;
 | 
|---|
| [16] | 760 |   }
 | 
|---|
| [805] | 761 | }
 | 
|---|
| [89] | 762 | 
 | 
|---|
| [1819] | 763 | void Scantable::clip(const Float uthres, const Float dthres, bool clipoutside, bool unflag)
 | 
|---|
 | 764 | {
 | 
|---|
 | 765 |   for (uInt i=0; i<table_.nrow(); ++i) {
 | 
|---|
 | 766 |     Vector<uChar> flgs = flagsCol_(i);
 | 
|---|
 | 767 |     srchChannelsToClip(i, uthres, dthres, clipoutside, unflag, flgs);
 | 
|---|
 | 768 |     flagsCol_.put(i, flgs);
 | 
|---|
 | 769 |   }
 | 
|---|
 | 770 | }
 | 
|---|
 | 771 | 
 | 
|---|
 | 772 | std::vector<bool> Scantable::getClipMask(int whichrow, const Float uthres, const Float dthres, bool clipoutside, bool unflag)
 | 
|---|
 | 773 | {
 | 
|---|
 | 774 |   Vector<uChar> flags;
 | 
|---|
 | 775 |   flagsCol_.get(uInt(whichrow), flags);
 | 
|---|
 | 776 |   srchChannelsToClip(uInt(whichrow), uthres, dthres, clipoutside, unflag, flags);
 | 
|---|
 | 777 |   Vector<Bool> bflag(flags.shape());
 | 
|---|
 | 778 |   convertArray(bflag, flags);
 | 
|---|
 | 779 |   //bflag = !bflag;
 | 
|---|
 | 780 | 
 | 
|---|
 | 781 |   std::vector<bool> mask;
 | 
|---|
 | 782 |   bflag.tovector(mask);
 | 
|---|
 | 783 |   return mask;
 | 
|---|
 | 784 | }
 | 
|---|
 | 785 | 
 | 
|---|
 | 786 | void Scantable::srchChannelsToClip(uInt whichrow, const Float uthres, const Float dthres, bool clipoutside, bool unflag,
 | 
|---|
 | 787 |                                    Vector<uChar> flgs)
 | 
|---|
 | 788 | {
 | 
|---|
 | 789 |     Vector<Float> spcs = specCol_(whichrow);
 | 
|---|
| [2348] | 790 |     uInt nchannel = spcs.nelements();
 | 
|---|
| [1819] | 791 |     if (spcs.nelements() != nchannel) {
 | 
|---|
 | 792 |       throw(AipsError("Data has incorrect number of channels"));
 | 
|---|
 | 793 |     }
 | 
|---|
 | 794 |     uChar userflag = 1 << 7;
 | 
|---|
 | 795 |     if (unflag) {
 | 
|---|
 | 796 |       userflag = 0 << 7;
 | 
|---|
 | 797 |     }
 | 
|---|
 | 798 |     if (clipoutside) {
 | 
|---|
 | 799 |       for (uInt j = 0; j < nchannel; ++j) {
 | 
|---|
 | 800 |         Float spc = spcs(j);
 | 
|---|
 | 801 |         if ((spc >= uthres) || (spc <= dthres)) {
 | 
|---|
 | 802 |           flgs(j) = userflag;
 | 
|---|
 | 803 |         }
 | 
|---|
 | 804 |       }
 | 
|---|
 | 805 |     } else {
 | 
|---|
 | 806 |       for (uInt j = 0; j < nchannel; ++j) {
 | 
|---|
 | 807 |         Float spc = spcs(j);
 | 
|---|
 | 808 |         if ((spc < uthres) && (spc > dthres)) {
 | 
|---|
 | 809 |           flgs(j) = userflag;
 | 
|---|
 | 810 |         }
 | 
|---|
 | 811 |       }
 | 
|---|
 | 812 |     }
 | 
|---|
 | 813 | }
 | 
|---|
 | 814 | 
 | 
|---|
| [1994] | 815 | 
 | 
|---|
 | 816 | void Scantable::flag( int whichrow, const std::vector<bool>& msk, bool unflag ) {
 | 
|---|
| [1333] | 817 |   std::vector<bool>::const_iterator it;
 | 
|---|
 | 818 |   uInt ntrue = 0;
 | 
|---|
| [1994] | 819 |   if (whichrow >= int(table_.nrow()) ) {
 | 
|---|
 | 820 |     throw(AipsError("Invalid row number"));
 | 
|---|
 | 821 |   }
 | 
|---|
| [1333] | 822 |   for (it = msk.begin(); it != msk.end(); ++it) {
 | 
|---|
 | 823 |     if ( *it ) {
 | 
|---|
 | 824 |       ntrue++;
 | 
|---|
 | 825 |     }
 | 
|---|
 | 826 |   }
 | 
|---|
| [1994] | 827 |   //if ( selector_.empty()  && (msk.size() == 0 || msk.size() == ntrue) )
 | 
|---|
 | 828 |   if ( whichrow == -1 && !unflag && selector_.empty() && (msk.size() == 0 || msk.size() == ntrue) )
 | 
|---|
| [1000] | 829 |     throw(AipsError("Trying to flag whole scantable."));
 | 
|---|
| [1994] | 830 |   uChar userflag = 1 << 7;
 | 
|---|
 | 831 |   if ( unflag ) {
 | 
|---|
 | 832 |     userflag = 0 << 7;
 | 
|---|
 | 833 |   }
 | 
|---|
 | 834 |   if (whichrow > -1 ) {
 | 
|---|
 | 835 |     applyChanFlag(uInt(whichrow), msk, userflag);
 | 
|---|
 | 836 |   } else {
 | 
|---|
| [1000] | 837 |     for ( uInt i=0; i<table_.nrow(); ++i) {
 | 
|---|
| [1994] | 838 |       applyChanFlag(i, msk, userflag);
 | 
|---|
| [1000] | 839 |     }
 | 
|---|
| [1994] | 840 |   }
 | 
|---|
 | 841 | }
 | 
|---|
 | 842 | 
 | 
|---|
 | 843 | void Scantable::applyChanFlag( uInt whichrow, const std::vector<bool>& msk, uChar flagval )
 | 
|---|
 | 844 | {
 | 
|---|
 | 845 |   if (whichrow >= table_.nrow() ) {
 | 
|---|
 | 846 |     throw( casa::indexError<int>( whichrow, "asap::Scantable::applyChanFlag: Invalid row number" ) );
 | 
|---|
 | 847 |   }
 | 
|---|
 | 848 |   Vector<uChar> flgs = flagsCol_(whichrow);
 | 
|---|
 | 849 |   if ( msk.size() == 0 ) {
 | 
|---|
 | 850 |     flgs = flagval;
 | 
|---|
 | 851 |     flagsCol_.put(whichrow, flgs);
 | 
|---|
| [1000] | 852 |     return;
 | 
|---|
 | 853 |   }
 | 
|---|
| [2348] | 854 |   if ( int(msk.size()) != nchan( getIF(whichrow) ) ) {
 | 
|---|
| [1000] | 855 |     throw(AipsError("Mask has incorrect number of channels."));
 | 
|---|
 | 856 |   }
 | 
|---|
| [1994] | 857 |   if ( flgs.nelements() != msk.size() ) {
 | 
|---|
 | 858 |     throw(AipsError("Mask has incorrect number of channels."
 | 
|---|
 | 859 |                     " Probably varying with IF. Please flag per IF"));
 | 
|---|
 | 860 |   }
 | 
|---|
 | 861 |   std::vector<bool>::const_iterator it;
 | 
|---|
 | 862 |   uInt j = 0;
 | 
|---|
 | 863 |   for (it = msk.begin(); it != msk.end(); ++it) {
 | 
|---|
 | 864 |     if ( *it ) {
 | 
|---|
 | 865 |       flgs(j) = flagval;
 | 
|---|
| [1000] | 866 |     }
 | 
|---|
| [1994] | 867 |     ++j;
 | 
|---|
| [1000] | 868 |   }
 | 
|---|
| [1994] | 869 |   flagsCol_.put(whichrow, flgs);
 | 
|---|
| [865] | 870 | }
 | 
|---|
 | 871 | 
 | 
|---|
| [1819] | 872 | void Scantable::flagRow(const std::vector<uInt>& rows, bool unflag)
 | 
|---|
 | 873 | {
 | 
|---|
| [2683] | 874 |   if (selector_.empty() && (rows.size() == table_.nrow()) && !unflag)
 | 
|---|
| [1819] | 875 |     throw(AipsError("Trying to flag whole scantable."));
 | 
|---|
 | 876 | 
 | 
|---|
 | 877 |   uInt rowflag = (unflag ? 0 : 1);
 | 
|---|
 | 878 |   std::vector<uInt>::const_iterator it;
 | 
|---|
 | 879 |   for (it = rows.begin(); it != rows.end(); ++it)
 | 
|---|
 | 880 |     flagrowCol_.put(*it, rowflag);
 | 
|---|
 | 881 | }
 | 
|---|
 | 882 | 
 | 
|---|
| [805] | 883 | std::vector<bool> Scantable::getMask(int whichrow) const
 | 
|---|
 | 884 | {
 | 
|---|
 | 885 |   Vector<uChar> flags;
 | 
|---|
 | 886 |   flagsCol_.get(uInt(whichrow), flags);
 | 
|---|
 | 887 |   Vector<Bool> bflag(flags.shape());
 | 
|---|
 | 888 |   convertArray(bflag, flags);
 | 
|---|
 | 889 |   bflag = !bflag;
 | 
|---|
 | 890 |   std::vector<bool> mask;
 | 
|---|
 | 891 |   bflag.tovector(mask);
 | 
|---|
 | 892 |   return mask;
 | 
|---|
 | 893 | }
 | 
|---|
| [89] | 894 | 
 | 
|---|
| [896] | 895 | std::vector<float> Scantable::getSpectrum( int whichrow,
 | 
|---|
| [902] | 896 |                                            const std::string& poltype ) const
 | 
|---|
| [805] | 897 | {
 | 
|---|
| [2658] | 898 |   LogIO os( LogOrigin( "Scantable", "getSpectrum()", WHERE ) ) ;
 | 
|---|
 | 899 | 
 | 
|---|
| [905] | 900 |   String ptype = poltype;
 | 
|---|
 | 901 |   if (poltype == "" ) ptype = getPolType();
 | 
|---|
| [902] | 902 |   if ( whichrow  < 0 || whichrow >= nrow() )
 | 
|---|
 | 903 |     throw(AipsError("Illegal row number."));
 | 
|---|
| [896] | 904 |   std::vector<float> out;
 | 
|---|
| [805] | 905 |   Vector<Float> arr;
 | 
|---|
| [896] | 906 |   uInt requestedpol = polCol_(whichrow);
 | 
|---|
 | 907 |   String basetype = getPolType();
 | 
|---|
| [905] | 908 |   if ( ptype == basetype ) {
 | 
|---|
| [896] | 909 |     specCol_.get(whichrow, arr);
 | 
|---|
 | 910 |   } else {
 | 
|---|
| [1598] | 911 |     CountedPtr<STPol> stpol(STPol::getPolClass(Scantable::factories_,
 | 
|---|
| [1586] | 912 |                                                basetype));
 | 
|---|
| [1334] | 913 |     uInt row = uInt(whichrow);
 | 
|---|
 | 914 |     stpol->setSpectra(getPolMatrix(row));
 | 
|---|
| [2047] | 915 |     Float fang,fhand;
 | 
|---|
| [1586] | 916 |     fang = focusTable_.getTotalAngle(mfocusidCol_(row));
 | 
|---|
| [1334] | 917 |     fhand = focusTable_.getFeedHand(mfocusidCol_(row));
 | 
|---|
| [1586] | 918 |     stpol->setPhaseCorrections(fang, fhand);
 | 
|---|
| [1334] | 919 |     arr = stpol->getSpectrum(requestedpol, ptype);
 | 
|---|
| [896] | 920 |   }
 | 
|---|
| [902] | 921 |   if ( arr.nelements() == 0 )
 | 
|---|
| [2658] | 922 |     
 | 
|---|
 | 923 |     os << "Not enough polarisations present to do the conversion." 
 | 
|---|
 | 924 |        << LogIO::POST;
 | 
|---|
| [805] | 925 |   arr.tovector(out);
 | 
|---|
 | 926 |   return out;
 | 
|---|
| [89] | 927 | }
 | 
|---|
| [212] | 928 | 
 | 
|---|
| [1360] | 929 | void Scantable::setSpectrum( const std::vector<float>& spec,
 | 
|---|
| [884] | 930 |                                    int whichrow )
 | 
|---|
 | 931 | {
 | 
|---|
 | 932 |   Vector<Float> spectrum(spec);
 | 
|---|
 | 933 |   Vector<Float> arr;
 | 
|---|
 | 934 |   specCol_.get(whichrow, arr);
 | 
|---|
 | 935 |   if ( spectrum.nelements() != arr.nelements() )
 | 
|---|
| [896] | 936 |     throw AipsError("The spectrum has incorrect number of channels.");
 | 
|---|
| [884] | 937 |   specCol_.put(whichrow, spectrum);
 | 
|---|
 | 938 | }
 | 
|---|
 | 939 | 
 | 
|---|
 | 940 | 
 | 
|---|
| [805] | 941 | String Scantable::generateName()
 | 
|---|
| [745] | 942 | {
 | 
|---|
| [805] | 943 |   return (File::newUniqueName("./","temp")).baseName();
 | 
|---|
| [212] | 944 | }
 | 
|---|
 | 945 | 
 | 
|---|
| [805] | 946 | const casa::Table& Scantable::table( ) const
 | 
|---|
| [212] | 947 | {
 | 
|---|
| [805] | 948 |   return table_;
 | 
|---|
| [212] | 949 | }
 | 
|---|
 | 950 | 
 | 
|---|
| [805] | 951 | casa::Table& Scantable::table( )
 | 
|---|
| [386] | 952 | {
 | 
|---|
| [805] | 953 |   return table_;
 | 
|---|
| [386] | 954 | }
 | 
|---|
 | 955 | 
 | 
|---|
| [896] | 956 | std::string Scantable::getPolType() const
 | 
|---|
 | 957 | {
 | 
|---|
 | 958 |   return table_.keywordSet().asString("POLTYPE");
 | 
|---|
 | 959 | }
 | 
|---|
 | 960 | 
 | 
|---|
| [805] | 961 | void Scantable::unsetSelection()
 | 
|---|
| [380] | 962 | {
 | 
|---|
| [805] | 963 |   table_ = originalTable_;
 | 
|---|
| [847] | 964 |   attach();
 | 
|---|
| [805] | 965 |   selector_.reset();
 | 
|---|
| [380] | 966 | }
 | 
|---|
| [386] | 967 | 
 | 
|---|
| [805] | 968 | void Scantable::setSelection( const STSelector& selection )
 | 
|---|
| [430] | 969 | {
 | 
|---|
| [805] | 970 |   Table tab = const_cast<STSelector&>(selection).apply(originalTable_);
 | 
|---|
 | 971 |   if ( tab.nrow() == 0 ) {
 | 
|---|
 | 972 |     throw(AipsError("Selection contains no data. Not applying it."));
 | 
|---|
 | 973 |   }
 | 
|---|
 | 974 |   table_ = tab;
 | 
|---|
| [847] | 975 |   attach();
 | 
|---|
| [2084] | 976 | //   tab.rwKeywordSet().define("nBeam",(Int)(getBeamNos().size())) ;
 | 
|---|
 | 977 | //   vector<uint> selectedIFs = getIFNos() ;
 | 
|---|
 | 978 | //   Int newnIF = selectedIFs.size() ;
 | 
|---|
 | 979 | //   tab.rwKeywordSet().define("nIF",newnIF) ;
 | 
|---|
 | 980 | //   if ( newnIF != 0 ) {
 | 
|---|
 | 981 | //     Int newnChan = 0 ;
 | 
|---|
 | 982 | //     for ( Int i = 0 ; i < newnIF ; i++ ) {
 | 
|---|
 | 983 | //       Int nChan = nchan( selectedIFs[i] ) ;
 | 
|---|
 | 984 | //       if ( newnChan > nChan )
 | 
|---|
 | 985 | //         newnChan = nChan ;
 | 
|---|
 | 986 | //     }
 | 
|---|
 | 987 | //     tab.rwKeywordSet().define("nChan",newnChan) ;
 | 
|---|
 | 988 | //   }
 | 
|---|
 | 989 | //   tab.rwKeywordSet().define("nPol",(Int)(getPolNos().size())) ;
 | 
|---|
| [805] | 990 |   selector_ = selection;
 | 
|---|
| [430] | 991 | }
 | 
|---|
 | 992 | 
 | 
|---|
| [2111] | 993 | 
 | 
|---|
| [2163] | 994 | std::string Scantable::headerSummary()
 | 
|---|
| [447] | 995 | {
 | 
|---|
| [805] | 996 |   // Format header info
 | 
|---|
| [2111] | 997 | //   STHeader sdh;
 | 
|---|
 | 998 | //   sdh = getHeader();
 | 
|---|
 | 999 | //   sdh.print();
 | 
|---|
| [805] | 1000 |   ostringstream oss;
 | 
|---|
 | 1001 |   oss.flags(std::ios_base::left);
 | 
|---|
| [2290] | 1002 |   String tmp;
 | 
|---|
 | 1003 |   // Project
 | 
|---|
 | 1004 |   table_.keywordSet().get("Project", tmp);
 | 
|---|
 | 1005 |   oss << setw(15) << "Project:" << tmp << endl;
 | 
|---|
 | 1006 |   // Observation date
 | 
|---|
 | 1007 |   oss << setw(15) << "Obs Date:" << getTime(-1,true) << endl;
 | 
|---|
 | 1008 |   // Observer
 | 
|---|
 | 1009 |   oss << setw(15) << "Observer:"
 | 
|---|
 | 1010 |       << table_.keywordSet().asString("Observer") << endl;
 | 
|---|
 | 1011 |   // Antenna Name
 | 
|---|
 | 1012 |   table_.keywordSet().get("AntennaName", tmp);
 | 
|---|
 | 1013 |   oss << setw(15) << "Antenna Name:" << tmp << endl;
 | 
|---|
 | 1014 |   // Obs type
 | 
|---|
 | 1015 |   table_.keywordSet().get("Obstype", tmp);
 | 
|---|
 | 1016 |   // Records (nrow)
 | 
|---|
 | 1017 |   oss << setw(15) << "Data Records:" << table_.nrow() << " rows" << endl;
 | 
|---|
 | 1018 |   oss << setw(15) << "Obs. Type:" << tmp << endl;
 | 
|---|
 | 1019 |   // Beams, IFs, Polarizations, and Channels
 | 
|---|
| [805] | 1020 |   oss << setw(15) << "Beams:" << setw(4) << nbeam() << endl
 | 
|---|
 | 1021 |       << setw(15) << "IFs:" << setw(4) << nif() << endl
 | 
|---|
| [896] | 1022 |       << setw(15) << "Polarisations:" << setw(4) << npol()
 | 
|---|
 | 1023 |       << "(" << getPolType() << ")" << endl
 | 
|---|
| [1694] | 1024 |       << setw(15) << "Channels:" << nchan() << endl;
 | 
|---|
| [2290] | 1025 |   // Flux unit
 | 
|---|
 | 1026 |   table_.keywordSet().get("FluxUnit", tmp);
 | 
|---|
 | 1027 |   oss << setw(15) << "Flux Unit:" << tmp << endl;
 | 
|---|
 | 1028 |   // Abscissa Unit
 | 
|---|
 | 1029 |   oss << setw(15) << "Abscissa:" << getAbcissaLabel(0) << endl;
 | 
|---|
 | 1030 |   // Selection
 | 
|---|
 | 1031 |   oss << selector_.print() << endl;
 | 
|---|
 | 1032 | 
 | 
|---|
 | 1033 |   return String(oss);
 | 
|---|
 | 1034 | }
 | 
|---|
 | 1035 | 
 | 
|---|
 | 1036 | void Scantable::summary( const std::string& filename )
 | 
|---|
 | 1037 | {
 | 
|---|
 | 1038 |   ostringstream oss;
 | 
|---|
 | 1039 |   ofstream ofs;
 | 
|---|
 | 1040 |   LogIO ols(LogOrigin("Scantable", "summary", WHERE));
 | 
|---|
 | 1041 | 
 | 
|---|
 | 1042 |   if (filename != "")
 | 
|---|
 | 1043 |     ofs.open( filename.c_str(),  ios::out );
 | 
|---|
 | 1044 | 
 | 
|---|
 | 1045 |   oss << endl;
 | 
|---|
 | 1046 |   oss << asap::SEPERATOR << endl;
 | 
|---|
 | 1047 |   oss << " Scan Table Summary" << endl;
 | 
|---|
 | 1048 |   oss << asap::SEPERATOR << endl;
 | 
|---|
 | 1049 | 
 | 
|---|
 | 1050 |   // Format header info
 | 
|---|
 | 1051 |   oss << headerSummary();
 | 
|---|
 | 1052 |   oss << endl;
 | 
|---|
 | 1053 | 
 | 
|---|
 | 1054 |   if (table_.nrow() <= 0){
 | 
|---|
 | 1055 |     oss << asap::SEPERATOR << endl;
 | 
|---|
 | 1056 |     oss << "The MAIN table is empty: there are no data!!!" << endl;
 | 
|---|
 | 1057 |     oss << asap::SEPERATOR << endl;
 | 
|---|
 | 1058 | 
 | 
|---|
 | 1059 |     ols << String(oss) << LogIO::POST;
 | 
|---|
 | 1060 |     if (ofs) {
 | 
|---|
 | 1061 |       ofs << String(oss) << flush;
 | 
|---|
 | 1062 |       ofs.close();
 | 
|---|
 | 1063 |     }
 | 
|---|
 | 1064 |     return;
 | 
|---|
 | 1065 |   }
 | 
|---|
 | 1066 | 
 | 
|---|
 | 1067 | 
 | 
|---|
 | 1068 | 
 | 
|---|
 | 1069 |   // main table
 | 
|---|
 | 1070 |   String dirtype = "Position ("
 | 
|---|
 | 1071 |                   + getDirectionRefString()
 | 
|---|
 | 1072 |                   + ")";
 | 
|---|
 | 1073 |   oss.flags(std::ios_base::left);
 | 
|---|
 | 1074 |   oss << setw(5) << "Scan" 
 | 
|---|
 | 1075 |       << setw(15) << "Source"
 | 
|---|
 | 1076 |       << setw(35) << "Time range"
 | 
|---|
 | 1077 |       << setw(2) << "" << setw(7) << "Int[s]"
 | 
|---|
 | 1078 |       << setw(7) << "Record"
 | 
|---|
 | 1079 |       << setw(8) << "SrcType"
 | 
|---|
 | 1080 |       << setw(8) << "FreqIDs"
 | 
|---|
 | 1081 |       << setw(7) << "MolIDs" << endl;
 | 
|---|
 | 1082 |   oss << setw(7)<< "" << setw(6) << "Beam"
 | 
|---|
 | 1083 |       << setw(23) << dirtype << endl;
 | 
|---|
 | 1084 | 
 | 
|---|
 | 1085 |   oss << asap::SEPERATOR << endl;
 | 
|---|
 | 1086 | 
 | 
|---|
 | 1087 |   // Flush summary and clear up the string
 | 
|---|
 | 1088 |   ols << String(oss) << LogIO::POST;
 | 
|---|
 | 1089 |   if (ofs) ofs << String(oss) << flush;
 | 
|---|
 | 1090 |   oss.str("");
 | 
|---|
 | 1091 |   oss.clear();
 | 
|---|
 | 1092 | 
 | 
|---|
 | 1093 | 
 | 
|---|
 | 1094 |   // Get Freq_ID map
 | 
|---|
 | 1095 |   ROScalarColumn<uInt> ftabIds(frequencies().table(), "ID");
 | 
|---|
 | 1096 |   Int nfid = ftabIds.nrow();
 | 
|---|
 | 1097 |   if (nfid <= 0){
 | 
|---|
 | 1098 |     oss << "FREQUENCIES subtable is empty: there are no data!!!" << endl;
 | 
|---|
 | 1099 |     oss << asap::SEPERATOR << endl;
 | 
|---|
 | 1100 | 
 | 
|---|
 | 1101 |     ols << String(oss) << LogIO::POST;
 | 
|---|
 | 1102 |     if (ofs) {
 | 
|---|
 | 1103 |       ofs << String(oss) << flush;
 | 
|---|
 | 1104 |       ofs.close();
 | 
|---|
 | 1105 |     }
 | 
|---|
 | 1106 |     return;
 | 
|---|
 | 1107 |   }
 | 
|---|
 | 1108 |   // Storages of overall IFNO, POLNO, and nchan per FREQ_ID
 | 
|---|
 | 1109 |   // the orders are identical to ID in FREQ subtable
 | 
|---|
 | 1110 |   Block< Vector<uInt> > ifNos(nfid), polNos(nfid);
 | 
|---|
 | 1111 |   Vector<Int> fIdchans(nfid,-1);
 | 
|---|
 | 1112 |   map<uInt, Int> fidMap;  // (FREQ_ID, row # in FREQ subtable) pair
 | 
|---|
 | 1113 |   for (Int i=0; i < nfid; i++){
 | 
|---|
 | 1114 |    // fidMap[freqId] returns row number in FREQ subtable
 | 
|---|
 | 1115 |    fidMap.insert(pair<uInt, Int>(ftabIds(i),i));
 | 
|---|
 | 1116 |    ifNos[i] = Vector<uInt>();
 | 
|---|
 | 1117 |    polNos[i] = Vector<uInt>();
 | 
|---|
 | 1118 |   }
 | 
|---|
 | 1119 | 
 | 
|---|
 | 1120 |   TableIterator iter(table_, "SCANNO");
 | 
|---|
 | 1121 | 
 | 
|---|
 | 1122 |   // Vars for keeping track of time, freqids, molIds in a SCANNO
 | 
|---|
| [2813] | 1123 |   //Vector<uInt> freqids;
 | 
|---|
 | 1124 |   //Vector<uInt> molids;
 | 
|---|
| [2290] | 1125 |   Vector<uInt> beamids(1,0);
 | 
|---|
 | 1126 |   Vector<MDirection> beamDirs;
 | 
|---|
 | 1127 |   Vector<Int> stypeids(1,0);
 | 
|---|
 | 1128 |   Vector<String> stypestrs;
 | 
|---|
 | 1129 |   Int nfreq(1);
 | 
|---|
 | 1130 |   Int nmol(1);
 | 
|---|
 | 1131 |   uInt nbeam(1);
 | 
|---|
 | 1132 |   uInt nstype(1);
 | 
|---|
 | 1133 | 
 | 
|---|
 | 1134 |   Double btime(0.0), etime(0.0);
 | 
|---|
 | 1135 |   Double meanIntTim(0.0);
 | 
|---|
 | 1136 | 
 | 
|---|
 | 1137 |   uInt currFreqId(0), ftabRow(0);
 | 
|---|
 | 1138 |   Int iflen(0), pollen(0);
 | 
|---|
 | 1139 | 
 | 
|---|
 | 1140 |   while (!iter.pastEnd()) {
 | 
|---|
 | 1141 |     Table subt = iter.table();
 | 
|---|
 | 1142 |     uInt snrow = subt.nrow();
 | 
|---|
 | 1143 |     ROTableRow row(subt);
 | 
|---|
 | 1144 |     const TableRecord& rec = row.get(0);
 | 
|---|
 | 1145 | 
 | 
|---|
 | 1146 |     // relevant columns
 | 
|---|
 | 1147 |     ROScalarColumn<Double> mjdCol(subt,"TIME");
 | 
|---|
 | 1148 |     ROScalarColumn<Double> intervalCol(subt,"INTERVAL");
 | 
|---|
 | 1149 |     MDirection::ROScalarColumn dirCol(subt,"DIRECTION");
 | 
|---|
 | 1150 | 
 | 
|---|
 | 1151 |     ScalarColumn<uInt> freqIdCol(subt,"FREQ_ID");
 | 
|---|
 | 1152 |     ScalarColumn<uInt> molIdCol(subt,"MOLECULE_ID");
 | 
|---|
 | 1153 |     ROScalarColumn<uInt> beamCol(subt,"BEAMNO");
 | 
|---|
 | 1154 |     ROScalarColumn<Int> stypeCol(subt,"SRCTYPE");
 | 
|---|
 | 1155 | 
 | 
|---|
 | 1156 |     ROScalarColumn<uInt> ifNoCol(subt,"IFNO");
 | 
|---|
 | 1157 |     ROScalarColumn<uInt> polNoCol(subt,"POLNO");
 | 
|---|
 | 1158 | 
 | 
|---|
 | 1159 | 
 | 
|---|
 | 1160 |     // Times
 | 
|---|
 | 1161 |     meanIntTim = sum(intervalCol.getColumn()) / (double) snrow;
 | 
|---|
 | 1162 |     minMax(btime, etime, mjdCol.getColumn());
 | 
|---|
 | 1163 |     etime += meanIntTim/C::day;
 | 
|---|
 | 1164 | 
 | 
|---|
 | 1165 |     // MOLECULE_ID and FREQ_ID
 | 
|---|
| [2813] | 1166 |     Vector<uInt> molids(getNumbers(molIdCol));
 | 
|---|
| [2290] | 1167 |     molids.shape(nmol);
 | 
|---|
 | 1168 | 
 | 
|---|
| [2813] | 1169 |     Vector<uInt> freqids(getNumbers(freqIdCol));
 | 
|---|
| [2290] | 1170 |     freqids.shape(nfreq);
 | 
|---|
 | 1171 | 
 | 
|---|
 | 1172 |     // Add first beamid, and srcNames
 | 
|---|
 | 1173 |     beamids.resize(1,False);
 | 
|---|
 | 1174 |     beamDirs.resize(1,False);
 | 
|---|
 | 1175 |     beamids(0)=beamCol(0);
 | 
|---|
 | 1176 |     beamDirs(0)=dirCol(0);
 | 
|---|
 | 1177 |     nbeam = 1;
 | 
|---|
 | 1178 | 
 | 
|---|
 | 1179 |     stypeids.resize(1,False);
 | 
|---|
 | 1180 |     stypeids(0)=stypeCol(0);
 | 
|---|
 | 1181 |     nstype = 1;
 | 
|---|
 | 1182 | 
 | 
|---|
 | 1183 |     // Global listings of nchan/IFNO/POLNO per FREQ_ID
 | 
|---|
 | 1184 |     currFreqId=freqIdCol(0);
 | 
|---|
 | 1185 |     ftabRow = fidMap[currFreqId];
 | 
|---|
 | 1186 |     // Assumes an identical number of channels per FREQ_ID
 | 
|---|
 | 1187 |     if (fIdchans(ftabRow) < 0 ) {
 | 
|---|
 | 1188 |       RORecordFieldPtr< Array<Float> > spec(rec, "SPECTRA");
 | 
|---|
 | 1189 |       fIdchans(ftabRow)=(*spec).shape()(0);
 | 
|---|
 | 1190 |     }
 | 
|---|
 | 1191 |     // Should keep ifNos and polNos form the previous SCANNO
 | 
|---|
 | 1192 |     if ( !anyEQ(ifNos[ftabRow],ifNoCol(0)) ) {
 | 
|---|
 | 1193 |       ifNos[ftabRow].shape(iflen);
 | 
|---|
 | 1194 |       iflen++;
 | 
|---|
 | 1195 |       ifNos[ftabRow].resize(iflen,True);
 | 
|---|
 | 1196 |       ifNos[ftabRow](iflen-1) = ifNoCol(0);
 | 
|---|
 | 1197 |     }
 | 
|---|
 | 1198 |     if ( !anyEQ(polNos[ftabRow],polNoCol(0)) ) {
 | 
|---|
 | 1199 |       polNos[ftabRow].shape(pollen);
 | 
|---|
 | 1200 |       pollen++;
 | 
|---|
 | 1201 |       polNos[ftabRow].resize(pollen,True);
 | 
|---|
 | 1202 |       polNos[ftabRow](pollen-1) = polNoCol(0);
 | 
|---|
 | 1203 |     }
 | 
|---|
 | 1204 | 
 | 
|---|
 | 1205 |     for (uInt i=1; i < snrow; i++){
 | 
|---|
 | 1206 |       // Need to list BEAMNO and DIRECTION in the same order
 | 
|---|
 | 1207 |       if ( !anyEQ(beamids,beamCol(i)) ) {
 | 
|---|
 | 1208 |         nbeam++;
 | 
|---|
 | 1209 |         beamids.resize(nbeam,True);
 | 
|---|
 | 1210 |         beamids(nbeam-1)=beamCol(i);
 | 
|---|
 | 1211 |         beamDirs.resize(nbeam,True);
 | 
|---|
 | 1212 |         beamDirs(nbeam-1)=dirCol(i);
 | 
|---|
 | 1213 |       }
 | 
|---|
 | 1214 | 
 | 
|---|
 | 1215 |       // SRCTYPE is Int (getNumber takes only uInt)
 | 
|---|
 | 1216 |       if ( !anyEQ(stypeids,stypeCol(i)) ) {
 | 
|---|
 | 1217 |         nstype++;
 | 
|---|
 | 1218 |         stypeids.resize(nstype,True);
 | 
|---|
 | 1219 |         stypeids(nstype-1)=stypeCol(i);
 | 
|---|
 | 1220 |       }
 | 
|---|
 | 1221 | 
 | 
|---|
 | 1222 |       // Global listings of nchan/IFNO/POLNO per FREQ_ID
 | 
|---|
 | 1223 |       currFreqId=freqIdCol(i);
 | 
|---|
 | 1224 |       ftabRow = fidMap[currFreqId];
 | 
|---|
 | 1225 |       if (fIdchans(ftabRow) < 0 ) {
 | 
|---|
 | 1226 |         const TableRecord& rec = row.get(i);
 | 
|---|
 | 1227 |         RORecordFieldPtr< Array<Float> > spec(rec, "SPECTRA");
 | 
|---|
 | 1228 |         fIdchans(ftabRow) = (*spec).shape()(0);
 | 
|---|
 | 1229 |       }
 | 
|---|
 | 1230 |       if ( !anyEQ(ifNos[ftabRow],ifNoCol(i)) ) {
 | 
|---|
 | 1231 |         ifNos[ftabRow].shape(iflen);
 | 
|---|
 | 1232 |         iflen++;
 | 
|---|
 | 1233 |         ifNos[ftabRow].resize(iflen,True);
 | 
|---|
 | 1234 |         ifNos[ftabRow](iflen-1) = ifNoCol(i);
 | 
|---|
 | 1235 |       }
 | 
|---|
 | 1236 |       if ( !anyEQ(polNos[ftabRow],polNoCol(i)) ) {
 | 
|---|
 | 1237 |         polNos[ftabRow].shape(pollen);
 | 
|---|
 | 1238 |         pollen++;
 | 
|---|
 | 1239 |         polNos[ftabRow].resize(pollen,True);
 | 
|---|
 | 1240 |         polNos[ftabRow](pollen-1) = polNoCol(i);
 | 
|---|
 | 1241 |       }
 | 
|---|
 | 1242 |     } // end of row iteration
 | 
|---|
 | 1243 | 
 | 
|---|
 | 1244 |     stypestrs.resize(nstype,False);
 | 
|---|
 | 1245 |     for (uInt j=0; j < nstype; j++)
 | 
|---|
 | 1246 |       stypestrs(j) = SrcType::getName(stypeids(j));
 | 
|---|
 | 1247 | 
 | 
|---|
 | 1248 |     // Format Scan summary
 | 
|---|
 | 1249 |     oss << setw(4) << std::right << rec.asuInt("SCANNO")
 | 
|---|
 | 1250 |         << std::left << setw(1) << ""
 | 
|---|
 | 1251 |         << setw(15) << rec.asString("SRCNAME")
 | 
|---|
 | 1252 |         << setw(21) << MVTime(btime).string(MVTime::YMD,7)
 | 
|---|
 | 1253 |         << setw(3) << " - " << MVTime(etime).string(MVTime::TIME,7)
 | 
|---|
 | 1254 |         << setw(3) << "" << setw(6) << meanIntTim << setw(1) << "" 
 | 
|---|
 | 1255 |         << std::right << setw(5) << snrow << setw(2) << ""
 | 
|---|
 | 1256 |         << std::left << stypestrs << setw(1) << ""
 | 
|---|
 | 1257 |         << freqids << setw(1) << ""
 | 
|---|
 | 1258 |         << molids  << endl;
 | 
|---|
 | 1259 |     // Format Beam summary
 | 
|---|
 | 1260 |     for (uInt j=0; j < nbeam; j++) {
 | 
|---|
 | 1261 |       oss << setw(7) << "" << setw(6) << beamids(j) << setw(1) << ""
 | 
|---|
 | 1262 |           << formatDirection(beamDirs(j)) << endl;
 | 
|---|
 | 1263 |     }
 | 
|---|
 | 1264 |     // Flush summary every scan and clear up the string
 | 
|---|
 | 1265 |     ols << String(oss) << LogIO::POST;
 | 
|---|
 | 1266 |     if (ofs) ofs << String(oss) << flush;
 | 
|---|
 | 1267 |     oss.str("");
 | 
|---|
 | 1268 |     oss.clear();
 | 
|---|
 | 1269 | 
 | 
|---|
 | 1270 |     ++iter;
 | 
|---|
 | 1271 |   } // end of scan iteration
 | 
|---|
 | 1272 |   oss << asap::SEPERATOR << endl;
 | 
|---|
 | 1273 |   
 | 
|---|
 | 1274 |   // List FRECUENCIES Table (using STFrequencies.print may be slow)
 | 
|---|
 | 1275 |   oss << "FREQUENCIES: " << nfreq << endl;
 | 
|---|
 | 1276 |   oss << std::right << setw(5) << "ID" << setw(2) << ""
 | 
|---|
 | 1277 |       << std::left  << setw(5) << "IFNO" << setw(2) << ""
 | 
|---|
 | 1278 |       << setw(8) << "Frame"
 | 
|---|
 | 1279 |       << setw(16) << "RefVal"
 | 
|---|
 | 1280 |       << setw(7) << "RefPix"
 | 
|---|
 | 1281 |       << setw(15) << "Increment"
 | 
|---|
 | 1282 |       << setw(9) << "Channels"
 | 
|---|
 | 1283 |       << setw(6) << "POLNOs" << endl;
 | 
|---|
 | 1284 |   Int tmplen;
 | 
|---|
 | 1285 |   for (Int i=0; i < nfid; i++){
 | 
|---|
 | 1286 |     // List row=i of FREQUENCIES subtable
 | 
|---|
 | 1287 |     ifNos[i].shape(tmplen);
 | 
|---|
| [2531] | 1288 |     if (tmplen >= 1) {
 | 
|---|
| [2290] | 1289 |       oss << std::right << setw(5) << ftabIds(i) << setw(2) << ""
 | 
|---|
 | 1290 |           << setw(3) << ifNos[i](0) << setw(1) << ""
 | 
|---|
 | 1291 |           << std::left << setw(46) << frequencies().print(ftabIds(i)) 
 | 
|---|
 | 1292 |           << setw(2) << ""
 | 
|---|
 | 1293 |           << std::right << setw(8) << fIdchans[i] << setw(2) << ""
 | 
|---|
| [2531] | 1294 |           << std::left << polNos[i];
 | 
|---|
 | 1295 |       if (tmplen > 1) {
 | 
|---|
 | 1296 |         oss  << " (" << tmplen << " chains)";
 | 
|---|
 | 1297 |       }
 | 
|---|
 | 1298 |       oss << endl;
 | 
|---|
| [2290] | 1299 |     }
 | 
|---|
| [2531] | 1300 |     
 | 
|---|
| [2290] | 1301 |   }
 | 
|---|
 | 1302 |   oss << asap::SEPERATOR << endl;
 | 
|---|
 | 1303 | 
 | 
|---|
 | 1304 |   // List MOLECULES Table (currently lists all rows)
 | 
|---|
 | 1305 |   oss << "MOLECULES: " << endl;
 | 
|---|
 | 1306 |   if (molecules().nrow() <= 0) {
 | 
|---|
 | 1307 |     oss << "   MOLECULES subtable is empty: there are no data" << endl;
 | 
|---|
 | 1308 |   } else {
 | 
|---|
 | 1309 |     ROTableRow row(molecules().table());
 | 
|---|
 | 1310 |     oss << std::right << setw(5) << "ID" 
 | 
|---|
 | 1311 |         << std::left << setw(3) << ""
 | 
|---|
 | 1312 |         << setw(18) << "RestFreq"
 | 
|---|
 | 1313 |         << setw(15) << "Name" << endl;
 | 
|---|
 | 1314 |     for (Int i=0; i < molecules().nrow(); i++){
 | 
|---|
 | 1315 |       const TableRecord& rec=row.get(i);
 | 
|---|
 | 1316 |       oss << std::right << setw(5) << rec.asuInt("ID")
 | 
|---|
 | 1317 |           << std::left << setw(3) << ""
 | 
|---|
 | 1318 |           << rec.asArrayDouble("RESTFREQUENCY") << setw(1) << ""
 | 
|---|
 | 1319 |           << rec.asArrayString("NAME") << endl;
 | 
|---|
 | 1320 |     }
 | 
|---|
 | 1321 |   }
 | 
|---|
 | 1322 |   oss << asap::SEPERATOR << endl;
 | 
|---|
 | 1323 |   ols << String(oss) << LogIO::POST;
 | 
|---|
 | 1324 |   if (ofs) {
 | 
|---|
 | 1325 |     ofs << String(oss) << flush;
 | 
|---|
 | 1326 |     ofs.close();
 | 
|---|
 | 1327 |   }
 | 
|---|
 | 1328 |   //  return String(oss);
 | 
|---|
 | 1329 | }
 | 
|---|
 | 1330 | 
 | 
|---|
 | 1331 | 
 | 
|---|
 | 1332 | std::string Scantable::oldheaderSummary()
 | 
|---|
 | 1333 | {
 | 
|---|
 | 1334 |   // Format header info
 | 
|---|
 | 1335 | //   STHeader sdh;
 | 
|---|
 | 1336 | //   sdh = getHeader();
 | 
|---|
 | 1337 | //   sdh.print();
 | 
|---|
 | 1338 |   ostringstream oss;
 | 
|---|
 | 1339 |   oss.flags(std::ios_base::left);
 | 
|---|
 | 1340 |   oss << setw(15) << "Beams:" << setw(4) << nbeam() << endl
 | 
|---|
 | 1341 |       << setw(15) << "IFs:" << setw(4) << nif() << endl
 | 
|---|
 | 1342 |       << setw(15) << "Polarisations:" << setw(4) << npol()
 | 
|---|
 | 1343 |       << "(" << getPolType() << ")" << endl
 | 
|---|
 | 1344 |       << setw(15) << "Channels:" << nchan() << endl;
 | 
|---|
| [805] | 1345 |   String tmp;
 | 
|---|
| [860] | 1346 |   oss << setw(15) << "Observer:"
 | 
|---|
 | 1347 |       << table_.keywordSet().asString("Observer") << endl;
 | 
|---|
| [805] | 1348 |   oss << setw(15) << "Obs Date:" << getTime(-1,true) << endl;
 | 
|---|
 | 1349 |   table_.keywordSet().get("Project", tmp);
 | 
|---|
 | 1350 |   oss << setw(15) << "Project:" << tmp << endl;
 | 
|---|
 | 1351 |   table_.keywordSet().get("Obstype", tmp);
 | 
|---|
 | 1352 |   oss << setw(15) << "Obs. Type:" << tmp << endl;
 | 
|---|
 | 1353 |   table_.keywordSet().get("AntennaName", tmp);
 | 
|---|
 | 1354 |   oss << setw(15) << "Antenna Name:" << tmp << endl;
 | 
|---|
 | 1355 |   table_.keywordSet().get("FluxUnit", tmp);
 | 
|---|
 | 1356 |   oss << setw(15) << "Flux Unit:" << tmp << endl;
 | 
|---|
| [1819] | 1357 |   int nid = moleculeTable_.nrow();
 | 
|---|
 | 1358 |   Bool firstline = True;
 | 
|---|
| [805] | 1359 |   oss << setw(15) << "Rest Freqs:";
 | 
|---|
| [1819] | 1360 |   for (int i=0; i<nid; i++) {
 | 
|---|
| [2244] | 1361 |     Table t = table_(table_.col("MOLECULE_ID") == i, 1);
 | 
|---|
| [1819] | 1362 |       if (t.nrow() >  0) {
 | 
|---|
 | 1363 |           Vector<Double> vec(moleculeTable_.getRestFrequency(i));
 | 
|---|
 | 1364 |           if (vec.nelements() > 0) {
 | 
|---|
 | 1365 |                if (firstline) {
 | 
|---|
 | 1366 |                    oss << setprecision(10) << vec << " [Hz]" << endl;
 | 
|---|
 | 1367 |                    firstline=False;
 | 
|---|
 | 1368 |                }
 | 
|---|
 | 1369 |                else{
 | 
|---|
 | 1370 |                    oss << setw(15)<<" " << setprecision(10) << vec << " [Hz]" << endl;
 | 
|---|
 | 1371 |                }
 | 
|---|
 | 1372 |           } else {
 | 
|---|
 | 1373 |               oss << "none" << endl;
 | 
|---|
 | 1374 |           }
 | 
|---|
 | 1375 |       }
 | 
|---|
| [805] | 1376 |   }
 | 
|---|
| [941] | 1377 | 
 | 
|---|
 | 1378 |   oss << setw(15) << "Abcissa:" << getAbcissaLabel(0) << endl;
 | 
|---|
| [805] | 1379 |   oss << selector_.print() << endl;
 | 
|---|
| [2111] | 1380 |   return String(oss);
 | 
|---|
 | 1381 | }
 | 
|---|
 | 1382 | 
 | 
|---|
| [2286] | 1383 |   //std::string Scantable::summary( const std::string& filename )
 | 
|---|
| [2290] | 1384 | void Scantable::oldsummary( const std::string& filename )
 | 
|---|
| [2111] | 1385 | {
 | 
|---|
 | 1386 |   ostringstream oss;
 | 
|---|
| [2286] | 1387 |   ofstream ofs;
 | 
|---|
 | 1388 |   LogIO ols(LogOrigin("Scantable", "summary", WHERE));
 | 
|---|
 | 1389 | 
 | 
|---|
 | 1390 |   if (filename != "")
 | 
|---|
 | 1391 |     ofs.open( filename.c_str(),  ios::out );
 | 
|---|
 | 1392 | 
 | 
|---|
| [805] | 1393 |   oss << endl;
 | 
|---|
| [2111] | 1394 |   oss << asap::SEPERATOR << endl;
 | 
|---|
 | 1395 |   oss << " Scan Table Summary" << endl;
 | 
|---|
 | 1396 |   oss << asap::SEPERATOR << endl;
 | 
|---|
 | 1397 | 
 | 
|---|
 | 1398 |   // Format header info
 | 
|---|
| [2290] | 1399 |   oss << oldheaderSummary();
 | 
|---|
| [2111] | 1400 |   oss << endl;
 | 
|---|
 | 1401 | 
 | 
|---|
| [805] | 1402 |   // main table
 | 
|---|
 | 1403 |   String dirtype = "Position ("
 | 
|---|
| [987] | 1404 |                   + getDirectionRefString()
 | 
|---|
| [805] | 1405 |                   + ")";
 | 
|---|
| [2111] | 1406 |   oss.flags(std::ios_base::left);
 | 
|---|
| [941] | 1407 |   oss << setw(5) << "Scan" << setw(15) << "Source"
 | 
|---|
| [2005] | 1408 |       << setw(10) << "Time" << setw(18) << "Integration" 
 | 
|---|
 | 1409 |       << setw(15) << "Source Type" << endl;
 | 
|---|
| [941] | 1410 |   oss << setw(5) << "" << setw(5) << "Beam" << setw(3) << "" << dirtype << endl;
 | 
|---|
| [1694] | 1411 |   oss << setw(10) << "" << setw(3) << "IF" << setw(3) << ""
 | 
|---|
| [805] | 1412 |       << setw(8) << "Frame" << setw(16)
 | 
|---|
| [1694] | 1413 |       << "RefVal" << setw(10) << "RefPix" << setw(12) << "Increment"
 | 
|---|
 | 1414 |       << setw(7) << "Channels"
 | 
|---|
 | 1415 |       << endl;
 | 
|---|
| [805] | 1416 |   oss << asap::SEPERATOR << endl;
 | 
|---|
| [2286] | 1417 | 
 | 
|---|
 | 1418 |   // Flush summary and clear up the string
 | 
|---|
 | 1419 |   ols << String(oss) << LogIO::POST;
 | 
|---|
 | 1420 |   if (ofs) ofs << String(oss) << flush;
 | 
|---|
 | 1421 |   oss.str("");
 | 
|---|
 | 1422 |   oss.clear();
 | 
|---|
 | 1423 | 
 | 
|---|
| [805] | 1424 |   TableIterator iter(table_, "SCANNO");
 | 
|---|
 | 1425 |   while (!iter.pastEnd()) {
 | 
|---|
 | 1426 |     Table subt = iter.table();
 | 
|---|
 | 1427 |     ROTableRow row(subt);
 | 
|---|
 | 1428 |     MEpoch::ROScalarColumn timeCol(subt,"TIME");
 | 
|---|
 | 1429 |     const TableRecord& rec = row.get(0);
 | 
|---|
 | 1430 |     oss << setw(4) << std::right << rec.asuInt("SCANNO")
 | 
|---|
 | 1431 |         << std::left << setw(1) << ""
 | 
|---|
 | 1432 |         << setw(15) << rec.asString("SRCNAME")
 | 
|---|
 | 1433 |         << setw(10) << formatTime(timeCol(0), false);
 | 
|---|
 | 1434 |     // count the cycles in the scan
 | 
|---|
 | 1435 |     TableIterator cyciter(subt, "CYCLENO");
 | 
|---|
 | 1436 |     int nint = 0;
 | 
|---|
 | 1437 |     while (!cyciter.pastEnd()) {
 | 
|---|
 | 1438 |       ++nint;
 | 
|---|
 | 1439 |       ++cyciter;
 | 
|---|
 | 1440 |     }
 | 
|---|
 | 1441 |     oss << setw(3) << std::right << nint  << setw(3) << " x " << std::left
 | 
|---|
| [2005] | 1442 |         << setw(11) <<  formatSec(rec.asFloat("INTERVAL")) << setw(1) << ""
 | 
|---|
 | 1443 |         << setw(15) << SrcType::getName(rec.asInt("SRCTYPE")) << endl;
 | 
|---|
| [447] | 1444 | 
 | 
|---|
| [805] | 1445 |     TableIterator biter(subt, "BEAMNO");
 | 
|---|
 | 1446 |     while (!biter.pastEnd()) {
 | 
|---|
 | 1447 |       Table bsubt = biter.table();
 | 
|---|
 | 1448 |       ROTableRow brow(bsubt);
 | 
|---|
 | 1449 |       const TableRecord& brec = brow.get(0);
 | 
|---|
| [1000] | 1450 |       uInt row0 = bsubt.rowNumbers(table_)[0];
 | 
|---|
| [941] | 1451 |       oss << setw(5) << "" <<  setw(4) << std::right << brec.asuInt("BEAMNO")<< std::left;
 | 
|---|
| [987] | 1452 |       oss  << setw(4) << ""  << formatDirection(getDirection(row0)) << endl;
 | 
|---|
| [805] | 1453 |       TableIterator iiter(bsubt, "IFNO");
 | 
|---|
 | 1454 |       while (!iiter.pastEnd()) {
 | 
|---|
 | 1455 |         Table isubt = iiter.table();
 | 
|---|
 | 1456 |         ROTableRow irow(isubt);
 | 
|---|
 | 1457 |         const TableRecord& irec = irow.get(0);
 | 
|---|
| [1694] | 1458 |         oss << setw(9) << "";
 | 
|---|
| [941] | 1459 |         oss << setw(3) << std::right << irec.asuInt("IFNO") << std::left
 | 
|---|
| [1694] | 1460 |             << setw(1) << "" << frequencies().print(irec.asuInt("FREQ_ID"))
 | 
|---|
 | 1461 |             << setw(3) << "" << nchan(irec.asuInt("IFNO"))
 | 
|---|
| [1375] | 1462 |             << endl;
 | 
|---|
| [447] | 1463 | 
 | 
|---|
| [805] | 1464 |         ++iiter;
 | 
|---|
 | 1465 |       }
 | 
|---|
 | 1466 |       ++biter;
 | 
|---|
 | 1467 |     }
 | 
|---|
| [2286] | 1468 |     // Flush summary every scan and clear up the string
 | 
|---|
 | 1469 |     ols << String(oss) << LogIO::POST;
 | 
|---|
 | 1470 |     if (ofs) ofs << String(oss) << flush;
 | 
|---|
 | 1471 |     oss.str("");
 | 
|---|
 | 1472 |     oss.clear();
 | 
|---|
 | 1473 | 
 | 
|---|
| [805] | 1474 |     ++iter;
 | 
|---|
| [447] | 1475 |   }
 | 
|---|
| [2286] | 1476 |   oss << asap::SEPERATOR << endl;
 | 
|---|
 | 1477 |   ols << String(oss) << LogIO::POST;
 | 
|---|
 | 1478 |   if (ofs) {
 | 
|---|
| [2290] | 1479 |     ofs << String(oss) << flush;
 | 
|---|
| [2286] | 1480 |     ofs.close();
 | 
|---|
 | 1481 |   }
 | 
|---|
 | 1482 |   //  return String(oss);
 | 
|---|
| [447] | 1483 | }
 | 
|---|
 | 1484 | 
 | 
|---|
| [1947] | 1485 | // std::string Scantable::getTime(int whichrow, bool showdate) const
 | 
|---|
 | 1486 | // {
 | 
|---|
 | 1487 | //   MEpoch::ROScalarColumn timeCol(table_, "TIME");
 | 
|---|
 | 1488 | //   MEpoch me;
 | 
|---|
 | 1489 | //   if (whichrow > -1) {
 | 
|---|
 | 1490 | //     me = timeCol(uInt(whichrow));
 | 
|---|
 | 1491 | //   } else {
 | 
|---|
 | 1492 | //     Double tm;
 | 
|---|
 | 1493 | //     table_.keywordSet().get("UTC",tm);
 | 
|---|
 | 1494 | //     me = MEpoch(MVEpoch(tm));
 | 
|---|
 | 1495 | //   }
 | 
|---|
 | 1496 | //   return formatTime(me, showdate);
 | 
|---|
 | 1497 | // }
 | 
|---|
 | 1498 | 
 | 
|---|
 | 1499 | std::string Scantable::getTime(int whichrow, bool showdate, uInt prec) const
 | 
|---|
| [777] | 1500 | {
 | 
|---|
| [805] | 1501 |   MEpoch me;
 | 
|---|
| [1947] | 1502 |   me = getEpoch(whichrow);
 | 
|---|
 | 1503 |   return formatTime(me, showdate, prec);
 | 
|---|
| [777] | 1504 | }
 | 
|---|
| [805] | 1505 | 
 | 
|---|
| [1411] | 1506 | MEpoch Scantable::getEpoch(int whichrow) const
 | 
|---|
 | 1507 | {
 | 
|---|
 | 1508 |   if (whichrow > -1) {
 | 
|---|
 | 1509 |     return timeCol_(uInt(whichrow));
 | 
|---|
 | 1510 |   } else {
 | 
|---|
 | 1511 |     Double tm;
 | 
|---|
 | 1512 |     table_.keywordSet().get("UTC",tm);
 | 
|---|
| [1598] | 1513 |     return MEpoch(MVEpoch(tm));
 | 
|---|
| [1411] | 1514 |   }
 | 
|---|
 | 1515 | }
 | 
|---|
 | 1516 | 
 | 
|---|
| [1068] | 1517 | std::string Scantable::getDirectionString(int whichrow) const
 | 
|---|
 | 1518 | {
 | 
|---|
 | 1519 |   return formatDirection(getDirection(uInt(whichrow)));
 | 
|---|
 | 1520 | }
 | 
|---|
 | 1521 | 
 | 
|---|
| [1598] | 1522 | 
 | 
|---|
 | 1523 | SpectralCoordinate Scantable::getSpectralCoordinate(int whichrow) const {
 | 
|---|
 | 1524 |   const MPosition& mp = getAntennaPosition();
 | 
|---|
 | 1525 |   const MDirection& md = getDirection(whichrow);
 | 
|---|
 | 1526 |   const MEpoch& me = timeCol_(whichrow);
 | 
|---|
| [1819] | 1527 |   //Double rf = moleculeTable_.getRestFrequency(mmolidCol_(whichrow));
 | 
|---|
 | 1528 |   Vector<Double> rf = moleculeTable_.getRestFrequency(mmolidCol_(whichrow));
 | 
|---|
| [2346] | 1529 |   return freqTable_.getSpectralCoordinate(md, mp, me, rf,
 | 
|---|
| [1598] | 1530 |                                           mfreqidCol_(whichrow));
 | 
|---|
 | 1531 | }
 | 
|---|
 | 1532 | 
 | 
|---|
| [1360] | 1533 | std::vector< double > Scantable::getAbcissa( int whichrow ) const
 | 
|---|
| [865] | 1534 | {
 | 
|---|
| [1507] | 1535 |   if ( whichrow > int(table_.nrow()) ) throw(AipsError("Illegal row number"));
 | 
|---|
| [865] | 1536 |   std::vector<double> stlout;
 | 
|---|
 | 1537 |   int nchan = specCol_(whichrow).nelements();
 | 
|---|
| [2346] | 1538 |   String us = freqTable_.getUnitString();
 | 
|---|
| [865] | 1539 |   if ( us == "" || us == "pixel" || us == "channel" ) {
 | 
|---|
 | 1540 |     for (int i=0; i<nchan; ++i) {
 | 
|---|
 | 1541 |       stlout.push_back(double(i));
 | 
|---|
 | 1542 |     }
 | 
|---|
 | 1543 |     return stlout;
 | 
|---|
 | 1544 |   }
 | 
|---|
| [1598] | 1545 |   SpectralCoordinate spc = getSpectralCoordinate(whichrow);
 | 
|---|
| [865] | 1546 |   Vector<Double> pixel(nchan);
 | 
|---|
 | 1547 |   Vector<Double> world;
 | 
|---|
 | 1548 |   indgen(pixel);
 | 
|---|
 | 1549 |   if ( Unit(us) == Unit("Hz") ) {
 | 
|---|
 | 1550 |     for ( int i=0; i < nchan; ++i) {
 | 
|---|
 | 1551 |       Double world;
 | 
|---|
 | 1552 |       spc.toWorld(world, pixel[i]);
 | 
|---|
 | 1553 |       stlout.push_back(double(world));
 | 
|---|
 | 1554 |     }
 | 
|---|
 | 1555 |   } else if ( Unit(us) == Unit("km/s") ) {
 | 
|---|
 | 1556 |     Vector<Double> world;
 | 
|---|
 | 1557 |     spc.pixelToVelocity(world, pixel);
 | 
|---|
 | 1558 |     world.tovector(stlout);
 | 
|---|
 | 1559 |   }
 | 
|---|
 | 1560 |   return stlout;
 | 
|---|
 | 1561 | }
 | 
|---|
| [1360] | 1562 | void Scantable::setDirectionRefString( const std::string & refstr )
 | 
|---|
| [987] | 1563 | {
 | 
|---|
 | 1564 |   MDirection::Types mdt;
 | 
|---|
 | 1565 |   if (refstr != "" && !MDirection::getType(mdt, refstr)) {
 | 
|---|
 | 1566 |     throw(AipsError("Illegal Direction frame."));
 | 
|---|
 | 1567 |   }
 | 
|---|
 | 1568 |   if ( refstr == "" ) {
 | 
|---|
 | 1569 |     String defaultstr = MDirection::showType(dirCol_.getMeasRef().getType());
 | 
|---|
 | 1570 |     table_.rwKeywordSet().define("DIRECTIONREF", defaultstr);
 | 
|---|
 | 1571 |   } else {
 | 
|---|
 | 1572 |     table_.rwKeywordSet().define("DIRECTIONREF", String(refstr));
 | 
|---|
 | 1573 |   }
 | 
|---|
 | 1574 | }
 | 
|---|
| [865] | 1575 | 
 | 
|---|
| [1360] | 1576 | std::string Scantable::getDirectionRefString( ) const
 | 
|---|
| [987] | 1577 | {
 | 
|---|
 | 1578 |   return table_.keywordSet().asString("DIRECTIONREF");
 | 
|---|
 | 1579 | }
 | 
|---|
 | 1580 | 
 | 
|---|
 | 1581 | MDirection Scantable::getDirection(int whichrow ) const
 | 
|---|
 | 1582 | {
 | 
|---|
 | 1583 |   String usertype = table_.keywordSet().asString("DIRECTIONREF");
 | 
|---|
 | 1584 |   String type = MDirection::showType(dirCol_.getMeasRef().getType());
 | 
|---|
 | 1585 |   if ( usertype != type ) {
 | 
|---|
 | 1586 |     MDirection::Types mdt;
 | 
|---|
 | 1587 |     if (!MDirection::getType(mdt, usertype)) {
 | 
|---|
 | 1588 |       throw(AipsError("Illegal Direction frame."));
 | 
|---|
 | 1589 |     }
 | 
|---|
 | 1590 |     return dirCol_.convert(uInt(whichrow), mdt);
 | 
|---|
 | 1591 |   } else {
 | 
|---|
 | 1592 |     return dirCol_(uInt(whichrow));
 | 
|---|
 | 1593 |   }
 | 
|---|
 | 1594 | }
 | 
|---|
 | 1595 | 
 | 
|---|
| [847] | 1596 | std::string Scantable::getAbcissaLabel( int whichrow ) const
 | 
|---|
 | 1597 | {
 | 
|---|
| [996] | 1598 |   if ( whichrow > int(table_.nrow()) ) throw(AipsError("Illegal ro number"));
 | 
|---|
| [847] | 1599 |   const MPosition& mp = getAntennaPosition();
 | 
|---|
| [987] | 1600 |   const MDirection& md = getDirection(whichrow);
 | 
|---|
| [847] | 1601 |   const MEpoch& me = timeCol_(whichrow);
 | 
|---|
| [1819] | 1602 |   //const Double& rf = mmolidCol_(whichrow);
 | 
|---|
 | 1603 |   const Vector<Double> rf = moleculeTable_.getRestFrequency(mmolidCol_(whichrow));
 | 
|---|
| [847] | 1604 |   SpectralCoordinate spc =
 | 
|---|
| [2346] | 1605 |     freqTable_.getSpectralCoordinate(md, mp, me, rf, mfreqidCol_(whichrow));
 | 
|---|
| [847] | 1606 | 
 | 
|---|
 | 1607 |   String s = "Channel";
 | 
|---|
| [2346] | 1608 |   Unit u = Unit(freqTable_.getUnitString());
 | 
|---|
| [847] | 1609 |   if (u == Unit("km/s")) {
 | 
|---|
| [1170] | 1610 |     s = CoordinateUtil::axisLabel(spc, 0, True,True,  True);
 | 
|---|
| [847] | 1611 |   } else if (u == Unit("Hz")) {
 | 
|---|
 | 1612 |     Vector<String> wau(1);wau = u.getName();
 | 
|---|
 | 1613 |     spc.setWorldAxisUnits(wau);
 | 
|---|
| [1170] | 1614 |     s = CoordinateUtil::axisLabel(spc, 0, True, True, False);
 | 
|---|
| [847] | 1615 |   }
 | 
|---|
 | 1616 |   return s;
 | 
|---|
 | 1617 | 
 | 
|---|
 | 1618 | }
 | 
|---|
 | 1619 | 
 | 
|---|
| [1819] | 1620 | /**
 | 
|---|
 | 1621 | void asap::Scantable::setRestFrequencies( double rf, const std::string& name,
 | 
|---|
| [1170] | 1622 |                                           const std::string& unit )
 | 
|---|
| [1819] | 1623 | **/
 | 
|---|
 | 1624 | void Scantable::setRestFrequencies( vector<double> rf, const vector<std::string>& name,
 | 
|---|
 | 1625 |                                           const std::string& unit )
 | 
|---|
 | 1626 | 
 | 
|---|
| [847] | 1627 | {
 | 
|---|
| [923] | 1628 |   ///@todo lookup in line table to fill in name and formattedname
 | 
|---|
| [847] | 1629 |   Unit u(unit);
 | 
|---|
| [1819] | 1630 |   //Quantum<Double> urf(rf, u);
 | 
|---|
 | 1631 |   Quantum<Vector<Double> >urf(rf, u);
 | 
|---|
 | 1632 |   Vector<String> formattedname(0);
 | 
|---|
 | 1633 |   //cerr<<"Scantable::setRestFrequnecies="<<urf<<endl;
 | 
|---|
 | 1634 | 
 | 
|---|
 | 1635 |   //uInt id = moleculeTable_.addEntry(urf.getValue("Hz"), name, "");
 | 
|---|
 | 1636 |   uInt id = moleculeTable_.addEntry(urf.getValue("Hz"), mathutil::toVectorString(name), formattedname);
 | 
|---|
| [847] | 1637 |   TableVector<uInt> tabvec(table_, "MOLECULE_ID");
 | 
|---|
 | 1638 |   tabvec = id;
 | 
|---|
 | 1639 | }
 | 
|---|
 | 1640 | 
 | 
|---|
| [1819] | 1641 | /**
 | 
|---|
 | 1642 | void asap::Scantable::setRestFrequencies( const std::string& name )
 | 
|---|
| [847] | 1643 | {
 | 
|---|
 | 1644 |   throw(AipsError("setRestFrequencies( const std::string& name ) NYI"));
 | 
|---|
 | 1645 |   ///@todo implement
 | 
|---|
 | 1646 | }
 | 
|---|
| [1819] | 1647 | **/
 | 
|---|
| [2012] | 1648 | 
 | 
|---|
| [1819] | 1649 | void Scantable::setRestFrequencies( const vector<std::string>& name )
 | 
|---|
 | 1650 | {
 | 
|---|
| [2163] | 1651 |   (void) name; // suppress unused warning
 | 
|---|
| [1819] | 1652 |   throw(AipsError("setRestFrequencies( const vector<std::string>& name ) NYI"));
 | 
|---|
 | 1653 |   ///@todo implement
 | 
|---|
 | 1654 | }
 | 
|---|
| [847] | 1655 | 
 | 
|---|
| [1360] | 1656 | std::vector< unsigned int > Scantable::rownumbers( ) const
 | 
|---|
| [852] | 1657 | {
 | 
|---|
 | 1658 |   std::vector<unsigned int> stlout;
 | 
|---|
 | 1659 |   Vector<uInt> vec = table_.rowNumbers();
 | 
|---|
 | 1660 |   vec.tovector(stlout);
 | 
|---|
 | 1661 |   return stlout;
 | 
|---|
 | 1662 | }
 | 
|---|
 | 1663 | 
 | 
|---|
| [865] | 1664 | 
 | 
|---|
| [1360] | 1665 | Matrix<Float> Scantable::getPolMatrix( uInt whichrow ) const
 | 
|---|
| [896] | 1666 | {
 | 
|---|
 | 1667 |   ROTableRow row(table_);
 | 
|---|
 | 1668 |   const TableRecord& rec = row.get(whichrow);
 | 
|---|
 | 1669 |   Table t =
 | 
|---|
 | 1670 |     originalTable_( originalTable_.col("SCANNO") == Int(rec.asuInt("SCANNO"))
 | 
|---|
 | 1671 |                     && originalTable_.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
 | 
|---|
 | 1672 |                     && originalTable_.col("IFNO") == Int(rec.asuInt("IFNO"))
 | 
|---|
 | 1673 |                     && originalTable_.col("CYCLENO") == Int(rec.asuInt("CYCLENO")) );
 | 
|---|
 | 1674 |   ROArrayColumn<Float> speccol(t, "SPECTRA");
 | 
|---|
 | 1675 |   return speccol.getColumn();
 | 
|---|
 | 1676 | }
 | 
|---|
| [865] | 1677 | 
 | 
|---|
| [1360] | 1678 | std::vector< std::string > Scantable::columnNames( ) const
 | 
|---|
| [902] | 1679 | {
 | 
|---|
 | 1680 |   Vector<String> vec = table_.tableDesc().columnNames();
 | 
|---|
 | 1681 |   return mathutil::tovectorstring(vec);
 | 
|---|
 | 1682 | }
 | 
|---|
| [896] | 1683 | 
 | 
|---|
| [1360] | 1684 | MEpoch::Types Scantable::getTimeReference( ) const
 | 
|---|
| [915] | 1685 | {
 | 
|---|
 | 1686 |   return MEpoch::castType(timeCol_.getMeasRef().getType());
 | 
|---|
| [972] | 1687 | }
 | 
|---|
| [915] | 1688 | 
 | 
|---|
| [1360] | 1689 | void Scantable::addFit( const STFitEntry& fit, int row )
 | 
|---|
| [972] | 1690 | {
 | 
|---|
| [1819] | 1691 |   //cout << mfitidCol_(uInt(row)) << endl;
 | 
|---|
 | 1692 |   LogIO os( LogOrigin( "Scantable", "addFit()", WHERE ) ) ;
 | 
|---|
 | 1693 |   os << mfitidCol_(uInt(row)) << LogIO::POST ;
 | 
|---|
| [972] | 1694 |   uInt id = fitTable_.addEntry(fit, mfitidCol_(uInt(row)));
 | 
|---|
 | 1695 |   mfitidCol_.put(uInt(row), id);
 | 
|---|
 | 1696 | }
 | 
|---|
| [915] | 1697 | 
 | 
|---|
| [1360] | 1698 | void Scantable::shift(int npix)
 | 
|---|
 | 1699 | {
 | 
|---|
 | 1700 |   Vector<uInt> fids(mfreqidCol_.getColumn());
 | 
|---|
 | 1701 |   genSort( fids, Sort::Ascending,
 | 
|---|
 | 1702 |            Sort::QuickSort|Sort::NoDuplicates );
 | 
|---|
 | 1703 |   for (uInt i=0; i<fids.nelements(); ++i) {
 | 
|---|
| [1567] | 1704 |     frequencies().shiftRefPix(npix, fids[i]);
 | 
|---|
| [1360] | 1705 |   }
 | 
|---|
 | 1706 | }
 | 
|---|
| [987] | 1707 | 
 | 
|---|
| [1819] | 1708 | String Scantable::getAntennaName() const
 | 
|---|
| [1391] | 1709 | {
 | 
|---|
 | 1710 |   String out;
 | 
|---|
 | 1711 |   table_.keywordSet().get("AntennaName", out);
 | 
|---|
| [1987] | 1712 |   String::size_type pos1 = out.find("@") ;
 | 
|---|
 | 1713 |   String::size_type pos2 = out.find("//") ;
 | 
|---|
 | 1714 |   if ( pos2 != String::npos ) 
 | 
|---|
| [2036] | 1715 |     out = out.substr(pos2+2,pos1-pos2-2) ;
 | 
|---|
| [1987] | 1716 |   else if ( pos1 != String::npos )
 | 
|---|
 | 1717 |     out = out.substr(0,pos1) ;
 | 
|---|
| [1391] | 1718 |   return out;
 | 
|---|
| [987] | 1719 | }
 | 
|---|
| [1391] | 1720 | 
 | 
|---|
| [1730] | 1721 | int Scantable::checkScanInfo(const std::vector<int>& scanlist) const
 | 
|---|
| [1391] | 1722 | {
 | 
|---|
 | 1723 |   String tbpath;
 | 
|---|
 | 1724 |   int ret = 0;
 | 
|---|
 | 1725 |   if ( table_.keywordSet().isDefined("GBT_GO") ) {
 | 
|---|
 | 1726 |     table_.keywordSet().get("GBT_GO", tbpath);
 | 
|---|
 | 1727 |     Table t(tbpath,Table::Old);
 | 
|---|
 | 1728 |     // check each scan if other scan of the pair exist
 | 
|---|
 | 1729 |     int nscan = scanlist.size();
 | 
|---|
 | 1730 |     for (int i = 0; i < nscan; i++) {
 | 
|---|
 | 1731 |       Table subt = t( t.col("SCAN") == scanlist[i]+1 );
 | 
|---|
 | 1732 |       if (subt.nrow()==0) {
 | 
|---|
| [1819] | 1733 |         //cerr <<"Scan "<<scanlist[i]<<" cannot be found in the scantable."<<endl;
 | 
|---|
 | 1734 |         LogIO os( LogOrigin( "Scantable", "checkScanInfo()", WHERE ) ) ;
 | 
|---|
 | 1735 |         os <<LogIO::WARN<<"Scan "<<scanlist[i]<<" cannot be found in the scantable."<<LogIO::POST;
 | 
|---|
| [1391] | 1736 |         ret = 1;
 | 
|---|
 | 1737 |         break;
 | 
|---|
 | 1738 |       }
 | 
|---|
 | 1739 |       ROTableRow row(subt);
 | 
|---|
 | 1740 |       const TableRecord& rec = row.get(0);
 | 
|---|
 | 1741 |       int scan1seqn = rec.asuInt("PROCSEQN");
 | 
|---|
 | 1742 |       int laston1 = rec.asuInt("LASTON");
 | 
|---|
 | 1743 |       if ( rec.asuInt("PROCSIZE")==2 ) {
 | 
|---|
 | 1744 |         if ( i < nscan-1 ) {
 | 
|---|
 | 1745 |           Table subt2 = t( t.col("SCAN") == scanlist[i+1]+1 );
 | 
|---|
 | 1746 |           if ( subt2.nrow() == 0) {
 | 
|---|
| [1819] | 1747 |             LogIO os( LogOrigin( "Scantable", "checkScanInfo()", WHERE ) ) ;
 | 
|---|
 | 1748 | 
 | 
|---|
 | 1749 |             //cerr<<"Scan "<<scanlist[i+1]<<" cannot be found in the scantable."<<endl;
 | 
|---|
 | 1750 |             os<<LogIO::WARN<<"Scan "<<scanlist[i+1]<<" cannot be found in the scantable."<<LogIO::POST;
 | 
|---|
| [1391] | 1751 |             ret = 1;
 | 
|---|
 | 1752 |             break;
 | 
|---|
 | 1753 |           }
 | 
|---|
 | 1754 |           ROTableRow row2(subt2);
 | 
|---|
 | 1755 |           const TableRecord& rec2 = row2.get(0);
 | 
|---|
 | 1756 |           int scan2seqn = rec2.asuInt("PROCSEQN");
 | 
|---|
 | 1757 |           int laston2 = rec2.asuInt("LASTON");
 | 
|---|
 | 1758 |           if (scan1seqn == 1 && scan2seqn == 2) {
 | 
|---|
 | 1759 |             if (laston1 == laston2) {
 | 
|---|
| [1819] | 1760 |               LogIO os( LogOrigin( "Scantable", "checkScanInfo()", WHERE ) ) ;
 | 
|---|
 | 1761 |               //cerr<<"A valid scan pair ["<<scanlist[i]<<","<<scanlist[i+1]<<"]"<<endl;
 | 
|---|
 | 1762 |               os<<"A valid scan pair ["<<scanlist[i]<<","<<scanlist[i+1]<<"]"<<LogIO::POST;
 | 
|---|
| [1391] | 1763 |               i +=1;
 | 
|---|
 | 1764 |             }
 | 
|---|
 | 1765 |             else {
 | 
|---|
| [1819] | 1766 |               LogIO os( LogOrigin( "Scantable", "checkScanInfo()", WHERE ) ) ;
 | 
|---|
 | 1767 |               //cerr<<"Incorrect scan pair ["<<scanlist[i]<<","<<scanlist[i+1]<<"]"<<endl;
 | 
|---|
 | 1768 |               os<<LogIO::WARN<<"Incorrect scan pair ["<<scanlist[i]<<","<<scanlist[i+1]<<"]"<<LogIO::POST;
 | 
|---|
| [1391] | 1769 |             }
 | 
|---|
 | 1770 |           }
 | 
|---|
 | 1771 |           else if (scan1seqn==2 && scan2seqn == 1) {
 | 
|---|
 | 1772 |             if (laston1 == laston2) {
 | 
|---|
| [1819] | 1773 |               LogIO os( LogOrigin( "Scantable", "checkScanInfo()", WHERE ) ) ;
 | 
|---|
 | 1774 |               //cerr<<"["<<scanlist[i]<<","<<scanlist[i+1]<<"] is a valid scan pair but in incorrect order."<<endl;
 | 
|---|
 | 1775 |               os<<LogIO::WARN<<"["<<scanlist[i]<<","<<scanlist[i+1]<<"] is a valid scan pair but in incorrect order."<<LogIO::POST;
 | 
|---|
| [1391] | 1776 |               ret = 1;
 | 
|---|
 | 1777 |               break;
 | 
|---|
 | 1778 |             }
 | 
|---|
 | 1779 |           }
 | 
|---|
 | 1780 |           else {
 | 
|---|
| [1819] | 1781 |             LogIO os( LogOrigin( "Scantable", "checkScanInfo()", WHERE ) ) ;
 | 
|---|
 | 1782 |             //cerr<<"The other scan for  "<<scanlist[i]<<" appears to be missing. Check the input scan numbers."<<endl;
 | 
|---|
 | 1783 |             os<<LogIO::WARN<<"The other scan for  "<<scanlist[i]<<" appears to be missing. Check the input scan numbers."<<LogIO::POST;
 | 
|---|
| [1391] | 1784 |             ret = 1;
 | 
|---|
 | 1785 |             break;
 | 
|---|
 | 1786 |           }
 | 
|---|
 | 1787 |         }
 | 
|---|
 | 1788 |       }
 | 
|---|
 | 1789 |       else {
 | 
|---|
| [1819] | 1790 |         LogIO os( LogOrigin( "Scantable", "checkScanInfo()", WHERE ) ) ;
 | 
|---|
 | 1791 |         //cerr<<"The scan does not appear to be standard obsevation."<<endl;
 | 
|---|
 | 1792 |         os<<LogIO::WARN<<"The scan does not appear to be standard obsevation."<<LogIO::POST;
 | 
|---|
| [1391] | 1793 |       }
 | 
|---|
 | 1794 |     //if ( i >= nscan ) break;
 | 
|---|
 | 1795 |     }
 | 
|---|
 | 1796 |   }
 | 
|---|
 | 1797 |   else {
 | 
|---|
| [1819] | 1798 |     LogIO os( LogOrigin( "Scantable", "checkScanInfo()", WHERE ) ) ;
 | 
|---|
 | 1799 |     //cerr<<"No reference to GBT_GO table."<<endl;
 | 
|---|
 | 1800 |     os<<LogIO::WARN<<"No reference to GBT_GO table."<<LogIO::POST;
 | 
|---|
| [1391] | 1801 |     ret = 1;
 | 
|---|
 | 1802 |   }
 | 
|---|
 | 1803 |   return ret;
 | 
|---|
 | 1804 | }
 | 
|---|
 | 1805 | 
 | 
|---|
| [1730] | 1806 | std::vector<double> Scantable::getDirectionVector(int whichrow) const
 | 
|---|
| [1391] | 1807 | {
 | 
|---|
 | 1808 |   Vector<Double> Dir = dirCol_(whichrow).getAngle("rad").getValue();
 | 
|---|
 | 1809 |   std::vector<double> dir;
 | 
|---|
 | 1810 |   Dir.tovector(dir);
 | 
|---|
 | 1811 |   return dir;
 | 
|---|
 | 1812 | }
 | 
|---|
 | 1813 | 
 | 
|---|
| [1819] | 1814 | void asap::Scantable::reshapeSpectrum( int nmin, int nmax )
 | 
|---|
 | 1815 |   throw( casa::AipsError )
 | 
|---|
 | 1816 | {
 | 
|---|
 | 1817 |   // assumed that all rows have same nChan
 | 
|---|
 | 1818 |   Vector<Float> arr = specCol_( 0 ) ;
 | 
|---|
 | 1819 |   int nChan = arr.nelements() ;
 | 
|---|
 | 1820 | 
 | 
|---|
 | 1821 |   // if nmin < 0 or nmax < 0, nothing to do
 | 
|---|
 | 1822 |   if (  nmin < 0 ) {
 | 
|---|
 | 1823 |     throw( casa::indexError<int>( nmin, "asap::Scantable::reshapeSpectrum: Invalid range. Negative index is specified." ) ) ;
 | 
|---|
 | 1824 |     }
 | 
|---|
 | 1825 |   if (  nmax < 0  ) {
 | 
|---|
 | 1826 |     throw( casa::indexError<int>( nmax, "asap::Scantable::reshapeSpectrum: Invalid range. Negative index is specified." ) ) ;
 | 
|---|
 | 1827 |   }
 | 
|---|
 | 1828 | 
 | 
|---|
 | 1829 |   // if nmin > nmax, exchange values
 | 
|---|
 | 1830 |   if ( nmin > nmax ) {
 | 
|---|
 | 1831 |     int tmp = nmax ;
 | 
|---|
 | 1832 |     nmax = nmin ;
 | 
|---|
 | 1833 |     nmin = tmp ;
 | 
|---|
 | 1834 |     LogIO os( LogOrigin( "Scantable", "reshapeSpectrum()", WHERE ) ) ;
 | 
|---|
 | 1835 |     os << "Swap values. Applied range is ["
 | 
|---|
 | 1836 |        << nmin << ", " << nmax << "]" << LogIO::POST ;
 | 
|---|
 | 1837 |   }
 | 
|---|
 | 1838 | 
 | 
|---|
 | 1839 |   // if nmin exceeds nChan, nothing to do
 | 
|---|
 | 1840 |   if ( nmin >= nChan ) {
 | 
|---|
 | 1841 |     throw( casa::indexError<int>( nmin, "asap::Scantable::reshapeSpectrum: Invalid range. Specified minimum exceeds nChan." ) ) ;
 | 
|---|
 | 1842 |   }
 | 
|---|
 | 1843 | 
 | 
|---|
 | 1844 |   // if nmax exceeds nChan, reset nmax to nChan
 | 
|---|
| [2672] | 1845 |   if ( nmax >= nChan-1 ) {
 | 
|---|
| [1819] | 1846 |     if ( nmin == 0 ) {
 | 
|---|
 | 1847 |       // nothing to do
 | 
|---|
 | 1848 |       LogIO os( LogOrigin( "Scantable", "reshapeSpectrum()", WHERE ) ) ;
 | 
|---|
 | 1849 |       os << "Whole range is selected. Nothing to do." << LogIO::POST ;
 | 
|---|
 | 1850 |       return ;
 | 
|---|
 | 1851 |     }
 | 
|---|
 | 1852 |     else {
 | 
|---|
 | 1853 |       LogIO os( LogOrigin( "Scantable", "reshapeSpectrum()", WHERE ) ) ;
 | 
|---|
 | 1854 |       os << "Specified maximum exceeds nChan. Applied range is ["
 | 
|---|
 | 1855 |          << nmin << ", " << nChan-1 << "]." << LogIO::POST ;
 | 
|---|
 | 1856 |       nmax = nChan - 1 ;
 | 
|---|
 | 1857 |     }
 | 
|---|
 | 1858 |   }
 | 
|---|
 | 1859 | 
 | 
|---|
 | 1860 |   // reshape specCol_ and flagCol_
 | 
|---|
 | 1861 |   for ( int irow = 0 ; irow < nrow() ; irow++ ) {
 | 
|---|
 | 1862 |     reshapeSpectrum( nmin, nmax, irow ) ;
 | 
|---|
 | 1863 |   }
 | 
|---|
 | 1864 | 
 | 
|---|
 | 1865 |   // update FREQUENCIES subtable
 | 
|---|
 | 1866 |   Double refpix ;
 | 
|---|
 | 1867 |   Double refval ;
 | 
|---|
 | 1868 |   Double increment ;
 | 
|---|
| [2346] | 1869 |   int freqnrow = freqTable_.table().nrow() ;
 | 
|---|
| [1819] | 1870 |   Vector<uInt> oldId( freqnrow ) ;
 | 
|---|
 | 1871 |   Vector<uInt> newId( freqnrow ) ;
 | 
|---|
 | 1872 |   for ( int irow = 0 ; irow < freqnrow ; irow++ ) {
 | 
|---|
| [2346] | 1873 |     freqTable_.getEntry( refpix, refval, increment, irow ) ;
 | 
|---|
| [1819] | 1874 |     /***
 | 
|---|
 | 1875 |      * need to shift refpix to nmin
 | 
|---|
 | 1876 |      * note that channel nmin in old index will be channel 0 in new one
 | 
|---|
 | 1877 |      ***/
 | 
|---|
 | 1878 |     refval = refval - ( refpix - nmin ) * increment ;
 | 
|---|
 | 1879 |     refpix = 0 ;
 | 
|---|
| [2346] | 1880 |     freqTable_.setEntry( refpix, refval, increment, irow ) ;
 | 
|---|
| [1819] | 1881 |   }
 | 
|---|
 | 1882 | 
 | 
|---|
 | 1883 |   // update nchan
 | 
|---|
 | 1884 |   int newsize = nmax - nmin + 1 ;
 | 
|---|
 | 1885 |   table_.rwKeywordSet().define( "nChan", newsize ) ;
 | 
|---|
 | 1886 | 
 | 
|---|
 | 1887 |   // update bandwidth
 | 
|---|
 | 1888 |   // assumed all spectra in the scantable have same bandwidth
 | 
|---|
 | 1889 |   table_.rwKeywordSet().define( "Bandwidth", increment * newsize ) ;
 | 
|---|
 | 1890 | 
 | 
|---|
 | 1891 |   return ;
 | 
|---|
 | 1892 | }
 | 
|---|
 | 1893 | 
 | 
|---|
 | 1894 | void asap::Scantable::reshapeSpectrum( int nmin, int nmax, int irow )
 | 
|---|
 | 1895 | {
 | 
|---|
 | 1896 |   // reshape specCol_ and flagCol_
 | 
|---|
 | 1897 |   Vector<Float> oldspec = specCol_( irow ) ;
 | 
|---|
 | 1898 |   Vector<uChar> oldflag = flagsCol_( irow ) ;
 | 
|---|
| [2475] | 1899 |   Vector<Float> oldtsys = tsysCol_( irow ) ;
 | 
|---|
| [1819] | 1900 |   uInt newsize = nmax - nmin + 1 ;
 | 
|---|
| [2475] | 1901 |   Slice slice( nmin, newsize, 1 ) ;
 | 
|---|
 | 1902 |   specCol_.put( irow, oldspec( slice ) ) ;
 | 
|---|
 | 1903 |   flagsCol_.put( irow, oldflag( slice ) ) ;
 | 
|---|
 | 1904 |   if ( oldspec.size() == oldtsys.size() )
 | 
|---|
 | 1905 |     tsysCol_.put( irow, oldtsys( slice ) ) ;
 | 
|---|
| [1819] | 1906 | 
 | 
|---|
 | 1907 |   return ;
 | 
|---|
 | 1908 | }
 | 
|---|
 | 1909 | 
 | 
|---|
| [2435] | 1910 | void asap::Scantable::regridSpecChannel( double dnu, int nChan )
 | 
|---|
 | 1911 | {
 | 
|---|
 | 1912 |   LogIO os( LogOrigin( "Scantable", "regridChannel()", WHERE ) ) ;
 | 
|---|
 | 1913 |   os << "Regrid abcissa with spectral resoultion " << dnu << " " << freqTable_.getUnitString() << " with channel number " << ((nChan>0)? String(nChan) : "covering band width")<< LogIO::POST ;
 | 
|---|
 | 1914 |   int freqnrow = freqTable_.table().nrow() ;
 | 
|---|
 | 1915 |   Vector<bool> firstTime( freqnrow, true ) ;
 | 
|---|
 | 1916 |   double oldincr, factor;
 | 
|---|
 | 1917 |   uInt currId;
 | 
|---|
 | 1918 |   Double refpix ;
 | 
|---|
 | 1919 |   Double refval ;
 | 
|---|
 | 1920 |   Double increment ;
 | 
|---|
 | 1921 |   for ( int irow = 0 ; irow < nrow() ; irow++ ) {
 | 
|---|
 | 1922 |     currId = mfreqidCol_(irow);
 | 
|---|
 | 1923 |     vector<double> abcissa = getAbcissa( irow ) ;
 | 
|---|
 | 1924 |     if (nChan < 0) {
 | 
|---|
 | 1925 |       int oldsize = abcissa.size() ;
 | 
|---|
 | 1926 |       double bw = (abcissa[oldsize-1]-abcissa[0]) +                     \
 | 
|---|
 | 1927 |         0.5 * (abcissa[1]-abcissa[0] + abcissa[oldsize-1]-abcissa[oldsize-2]) ;
 | 
|---|
 | 1928 |       nChan = int( ceil( abs(bw/dnu) ) ) ;
 | 
|---|
 | 1929 |     }
 | 
|---|
 | 1930 |     // actual regridding
 | 
|---|
 | 1931 |     regridChannel( nChan, dnu, irow ) ;
 | 
|---|
| [2433] | 1932 | 
 | 
|---|
| [2435] | 1933 |     // update FREQUENCIES subtable
 | 
|---|
 | 1934 |     if (firstTime[currId]) {
 | 
|---|
 | 1935 |       oldincr = abcissa[1]-abcissa[0] ;
 | 
|---|
 | 1936 |       factor = dnu/oldincr ;
 | 
|---|
 | 1937 |       firstTime[currId] = false ;
 | 
|---|
 | 1938 |       freqTable_.getEntry( refpix, refval, increment, currId ) ;
 | 
|---|
| [2463] | 1939 | 
 | 
|---|
| [2437] | 1940 |       //refval = refval - ( refpix + 0.5 * (1 - factor) ) * increment ;
 | 
|---|
| [2463] | 1941 |       if (factor > 0 ) {
 | 
|---|
| [2462] | 1942 |         refpix = (refpix + 0.5)/factor - 0.5;
 | 
|---|
 | 1943 |       } else {
 | 
|---|
| [2463] | 1944 |         refpix = (abcissa.size() - 0.5 - refpix)/abs(factor) - 0.5;
 | 
|---|
| [2462] | 1945 |       }
 | 
|---|
| [2435] | 1946 |       freqTable_.setEntry( refpix, refval, increment*factor, currId ) ;
 | 
|---|
| [2463] | 1947 |       //os << "ID" << currId << ": channel width (Orig) = " << oldincr << " [" << freqTable_.getUnitString() << "], scale factor = " << factor << LogIO::POST ;
 | 
|---|
 | 1948 |       //os << "     frequency increment (Orig) = " << increment << "-> (New) " << increment*factor << LogIO::POST ;
 | 
|---|
| [2435] | 1949 |     }
 | 
|---|
 | 1950 |   }
 | 
|---|
 | 1951 | }
 | 
|---|
 | 1952 | 
 | 
|---|
| [1819] | 1953 | void asap::Scantable::regridChannel( int nChan, double dnu )
 | 
|---|
 | 1954 | {
 | 
|---|
 | 1955 |   LogIO os( LogOrigin( "Scantable", "regridChannel()", WHERE ) ) ;
 | 
|---|
 | 1956 |   os << "Regrid abcissa with channel number " << nChan << " and spectral resoultion " << dnu << "Hz." << LogIO::POST ;
 | 
|---|
 | 1957 |   // assumed that all rows have same nChan
 | 
|---|
 | 1958 |   Vector<Float> arr = specCol_( 0 ) ;
 | 
|---|
 | 1959 |   int oldsize = arr.nelements() ;
 | 
|---|
 | 1960 | 
 | 
|---|
 | 1961 |   // if oldsize == nChan, nothing to do
 | 
|---|
 | 1962 |   if ( oldsize == nChan ) {
 | 
|---|
 | 1963 |     os << "Specified channel number is same as current one. Nothing to do." << LogIO::POST ;
 | 
|---|
 | 1964 |     return ;
 | 
|---|
 | 1965 |   }
 | 
|---|
 | 1966 | 
 | 
|---|
 | 1967 |   // if oldChan < nChan, unphysical operation
 | 
|---|
 | 1968 |   if ( oldsize < nChan ) {
 | 
|---|
 | 1969 |     os << "Unphysical operation. Nothing to do." << LogIO::POST ;
 | 
|---|
 | 1970 |     return ;
 | 
|---|
 | 1971 |   }
 | 
|---|
 | 1972 | 
 | 
|---|
| [2433] | 1973 |   // change channel number for specCol_, flagCol_, and tsysCol_ (if necessary)
 | 
|---|
| [1819] | 1974 |   vector<string> coordinfo = getCoordInfo() ;
 | 
|---|
 | 1975 |   string oldinfo = coordinfo[0] ;
 | 
|---|
 | 1976 |   coordinfo[0] = "Hz" ;
 | 
|---|
 | 1977 |   setCoordInfo( coordinfo ) ;
 | 
|---|
 | 1978 |   for ( int irow = 0 ; irow < nrow() ; irow++ ) {
 | 
|---|
 | 1979 |     regridChannel( nChan, dnu, irow ) ;
 | 
|---|
 | 1980 |   }
 | 
|---|
 | 1981 |   coordinfo[0] = oldinfo ;
 | 
|---|
 | 1982 |   setCoordInfo( coordinfo ) ;
 | 
|---|
 | 1983 | 
 | 
|---|
 | 1984 | 
 | 
|---|
 | 1985 |   // NOTE: this method does not update metadata such as
 | 
|---|
 | 1986 |   //       FREQUENCIES subtable, nChan, Bandwidth, etc.
 | 
|---|
 | 1987 | 
 | 
|---|
 | 1988 |   return ;
 | 
|---|
 | 1989 | }
 | 
|---|
 | 1990 | 
 | 
|---|
 | 1991 | void asap::Scantable::regridChannel( int nChan, double dnu, int irow )
 | 
|---|
 | 1992 | {
 | 
|---|
 | 1993 |   // logging
 | 
|---|
 | 1994 |   //ofstream ofs( "average.log", std::ios::out | std::ios::app ) ;
 | 
|---|
 | 1995 |   //ofs << "IFNO = " << getIF( irow ) << " irow = " << irow << endl ;
 | 
|---|
 | 1996 | 
 | 
|---|
 | 1997 |   Vector<Float> oldspec = specCol_( irow ) ;
 | 
|---|
 | 1998 |   Vector<uChar> oldflag = flagsCol_( irow ) ;
 | 
|---|
| [2431] | 1999 |   Vector<Float> oldtsys = tsysCol_( irow ) ;
 | 
|---|
| [1819] | 2000 |   Vector<Float> newspec( nChan, 0 ) ;
 | 
|---|
| [2431] | 2001 |   Vector<uChar> newflag( nChan, true ) ;
 | 
|---|
 | 2002 |   Vector<Float> newtsys ;
 | 
|---|
 | 2003 |   bool regridTsys = false ;
 | 
|---|
 | 2004 |   if (oldtsys.size() == oldspec.size()) {
 | 
|---|
 | 2005 |     regridTsys = true ;
 | 
|---|
 | 2006 |     newtsys.resize(nChan,false) ;
 | 
|---|
 | 2007 |     newtsys = 0 ;
 | 
|---|
 | 2008 |   }
 | 
|---|
| [1819] | 2009 | 
 | 
|---|
 | 2010 |   // regrid
 | 
|---|
 | 2011 |   vector<double> abcissa = getAbcissa( irow ) ;
 | 
|---|
 | 2012 |   int oldsize = abcissa.size() ;
 | 
|---|
 | 2013 |   double olddnu = abcissa[1] - abcissa[0] ;
 | 
|---|
| [2462] | 2014 |   //int ichan = 0 ;
 | 
|---|
| [1819] | 2015 |   double wsum = 0.0 ;
 | 
|---|
| [2433] | 2016 |   Vector<double> zi( nChan+1 ) ;
 | 
|---|
 | 2017 |   Vector<double> yi( oldsize + 1 ) ;
 | 
|---|
| [1819] | 2018 |   yi[0] = abcissa[0] - 0.5 * olddnu ;
 | 
|---|
| [2431] | 2019 |   for ( int ii = 1 ; ii < oldsize ; ii++ )
 | 
|---|
| [2433] | 2020 |     yi[ii] = 0.5* (abcissa[ii-1] + abcissa[ii]) ;
 | 
|---|
 | 2021 |   yi[oldsize] = abcissa[oldsize-1] \
 | 
|---|
 | 2022 |     + 0.5 * (abcissa[oldsize-1] - abcissa[oldsize-2]) ;
 | 
|---|
| [2462] | 2023 |   //zi[0] = abcissa[0] - 0.5 * olddnu ;
 | 
|---|
 | 2024 |   zi[0] = ((olddnu*dnu > 0) ? yi[0] : yi[oldsize]) ;
 | 
|---|
 | 2025 |   for ( int ii = 1 ; ii < nChan ; ii++ )
 | 
|---|
 | 2026 |     zi[ii] = zi[0] + dnu * ii ;
 | 
|---|
 | 2027 |   zi[nChan] = zi[nChan-1] + dnu ;
 | 
|---|
 | 2028 |   // Access zi and yi in ascending order
 | 
|---|
 | 2029 |   int izs = ((dnu > 0) ? 0 : nChan ) ;
 | 
|---|
 | 2030 |   int ize = ((dnu > 0) ? nChan : 0 ) ;
 | 
|---|
 | 2031 |   int izincr = ((dnu > 0) ? 1 : -1 ) ;
 | 
|---|
 | 2032 |   int ichan =  ((olddnu > 0) ? 0 : oldsize ) ;
 | 
|---|
 | 2033 |   int iye = ((olddnu > 0) ? oldsize : 0 ) ;
 | 
|---|
 | 2034 |   int iyincr = ((olddnu > 0) ? 1 : -1 ) ;
 | 
|---|
 | 2035 |   //for ( int ii = izs ; ii != ize ; ii+=izincr ){
 | 
|---|
 | 2036 |   int ii = izs ;
 | 
|---|
 | 2037 |   while (ii != ize) {
 | 
|---|
 | 2038 |     // always zl < zr
 | 
|---|
 | 2039 |     double zl = zi[ii] ;
 | 
|---|
 | 2040 |     double zr = zi[ii+izincr] ;
 | 
|---|
 | 2041 |     // Need to access smaller index for the new spec, flag, and tsys.
 | 
|---|
 | 2042 |     // Values between zi[k] and zi[k+1] should be stored in newspec[k], etc.
 | 
|---|
 | 2043 |     int i = min(ii, ii+izincr) ;
 | 
|---|
 | 2044 |     //for ( int jj = ichan ; jj != iye ; jj+=iyincr ) {
 | 
|---|
 | 2045 |     int jj = ichan ;
 | 
|---|
 | 2046 |     while (jj != iye) {
 | 
|---|
 | 2047 |       // always yl < yr
 | 
|---|
 | 2048 |       double yl = yi[jj] ;
 | 
|---|
 | 2049 |       double yr = yi[jj+iyincr] ;
 | 
|---|
 | 2050 |       // Need to access smaller index for the original spec, flag, and tsys.
 | 
|---|
 | 2051 |       // Values between yi[k] and yi[k+1] are stored in oldspec[k], etc.
 | 
|---|
 | 2052 |       int j = min(jj, jj+iyincr) ;
 | 
|---|
 | 2053 |       if ( yr <= zl ) {
 | 
|---|
 | 2054 |         jj += iyincr ;
 | 
|---|
 | 2055 |         continue ;
 | 
|---|
| [1819] | 2056 |       }
 | 
|---|
| [2462] | 2057 |       else if ( yl <= zl ) {
 | 
|---|
 | 2058 |         if ( yr < zr ) {
 | 
|---|
 | 2059 |           if (!oldflag[j]) {
 | 
|---|
 | 2060 |             newspec[i] += oldspec[j] * ( yr - zl ) ;
 | 
|---|
 | 2061 |             if (regridTsys) newtsys[i] += oldtsys[j] * ( yr - zl ) ;
 | 
|---|
 | 2062 |             wsum += ( yr - zl ) ;
 | 
|---|
 | 2063 |           }
 | 
|---|
 | 2064 |           newflag[i] = newflag[i] && oldflag[j] ;
 | 
|---|
 | 2065 |         }
 | 
|---|
 | 2066 |         else {
 | 
|---|
 | 2067 |           if (!oldflag[j]) {
 | 
|---|
 | 2068 |             newspec[i] += oldspec[j] * abs(dnu) ;
 | 
|---|
 | 2069 |             if (regridTsys) newtsys[i] += oldtsys[j] * abs(dnu) ;
 | 
|---|
 | 2070 |             wsum += abs(dnu) ;
 | 
|---|
 | 2071 |           }
 | 
|---|
 | 2072 |           newflag[i] = newflag[i] && oldflag[j] ;
 | 
|---|
 | 2073 |           ichan = jj ;
 | 
|---|
 | 2074 |           break ;
 | 
|---|
 | 2075 |         }
 | 
|---|
| [2431] | 2076 |       }
 | 
|---|
| [2462] | 2077 |       else if ( yl < zr ) {
 | 
|---|
 | 2078 |         if ( yr <= zr ) {
 | 
|---|
 | 2079 |           if (!oldflag[j]) {
 | 
|---|
 | 2080 |             newspec[i] += oldspec[j] * ( yr - yl ) ;
 | 
|---|
 | 2081 |             if (regridTsys) newtsys[i] += oldtsys[j] * ( yr - yl ) ;
 | 
|---|
 | 2082 |             wsum += ( yr - yl ) ;
 | 
|---|
 | 2083 |           }
 | 
|---|
 | 2084 |           newflag[i] = newflag[i] && oldflag[j] ;
 | 
|---|
 | 2085 |         }
 | 
|---|
 | 2086 |         else {
 | 
|---|
 | 2087 |           if (!oldflag[j]) {
 | 
|---|
 | 2088 |             newspec[i] += oldspec[j] * ( zr - yl ) ;
 | 
|---|
 | 2089 |             if (regridTsys) newtsys[i] += oldtsys[j] * ( zr - yl ) ;
 | 
|---|
 | 2090 |             wsum += ( zr - yl ) ;
 | 
|---|
 | 2091 |           }
 | 
|---|
 | 2092 |           newflag[i] = newflag[i] && oldflag[j] ;
 | 
|---|
 | 2093 |           ichan = jj ;
 | 
|---|
 | 2094 |           break ;
 | 
|---|
 | 2095 |         }
 | 
|---|
| [1819] | 2096 |       }
 | 
|---|
| [2462] | 2097 |       else {
 | 
|---|
 | 2098 |         ichan = jj - iyincr ;
 | 
|---|
 | 2099 |         break ;
 | 
|---|
| [2431] | 2100 |       }
 | 
|---|
| [2462] | 2101 |       jj += iyincr ;
 | 
|---|
| [1819] | 2102 |     }
 | 
|---|
| [2462] | 2103 |     if ( wsum != 0.0 ) {
 | 
|---|
 | 2104 |       newspec[i] /= wsum ;
 | 
|---|
 | 2105 |       if (regridTsys) newtsys[i] /= wsum ;
 | 
|---|
 | 2106 |     }
 | 
|---|
 | 2107 |     wsum = 0.0 ;
 | 
|---|
 | 2108 |     ii += izincr ;
 | 
|---|
| [1819] | 2109 |   }
 | 
|---|
| [2462] | 2110 | //   if ( dnu > 0.0 ) {
 | 
|---|
 | 2111 | //     for ( int ii = 0 ; ii < nChan ; ii++ ) {
 | 
|---|
 | 2112 | //       double zl = zi[ii] ;
 | 
|---|
 | 2113 | //       double zr = zi[ii+1] ;
 | 
|---|
 | 2114 | //       for ( int j = ichan ; j < oldsize ; j++ ) {
 | 
|---|
 | 2115 | //         double yl = yi[j] ;
 | 
|---|
 | 2116 | //         double yr = yi[j+1] ;
 | 
|---|
 | 2117 | //         if ( yl <= zl ) {
 | 
|---|
 | 2118 | //           if ( yr <= zl ) {
 | 
|---|
 | 2119 | //             continue ;
 | 
|---|
 | 2120 | //           }
 | 
|---|
 | 2121 | //           else if ( yr <= zr ) {
 | 
|---|
 | 2122 | //          if (!oldflag[j]) {
 | 
|---|
 | 2123 | //            newspec[ii] += oldspec[j] * ( yr - zl ) ;
 | 
|---|
 | 2124 | //            if (regridTsys) newtsys[ii] += oldtsys[j] * ( yr - zl ) ;
 | 
|---|
 | 2125 | //            wsum += ( yr - zl ) ;
 | 
|---|
 | 2126 | //          }
 | 
|---|
 | 2127 | //          newflag[ii] = newflag[ii] && oldflag[j] ;
 | 
|---|
 | 2128 | //           }
 | 
|---|
 | 2129 | //           else {
 | 
|---|
 | 2130 | //          if (!oldflag[j]) {
 | 
|---|
 | 2131 | //            newspec[ii] += oldspec[j] * dnu ;
 | 
|---|
 | 2132 | //            if (regridTsys) newtsys[ii] += oldtsys[j] * dnu ;
 | 
|---|
 | 2133 | //            wsum += dnu ;
 | 
|---|
 | 2134 | //          }
 | 
|---|
 | 2135 | //          newflag[ii] = newflag[ii] && oldflag[j] ;
 | 
|---|
 | 2136 | //             ichan = j ;
 | 
|---|
 | 2137 | //             break ;
 | 
|---|
 | 2138 | //           }
 | 
|---|
 | 2139 | //         }
 | 
|---|
 | 2140 | //         else if ( yl < zr ) {
 | 
|---|
 | 2141 | //           if ( yr <= zr ) {
 | 
|---|
 | 2142 | //          if (!oldflag[j]) {
 | 
|---|
 | 2143 | //            newspec[ii] += oldspec[j] * ( yr - yl ) ;
 | 
|---|
 | 2144 | //            if (regridTsys) newtsys[ii] += oldtsys[j] * ( yr - yl ) ;
 | 
|---|
 | 2145 | //               wsum += ( yr - yl ) ;
 | 
|---|
 | 2146 | //          }
 | 
|---|
 | 2147 | //          newflag[ii] = newflag[ii] && oldflag[j] ;
 | 
|---|
 | 2148 | //           }
 | 
|---|
 | 2149 | //           else {
 | 
|---|
 | 2150 | //          if (!oldflag[j]) {
 | 
|---|
 | 2151 | //            newspec[ii] += oldspec[j] * ( zr - yl ) ;
 | 
|---|
 | 2152 | //            if (regridTsys) newtsys[ii] += oldtsys[j] * ( zr - yl ) ;
 | 
|---|
 | 2153 | //            wsum += ( zr - yl ) ;
 | 
|---|
 | 2154 | //          }
 | 
|---|
 | 2155 | //          newflag[ii] = newflag[ii] && oldflag[j] ;
 | 
|---|
 | 2156 | //             ichan = j ;
 | 
|---|
 | 2157 | //             break ;
 | 
|---|
 | 2158 | //           }
 | 
|---|
 | 2159 | //         }
 | 
|---|
 | 2160 | //         else {
 | 
|---|
 | 2161 | //           ichan = j - 1 ;
 | 
|---|
 | 2162 | //           break ;
 | 
|---|
 | 2163 | //         }
 | 
|---|
 | 2164 | //       }
 | 
|---|
 | 2165 | //       if ( wsum != 0.0 ) {
 | 
|---|
 | 2166 | //         newspec[ii] /= wsum ;
 | 
|---|
 | 2167 | //      if (regridTsys) newtsys[ii] /= wsum ;
 | 
|---|
 | 2168 | //       }
 | 
|---|
 | 2169 | //       wsum = 0.0 ;
 | 
|---|
 | 2170 | //     }
 | 
|---|
| [1819] | 2171 | //   }
 | 
|---|
| [2462] | 2172 | //   else if ( dnu < 0.0 ) {
 | 
|---|
 | 2173 | //     for ( int ii = 0 ; ii < nChan ; ii++ ) {
 | 
|---|
 | 2174 | //       double zl = zi[ii] ;
 | 
|---|
 | 2175 | //       double zr = zi[ii+1] ;
 | 
|---|
 | 2176 | //       for ( int j = ichan ; j < oldsize ; j++ ) {
 | 
|---|
 | 2177 | //         double yl = yi[j] ;
 | 
|---|
 | 2178 | //         double yr = yi[j+1] ;
 | 
|---|
 | 2179 | //         if ( yl >= zl ) {
 | 
|---|
 | 2180 | //           if ( yr >= zl ) {
 | 
|---|
 | 2181 | //             continue ;
 | 
|---|
 | 2182 | //           }
 | 
|---|
 | 2183 | //           else if ( yr >= zr ) {
 | 
|---|
 | 2184 | //          if (!oldflag[j]) {
 | 
|---|
 | 2185 | //            newspec[ii] += oldspec[j] * abs( yr - zl ) ;
 | 
|---|
 | 2186 | //            if (regridTsys) newtsys[ii] += oldtsys[j] * abs( yr - zl ) ;
 | 
|---|
 | 2187 | //            wsum += abs( yr - zl ) ;
 | 
|---|
 | 2188 | //          }
 | 
|---|
 | 2189 | //          newflag[ii] = newflag[ii] && oldflag[j] ;
 | 
|---|
 | 2190 | //           }
 | 
|---|
 | 2191 | //           else {
 | 
|---|
 | 2192 | //          if (!oldflag[j]) {
 | 
|---|
 | 2193 | //            newspec[ii] += oldspec[j] * abs( dnu ) ;
 | 
|---|
 | 2194 | //            if (regridTsys) newtsys[ii] += oldtsys[j] * abs( dnu ) ;
 | 
|---|
 | 2195 | //            wsum += abs( dnu ) ;
 | 
|---|
 | 2196 | //          }
 | 
|---|
 | 2197 | //          newflag[ii] = newflag[ii] && oldflag[j] ;
 | 
|---|
 | 2198 | //             ichan = j ;
 | 
|---|
 | 2199 | //             break ;
 | 
|---|
 | 2200 | //           }
 | 
|---|
 | 2201 | //         }
 | 
|---|
 | 2202 | //         else if ( yl > zr ) {
 | 
|---|
 | 2203 | //           if ( yr >= zr ) {
 | 
|---|
 | 2204 | //          if (!oldflag[j]) {
 | 
|---|
 | 2205 | //            newspec[ii] += oldspec[j] * abs( yr - yl ) ;
 | 
|---|
 | 2206 | //            if (regridTsys) newtsys[ii] += oldtsys[j] * abs( yr - yl ) ;
 | 
|---|
 | 2207 | //            wsum += abs( yr - yl ) ;
 | 
|---|
 | 2208 | //          }
 | 
|---|
 | 2209 | //          newflag[ii] = newflag[ii] && oldflag[j] ;
 | 
|---|
 | 2210 | //           }
 | 
|---|
 | 2211 | //           else {
 | 
|---|
 | 2212 | //          if (!oldflag[j]) {
 | 
|---|
 | 2213 | //            newspec[ii] += oldspec[j] * abs( zr - yl ) ;
 | 
|---|
 | 2214 | //            if (regridTsys) newtsys[ii] += oldtsys[j] * abs( zr - yl ) ;
 | 
|---|
 | 2215 | //            wsum += abs( zr - yl ) ;
 | 
|---|
 | 2216 | //          }
 | 
|---|
 | 2217 | //          newflag[ii] = newflag[ii] && oldflag[j] ;
 | 
|---|
 | 2218 | //             ichan = j ;
 | 
|---|
 | 2219 | //             break ;
 | 
|---|
 | 2220 | //           }
 | 
|---|
 | 2221 | //         }
 | 
|---|
 | 2222 | //         else {
 | 
|---|
 | 2223 | //           ichan = j - 1 ;
 | 
|---|
 | 2224 | //           break ;
 | 
|---|
 | 2225 | //         }
 | 
|---|
 | 2226 | //       }
 | 
|---|
 | 2227 | //       if ( wsum != 0.0 ) {
 | 
|---|
 | 2228 | //         newspec[ii] /= wsum ;
 | 
|---|
 | 2229 | //      if (regridTsys) newtsys[ii] /= wsum ;
 | 
|---|
 | 2230 | //       }
 | 
|---|
 | 2231 | //       wsum = 0.0 ;
 | 
|---|
| [1819] | 2232 | //     }
 | 
|---|
 | 2233 | //   }
 | 
|---|
| [2462] | 2234 | // //   //ofs << "olddnu = " << olddnu << ", dnu = " << dnu << endl ;
 | 
|---|
 | 2235 | // //   pile += dnu ;
 | 
|---|
 | 2236 | // //   wedge = olddnu * ( refChan + 1 ) ;
 | 
|---|
 | 2237 | // //   while ( wedge < pile ) {
 | 
|---|
 | 2238 | // //     newspec[0] += olddnu * oldspec[refChan] ;
 | 
|---|
 | 2239 | // //     newflag[0] = newflag[0] || oldflag[refChan] ;
 | 
|---|
 | 2240 | // //     //ofs << "channel " << refChan << " is included in new channel 0" << endl ;
 | 
|---|
 | 2241 | // //     refChan++ ;
 | 
|---|
 | 2242 | // //     wedge += olddnu ;
 | 
|---|
 | 2243 | // //     wsum += olddnu ;
 | 
|---|
 | 2244 | // //     //ofs << "newspec[0] = " << newspec[0] << " wsum = " << wsum << endl ;
 | 
|---|
 | 2245 | // //   }
 | 
|---|
 | 2246 | // //   frac = ( wedge - pile ) / olddnu ;
 | 
|---|
 | 2247 | // //   wsum += ( 1.0 - frac ) * olddnu ;
 | 
|---|
 | 2248 | // //   newspec[0] += ( 1.0 - frac ) * olddnu * oldspec[refChan] ;
 | 
|---|
 | 2249 | // //   newflag[0] = newflag[0] || oldflag[refChan] ;
 | 
|---|
 | 2250 | // //   //ofs << "channel " << refChan << " is partly included in new channel 0" << " with fraction of " << ( 1.0 - frac ) << endl ;
 | 
|---|
 | 2251 | // //   //ofs << "newspec[0] = " << newspec[0] << " wsum = " << wsum << endl ;
 | 
|---|
 | 2252 | // //   newspec[0] /= wsum ;
 | 
|---|
 | 2253 | // //   //ofs << "newspec[0] = " << newspec[0] << endl ;
 | 
|---|
 | 2254 | // //   //ofs << "wedge = " << wedge << ", pile = " << pile << endl ;
 | 
|---|
| [1819] | 2255 | 
 | 
|---|
| [2462] | 2256 | // //   /***
 | 
|---|
 | 2257 | // //    * ichan = 1 - nChan-2
 | 
|---|
 | 2258 | // //    ***/
 | 
|---|
 | 2259 | // //   for ( int ichan = 1 ; ichan < nChan - 1 ; ichan++ ) {
 | 
|---|
 | 2260 | // //     pile += dnu ;
 | 
|---|
 | 2261 | // //     newspec[ichan] += frac * olddnu * oldspec[refChan] ;
 | 
|---|
 | 2262 | // //     newflag[ichan] = newflag[ichan] || oldflag[refChan] ;
 | 
|---|
 | 2263 | // //     //ofs << "channel " << refChan << " is partly included in new channel " << ichan << " with fraction of " << frac << endl ;
 | 
|---|
 | 2264 | // //     refChan++ ;
 | 
|---|
 | 2265 | // //     wedge += olddnu ;
 | 
|---|
 | 2266 | // //     wsum = frac * olddnu ;
 | 
|---|
 | 2267 | // //     //ofs << "newspec[" << ichan << "] = " << newspec[ichan] << " wsum = " << wsum << endl ;
 | 
|---|
 | 2268 | // //     while ( wedge < pile ) {
 | 
|---|
 | 2269 | // //       newspec[ichan] += olddnu * oldspec[refChan] ;
 | 
|---|
 | 2270 | // //       newflag[ichan] = newflag[ichan] || oldflag[refChan] ;
 | 
|---|
 | 2271 | // //       //ofs << "channel " << refChan << " is included in new channel " << ichan << endl ;
 | 
|---|
 | 2272 | // //       refChan++ ;
 | 
|---|
 | 2273 | // //       wedge += olddnu ;
 | 
|---|
 | 2274 | // //       wsum += olddnu ;
 | 
|---|
 | 2275 | // //       //ofs << "newspec[" << ichan << "] = " << newspec[ichan] << " wsum = " << wsum << endl ;
 | 
|---|
 | 2276 | // //     }
 | 
|---|
 | 2277 | // //     frac = ( wedge - pile ) / olddnu ;
 | 
|---|
 | 2278 | // //     wsum += ( 1.0 - frac ) * olddnu ;
 | 
|---|
 | 2279 | // //     newspec[ichan] += ( 1.0 - frac ) * olddnu * oldspec[refChan] ;
 | 
|---|
 | 2280 | // //     newflag[ichan] = newflag[ichan] || oldflag[refChan] ;
 | 
|---|
 | 2281 | // //     //ofs << "channel " << refChan << " is partly included in new channel " << ichan << " with fraction of " << ( 1.0 - frac ) << endl ;
 | 
|---|
 | 2282 | // //     //ofs << "wedge = " << wedge << ", pile = " << pile << endl ;
 | 
|---|
 | 2283 | // //     //ofs << "newspec[" << ichan << "] = " << newspec[ichan] << " wsum = " << wsum << endl ;
 | 
|---|
 | 2284 | // //     newspec[ichan] /= wsum ;
 | 
|---|
 | 2285 | // //     //ofs << "newspec[" << ichan << "] = " << newspec[ichan] << endl ;
 | 
|---|
 | 2286 | // //   }
 | 
|---|
| [1819] | 2287 | 
 | 
|---|
| [2462] | 2288 | // //   /***
 | 
|---|
 | 2289 | // //    * ichan = nChan-1
 | 
|---|
 | 2290 | // //    ***/
 | 
|---|
 | 2291 | // //   // NOTE: Assumed that all spectra have the same bandwidth
 | 
|---|
 | 2292 | // //   pile += dnu ;
 | 
|---|
 | 2293 | // //   newspec[nChan-1] += frac * olddnu * oldspec[refChan] ;
 | 
|---|
 | 2294 | // //   newflag[nChan-1] = newflag[nChan-1] || oldflag[refChan] ;
 | 
|---|
 | 2295 | // //   //ofs << "channel " << refChan << " is partly included in new channel " << nChan-1 << " with fraction of " << frac << endl ;
 | 
|---|
 | 2296 | // //   refChan++ ;
 | 
|---|
 | 2297 | // //   wedge += olddnu ;
 | 
|---|
 | 2298 | // //   wsum = frac * olddnu ;
 | 
|---|
 | 2299 | // //   //ofs << "newspec[" << nChan - 1 << "] = " << newspec[nChan-1] << " wsum = " << wsum << endl ;
 | 
|---|
 | 2300 | // //   for ( int jchan = refChan ; jchan < oldsize ; jchan++ ) {
 | 
|---|
 | 2301 | // //     newspec[nChan-1] += olddnu * oldspec[jchan] ;
 | 
|---|
 | 2302 | // //     newflag[nChan-1] = newflag[nChan-1] || oldflag[jchan] ;
 | 
|---|
 | 2303 | // //     wsum += olddnu ;
 | 
|---|
 | 2304 | // //     //ofs << "channel " << jchan << " is included in new channel " << nChan-1 << " with fraction of " << frac << endl ;
 | 
|---|
 | 2305 | // //     //ofs << "newspec[" << nChan - 1 << "] = " << newspec[nChan-1] << " wsum = " << wsum << endl ;
 | 
|---|
 | 2306 | // //   }
 | 
|---|
 | 2307 | // //   //ofs << "wedge = " << wedge << ", pile = " << pile << endl ;
 | 
|---|
 | 2308 | // //   //ofs << "newspec[" << nChan - 1 << "] = " << newspec[nChan-1] << " wsum = " << wsum << endl ;
 | 
|---|
 | 2309 | // //   newspec[nChan-1] /= wsum ;
 | 
|---|
 | 2310 | // //   //ofs << "newspec[" << nChan - 1 << "] = " << newspec[nChan-1] << endl ;
 | 
|---|
| [1819] | 2311 | 
 | 
|---|
| [2462] | 2312 | // //   // ofs.close() ;
 | 
|---|
 | 2313 | 
 | 
|---|
| [2032] | 2314 |   specCol_.put( irow, newspec ) ;
 | 
|---|
 | 2315 |   flagsCol_.put( irow, newflag ) ;
 | 
|---|
| [2431] | 2316 |   if (regridTsys) tsysCol_.put( irow, newtsys );
 | 
|---|
| [1819] | 2317 | 
 | 
|---|
 | 2318 |   return ;
 | 
|---|
 | 2319 | }
 | 
|---|
 | 2320 | 
 | 
|---|
| [2595] | 2321 | void Scantable::regridChannel( int nChan, double dnu, double fmin, int irow ) 
 | 
|---|
 | 2322 | {
 | 
|---|
 | 2323 |   Vector<Float> oldspec = specCol_( irow ) ;
 | 
|---|
 | 2324 |   Vector<uChar> oldflag = flagsCol_( irow ) ;
 | 
|---|
 | 2325 |   Vector<Float> oldtsys = tsysCol_( irow ) ;
 | 
|---|
 | 2326 |   Vector<Float> newspec( nChan, 0 ) ;
 | 
|---|
 | 2327 |   Vector<uChar> newflag( nChan, true ) ;
 | 
|---|
 | 2328 |   Vector<Float> newtsys ;
 | 
|---|
 | 2329 |   bool regridTsys = false ;
 | 
|---|
 | 2330 |   if (oldtsys.size() == oldspec.size()) {
 | 
|---|
 | 2331 |     regridTsys = true ;
 | 
|---|
 | 2332 |     newtsys.resize(nChan,false) ;
 | 
|---|
 | 2333 |     newtsys = 0 ;
 | 
|---|
 | 2334 |   }
 | 
|---|
 | 2335 |   
 | 
|---|
 | 2336 |   // regrid
 | 
|---|
 | 2337 |   vector<double> abcissa = getAbcissa( irow ) ;
 | 
|---|
 | 2338 |   int oldsize = abcissa.size() ;
 | 
|---|
 | 2339 |   double olddnu = abcissa[1] - abcissa[0] ;
 | 
|---|
 | 2340 |   //int ichan = 0 ;
 | 
|---|
 | 2341 |   double wsum = 0.0 ;
 | 
|---|
 | 2342 |   Vector<double> zi( nChan+1 ) ;
 | 
|---|
 | 2343 |   Vector<double> yi( oldsize + 1 ) ;
 | 
|---|
 | 2344 |   Block<uInt> count( nChan, 0 ) ;
 | 
|---|
 | 2345 |   yi[0] = abcissa[0] - 0.5 * olddnu ;
 | 
|---|
 | 2346 |   for ( int ii = 1 ; ii < oldsize ; ii++ )
 | 
|---|
 | 2347 |     yi[ii] = 0.5* (abcissa[ii-1] + abcissa[ii]) ;
 | 
|---|
 | 2348 |   yi[oldsize] = abcissa[oldsize-1] \
 | 
|---|
 | 2349 |     + 0.5 * (abcissa[oldsize-1] - abcissa[oldsize-2]) ;
 | 
|---|
 | 2350 | //   cout << "olddnu=" << olddnu << ", dnu=" << dnu << " (diff=" << olddnu-dnu << ")" << endl ;
 | 
|---|
 | 2351 | //   cout << "yi[0]=" << yi[0] << ", fmin=" << fmin << " (diff=" << yi[0]-fmin << ")" << endl ;
 | 
|---|
 | 2352 | //   cout << "oldsize=" << oldsize << ", nChan=" << nChan << endl ;
 | 
|---|
 | 2353 | 
 | 
|---|
 | 2354 |   // do not regrid if input parameters are almost same as current 
 | 
|---|
 | 2355 |   // spectral setup
 | 
|---|
 | 2356 |   double dnuDiff = abs( ( dnu - olddnu ) / olddnu ) ;
 | 
|---|
 | 2357 |   double oldfmin = min( yi[0], yi[oldsize] ) ;
 | 
|---|
 | 2358 |   double fminDiff = abs( ( fmin - oldfmin ) / oldfmin ) ;
 | 
|---|
 | 2359 |   double nChanDiff = nChan - oldsize ;
 | 
|---|
 | 2360 |   double eps = 1.0e-8 ;
 | 
|---|
 | 2361 |   if ( nChanDiff == 0 && dnuDiff < eps && fminDiff < eps )
 | 
|---|
 | 2362 |     return ;
 | 
|---|
 | 2363 | 
 | 
|---|
 | 2364 |   //zi[0] = abcissa[0] - 0.5 * olddnu ;
 | 
|---|
 | 2365 |   //zi[0] = ((olddnu*dnu > 0) ? yi[0] : yi[oldsize]) ;
 | 
|---|
 | 2366 |   if ( dnu > 0 )
 | 
|---|
 | 2367 |     zi[0] = fmin - 0.5 * dnu ;
 | 
|---|
 | 2368 |   else
 | 
|---|
 | 2369 |     zi[0] = fmin + nChan * abs(dnu) ;
 | 
|---|
 | 2370 |   for ( int ii = 1 ; ii < nChan ; ii++ )
 | 
|---|
 | 2371 |     zi[ii] = zi[0] + dnu * ii ;
 | 
|---|
 | 2372 |   zi[nChan] = zi[nChan-1] + dnu ;
 | 
|---|
 | 2373 |   // Access zi and yi in ascending order
 | 
|---|
 | 2374 |   int izs = ((dnu > 0) ? 0 : nChan ) ;
 | 
|---|
 | 2375 |   int ize = ((dnu > 0) ? nChan : 0 ) ;
 | 
|---|
 | 2376 |   int izincr = ((dnu > 0) ? 1 : -1 ) ;
 | 
|---|
 | 2377 |   int ichan =  ((olddnu > 0) ? 0 : oldsize ) ;
 | 
|---|
 | 2378 |   int iye = ((olddnu > 0) ? oldsize : 0 ) ;
 | 
|---|
 | 2379 |   int iyincr = ((olddnu > 0) ? 1 : -1 ) ;
 | 
|---|
 | 2380 |   //for ( int ii = izs ; ii != ize ; ii+=izincr ){
 | 
|---|
 | 2381 |   int ii = izs ;
 | 
|---|
 | 2382 |   while (ii != ize) {
 | 
|---|
 | 2383 |     // always zl < zr
 | 
|---|
 | 2384 |     double zl = zi[ii] ;
 | 
|---|
 | 2385 |     double zr = zi[ii+izincr] ;
 | 
|---|
 | 2386 |     // Need to access smaller index for the new spec, flag, and tsys.
 | 
|---|
 | 2387 |     // Values between zi[k] and zi[k+1] should be stored in newspec[k], etc.
 | 
|---|
 | 2388 |     int i = min(ii, ii+izincr) ;
 | 
|---|
 | 2389 |     //for ( int jj = ichan ; jj != iye ; jj+=iyincr ) {
 | 
|---|
 | 2390 |     int jj = ichan ;
 | 
|---|
 | 2391 |     while (jj != iye) {
 | 
|---|
 | 2392 |       // always yl < yr
 | 
|---|
 | 2393 |       double yl = yi[jj] ;
 | 
|---|
 | 2394 |       double yr = yi[jj+iyincr] ;
 | 
|---|
 | 2395 |       // Need to access smaller index for the original spec, flag, and tsys.
 | 
|---|
 | 2396 |       // Values between yi[k] and yi[k+1] are stored in oldspec[k], etc.
 | 
|---|
 | 2397 |       int j = min(jj, jj+iyincr) ;
 | 
|---|
 | 2398 |       if ( yr <= zl ) {
 | 
|---|
 | 2399 |         jj += iyincr ;
 | 
|---|
 | 2400 |         continue ;
 | 
|---|
 | 2401 |       }
 | 
|---|
 | 2402 |       else if ( yl <= zl ) {
 | 
|---|
 | 2403 |         if ( yr < zr ) {
 | 
|---|
 | 2404 |           if (!oldflag[j]) {
 | 
|---|
 | 2405 |             newspec[i] += oldspec[j] * ( yr - zl ) ;
 | 
|---|
 | 2406 |             if (regridTsys) newtsys[i] += oldtsys[j] * ( yr - zl ) ;
 | 
|---|
 | 2407 |             wsum += ( yr - zl ) ;
 | 
|---|
 | 2408 |             count[i]++ ;
 | 
|---|
 | 2409 |           }
 | 
|---|
 | 2410 |           newflag[i] = newflag[i] && oldflag[j] ;
 | 
|---|
 | 2411 |         }
 | 
|---|
 | 2412 |         else {
 | 
|---|
 | 2413 |           if (!oldflag[j]) {
 | 
|---|
 | 2414 |             newspec[i] += oldspec[j] * abs(dnu) ;
 | 
|---|
 | 2415 |             if (regridTsys) newtsys[i] += oldtsys[j] * abs(dnu) ;
 | 
|---|
 | 2416 |             wsum += abs(dnu) ;
 | 
|---|
 | 2417 |             count[i]++ ;
 | 
|---|
 | 2418 |           }
 | 
|---|
 | 2419 |           newflag[i] = newflag[i] && oldflag[j] ;
 | 
|---|
 | 2420 |           ichan = jj ;
 | 
|---|
 | 2421 |           break ;
 | 
|---|
 | 2422 |         }
 | 
|---|
 | 2423 |       }
 | 
|---|
 | 2424 |       else if ( yl < zr ) {
 | 
|---|
 | 2425 |         if ( yr <= zr ) {
 | 
|---|
 | 2426 |           if (!oldflag[j]) {
 | 
|---|
 | 2427 |             newspec[i] += oldspec[j] * ( yr - yl ) ;
 | 
|---|
 | 2428 |             if (regridTsys) newtsys[i] += oldtsys[j] * ( yr - yl ) ;
 | 
|---|
 | 2429 |             wsum += ( yr - yl ) ;
 | 
|---|
 | 2430 |             count[i]++ ;
 | 
|---|
 | 2431 |           }
 | 
|---|
 | 2432 |           newflag[i] = newflag[i] && oldflag[j] ;
 | 
|---|
 | 2433 |         }
 | 
|---|
 | 2434 |         else {
 | 
|---|
 | 2435 |           if (!oldflag[j]) {
 | 
|---|
 | 2436 |             newspec[i] += oldspec[j] * ( zr - yl ) ;
 | 
|---|
 | 2437 |             if (regridTsys) newtsys[i] += oldtsys[j] * ( zr - yl ) ;
 | 
|---|
 | 2438 |             wsum += ( zr - yl ) ;
 | 
|---|
 | 2439 |             count[i]++ ;
 | 
|---|
 | 2440 |           }
 | 
|---|
 | 2441 |           newflag[i] = newflag[i] && oldflag[j] ;
 | 
|---|
 | 2442 |           ichan = jj ;
 | 
|---|
 | 2443 |           break ;
 | 
|---|
 | 2444 |         }
 | 
|---|
 | 2445 |       }
 | 
|---|
 | 2446 |       else {
 | 
|---|
 | 2447 |         //ichan = jj - iyincr ;
 | 
|---|
 | 2448 |         break ;
 | 
|---|
 | 2449 |       }
 | 
|---|
 | 2450 |       jj += iyincr ;
 | 
|---|
 | 2451 |     }
 | 
|---|
 | 2452 |     if ( wsum != 0.0 ) {
 | 
|---|
 | 2453 |       newspec[i] /= wsum ;
 | 
|---|
 | 2454 |       if (regridTsys) newtsys[i] /= wsum ;
 | 
|---|
 | 2455 |     }
 | 
|---|
 | 2456 |     wsum = 0.0 ;
 | 
|---|
 | 2457 |     ii += izincr ;
 | 
|---|
 | 2458 |   }
 | 
|---|
 | 2459 | 
 | 
|---|
 | 2460 |   // flag out channels without data
 | 
|---|
 | 2461 |   // this is tentative since there is no specific definition 
 | 
|---|
 | 2462 |   // on bit flag...
 | 
|---|
 | 2463 |   uChar noData = 1 << 7 ; 
 | 
|---|
 | 2464 |   for ( Int i = 0 ; i < nChan ; i++ ) {
 | 
|---|
 | 2465 |     if ( count[i] == 0 ) 
 | 
|---|
 | 2466 |       newflag[i] = noData ;
 | 
|---|
 | 2467 |   }
 | 
|---|
 | 2468 | 
 | 
|---|
 | 2469 |   specCol_.put( irow, newspec ) ;
 | 
|---|
 | 2470 |   flagsCol_.put( irow, newflag ) ;
 | 
|---|
 | 2471 |   if (regridTsys) tsysCol_.put( irow, newtsys );
 | 
|---|
 | 2472 | 
 | 
|---|
 | 2473 |   return ;
 | 
|---|
 | 2474 | }
 | 
|---|
 | 2475 | 
 | 
|---|
| [1730] | 2476 | std::vector<float> Scantable::getWeather(int whichrow) const
 | 
|---|
 | 2477 | {
 | 
|---|
 | 2478 |   std::vector<float> out(5);
 | 
|---|
 | 2479 |   //Float temperature, pressure, humidity, windspeed, windaz;
 | 
|---|
 | 2480 |   weatherTable_.getEntry(out[0], out[1], out[2], out[3], out[4],
 | 
|---|
 | 2481 |                          mweatheridCol_(uInt(whichrow)));
 | 
|---|
 | 2482 | 
 | 
|---|
 | 2483 | 
 | 
|---|
 | 2484 |   return out;
 | 
|---|
| [1391] | 2485 | }
 | 
|---|
| [1730] | 2486 | 
 | 
|---|
| [2831] | 2487 | bool Scantable::isAllChannelsFlagged(uInt whichrow)
 | 
|---|
| [1907] | 2488 | {
 | 
|---|
| [2831] | 2489 |   uInt rflag;
 | 
|---|
 | 2490 |   flagrowCol_.get(whichrow, rflag);
 | 
|---|
 | 2491 |   if (rflag > 0)
 | 
|---|
 | 2492 |     return true;
 | 
|---|
| [1907] | 2493 |   uChar flag;
 | 
|---|
 | 2494 |   Vector<uChar> flags;
 | 
|---|
| [2047] | 2495 |   flagsCol_.get(whichrow, flags);
 | 
|---|
| [2012] | 2496 |   flag = flags[0];
 | 
|---|
| [2047] | 2497 |   for (uInt i = 1; i < flags.size(); ++i) {
 | 
|---|
| [2012] | 2498 |     flag &= flags[i];
 | 
|---|
 | 2499 |   }
 | 
|---|
| [2837] | 2500 |   //  return ((flag >> 7) == 1);
 | 
|---|
 | 2501 |   return (flag > 0);
 | 
|---|
| [2012] | 2502 | }
 | 
|---|
 | 2503 | 
 | 
|---|
| [2811] | 2504 | std::vector<std::string> Scantable::applyBaselineTable(const std::string& bltable, const bool returnfitresult, const std::string& outbltable, const bool outbltableexists, const bool overwrite)
 | 
|---|
| [2047] | 2505 | {
 | 
|---|
| [2773] | 2506 |   STBaselineTable btin = STBaselineTable(bltable);
 | 
|---|
| [2767] | 2507 | 
 | 
|---|
| [2773] | 2508 |   Vector<Bool> applyCol = btin.getApply();
 | 
|---|
| [2767] | 2509 |   int nRowBl = applyCol.size();
 | 
|---|
 | 2510 |   if (nRowBl != nrow()) {
 | 
|---|
 | 2511 |     throw(AipsError("Scantable and bltable have different number of rows."));
 | 
|---|
 | 2512 |   }
 | 
|---|
 | 2513 | 
 | 
|---|
 | 2514 |   std::vector<std::string> res;
 | 
|---|
 | 2515 |   res.clear();
 | 
|---|
 | 2516 | 
 | 
|---|
 | 2517 |   bool outBaselineTable = ((outbltable != "") && (!outbltableexists || overwrite));
 | 
|---|
 | 2518 |   bool bltableidentical = (bltable == outbltable);
 | 
|---|
| [2773] | 2519 |   STBaselineTable btout = STBaselineTable(*this);
 | 
|---|
 | 2520 |   ROScalarColumn<Double> tcol = ROScalarColumn<Double>(table_, "TIME");
 | 
|---|
 | 2521 |   Vector<Double> timeSecCol = tcol.getColumn();
 | 
|---|
| [2767] | 2522 | 
 | 
|---|
 | 2523 |   for (int whichrow = 0; whichrow < nRowBl; ++whichrow) {
 | 
|---|
 | 2524 |     if (applyCol[whichrow]) {
 | 
|---|
 | 2525 |       std::vector<float> spec = getSpectrum(whichrow);
 | 
|---|
 | 2526 | 
 | 
|---|
| [2773] | 2527 |       std::vector<bool> mask = btin.getMask(whichrow);  //use mask_bltable only
 | 
|---|
| [2767] | 2528 | 
 | 
|---|
| [2773] | 2529 |       STBaselineFunc::FuncName ftype = btin.getFunctionName(whichrow);
 | 
|---|
 | 2530 |       std::vector<int> fpar = btin.getFuncParam(whichrow);
 | 
|---|
| [2767] | 2531 |       std::vector<float> params;
 | 
|---|
 | 2532 |       float rms;
 | 
|---|
 | 2533 |       std::vector<float> resfit = doApplyBaselineTable(spec, mask, ftype, fpar, params, rms);
 | 
|---|
 | 2534 |       setSpectrum(resfit, whichrow);
 | 
|---|
 | 2535 | 
 | 
|---|
| [2811] | 2536 |       if (returnfitresult) {
 | 
|---|
 | 2537 |         res.push_back(packFittingResults(whichrow, params, rms));
 | 
|---|
 | 2538 |       }
 | 
|---|
| [2767] | 2539 | 
 | 
|---|
 | 2540 |       if (outBaselineTable) {
 | 
|---|
 | 2541 |         if (outbltableexists) {
 | 
|---|
 | 2542 |           if (overwrite) {
 | 
|---|
 | 2543 |             if (bltableidentical) {
 | 
|---|
| [2773] | 2544 |               btin.setresult(uInt(whichrow), Vector<Float>(params), Float(rms));
 | 
|---|
| [2767] | 2545 |             } else {
 | 
|---|
| [2773] | 2546 |               btout.setresult(uInt(whichrow), Vector<Float>(params), Float(rms));
 | 
|---|
| [2767] | 2547 |             }
 | 
|---|
 | 2548 |           }
 | 
|---|
 | 2549 |         } else {
 | 
|---|
| [2773] | 2550 |           btout.appenddata(getScan(whichrow), getCycle(whichrow), getBeam(whichrow), 
 | 
|---|
 | 2551 |                            getIF(whichrow), getPol(whichrow), 0, timeSecCol[whichrow], 
 | 
|---|
 | 2552 |                            true, ftype, fpar, std::vector<float>(), 
 | 
|---|
 | 2553 |                            getMaskListFromMask(mask), params, rms, spec.size(), 
 | 
|---|
 | 2554 |                            3.0, 0, 0.0, 0, std::vector<int>());
 | 
|---|
| [2767] | 2555 |         }
 | 
|---|
 | 2556 |       }
 | 
|---|
 | 2557 |     }
 | 
|---|
 | 2558 |   }
 | 
|---|
 | 2559 | 
 | 
|---|
 | 2560 |   if (outBaselineTable) {
 | 
|---|
 | 2561 |     if (bltableidentical) {
 | 
|---|
| [2773] | 2562 |       btin.save(outbltable);
 | 
|---|
| [2767] | 2563 |     } else {
 | 
|---|
| [2773] | 2564 |       btout.save(outbltable);
 | 
|---|
| [2767] | 2565 |     }
 | 
|---|
 | 2566 |   }
 | 
|---|
 | 2567 | 
 | 
|---|
 | 2568 |   return res;
 | 
|---|
 | 2569 | }
 | 
|---|
 | 2570 | 
 | 
|---|
| [2811] | 2571 | std::vector<std::string> Scantable::subBaseline(const std::vector<std::string>& blInfoList, const bool returnfitresult, const std::string& outbltable, const bool outbltableexists, const bool overwrite)
 | 
|---|
| [2767] | 2572 | {
 | 
|---|
 | 2573 |   int nRowBl = blInfoList.size();
 | 
|---|
 | 2574 |   int nRowSt = nrow();
 | 
|---|
 | 2575 | 
 | 
|---|
 | 2576 |   std::vector<std::string> res;
 | 
|---|
 | 2577 |   res.clear();
 | 
|---|
 | 2578 | 
 | 
|---|
 | 2579 |   bool outBaselineTable = ((outbltable != "") && (!outbltableexists || overwrite));
 | 
|---|
 | 2580 |   if ((outbltable != "") && outbltableexists && !overwrite) {
 | 
|---|
 | 2581 |     throw(AipsError("Cannot overwrite bltable. Set overwrite=True."));
 | 
|---|
 | 2582 |   }
 | 
|---|
 | 2583 | 
 | 
|---|
| [2773] | 2584 |   STBaselineTable bt = STBaselineTable(*this);
 | 
|---|
 | 2585 |   ROScalarColumn<Double> tcol = ROScalarColumn<Double>(table_, "TIME");
 | 
|---|
 | 2586 |   Vector<Double> timeSecCol = tcol.getColumn();
 | 
|---|
| [2767] | 2587 | 
 | 
|---|
 | 2588 |   if (outBaselineTable && !outbltableexists) {
 | 
|---|
 | 2589 |     for (int i = 0; i < nRowSt; ++i) {
 | 
|---|
| [2773] | 2590 |       bt.appendbasedata(getScan(i), getCycle(i), getBeam(i), getIF(i), getPol(i), 
 | 
|---|
| [2767] | 2591 |                          0, timeSecCol[i]);
 | 
|---|
| [2773] | 2592 |       bt.setApply(i, false);
 | 
|---|
| [2767] | 2593 |     }
 | 
|---|
 | 2594 |   }
 | 
|---|
 | 2595 | 
 | 
|---|
 | 2596 |   for (int i = 0; i < nRowBl; ++i) {
 | 
|---|
 | 2597 |     int irow;
 | 
|---|
 | 2598 |     STBaselineFunc::FuncName ftype;
 | 
|---|
 | 2599 |     std::vector<bool> mask;
 | 
|---|
 | 2600 |     std::vector<int> fpar;
 | 
|---|
 | 2601 |     float clipth;
 | 
|---|
 | 2602 |     int clipn;
 | 
|---|
 | 2603 |     bool uself;
 | 
|---|
 | 2604 |     float lfth;
 | 
|---|
 | 2605 |     std::vector<int> lfedge;
 | 
|---|
 | 2606 |     int lfavg;
 | 
|---|
 | 2607 |     parseBlInfo(blInfoList[i], irow, ftype, fpar, mask, clipth, clipn, uself, lfth, lfedge, lfavg);
 | 
|---|
 | 2608 | 
 | 
|---|
 | 2609 |     if (irow < nRowSt) {
 | 
|---|
 | 2610 |       std::vector<float> spec = getSpectrum(irow);
 | 
|---|
 | 2611 |       std::vector<float> params;
 | 
|---|
 | 2612 |       float rms;
 | 
|---|
 | 2613 |       std::vector<bool> finalmask;
 | 
|---|
 | 2614 | 
 | 
|---|
 | 2615 |       std::vector<float> resfit = doSubtractBaseline(spec, mask, ftype, fpar, params, rms, finalmask, clipth, clipn, uself, irow, lfth, lfedge, lfavg);
 | 
|---|
 | 2616 |       setSpectrum(resfit, irow);
 | 
|---|
 | 2617 | 
 | 
|---|
| [2811] | 2618 |       if (returnfitresult) {
 | 
|---|
 | 2619 |         res.push_back(packFittingResults(irow, params, rms));
 | 
|---|
 | 2620 |       }
 | 
|---|
 | 2621 | 
 | 
|---|
| [2767] | 2622 |       if (outBaselineTable) {
 | 
|---|
 | 2623 |         Vector<Int> fparam(fpar.size());
 | 
|---|
 | 2624 |         for (uInt j = 0; j < fparam.size(); ++j) {
 | 
|---|
 | 2625 |           fparam[j] = (Int)fpar[j];
 | 
|---|
 | 2626 |         }
 | 
|---|
 | 2627 | 
 | 
|---|
| [2773] | 2628 |         bt.setdata(uInt(irow), 
 | 
|---|
| [2767] | 2629 |                     uInt(getScan(irow)), uInt(getCycle(irow)), 
 | 
|---|
 | 2630 |                     uInt(getBeam(irow)), uInt(getIF(irow)), uInt(getPol(irow)), 
 | 
|---|
 | 2631 |                     uInt(0), timeSecCol[irow], Bool(true), ftype, fparam, 
 | 
|---|
| [2773] | 2632 |                     Vector<Float>(), getMaskListFromMask(finalmask), Vector<Float>(params), 
 | 
|---|
| [2767] | 2633 |                     Float(rms), uInt(spec.size()), Float(clipth), uInt(clipn), 
 | 
|---|
 | 2634 |                     Float(0.0), uInt(0), Vector<uInt>());
 | 
|---|
 | 2635 |       }
 | 
|---|
 | 2636 | 
 | 
|---|
 | 2637 |     }
 | 
|---|
 | 2638 |   }
 | 
|---|
 | 2639 | 
 | 
|---|
 | 2640 |   if (outBaselineTable) {
 | 
|---|
| [2773] | 2641 |     bt.save(outbltable);
 | 
|---|
| [2767] | 2642 |   }
 | 
|---|
 | 2643 | 
 | 
|---|
 | 2644 |   return res;
 | 
|---|
 | 2645 | }
 | 
|---|
 | 2646 | 
 | 
|---|
| [2773] | 2647 | std::vector<float> Scantable::doApplyBaselineTable(std::vector<float>& spec, 
 | 
|---|
 | 2648 |                                                    std::vector<bool>& mask, 
 | 
|---|
 | 2649 |                                                    const STBaselineFunc::FuncName ftype, 
 | 
|---|
 | 2650 |                                                    std::vector<int>& fpar, 
 | 
|---|
 | 2651 |                                                    std::vector<float>& params, 
 | 
|---|
 | 2652 |                                                    float&rms)
 | 
|---|
| [2767] | 2653 | {
 | 
|---|
 | 2654 |   std::vector<bool> finalmask;
 | 
|---|
 | 2655 |   std::vector<int> lfedge;
 | 
|---|
 | 2656 |   return doSubtractBaseline(spec, mask, ftype, fpar, params, rms, finalmask, 0.0, 0, false, 0, 0.0, lfedge, 0);
 | 
|---|
 | 2657 | }
 | 
|---|
 | 2658 | 
 | 
|---|
| [2774] | 2659 | std::vector<float> Scantable::doSubtractBaseline(std::vector<float>& spec,
 | 
|---|
 | 2660 |                                                  std::vector<bool>& mask,
 | 
|---|
 | 2661 |                                                  const STBaselineFunc::FuncName ftype,
 | 
|---|
 | 2662 |                                                  std::vector<int>& fpar,
 | 
|---|
 | 2663 |                                                  std::vector<float>& params,
 | 
|---|
 | 2664 |                                                  float&rms,
 | 
|---|
 | 2665 |                                                  std::vector<bool>& finalmask,
 | 
|---|
 | 2666 |                                                  float clipth,
 | 
|---|
 | 2667 |                                                  int clipn,
 | 
|---|
 | 2668 |                                                  bool uself,
 | 
|---|
 | 2669 |                                                  int irow,
 | 
|---|
 | 2670 |                                                  float lfth,
 | 
|---|
 | 2671 |                                                  std::vector<int>& lfedge,
 | 
|---|
 | 2672 |                                                  int lfavg)
 | 
|---|
| [2767] | 2673 | {
 | 
|---|
 | 2674 |   if (uself) {
 | 
|---|
 | 2675 |     STLineFinder lineFinder = STLineFinder();
 | 
|---|
| [2774] | 2676 |     initLineFinder(lfedge, lfth, lfavg, lineFinder);
 | 
|---|
| [2767] | 2677 |     std::vector<int> currentEdge;
 | 
|---|
| [2774] | 2678 |     mask = getCompositeChanMask(irow, mask, lfedge, currentEdge, lineFinder);
 | 
|---|
| [2767] | 2679 |   }
 | 
|---|
 | 2680 | 
 | 
|---|
 | 2681 |   std::vector<float> res;
 | 
|---|
 | 2682 |   if (ftype == STBaselineFunc::Polynomial) {
 | 
|---|
 | 2683 |     res = doPolynomialFitting(spec, mask, fpar[0], params, rms, finalmask, clipth, clipn);
 | 
|---|
 | 2684 |   } else if (ftype == STBaselineFunc::Chebyshev) {
 | 
|---|
 | 2685 |     res = doChebyshevFitting(spec, mask, fpar[0], params, rms, finalmask, clipth, clipn);
 | 
|---|
 | 2686 |   } else if (ftype == STBaselineFunc::CSpline) {
 | 
|---|
 | 2687 |     if (fpar.size() > 1) { // reading from baseline table in which pieceEdges are already calculated and stored.
 | 
|---|
 | 2688 |       res = doCubicSplineFitting(spec, mask, fpar, params, rms, finalmask, clipth, clipn);
 | 
|---|
 | 2689 |     } else {               // usual cspline fitting by giving nPiece only. fpar will be replaced with pieceEdges. 
 | 
|---|
 | 2690 |       res = doCubicSplineFitting(spec, mask, fpar[0], fpar, params, rms, finalmask, clipth, clipn);
 | 
|---|
 | 2691 |     }
 | 
|---|
 | 2692 |   } else if (ftype == STBaselineFunc::Sinusoid) {
 | 
|---|
 | 2693 |     res = doSinusoidFitting(spec, mask, fpar, params, rms, finalmask, clipth, clipn);
 | 
|---|
 | 2694 |   }
 | 
|---|
 | 2695 | 
 | 
|---|
 | 2696 |   return res;
 | 
|---|
 | 2697 | }
 | 
|---|
 | 2698 | 
 | 
|---|
 | 2699 | std::string Scantable::packFittingResults(const int irow, const std::vector<float>& params, const float rms)
 | 
|---|
 | 2700 | {
 | 
|---|
 | 2701 |   // returned value: "irow:params[0],params[1],..,params[n-1]:rms"
 | 
|---|
 | 2702 |   ostringstream os;
 | 
|---|
 | 2703 |   os << irow << ':';
 | 
|---|
 | 2704 |   for (uInt i = 0; i < params.size(); ++i) {
 | 
|---|
 | 2705 |     if (i > 0) {
 | 
|---|
 | 2706 |       os << ',';
 | 
|---|
 | 2707 |     }
 | 
|---|
 | 2708 |     os << params[i];
 | 
|---|
 | 2709 |   }
 | 
|---|
 | 2710 |   os << ':' << rms;
 | 
|---|
 | 2711 | 
 | 
|---|
 | 2712 |   return os.str();
 | 
|---|
 | 2713 | }
 | 
|---|
 | 2714 | 
 | 
|---|
 | 2715 | void Scantable::parseBlInfo(const std::string& blInfo, int& irow, STBaselineFunc::FuncName& ftype, std::vector<int>& fpar, std::vector<bool>& mask, float& thresClip, int& nIterClip, bool& useLineFinder, float& thresLF, std::vector<int>& edgeLF, int& avgLF)
 | 
|---|
 | 2716 | {
 | 
|---|
 | 2717 |   // The baseline info to be parsed must be column-delimited string like 
 | 
|---|
 | 2718 |   // "0:chebyshev:5:3,5,169,174,485,487" where the elements are 
 | 
|---|
 | 2719 |   // row number, funcType, funcOrder, maskList, clipThreshold, clipNIter, 
 | 
|---|
 | 2720 |   // useLineFinder, lfThreshold, lfEdge and lfChanAvgLimit.
 | 
|---|
 | 2721 | 
 | 
|---|
 | 2722 |   std::vector<string> res = splitToStringList(blInfo, ':');
 | 
|---|
 | 2723 |   if (res.size() < 4) {
 | 
|---|
 | 2724 |     throw(AipsError("baseline info has bad format")) ;
 | 
|---|
 | 2725 |   }
 | 
|---|
 | 2726 | 
 | 
|---|
 | 2727 |   string ftype0, fpar0, masklist0, uself0, edge0;
 | 
|---|
 | 2728 |   std::vector<int> masklist;
 | 
|---|
 | 2729 | 
 | 
|---|
 | 2730 |   stringstream ss;
 | 
|---|
 | 2731 |   ss << res[0];
 | 
|---|
 | 2732 |   ss >> irow;
 | 
|---|
 | 2733 |   ss.clear(); ss.str("");
 | 
|---|
 | 2734 | 
 | 
|---|
 | 2735 |   ss << res[1];
 | 
|---|
 | 2736 |   ss >> ftype0;
 | 
|---|
 | 2737 |   if (ftype0 == "poly") {
 | 
|---|
 | 2738 |     ftype = STBaselineFunc::Polynomial;
 | 
|---|
 | 2739 |   } else if (ftype0 == "cspline") {
 | 
|---|
 | 2740 |     ftype = STBaselineFunc::CSpline;
 | 
|---|
 | 2741 |   } else if (ftype0 == "sinusoid") {
 | 
|---|
 | 2742 |     ftype = STBaselineFunc::Sinusoid;
 | 
|---|
 | 2743 |   } else if (ftype0 == "chebyshev") {
 | 
|---|
 | 2744 |     ftype = STBaselineFunc::Chebyshev;
 | 
|---|
 | 2745 |   } else {
 | 
|---|
 | 2746 |     throw(AipsError("invalid function type."));
 | 
|---|
 | 2747 |   }
 | 
|---|
 | 2748 |   ss.clear(); ss.str("");
 | 
|---|
 | 2749 | 
 | 
|---|
 | 2750 |   ss << res[2];
 | 
|---|
 | 2751 |   ss >> fpar0;
 | 
|---|
 | 2752 |   fpar = splitToIntList(fpar0, ',');
 | 
|---|
 | 2753 |   ss.clear(); ss.str("");
 | 
|---|
 | 2754 | 
 | 
|---|
 | 2755 |   ss << res[3];
 | 
|---|
 | 2756 |   ss >> masklist0;
 | 
|---|
 | 2757 |   mask = getMaskFromMaskList(nchan(getIF(irow)), splitToIntList(masklist0, ','));
 | 
|---|
 | 2758 | 
 | 
|---|
 | 2759 |   ss << res[4];
 | 
|---|
 | 2760 |   ss >> thresClip;
 | 
|---|
 | 2761 |   ss.clear(); ss.str("");
 | 
|---|
 | 2762 | 
 | 
|---|
 | 2763 |   ss << res[5];
 | 
|---|
 | 2764 |   ss >> nIterClip;
 | 
|---|
 | 2765 |   ss.clear(); ss.str("");
 | 
|---|
 | 2766 | 
 | 
|---|
 | 2767 |   ss << res[6];
 | 
|---|
 | 2768 |   ss >> uself0;
 | 
|---|
 | 2769 |   if (uself0 == "true") {
 | 
|---|
 | 2770 |     useLineFinder = true;
 | 
|---|
 | 2771 |   } else {
 | 
|---|
 | 2772 |     useLineFinder = false;
 | 
|---|
 | 2773 |   }
 | 
|---|
 | 2774 |   ss.clear(); ss.str("");
 | 
|---|
 | 2775 | 
 | 
|---|
 | 2776 |   if (useLineFinder) {
 | 
|---|
 | 2777 |     ss << res[7];
 | 
|---|
 | 2778 |     ss >> thresLF;
 | 
|---|
 | 2779 |     ss.clear(); ss.str("");
 | 
|---|
 | 2780 | 
 | 
|---|
 | 2781 |     ss << res[8];
 | 
|---|
 | 2782 |     ss >> edge0;
 | 
|---|
 | 2783 |     edgeLF = splitToIntList(edge0, ',');
 | 
|---|
 | 2784 |     ss.clear(); ss.str("");
 | 
|---|
 | 2785 | 
 | 
|---|
 | 2786 |     ss << res[9];
 | 
|---|
 | 2787 |     ss >> avgLF;
 | 
|---|
 | 2788 |     ss.clear(); ss.str("");
 | 
|---|
 | 2789 |   }
 | 
|---|
 | 2790 | 
 | 
|---|
 | 2791 | }
 | 
|---|
 | 2792 | 
 | 
|---|
 | 2793 | std::vector<int> Scantable::splitToIntList(const std::string& s, const char delim)
 | 
|---|
 | 2794 | {
 | 
|---|
 | 2795 |   istringstream iss(s);
 | 
|---|
 | 2796 |   string tmp;
 | 
|---|
 | 2797 |   int tmpi;
 | 
|---|
 | 2798 |   std::vector<int> res;
 | 
|---|
 | 2799 |   stringstream ss;
 | 
|---|
 | 2800 |   while (getline(iss, tmp, delim)) {
 | 
|---|
 | 2801 |     ss << tmp;
 | 
|---|
 | 2802 |     ss >> tmpi;
 | 
|---|
 | 2803 |     res.push_back(tmpi);
 | 
|---|
 | 2804 |     ss.clear(); ss.str("");
 | 
|---|
 | 2805 |   }
 | 
|---|
 | 2806 | 
 | 
|---|
 | 2807 |   return res;
 | 
|---|
 | 2808 | }
 | 
|---|
 | 2809 | 
 | 
|---|
 | 2810 | std::vector<string> Scantable::splitToStringList(const std::string& s, const char delim)
 | 
|---|
 | 2811 | {
 | 
|---|
 | 2812 |   istringstream iss(s);
 | 
|---|
 | 2813 |   std::string tmp;
 | 
|---|
 | 2814 |   std::vector<string> res;
 | 
|---|
 | 2815 |   while (getline(iss, tmp, delim)) {
 | 
|---|
 | 2816 |     res.push_back(tmp);
 | 
|---|
 | 2817 |   }
 | 
|---|
 | 2818 | 
 | 
|---|
 | 2819 |   return res;
 | 
|---|
 | 2820 | }
 | 
|---|
 | 2821 | 
 | 
|---|
 | 2822 | std::vector<bool> Scantable::getMaskFromMaskList(const int nchan, const std::vector<int>& masklist)
 | 
|---|
 | 2823 | {
 | 
|---|
 | 2824 |   if (masklist.size() % 2 != 0) {
 | 
|---|
 | 2825 |     throw(AipsError("masklist must have even number of elements."));
 | 
|---|
 | 2826 |   }
 | 
|---|
 | 2827 | 
 | 
|---|
 | 2828 |   std::vector<bool> res(nchan);
 | 
|---|
 | 2829 | 
 | 
|---|
 | 2830 |   for (int i = 0; i < nchan; ++i) {
 | 
|---|
 | 2831 |     res[i] = false;
 | 
|---|
 | 2832 |   }
 | 
|---|
 | 2833 |   for (uInt j = 0; j < masklist.size(); j += 2) {
 | 
|---|
 | 2834 |     for (int i = masklist[j]; i <= masklist[j+1]; ++i) {
 | 
|---|
 | 2835 |       res[i] = true;
 | 
|---|
 | 2836 |     }
 | 
|---|
 | 2837 |   }
 | 
|---|
 | 2838 | 
 | 
|---|
 | 2839 |   return res;
 | 
|---|
 | 2840 | }
 | 
|---|
 | 2841 | 
 | 
|---|
| [2773] | 2842 | Vector<uInt> Scantable::getMaskListFromMask(const std::vector<bool>& mask)
 | 
|---|
| [2767] | 2843 | {
 | 
|---|
| [2773] | 2844 |   std::vector<int> masklist;
 | 
|---|
 | 2845 |   masklist.clear();
 | 
|---|
 | 2846 | 
 | 
|---|
 | 2847 |   for (uInt i = 0; i < mask.size(); ++i) {
 | 
|---|
 | 2848 |     if (mask[i]) {
 | 
|---|
 | 2849 |       if ((i == 0)||(i == mask.size()-1)) {
 | 
|---|
 | 2850 |         masklist.push_back(i);
 | 
|---|
 | 2851 |       } else {
 | 
|---|
 | 2852 |         if ((mask[i])&&(!mask[i-1])) {
 | 
|---|
 | 2853 |           masklist.push_back(i);
 | 
|---|
 | 2854 |         }
 | 
|---|
 | 2855 |         if ((mask[i])&&(!mask[i+1])) {
 | 
|---|
 | 2856 |           masklist.push_back(i);
 | 
|---|
 | 2857 |         }
 | 
|---|
 | 2858 |       }
 | 
|---|
 | 2859 |     }
 | 
|---|
 | 2860 |   }
 | 
|---|
 | 2861 | 
 | 
|---|
 | 2862 |   Vector<uInt> res(masklist.size());
 | 
|---|
 | 2863 |   for (uInt i = 0; i < masklist.size(); ++i) {
 | 
|---|
 | 2864 |     res[i] = (uInt)masklist[i];
 | 
|---|
 | 2865 |   }
 | 
|---|
 | 2866 | 
 | 
|---|
 | 2867 |   return res;
 | 
|---|
 | 2868 | }
 | 
|---|
 | 2869 | 
 | 
|---|
 | 2870 | void Scantable::initialiseBaselining(const std::string& blfile, 
 | 
|---|
 | 2871 |                                      ofstream& ofs, 
 | 
|---|
 | 2872 |                                      const bool outLogger, 
 | 
|---|
 | 2873 |                                      bool& outTextFile, 
 | 
|---|
 | 2874 |                                      bool& csvFormat, 
 | 
|---|
 | 2875 |                                      String& coordInfo, 
 | 
|---|
 | 2876 |                                      bool& hasSameNchan, 
 | 
|---|
 | 2877 |                                      const std::string& progressInfo, 
 | 
|---|
 | 2878 |                                      bool& showProgress, 
 | 
|---|
 | 2879 |                                      int& minNRow, 
 | 
|---|
 | 2880 |                                      Vector<Double>& timeSecCol)
 | 
|---|
 | 2881 | {
 | 
|---|
 | 2882 |   csvFormat = false;
 | 
|---|
 | 2883 |   outTextFile = false;
 | 
|---|
 | 2884 | 
 | 
|---|
 | 2885 |   if (blfile != "") {
 | 
|---|
 | 2886 |     csvFormat = (blfile.substr(0, 1) == "T");
 | 
|---|
 | 2887 |     ofs.open(blfile.substr(1).c_str(), ios::out | ios::app);
 | 
|---|
 | 2888 |     if (ofs) outTextFile = true;
 | 
|---|
 | 2889 |   }
 | 
|---|
 | 2890 | 
 | 
|---|
 | 2891 |   coordInfo = "";
 | 
|---|
 | 2892 |   hasSameNchan = true;
 | 
|---|
 | 2893 | 
 | 
|---|
 | 2894 |   if (outLogger || outTextFile) {
 | 
|---|
 | 2895 |     coordInfo = getCoordInfo()[0];
 | 
|---|
 | 2896 |     if (coordInfo == "") coordInfo = "channel";
 | 
|---|
 | 2897 |     hasSameNchan = hasSameNchanOverIFs();
 | 
|---|
 | 2898 |   }
 | 
|---|
 | 2899 | 
 | 
|---|
 | 2900 |   parseProgressInfo(progressInfo, showProgress, minNRow);
 | 
|---|
 | 2901 | 
 | 
|---|
 | 2902 |   ROScalarColumn<Double> tcol = ROScalarColumn<Double>(table_, "TIME");
 | 
|---|
 | 2903 |   timeSecCol = tcol.getColumn();
 | 
|---|
 | 2904 | }
 | 
|---|
 | 2905 | 
 | 
|---|
 | 2906 | void Scantable::finaliseBaselining(const bool outBaselineTable, 
 | 
|---|
 | 2907 |                                    STBaselineTable* pbt, 
 | 
|---|
 | 2908 |                                    const string& bltable, 
 | 
|---|
 | 2909 |                                    const bool outTextFile, 
 | 
|---|
 | 2910 |                                    ofstream& ofs)
 | 
|---|
 | 2911 | {
 | 
|---|
 | 2912 |   if (outBaselineTable) {
 | 
|---|
 | 2913 |     pbt->save(bltable);
 | 
|---|
 | 2914 |   }
 | 
|---|
 | 2915 | 
 | 
|---|
 | 2916 |   if (outTextFile) ofs.close();
 | 
|---|
 | 2917 | }
 | 
|---|
 | 2918 | 
 | 
|---|
 | 2919 | void Scantable::initLineFinder(const std::vector<int>& edge, 
 | 
|---|
 | 2920 |                                const float threshold, 
 | 
|---|
 | 2921 |                                const int chanAvgLimit,
 | 
|---|
 | 2922 |                                STLineFinder& lineFinder)
 | 
|---|
 | 2923 | {
 | 
|---|
| [2774] | 2924 |   if ((edge.size() > 2) && (edge.size() < getIFNos().size()*2)) {
 | 
|---|
| [2773] | 2925 |     throw(AipsError("Length of edge element info is less than that of IFs"));
 | 
|---|
 | 2926 |   }
 | 
|---|
 | 2927 | 
 | 
|---|
 | 2928 |   lineFinder.setOptions(threshold, 3, chanAvgLimit);
 | 
|---|
 | 2929 | }
 | 
|---|
 | 2930 | 
 | 
|---|
 | 2931 | void Scantable::polyBaseline(const std::vector<bool>& mask, int order, 
 | 
|---|
 | 2932 |                              float thresClip, int nIterClip, 
 | 
|---|
 | 2933 |                              bool getResidual, 
 | 
|---|
 | 2934 |                              const std::string& progressInfo, 
 | 
|---|
 | 2935 |                              const bool outLogger, const std::string& blfile, 
 | 
|---|
 | 2936 |                              const std::string& bltable)
 | 
|---|
 | 2937 | {
 | 
|---|
| [2774] | 2938 |   /****
 | 
|---|
| [2767] | 2939 |   double TimeStart = mathutil::gettimeofday_sec();
 | 
|---|
| [2774] | 2940 |   ****/
 | 
|---|
| [2767] | 2941 | 
 | 
|---|
| [2193] | 2942 |   try {
 | 
|---|
 | 2943 |     ofstream ofs;
 | 
|---|
| [2773] | 2944 |     String coordInfo;
 | 
|---|
 | 2945 |     bool hasSameNchan, outTextFile, csvFormat, showProgress;
 | 
|---|
| [2193] | 2946 |     int minNRow;
 | 
|---|
| [2767] | 2947 |     int nRow = nrow();
 | 
|---|
| [2773] | 2948 |     std::vector<bool> chanMask, finalChanMask;
 | 
|---|
| [2767] | 2949 |     float rms;
 | 
|---|
| [2773] | 2950 |     bool outBaselineTable = (bltable != "");
 | 
|---|
 | 2951 |     STBaselineTable bt = STBaselineTable(*this);
 | 
|---|
 | 2952 |     Vector<Double> timeSecCol;
 | 
|---|
| [2767] | 2953 | 
 | 
|---|
| [2773] | 2954 |     initialiseBaselining(blfile, ofs, outLogger, outTextFile, csvFormat, 
 | 
|---|
 | 2955 |                          coordInfo, hasSameNchan, 
 | 
|---|
 | 2956 |                          progressInfo, showProgress, minNRow, 
 | 
|---|
 | 2957 |                          timeSecCol);
 | 
|---|
| [2767] | 2958 | 
 | 
|---|
| [2773] | 2959 |     std::vector<int> nChanNos;
 | 
|---|
 | 2960 |     std::vector<std::vector<std::vector<double> > > modelReservoir;
 | 
|---|
 | 2961 |     modelReservoir = getPolynomialModelReservoir(order, 
 | 
|---|
 | 2962 |                                                  &Scantable::getNormalPolynomial,
 | 
|---|
 | 2963 |                                                  nChanNos);
 | 
|---|
 | 2964 | 
 | 
|---|
| [2193] | 2965 |     for (int whichrow = 0; whichrow < nRow; ++whichrow) {
 | 
|---|
| [2767] | 2966 |       std::vector<float> sp = getSpectrum(whichrow);
 | 
|---|
| [2193] | 2967 |       chanMask = getCompositeChanMask(whichrow, mask);
 | 
|---|
| [2773] | 2968 | 
 | 
|---|
 | 2969 |       std::vector<float> params;
 | 
|---|
| [2767] | 2970 |       int nClipped = 0;
 | 
|---|
| [2773] | 2971 |       std::vector<float> res = doLeastSquareFitting(sp, chanMask, 
 | 
|---|
 | 2972 |                                    modelReservoir[getIdxOfNchan(sp.size(), nChanNos)], 
 | 
|---|
 | 2973 |                                    params, rms, finalChanMask, 
 | 
|---|
 | 2974 |                                    nClipped, thresClip, nIterClip, getResidual);
 | 
|---|
| [2767] | 2975 | 
 | 
|---|
| [2773] | 2976 |       if (outBaselineTable) {
 | 
|---|
 | 2977 |         bt.appenddata(getScan(whichrow), getCycle(whichrow), getBeam(whichrow), 
 | 
|---|
 | 2978 |                       getIF(whichrow), getPol(whichrow), 0, timeSecCol[whichrow], 
 | 
|---|
 | 2979 |                       true, STBaselineFunc::Polynomial, order, std::vector<float>(),
 | 
|---|
 | 2980 |                       getMaskListFromMask(finalChanMask), params, rms, sp.size(), 
 | 
|---|
 | 2981 |                       thresClip, nIterClip, 0.0, 0, std::vector<int>());
 | 
|---|
| [2767] | 2982 |       } else {
 | 
|---|
 | 2983 |         setSpectrum(res, whichrow);
 | 
|---|
 | 2984 |       }
 | 
|---|
 | 2985 | 
 | 
|---|
| [2773] | 2986 |       outputFittingResult(outLogger, outTextFile, csvFormat, chanMask, whichrow, 
 | 
|---|
 | 2987 |                           coordInfo, hasSameNchan, ofs, "polyBaseline()", 
 | 
|---|
 | 2988 |                           params, nClipped);
 | 
|---|
| [2193] | 2989 |       showProgressOnTerminal(whichrow, nRow, showProgress, minNRow);
 | 
|---|
 | 2990 |     }
 | 
|---|
 | 2991 | 
 | 
|---|
| [2773] | 2992 |     finaliseBaselining(outBaselineTable, &bt, bltable, outTextFile, ofs);
 | 
|---|
| [2193] | 2993 | 
 | 
|---|
 | 2994 |   } catch (...) {
 | 
|---|
 | 2995 |     throw;
 | 
|---|
| [2047] | 2996 |   }
 | 
|---|
| [2767] | 2997 | 
 | 
|---|
| [2774] | 2998 |   /****
 | 
|---|
| [2767] | 2999 |   double TimeEnd = mathutil::gettimeofday_sec();
 | 
|---|
 | 3000 |   double elapse1 = TimeEnd - TimeStart;
 | 
|---|
 | 3001 |   std::cout << "poly-new   : " << elapse1 << " (sec.)" << endl;
 | 
|---|
| [2774] | 3002 |   ****/
 | 
|---|
| [2047] | 3003 | }
 | 
|---|
 | 3004 | 
 | 
|---|
| [2773] | 3005 | void Scantable::autoPolyBaseline(const std::vector<bool>& mask, int order, 
 | 
|---|
 | 3006 |                                  float thresClip, int nIterClip, 
 | 
|---|
 | 3007 |                                  const std::vector<int>& edge, 
 | 
|---|
 | 3008 |                                  float threshold, int chanAvgLimit, 
 | 
|---|
 | 3009 |                                  bool getResidual, 
 | 
|---|
 | 3010 |                                  const std::string& progressInfo, 
 | 
|---|
 | 3011 |                                  const bool outLogger, const std::string& blfile, 
 | 
|---|
 | 3012 |                                  const std::string& bltable)
 | 
|---|
| [2047] | 3013 | {
 | 
|---|
| [2193] | 3014 |   try {
 | 
|---|
 | 3015 |     ofstream ofs;
 | 
|---|
| [2773] | 3016 |     String coordInfo;
 | 
|---|
 | 3017 |     bool hasSameNchan, outTextFile, csvFormat, showProgress;
 | 
|---|
| [2767] | 3018 |     int minNRow;
 | 
|---|
 | 3019 |     int nRow = nrow();
 | 
|---|
| [2773] | 3020 |     std::vector<bool> chanMask, finalChanMask;
 | 
|---|
| [2767] | 3021 |     float rms;
 | 
|---|
| [2773] | 3022 |     bool outBaselineTable = (bltable != "");
 | 
|---|
 | 3023 |     STBaselineTable bt = STBaselineTable(*this);
 | 
|---|
 | 3024 |     Vector<Double> timeSecCol;
 | 
|---|
 | 3025 |     STLineFinder lineFinder = STLineFinder();
 | 
|---|
| [2189] | 3026 | 
 | 
|---|
| [2773] | 3027 |     initialiseBaselining(blfile, ofs, outLogger, outTextFile, csvFormat, 
 | 
|---|
 | 3028 |                          coordInfo, hasSameNchan, 
 | 
|---|
 | 3029 |                          progressInfo, showProgress, minNRow, 
 | 
|---|
 | 3030 |                          timeSecCol);
 | 
|---|
| [2767] | 3031 | 
 | 
|---|
| [2773] | 3032 |     initLineFinder(edge, threshold, chanAvgLimit, lineFinder);
 | 
|---|
 | 3033 | 
 | 
|---|
 | 3034 |     std::vector<int> nChanNos;
 | 
|---|
 | 3035 |     std::vector<std::vector<std::vector<double> > > modelReservoir;
 | 
|---|
 | 3036 |     modelReservoir = getPolynomialModelReservoir(order, 
 | 
|---|
 | 3037 |                                                  &Scantable::getNormalPolynomial,
 | 
|---|
 | 3038 |                                                  nChanNos);
 | 
|---|
 | 3039 | 
 | 
|---|
| [2193] | 3040 |     for (int whichrow = 0; whichrow < nRow; ++whichrow) {
 | 
|---|
| [2767] | 3041 |       std::vector<float> sp = getSpectrum(whichrow);
 | 
|---|
| [2193] | 3042 |       std::vector<int> currentEdge;
 | 
|---|
| [2773] | 3043 |       chanMask = getCompositeChanMask(whichrow, mask, edge, currentEdge, lineFinder);
 | 
|---|
| [2193] | 3044 | 
 | 
|---|
| [2773] | 3045 |       std::vector<float> params;
 | 
|---|
| [2767] | 3046 |       int nClipped = 0;
 | 
|---|
| [2773] | 3047 |       std::vector<float> res = doLeastSquareFitting(sp, chanMask, 
 | 
|---|
 | 3048 |                                    modelReservoir[getIdxOfNchan(sp.size(), nChanNos)], 
 | 
|---|
 | 3049 |                                    params, rms, finalChanMask,
 | 
|---|
 | 3050 |                                    nClipped, thresClip, nIterClip, getResidual);
 | 
|---|
| [2193] | 3051 | 
 | 
|---|
| [2773] | 3052 |       if (outBaselineTable) {
 | 
|---|
 | 3053 |         bt.appenddata(getScan(whichrow), getCycle(whichrow), getBeam(whichrow), 
 | 
|---|
 | 3054 |                       getIF(whichrow), getPol(whichrow), 0, timeSecCol[whichrow], 
 | 
|---|
 | 3055 |                       true, STBaselineFunc::Polynomial, order, std::vector<float>(),
 | 
|---|
 | 3056 |                       getMaskListFromMask(finalChanMask), params, rms, sp.size(), 
 | 
|---|
 | 3057 |                       thresClip, nIterClip, threshold, chanAvgLimit, currentEdge);
 | 
|---|
| [2767] | 3058 |       } else {
 | 
|---|
 | 3059 |         setSpectrum(res, whichrow);
 | 
|---|
 | 3060 |       }
 | 
|---|
 | 3061 | 
 | 
|---|
| [2773] | 3062 |       outputFittingResult(outLogger, outTextFile, csvFormat, chanMask, whichrow, 
 | 
|---|
 | 3063 |                           coordInfo, hasSameNchan, ofs, "autoPolyBaseline()", 
 | 
|---|
 | 3064 |                           params, nClipped);
 | 
|---|
| [2193] | 3065 |       showProgressOnTerminal(whichrow, nRow, showProgress, minNRow);
 | 
|---|
| [2047] | 3066 |     }
 | 
|---|
 | 3067 | 
 | 
|---|
| [2773] | 3068 |     finaliseBaselining(outBaselineTable, &bt, bltable, outTextFile, ofs);
 | 
|---|
| [2767] | 3069 | 
 | 
|---|
| [2193] | 3070 |   } catch (...) {
 | 
|---|
 | 3071 |     throw;
 | 
|---|
| [2047] | 3072 |   }
 | 
|---|
 | 3073 | }
 | 
|---|
 | 3074 | 
 | 
|---|
| [2773] | 3075 | void Scantable::chebyshevBaseline(const std::vector<bool>& mask, int order, 
 | 
|---|
 | 3076 |                                   float thresClip, int nIterClip, 
 | 
|---|
 | 3077 |                                   bool getResidual, 
 | 
|---|
 | 3078 |                                   const std::string& progressInfo, 
 | 
|---|
 | 3079 |                                   const bool outLogger, const std::string& blfile, 
 | 
|---|
 | 3080 |                                   const std::string& bltable)
 | 
|---|
| [2645] | 3081 | {
 | 
|---|
| [2774] | 3082 |   /*
 | 
|---|
| [2767] | 3083 |   double TimeStart = mathutil::gettimeofday_sec();
 | 
|---|
| [2774] | 3084 |   */
 | 
|---|
| [2767] | 3085 | 
 | 
|---|
| [2645] | 3086 |   try {
 | 
|---|
 | 3087 |     ofstream ofs;
 | 
|---|
| [2773] | 3088 |     String coordInfo;
 | 
|---|
 | 3089 |     bool hasSameNchan, outTextFile, csvFormat, showProgress;
 | 
|---|
| [2645] | 3090 |     int minNRow;
 | 
|---|
 | 3091 |     int nRow = nrow();
 | 
|---|
| [2773] | 3092 |     std::vector<bool> chanMask, finalChanMask;
 | 
|---|
| [2737] | 3093 |     float rms;
 | 
|---|
| [2773] | 3094 |     bool outBaselineTable = (bltable != "");
 | 
|---|
 | 3095 |     STBaselineTable bt = STBaselineTable(*this);
 | 
|---|
 | 3096 |     Vector<Double> timeSecCol;
 | 
|---|
| [2737] | 3097 | 
 | 
|---|
| [2773] | 3098 |     initialiseBaselining(blfile, ofs, outLogger, outTextFile, csvFormat, 
 | 
|---|
 | 3099 |                          coordInfo, hasSameNchan, 
 | 
|---|
 | 3100 |                          progressInfo, showProgress, minNRow, 
 | 
|---|
 | 3101 |                          timeSecCol);
 | 
|---|
| [2737] | 3102 | 
 | 
|---|
| [2773] | 3103 |     std::vector<int> nChanNos;
 | 
|---|
 | 3104 |     std::vector<std::vector<std::vector<double> > > modelReservoir;
 | 
|---|
 | 3105 |     modelReservoir = getPolynomialModelReservoir(order, 
 | 
|---|
 | 3106 |                                                  &Scantable::getChebyshevPolynomial,
 | 
|---|
 | 3107 |                                                  nChanNos);
 | 
|---|
 | 3108 | 
 | 
|---|
| [2645] | 3109 |     for (int whichrow = 0; whichrow < nRow; ++whichrow) {
 | 
|---|
 | 3110 |       std::vector<float> sp = getSpectrum(whichrow);
 | 
|---|
 | 3111 |       chanMask = getCompositeChanMask(whichrow, mask);
 | 
|---|
| [2773] | 3112 | 
 | 
|---|
 | 3113 |       std::vector<float> params;
 | 
|---|
| [2645] | 3114 |       int nClipped = 0;
 | 
|---|
| [2773] | 3115 |       std::vector<float> res = doLeastSquareFitting(sp, chanMask, 
 | 
|---|
 | 3116 |                                    modelReservoir[getIdxOfNchan(sp.size(), nChanNos)], 
 | 
|---|
 | 3117 |                                    params, rms, finalChanMask, 
 | 
|---|
 | 3118 |                                    nClipped, thresClip, nIterClip, getResidual);
 | 
|---|
| [2645] | 3119 | 
 | 
|---|
| [2773] | 3120 |       if (outBaselineTable) {
 | 
|---|
 | 3121 |         bt.appenddata(getScan(whichrow), getCycle(whichrow), getBeam(whichrow), 
 | 
|---|
 | 3122 |                       getIF(whichrow), getPol(whichrow), 0, timeSecCol[whichrow], 
 | 
|---|
 | 3123 |                       true, STBaselineFunc::Chebyshev, order, std::vector<float>(),
 | 
|---|
 | 3124 |                       getMaskListFromMask(finalChanMask), params, rms, sp.size(), 
 | 
|---|
 | 3125 |                       thresClip, nIterClip, 0.0, 0, std::vector<int>());
 | 
|---|
| [2737] | 3126 |       } else {
 | 
|---|
 | 3127 |         setSpectrum(res, whichrow);
 | 
|---|
 | 3128 |       }
 | 
|---|
 | 3129 | 
 | 
|---|
| [2773] | 3130 |       outputFittingResult(outLogger, outTextFile, csvFormat, chanMask, whichrow, 
 | 
|---|
 | 3131 |                           coordInfo, hasSameNchan, ofs, "chebyshevBaseline()", 
 | 
|---|
 | 3132 |                           params, nClipped);
 | 
|---|
| [2645] | 3133 |       showProgressOnTerminal(whichrow, nRow, showProgress, minNRow);
 | 
|---|
 | 3134 |     }
 | 
|---|
 | 3135 |     
 | 
|---|
| [2773] | 3136 |     finaliseBaselining(outBaselineTable, &bt, bltable, outTextFile, ofs);
 | 
|---|
| [2737] | 3137 | 
 | 
|---|
| [2645] | 3138 |   } catch (...) {
 | 
|---|
 | 3139 |     throw;
 | 
|---|
 | 3140 |   }
 | 
|---|
| [2767] | 3141 | 
 | 
|---|
| [2774] | 3142 |   /*
 | 
|---|
| [2767] | 3143 |   double TimeEnd = mathutil::gettimeofday_sec();
 | 
|---|
 | 3144 |   double elapse1 = TimeEnd - TimeStart;
 | 
|---|
 | 3145 |   std::cout << "cheby   : " << elapse1 << " (sec.)" << endl;
 | 
|---|
| [2774] | 3146 |   */
 | 
|---|
| [2645] | 3147 | }
 | 
|---|
 | 3148 | 
 | 
|---|
| [2773] | 3149 | void Scantable::autoChebyshevBaseline(const std::vector<bool>& mask, int order, 
 | 
|---|
 | 3150 |                                       float thresClip, int nIterClip, 
 | 
|---|
 | 3151 |                                       const std::vector<int>& edge, 
 | 
|---|
 | 3152 |                                       float threshold, int chanAvgLimit, 
 | 
|---|
 | 3153 |                                       bool getResidual, 
 | 
|---|
 | 3154 |                                       const std::string& progressInfo, 
 | 
|---|
 | 3155 |                                       const bool outLogger, const std::string& blfile, 
 | 
|---|
 | 3156 |                                       const std::string& bltable)
 | 
|---|
| [2767] | 3157 | {
 | 
|---|
 | 3158 |   try {
 | 
|---|
 | 3159 |     ofstream ofs;
 | 
|---|
| [2773] | 3160 |     String coordInfo;
 | 
|---|
 | 3161 |     bool hasSameNchan, outTextFile, csvFormat, showProgress;
 | 
|---|
| [2767] | 3162 |     int minNRow;
 | 
|---|
 | 3163 |     int nRow = nrow();
 | 
|---|
| [2773] | 3164 |     std::vector<bool> chanMask, finalChanMask;
 | 
|---|
| [2767] | 3165 |     float rms;
 | 
|---|
| [2773] | 3166 |     bool outBaselineTable = (bltable != "");
 | 
|---|
 | 3167 |     STBaselineTable bt = STBaselineTable(*this);
 | 
|---|
 | 3168 |     Vector<Double> timeSecCol;
 | 
|---|
 | 3169 |     STLineFinder lineFinder = STLineFinder();
 | 
|---|
| [2767] | 3170 | 
 | 
|---|
| [2773] | 3171 |     initialiseBaselining(blfile, ofs, outLogger, outTextFile, csvFormat, 
 | 
|---|
 | 3172 |                          coordInfo, hasSameNchan, 
 | 
|---|
 | 3173 |                          progressInfo, showProgress, minNRow, 
 | 
|---|
 | 3174 |                          timeSecCol);
 | 
|---|
| [2767] | 3175 | 
 | 
|---|
| [2773] | 3176 |     initLineFinder(edge, threshold, chanAvgLimit, lineFinder);
 | 
|---|
 | 3177 | 
 | 
|---|
 | 3178 |     std::vector<int> nChanNos;
 | 
|---|
 | 3179 |     std::vector<std::vector<std::vector<double> > > modelReservoir;
 | 
|---|
 | 3180 |     modelReservoir = getPolynomialModelReservoir(order, 
 | 
|---|
 | 3181 |                                                  &Scantable::getChebyshevPolynomial,
 | 
|---|
 | 3182 |                                                  nChanNos);
 | 
|---|
 | 3183 | 
 | 
|---|
| [2767] | 3184 |     for (int whichrow = 0; whichrow < nRow; ++whichrow) {
 | 
|---|
 | 3185 |       std::vector<float> sp = getSpectrum(whichrow);
 | 
|---|
 | 3186 |       std::vector<int> currentEdge;
 | 
|---|
| [2773] | 3187 |       chanMask = getCompositeChanMask(whichrow, mask, edge, currentEdge, lineFinder);
 | 
|---|
| [2767] | 3188 | 
 | 
|---|
| [2773] | 3189 |       std::vector<float> params;
 | 
|---|
| [2767] | 3190 |       int nClipped = 0;
 | 
|---|
| [2773] | 3191 |       std::vector<float> res = doLeastSquareFitting(sp, chanMask, 
 | 
|---|
 | 3192 |                                    modelReservoir[getIdxOfNchan(sp.size(), nChanNos)], 
 | 
|---|
 | 3193 |                                    params, rms, finalChanMask, 
 | 
|---|
 | 3194 |                                    nClipped, thresClip, nIterClip, getResidual);
 | 
|---|
| [2767] | 3195 | 
 | 
|---|
| [2773] | 3196 |       if (outBaselineTable) {
 | 
|---|
 | 3197 |         bt.appenddata(getScan(whichrow), getCycle(whichrow), getBeam(whichrow), 
 | 
|---|
 | 3198 |                       getIF(whichrow), getPol(whichrow), 0, timeSecCol[whichrow], 
 | 
|---|
 | 3199 |                       true, STBaselineFunc::Chebyshev, order, std::vector<float>(),
 | 
|---|
 | 3200 |                       getMaskListFromMask(finalChanMask), params, rms, sp.size(), 
 | 
|---|
 | 3201 |                       thresClip, nIterClip, threshold, chanAvgLimit, currentEdge);
 | 
|---|
| [2767] | 3202 |       } else {
 | 
|---|
 | 3203 |         setSpectrum(res, whichrow);
 | 
|---|
 | 3204 |       }
 | 
|---|
 | 3205 | 
 | 
|---|
| [2773] | 3206 |       outputFittingResult(outLogger, outTextFile, csvFormat, chanMask, whichrow, 
 | 
|---|
 | 3207 |                           coordInfo, hasSameNchan, ofs, "autoChebyshevBaseline()", 
 | 
|---|
 | 3208 |                           params, nClipped);
 | 
|---|
| [2767] | 3209 |       showProgressOnTerminal(whichrow, nRow, showProgress, minNRow);
 | 
|---|
 | 3210 |     }
 | 
|---|
 | 3211 | 
 | 
|---|
| [2773] | 3212 |     finaliseBaselining(outBaselineTable, &bt, bltable, outTextFile, ofs);
 | 
|---|
| [2767] | 3213 | 
 | 
|---|
 | 3214 |   } catch (...) {
 | 
|---|
 | 3215 |     throw;
 | 
|---|
 | 3216 |   }
 | 
|---|
 | 3217 | }
 | 
|---|
 | 3218 | 
 | 
|---|
| [2774] | 3219 | double Scantable::calculateModelSelectionCriteria(const std::string& valname, 
 | 
|---|
 | 3220 |                                                   const std::string& blfunc, 
 | 
|---|
 | 3221 |                                                   int order, 
 | 
|---|
 | 3222 |                                                   const std::vector<bool>& inMask, 
 | 
|---|
 | 3223 |                                                   int whichrow, 
 | 
|---|
 | 3224 |                                                   bool useLineFinder, 
 | 
|---|
 | 3225 |                                                   const std::vector<int>& edge, 
 | 
|---|
 | 3226 |                                                   float threshold, 
 | 
|---|
 | 3227 |                                                   int chanAvgLimit)
 | 
|---|
| [2713] | 3228 | {
 | 
|---|
| [2767] | 3229 |   std::vector<float> sp = getSpectrum(whichrow);
 | 
|---|
 | 3230 |   std::vector<bool> chanMask;
 | 
|---|
 | 3231 |   chanMask.clear();
 | 
|---|
 | 3232 | 
 | 
|---|
| [2713] | 3233 |   if (useLineFinder) {
 | 
|---|
| [2774] | 3234 |     STLineFinder lineFinder = STLineFinder();
 | 
|---|
 | 3235 |     initLineFinder(edge, threshold, chanAvgLimit, lineFinder);
 | 
|---|
| [2713] | 3236 |     std::vector<int> currentEdge;
 | 
|---|
| [2774] | 3237 |     chanMask = getCompositeChanMask(whichrow, inMask, edge, currentEdge, lineFinder);
 | 
|---|
| [2713] | 3238 |   } else {
 | 
|---|
| [2767] | 3239 |     chanMask = getCompositeChanMask(whichrow, inMask);
 | 
|---|
| [2713] | 3240 |   }
 | 
|---|
 | 3241 | 
 | 
|---|
| [2767] | 3242 |   return doCalculateModelSelectionCriteria(valname, sp, chanMask, blfunc, order);
 | 
|---|
| [2713] | 3243 | }
 | 
|---|
 | 3244 | 
 | 
|---|
 | 3245 | double Scantable::doCalculateModelSelectionCriteria(const std::string& valname, const std::vector<float>& spec, const std::vector<bool>& mask, const std::string& blfunc, int order)
 | 
|---|
 | 3246 | {
 | 
|---|
 | 3247 |   int nparam;
 | 
|---|
 | 3248 |   std::vector<float> params;
 | 
|---|
| [2737] | 3249 |   std::vector<bool> finalChanMask;
 | 
|---|
 | 3250 |   float rms;
 | 
|---|
| [2713] | 3251 |   int nClipped = 0;
 | 
|---|
 | 3252 |   std::vector<float> res;
 | 
|---|
| [2767] | 3253 |   if (blfunc == "poly") {
 | 
|---|
| [2713] | 3254 |     nparam = order + 1;
 | 
|---|
| [2767] | 3255 |     res = doPolynomialFitting(spec, mask, order, params, rms, finalChanMask, nClipped);
 | 
|---|
 | 3256 |   } else if (blfunc == "chebyshev") {
 | 
|---|
 | 3257 |     nparam = order + 1;
 | 
|---|
 | 3258 |     res = doChebyshevFitting(spec, mask, order, params, rms, finalChanMask, nClipped);
 | 
|---|
 | 3259 |   } else if (blfunc == "cspline") {
 | 
|---|
 | 3260 |     std::vector<int> pieceEdges;//(order+1);  //order = npiece
 | 
|---|
 | 3261 |     nparam = order + 3;
 | 
|---|
 | 3262 |     res = doCubicSplineFitting(spec, mask, order, false, pieceEdges, params, rms, finalChanMask, nClipped);
 | 
|---|
| [2713] | 3263 |   } else if (blfunc == "sinusoid") {
 | 
|---|
 | 3264 |     std::vector<int> nWaves;
 | 
|---|
 | 3265 |     nWaves.clear();
 | 
|---|
 | 3266 |     for (int i = 0; i <= order; ++i) {
 | 
|---|
 | 3267 |       nWaves.push_back(i);
 | 
|---|
 | 3268 |     }
 | 
|---|
 | 3269 |     nparam = 2*order + 1;  // order = nwave
 | 
|---|
| [2767] | 3270 |     res = doSinusoidFitting(spec, mask, nWaves, params, rms, finalChanMask, nClipped);
 | 
|---|
| [2713] | 3271 |   } else {
 | 
|---|
| [2767] | 3272 |     throw(AipsError("blfunc must be poly, chebyshev, cspline or sinusoid."));
 | 
|---|
| [2713] | 3273 |   }
 | 
|---|
 | 3274 | 
 | 
|---|
 | 3275 |   double msq = 0.0;
 | 
|---|
 | 3276 |   int nusedchan = 0;
 | 
|---|
 | 3277 |   int nChan = res.size();
 | 
|---|
 | 3278 |   for (int i = 0; i < nChan; ++i) {
 | 
|---|
 | 3279 |     if (mask[i]) {
 | 
|---|
 | 3280 |       msq += (double)res[i]*(double)res[i];
 | 
|---|
 | 3281 |       nusedchan++;
 | 
|---|
 | 3282 |     }
 | 
|---|
 | 3283 |   }
 | 
|---|
 | 3284 |   if (nusedchan == 0) {
 | 
|---|
 | 3285 |     throw(AipsError("all channels masked."));
 | 
|---|
 | 3286 |   }
 | 
|---|
 | 3287 |   msq /= (double)nusedchan;
 | 
|---|
 | 3288 | 
 | 
|---|
 | 3289 |   nparam++;  //add 1 for sigma of Gaussian distribution
 | 
|---|
 | 3290 |   const double PI = 6.0 * asin(0.5); // PI (= 3.141592653...)
 | 
|---|
 | 3291 | 
 | 
|---|
 | 3292 |   if (valname.find("aic") == 0) {
 | 
|---|
 | 3293 |     // Original Akaike Information Criterion (AIC)
 | 
|---|
 | 3294 |     double aic = nusedchan * (log(2.0 * PI * msq) + 1.0) + 2.0 * nparam;
 | 
|---|
 | 3295 | 
 | 
|---|
| [2767] | 3296 |     // Corrected AIC by Sugiura(1978) (AICc)
 | 
|---|
| [2713] | 3297 |     if (valname == "aicc") {
 | 
|---|
 | 3298 |       if (nusedchan - nparam - 1 <= 0) {
 | 
|---|
 | 3299 |         throw(AipsError("channel size is too small to calculate AICc."));
 | 
|---|
 | 3300 |       }
 | 
|---|
 | 3301 |       aic += 2.0*nparam*(nparam + 1)/(double)(nusedchan - nparam - 1);
 | 
|---|
 | 3302 |     }
 | 
|---|
 | 3303 | 
 | 
|---|
 | 3304 |     return aic;
 | 
|---|
 | 3305 | 
 | 
|---|
 | 3306 |   } else if (valname == "bic") {
 | 
|---|
 | 3307 |     // Bayesian Information Criterion (BIC)
 | 
|---|
 | 3308 |     double bic = nusedchan * log(msq) + nparam * log((double)nusedchan);
 | 
|---|
 | 3309 |     return bic;
 | 
|---|
 | 3310 | 
 | 
|---|
 | 3311 |   } else if (valname == "gcv") {
 | 
|---|
 | 3312 |     // Generalised Cross Validation
 | 
|---|
 | 3313 |     double x = 1.0 - (double)nparam / (double)nusedchan;
 | 
|---|
 | 3314 |     double gcv = msq / (x * x);
 | 
|---|
 | 3315 |     return gcv;
 | 
|---|
 | 3316 | 
 | 
|---|
 | 3317 |   } else {
 | 
|---|
 | 3318 |     throw(AipsError("valname must be aic, aicc, bic or gcv."));
 | 
|---|
 | 3319 |   }
 | 
|---|
 | 3320 | }
 | 
|---|
 | 3321 | 
 | 
|---|
| [2767] | 3322 | double Scantable::getNormalPolynomial(int n, double x) {
 | 
|---|
 | 3323 |   if (n == 0) {
 | 
|---|
 | 3324 |     return 1.0;
 | 
|---|
 | 3325 |   } else if (n > 0) {
 | 
|---|
 | 3326 |     double res = 1.0;
 | 
|---|
 | 3327 |     for (int i = 0; i < n; ++i) {
 | 
|---|
 | 3328 |       res *= x;
 | 
|---|
| [2645] | 3329 |     }
 | 
|---|
| [2767] | 3330 |     return res;
 | 
|---|
 | 3331 |   } else {
 | 
|---|
 | 3332 |     if (x == 0.0) {
 | 
|---|
 | 3333 |       throw(AipsError("infinity result: x=0 given for negative power."));
 | 
|---|
 | 3334 |     } else {
 | 
|---|
 | 3335 |       return pow(x, (double)n);
 | 
|---|
| [2645] | 3336 |     }
 | 
|---|
 | 3337 |   }
 | 
|---|
 | 3338 | }
 | 
|---|
 | 3339 | 
 | 
|---|
 | 3340 | double Scantable::getChebyshevPolynomial(int n, double x) {
 | 
|---|
 | 3341 |   if ((x < -1.0)||(x > 1.0)) {
 | 
|---|
 | 3342 |     throw(AipsError("out of definition range (-1 <= x <= 1)."));
 | 
|---|
| [2713] | 3343 |   } else if (x == 1.0) {
 | 
|---|
 | 3344 |     return 1.0;
 | 
|---|
 | 3345 |   } else if (x == 0.0) {
 | 
|---|
 | 3346 |     double res;
 | 
|---|
 | 3347 |     if (n%2 == 0) {
 | 
|---|
 | 3348 |       if (n%4 == 0) {
 | 
|---|
 | 3349 |         res = 1.0;
 | 
|---|
 | 3350 |       } else {
 | 
|---|
 | 3351 |         res = -1.0;
 | 
|---|
 | 3352 |       }
 | 
|---|
 | 3353 |     } else {
 | 
|---|
 | 3354 |       res = 0.0;
 | 
|---|
 | 3355 |     }
 | 
|---|
 | 3356 |     return res;
 | 
|---|
 | 3357 |   } else if (x == -1.0) {
 | 
|---|
 | 3358 |     double res = (n%2 == 0 ? 1.0 : -1.0);
 | 
|---|
 | 3359 |     return res;
 | 
|---|
| [2645] | 3360 |   } else if (n < 0) {
 | 
|---|
 | 3361 |     throw(AipsError("the order must be zero or positive."));
 | 
|---|
 | 3362 |   } else if (n == 0) {
 | 
|---|
 | 3363 |     return 1.0;
 | 
|---|
 | 3364 |   } else if (n == 1) {
 | 
|---|
 | 3365 |     return x;
 | 
|---|
 | 3366 |   } else {
 | 
|---|
 | 3367 |     double res = 0.0;
 | 
|---|
 | 3368 |     for (int m = 0; m <= n/2; ++m) {
 | 
|---|
 | 3369 |       double c = 1.0;
 | 
|---|
 | 3370 |       if (m > 0) {
 | 
|---|
 | 3371 |         for (int i = 1; i <= m; ++i) {
 | 
|---|
 | 3372 |           c *= (double)(n-2*m+i)/(double)i;
 | 
|---|
 | 3373 |         }
 | 
|---|
 | 3374 |       }
 | 
|---|
| [2713] | 3375 |       res += (m%2 == 0 ? 1.0 : -1.0)*(double)n/(double)(n-m)*pow(2.0*x, (double)(n-2*m))/2.0*c;
 | 
|---|
| [2645] | 3376 |     }
 | 
|---|
 | 3377 |     return res;
 | 
|---|
 | 3378 |   }
 | 
|---|
 | 3379 | }
 | 
|---|
 | 3380 | 
 | 
|---|
| [2773] | 3381 | std::vector<float> Scantable::doPolynomialFitting(const std::vector<float>& data, 
 | 
|---|
 | 3382 |                                                   const std::vector<bool>& mask, 
 | 
|---|
 | 3383 |                                                   int order, 
 | 
|---|
 | 3384 |                                                   std::vector<float>& params, 
 | 
|---|
 | 3385 |                                                   float& rms, 
 | 
|---|
 | 3386 |                                                   std::vector<bool>& finalmask, 
 | 
|---|
 | 3387 |                                                   float clipth, 
 | 
|---|
 | 3388 |                                                   int clipn)
 | 
|---|
| [2645] | 3389 | {
 | 
|---|
| [2767] | 3390 |   int nClipped = 0;
 | 
|---|
 | 3391 |   return doPolynomialFitting(data, mask, order, params, rms, finalmask, nClipped, clipth, clipn);
 | 
|---|
 | 3392 | }
 | 
|---|
 | 3393 | 
 | 
|---|
| [2773] | 3394 | std::vector<float> Scantable::doPolynomialFitting(const std::vector<float>& data, 
 | 
|---|
 | 3395 |                                                   const std::vector<bool>& mask, 
 | 
|---|
 | 3396 |                                                   int order, 
 | 
|---|
 | 3397 |                                                   std::vector<float>& params, 
 | 
|---|
 | 3398 |                                                   float& rms, 
 | 
|---|
 | 3399 |                                                   std::vector<bool>& finalMask, 
 | 
|---|
 | 3400 |                                                   int& nClipped, 
 | 
|---|
 | 3401 |                                                   float thresClip, 
 | 
|---|
 | 3402 |                                                   int nIterClip, 
 | 
|---|
 | 3403 |                                                   bool getResidual)
 | 
|---|
| [2767] | 3404 | {
 | 
|---|
| [2773] | 3405 |   return doLeastSquareFitting(data, mask, 
 | 
|---|
 | 3406 |                               getPolynomialModel(order, data.size(), &Scantable::getNormalPolynomial), 
 | 
|---|
 | 3407 |                               params, rms, finalMask, 
 | 
|---|
 | 3408 |                               nClipped, thresClip, nIterClip, 
 | 
|---|
 | 3409 |                               getResidual);
 | 
|---|
| [2767] | 3410 | }
 | 
|---|
 | 3411 | 
 | 
|---|
| [2773] | 3412 | std::vector<float> Scantable::doChebyshevFitting(const std::vector<float>& data, 
 | 
|---|
 | 3413 |                                                  const std::vector<bool>& mask, 
 | 
|---|
 | 3414 |                                                  int order, 
 | 
|---|
 | 3415 |                                                  std::vector<float>& params, 
 | 
|---|
 | 3416 |                                                  float& rms, 
 | 
|---|
 | 3417 |                                                  std::vector<bool>& finalmask, 
 | 
|---|
 | 3418 |                                                  float clipth, 
 | 
|---|
 | 3419 |                                                  int clipn)
 | 
|---|
| [2767] | 3420 | {
 | 
|---|
 | 3421 |   int nClipped = 0;
 | 
|---|
 | 3422 |   return doChebyshevFitting(data, mask, order, params, rms, finalmask, nClipped, clipth, clipn);
 | 
|---|
 | 3423 | }
 | 
|---|
 | 3424 | 
 | 
|---|
| [2773] | 3425 | std::vector<float> Scantable::doChebyshevFitting(const std::vector<float>& data, 
 | 
|---|
 | 3426 |                                                  const std::vector<bool>& mask, 
 | 
|---|
 | 3427 |                                                  int order, 
 | 
|---|
 | 3428 |                                                  std::vector<float>& params, 
 | 
|---|
 | 3429 |                                                  float& rms, 
 | 
|---|
 | 3430 |                                                  std::vector<bool>& finalMask, 
 | 
|---|
 | 3431 |                                                  int& nClipped, 
 | 
|---|
 | 3432 |                                                  float thresClip, 
 | 
|---|
 | 3433 |                                                  int nIterClip, 
 | 
|---|
 | 3434 |                                                  bool getResidual)
 | 
|---|
| [2767] | 3435 | {
 | 
|---|
| [2773] | 3436 |   return doLeastSquareFitting(data, mask, 
 | 
|---|
 | 3437 |                               getPolynomialModel(order, data.size(), &Scantable::getChebyshevPolynomial), 
 | 
|---|
 | 3438 |                               params, rms, finalMask, 
 | 
|---|
 | 3439 |                               nClipped, thresClip, nIterClip, 
 | 
|---|
 | 3440 |                               getResidual);
 | 
|---|
| [2767] | 3441 | }
 | 
|---|
 | 3442 | 
 | 
|---|
| [2773] | 3443 | std::vector<std::vector<double> > Scantable::getPolynomialModel(int order, int nchan, double (Scantable::*pfunc)(int, double))
 | 
|---|
| [2767] | 3444 | {
 | 
|---|
| [2773] | 3445 |   // model  : contains model values for computing the least-square matrix. 
 | 
|---|
 | 3446 |   //          model.size() is nmodel and model[*].size() is nchan. 
 | 
|---|
 | 3447 |   //          Each model element are as follows:
 | 
|---|
 | 3448 |   //
 | 
|---|
 | 3449 |   //          (for normal polynomials)
 | 
|---|
 | 3450 |   //          model[0]   = {1.0,   1.0,   1.0,   ..., 1.0},
 | 
|---|
 | 3451 |   //          model[1]   = {0.0,   1.0,   2.0,   ..., (nchan-1)}
 | 
|---|
 | 3452 |   //          model[n-1] = ...,
 | 
|---|
 | 3453 |   //          model[n]   = {0.0^n, 1.0^n, 2.0^n, ..., (nchan-1)^n}
 | 
|---|
 | 3454 |   //          where (0 <= n <= order)
 | 
|---|
 | 3455 |   //
 | 
|---|
 | 3456 |   //          (for Chebyshev polynomials)
 | 
|---|
 | 3457 |   //          model[0]   = {T0(-1), T0(2/(nchan-1)-1), T0(4/(nchan-1)-1), ..., T0(1)}, 
 | 
|---|
 | 3458 |   //          model[n-1] = ...,
 | 
|---|
 | 3459 |   //          model[n]   = {Tn(-1), Tn(2/(nchan-1)-1), Tn(4/(nchan-1)-1), ..., Tn(1)}
 | 
|---|
 | 3460 |   //          where (0 <= n <= order),
 | 
|---|
 | 3461 | 
 | 
|---|
 | 3462 |   int nmodel = order + 1;
 | 
|---|
 | 3463 |   std::vector<std::vector<double> > model(nmodel, std::vector<double>(nchan));
 | 
|---|
 | 3464 | 
 | 
|---|
 | 3465 |   double stretch, shift;
 | 
|---|
 | 3466 |   if (pfunc == &Scantable::getChebyshevPolynomial) {
 | 
|---|
 | 3467 |     stretch = 2.0/(double)(nchan - 1);
 | 
|---|
 | 3468 |     shift   = -1.0;
 | 
|---|
 | 3469 |   } else {
 | 
|---|
 | 3470 |     stretch = 1.0;
 | 
|---|
 | 3471 |     shift   = 0.0;
 | 
|---|
| [2645] | 3472 |   }
 | 
|---|
| [2773] | 3473 | 
 | 
|---|
 | 3474 |   for (int i = 0; i < nmodel; ++i) {
 | 
|---|
 | 3475 |     for (int j = 0; j < nchan; ++j) {
 | 
|---|
 | 3476 |       model[i][j] = (this->*pfunc)(i, stretch*(double)j + shift);
 | 
|---|
 | 3477 |     }
 | 
|---|
| [2645] | 3478 |   }
 | 
|---|
 | 3479 | 
 | 
|---|
| [2773] | 3480 |   return model;
 | 
|---|
 | 3481 | }
 | 
|---|
 | 3482 | 
 | 
|---|
 | 3483 | std::vector<std::vector<std::vector<double> > > Scantable::getPolynomialModelReservoir(int order,
 | 
|---|
 | 3484 |                                                                                        double (Scantable::*pfunc)(int, double),
 | 
|---|
 | 3485 |                                                                                        std::vector<int>& nChanNos)
 | 
|---|
 | 3486 | {
 | 
|---|
 | 3487 |   std::vector<std::vector<std::vector<double> > > res;
 | 
|---|
 | 3488 |   res.clear();
 | 
|---|
 | 3489 |   nChanNos.clear();
 | 
|---|
 | 3490 | 
 | 
|---|
 | 3491 |   std::vector<uint> ifNos = getIFNos();
 | 
|---|
 | 3492 |   for (uint i = 0; i < ifNos.size(); ++i) {
 | 
|---|
 | 3493 |     int currNchan = nchan(ifNos[i]);
 | 
|---|
 | 3494 |     bool hasDifferentNchan = (i == 0);
 | 
|---|
 | 3495 |     for (uint j = 0; j < i; ++j) {
 | 
|---|
 | 3496 |       if (currNchan != nchan(ifNos[j])) {
 | 
|---|
 | 3497 |         hasDifferentNchan = true;
 | 
|---|
 | 3498 |         break;
 | 
|---|
 | 3499 |       }
 | 
|---|
 | 3500 |     }
 | 
|---|
 | 3501 |     if (hasDifferentNchan) {
 | 
|---|
 | 3502 |       res.push_back(getPolynomialModel(order, currNchan, pfunc));
 | 
|---|
 | 3503 |       nChanNos.push_back(currNchan);
 | 
|---|
 | 3504 |     }
 | 
|---|
 | 3505 |   }
 | 
|---|
 | 3506 | 
 | 
|---|
 | 3507 |   return res;
 | 
|---|
 | 3508 | }
 | 
|---|
 | 3509 | 
 | 
|---|
 | 3510 | std::vector<float> Scantable::doLeastSquareFitting(const std::vector<float>& data, 
 | 
|---|
 | 3511 |                                                    const std::vector<bool>& mask, 
 | 
|---|
 | 3512 |                                                    const std::vector<std::vector<double> >& model, 
 | 
|---|
 | 3513 |                                                    std::vector<float>& params, 
 | 
|---|
 | 3514 |                                                    float& rms, 
 | 
|---|
 | 3515 |                                                    std::vector<bool>& finalMask, 
 | 
|---|
 | 3516 |                                                    int& nClipped, 
 | 
|---|
 | 3517 |                                                    float thresClip, 
 | 
|---|
 | 3518 |                                                    int nIterClip, 
 | 
|---|
 | 3519 |                                                    bool getResidual)
 | 
|---|
 | 3520 | {
 | 
|---|
 | 3521 |   int nDOF = model.size();
 | 
|---|
| [2645] | 3522 |   int nChan = data.size();
 | 
|---|
| [2737] | 3523 | 
 | 
|---|
| [2773] | 3524 |   if (nDOF == 0) {
 | 
|---|
 | 3525 |     throw(AipsError("no model data given"));
 | 
|---|
 | 3526 |   }
 | 
|---|
 | 3527 |   if (nChan < 2) {
 | 
|---|
 | 3528 |     throw(AipsError("data size is too few"));
 | 
|---|
 | 3529 |   }
 | 
|---|
 | 3530 |   if (nChan != (int)mask.size()) {
 | 
|---|
 | 3531 |     throw(AipsError("data and mask sizes are not identical"));
 | 
|---|
 | 3532 |   }
 | 
|---|
 | 3533 |   for (int i = 0; i < nDOF; ++i) {
 | 
|---|
 | 3534 |     if (nChan != (int)model[i].size()) {
 | 
|---|
 | 3535 |       throw(AipsError("data and model sizes are not identical"));
 | 
|---|
 | 3536 |     }
 | 
|---|
 | 3537 |   }
 | 
|---|
 | 3538 | 
 | 
|---|
 | 3539 |   params.clear();
 | 
|---|
 | 3540 |   params.resize(nDOF);
 | 
|---|
 | 3541 | 
 | 
|---|
| [2737] | 3542 |   finalMask.clear();
 | 
|---|
 | 3543 |   finalMask.resize(nChan);
 | 
|---|
 | 3544 | 
 | 
|---|
| [2773] | 3545 |   std::vector<int> maskArray(nChan);
 | 
|---|
 | 3546 |   int j = 0;
 | 
|---|
| [2645] | 3547 |   for (int i = 0; i < nChan; ++i) {
 | 
|---|
| [2773] | 3548 |     maskArray[i] = mask[i] ? 1 : 0;
 | 
|---|
| [2645] | 3549 |     if (mask[i]) {
 | 
|---|
| [2773] | 3550 |       j++;
 | 
|---|
| [2645] | 3551 |     }
 | 
|---|
| [2737] | 3552 |     finalMask[i] = mask[i];
 | 
|---|
| [2645] | 3553 |   }
 | 
|---|
 | 3554 | 
 | 
|---|
| [2773] | 3555 |   int initNData = j;
 | 
|---|
| [2645] | 3556 |   int nData = initNData;
 | 
|---|
 | 3557 | 
 | 
|---|
| [2773] | 3558 |   std::vector<double> z1(nChan), r1(nChan), residual(nChan);
 | 
|---|
| [2645] | 3559 |   for (int i = 0; i < nChan; ++i) {
 | 
|---|
| [2773] | 3560 |     z1[i] = (double)data[i];
 | 
|---|
 | 3561 |     r1[i] = 0.0;
 | 
|---|
 | 3562 |     residual[i] = 0.0;
 | 
|---|
| [2645] | 3563 |   }
 | 
|---|
 | 3564 | 
 | 
|---|
 | 3565 |   for (int nClip = 0; nClip < nIterClip+1; ++nClip) {
 | 
|---|
 | 3566 |     // xMatrix : horizontal concatenation of 
 | 
|---|
 | 3567 |     //           the least-sq. matrix (left) and an 
 | 
|---|
 | 3568 |     //           identity matrix (right).
 | 
|---|
 | 3569 |     // the right part is used to calculate the inverse matrix of the left part. 
 | 
|---|
 | 3570 |     double xMatrix[nDOF][2*nDOF];
 | 
|---|
 | 3571 |     double zMatrix[nDOF];
 | 
|---|
 | 3572 |     for (int i = 0; i < nDOF; ++i) {
 | 
|---|
 | 3573 |       for (int j = 0; j < 2*nDOF; ++j) {
 | 
|---|
 | 3574 |         xMatrix[i][j] = 0.0;
 | 
|---|
 | 3575 |       }
 | 
|---|
 | 3576 |       xMatrix[i][nDOF+i] = 1.0;
 | 
|---|
 | 3577 |       zMatrix[i] = 0.0;
 | 
|---|
 | 3578 |     }
 | 
|---|
 | 3579 | 
 | 
|---|
 | 3580 |     int nUseData = 0;
 | 
|---|
 | 3581 |     for (int k = 0; k < nChan; ++k) {
 | 
|---|
 | 3582 |       if (maskArray[k] == 0) continue;
 | 
|---|
 | 3583 | 
 | 
|---|
 | 3584 |       for (int i = 0; i < nDOF; ++i) {
 | 
|---|
 | 3585 |         for (int j = i; j < nDOF; ++j) {
 | 
|---|
| [2773] | 3586 |           xMatrix[i][j] += model[i][k] * model[j][k];
 | 
|---|
| [2645] | 3587 |         }
 | 
|---|
| [2773] | 3588 |         zMatrix[i] += z1[k] * model[i][k];
 | 
|---|
| [2645] | 3589 |       }
 | 
|---|
 | 3590 | 
 | 
|---|
 | 3591 |       nUseData++;
 | 
|---|
 | 3592 |     }
 | 
|---|
 | 3593 | 
 | 
|---|
 | 3594 |     if (nUseData < 1) {
 | 
|---|
 | 3595 |         throw(AipsError("all channels clipped or masked. can't execute fitting anymore."));      
 | 
|---|
 | 3596 |     }
 | 
|---|
 | 3597 | 
 | 
|---|
 | 3598 |     for (int i = 0; i < nDOF; ++i) {
 | 
|---|
 | 3599 |       for (int j = 0; j < i; ++j) {
 | 
|---|
 | 3600 |         xMatrix[i][j] = xMatrix[j][i];
 | 
|---|
 | 3601 |       }
 | 
|---|
 | 3602 |     }
 | 
|---|
 | 3603 | 
 | 
|---|
| [2773] | 3604 |     std::vector<double> invDiag(nDOF);
 | 
|---|
| [2645] | 3605 |     for (int i = 0; i < nDOF; ++i) {
 | 
|---|
| [2773] | 3606 |       invDiag[i] = 1.0 / xMatrix[i][i];
 | 
|---|
| [2645] | 3607 |       for (int j = 0; j < nDOF; ++j) {
 | 
|---|
 | 3608 |         xMatrix[i][j] *= invDiag[i];
 | 
|---|
 | 3609 |       }
 | 
|---|
 | 3610 |     }
 | 
|---|
 | 3611 | 
 | 
|---|
 | 3612 |     for (int k = 0; k < nDOF; ++k) {
 | 
|---|
 | 3613 |       for (int i = 0; i < nDOF; ++i) {
 | 
|---|
 | 3614 |         if (i != k) {
 | 
|---|
 | 3615 |           double factor1 = xMatrix[k][k];
 | 
|---|
| [2773] | 3616 |           double invfactor1 = 1.0 / factor1;
 | 
|---|
| [2645] | 3617 |           double factor2 = xMatrix[i][k];
 | 
|---|
 | 3618 |           for (int j = k; j < 2*nDOF; ++j) {
 | 
|---|
 | 3619 |             xMatrix[i][j] *= factor1;
 | 
|---|
 | 3620 |             xMatrix[i][j] -= xMatrix[k][j]*factor2;
 | 
|---|
| [2773] | 3621 |             xMatrix[i][j] *= invfactor1;
 | 
|---|
| [2645] | 3622 |           }
 | 
|---|
 | 3623 |         }
 | 
|---|
 | 3624 |       }
 | 
|---|
| [2773] | 3625 |       double invXDiag = 1.0 / xMatrix[k][k];
 | 
|---|
| [2645] | 3626 |       for (int j = k; j < 2*nDOF; ++j) {
 | 
|---|
| [2773] | 3627 |         xMatrix[k][j] *= invXDiag;
 | 
|---|
| [2645] | 3628 |       }
 | 
|---|
 | 3629 |     }
 | 
|---|
 | 3630 |     
 | 
|---|
 | 3631 |     for (int i = 0; i < nDOF; ++i) {
 | 
|---|
 | 3632 |       for (int j = 0; j < nDOF; ++j) {
 | 
|---|
 | 3633 |         xMatrix[i][nDOF+j] *= invDiag[j];
 | 
|---|
 | 3634 |       }
 | 
|---|
 | 3635 |     }
 | 
|---|
| [2773] | 3636 |     //compute a vector y in which coefficients of the best-fit 
 | 
|---|
 | 3637 |     //model functions are stored.
 | 
|---|
 | 3638 |     //in case of polynomials, y consists of (a0,a1,a2,...) 
 | 
|---|
 | 3639 |     //where ai is the coefficient of the term x^i.
 | 
|---|
 | 3640 |     //in case of sinusoids, y consists of (a0,s1,c1,s2,c2,...)
 | 
|---|
 | 3641 |     //where a0 is constant term and s* and c* are of sine 
 | 
|---|
 | 3642 |     //and cosine functions, respectively. 
 | 
|---|
 | 3643 |     std::vector<double> y(nDOF);
 | 
|---|
| [2645] | 3644 |     for (int i = 0; i < nDOF; ++i) {
 | 
|---|
| [2773] | 3645 |       y[i] = 0.0;
 | 
|---|
| [2645] | 3646 |       for (int j = 0; j < nDOF; ++j) {
 | 
|---|
 | 3647 |         y[i] += xMatrix[i][nDOF+j]*zMatrix[j];
 | 
|---|
 | 3648 |       }
 | 
|---|
| [2773] | 3649 |       params[i] = (float)y[i];
 | 
|---|
| [2645] | 3650 |     }
 | 
|---|
 | 3651 | 
 | 
|---|
 | 3652 |     for (int i = 0; i < nChan; ++i) {
 | 
|---|
 | 3653 |       r1[i] = y[0];
 | 
|---|
 | 3654 |       for (int j = 1; j < nDOF; ++j) {
 | 
|---|
| [2773] | 3655 |         r1[i] += y[j]*model[j][i];
 | 
|---|
| [2645] | 3656 |       }
 | 
|---|
 | 3657 |       residual[i] = z1[i] - r1[i];
 | 
|---|
 | 3658 |     }
 | 
|---|
 | 3659 | 
 | 
|---|
| [2737] | 3660 |     double stdDev = 0.0;
 | 
|---|
 | 3661 |     for (int i = 0; i < nChan; ++i) {
 | 
|---|
 | 3662 |       stdDev += residual[i]*residual[i]*(double)maskArray[i];
 | 
|---|
 | 3663 |     }
 | 
|---|
 | 3664 |     stdDev = sqrt(stdDev/(double)nData);
 | 
|---|
 | 3665 |     rms = (float)stdDev;
 | 
|---|
 | 3666 | 
 | 
|---|
| [2645] | 3667 |     if ((nClip == nIterClip) || (thresClip <= 0.0)) {
 | 
|---|
 | 3668 |       break;
 | 
|---|
 | 3669 |     } else {
 | 
|---|
| [2737] | 3670 | 
 | 
|---|
| [2645] | 3671 |       double thres = stdDev * thresClip;
 | 
|---|
 | 3672 |       int newNData = 0;
 | 
|---|
 | 3673 |       for (int i = 0; i < nChan; ++i) {
 | 
|---|
 | 3674 |         if (abs(residual[i]) >= thres) {
 | 
|---|
 | 3675 |           maskArray[i] = 0;
 | 
|---|
| [2737] | 3676 |           finalMask[i] = false;
 | 
|---|
| [2645] | 3677 |         }
 | 
|---|
 | 3678 |         if (maskArray[i] > 0) {
 | 
|---|
 | 3679 |           newNData++;
 | 
|---|
 | 3680 |         }
 | 
|---|
 | 3681 |       }
 | 
|---|
 | 3682 |       if (newNData == nData) {
 | 
|---|
 | 3683 |         break; //no more flag to add. iteration stops.
 | 
|---|
 | 3684 |       } else {
 | 
|---|
 | 3685 |         nData = newNData;
 | 
|---|
 | 3686 |       }
 | 
|---|
| [2737] | 3687 | 
 | 
|---|
| [2645] | 3688 |     }
 | 
|---|
 | 3689 |   }
 | 
|---|
 | 3690 | 
 | 
|---|
 | 3691 |   nClipped = initNData - nData;
 | 
|---|
 | 3692 | 
 | 
|---|
| [2773] | 3693 |   std::vector<float> result(nChan);
 | 
|---|
| [2645] | 3694 |   if (getResidual) {
 | 
|---|
 | 3695 |     for (int i = 0; i < nChan; ++i) {
 | 
|---|
| [2773] | 3696 |       result[i] = (float)residual[i];
 | 
|---|
| [2645] | 3697 |     }
 | 
|---|
 | 3698 |   } else {
 | 
|---|
 | 3699 |     for (int i = 0; i < nChan; ++i) {
 | 
|---|
| [2773] | 3700 |       result[i] = (float)r1[i];
 | 
|---|
| [2645] | 3701 |     }
 | 
|---|
 | 3702 |   }
 | 
|---|
 | 3703 | 
 | 
|---|
 | 3704 |   return result;
 | 
|---|
 | 3705 | }
 | 
|---|
 | 3706 | 
 | 
|---|
| [2773] | 3707 | void Scantable::cubicSplineBaseline(const std::vector<bool>& mask, int nPiece, 
 | 
|---|
 | 3708 |                                     float thresClip, int nIterClip, 
 | 
|---|
 | 3709 |                                     bool getResidual, 
 | 
|---|
 | 3710 |                                     const std::string& progressInfo, 
 | 
|---|
 | 3711 |                                     const bool outLogger, const std::string& blfile, 
 | 
|---|
 | 3712 |                                     const std::string& bltable)
 | 
|---|
| [2081] | 3713 | {
 | 
|---|
| [2774] | 3714 |   /****
 | 
|---|
| [2773] | 3715 |   double TimeStart = mathutil::gettimeofday_sec();
 | 
|---|
| [2774] | 3716 |   ****/
 | 
|---|
| [2773] | 3717 | 
 | 
|---|
| [2193] | 3718 |   try {
 | 
|---|
 | 3719 |     ofstream ofs;
 | 
|---|
| [2773] | 3720 |     String coordInfo;
 | 
|---|
 | 3721 |     bool hasSameNchan, outTextFile, csvFormat, showProgress;
 | 
|---|
| [2193] | 3722 |     int minNRow;
 | 
|---|
| [2344] | 3723 |     int nRow = nrow();
 | 
|---|
| [2773] | 3724 |     std::vector<bool> chanMask, finalChanMask;
 | 
|---|
| [2767] | 3725 |     float rms;
 | 
|---|
| [2773] | 3726 |     bool outBaselineTable = (bltable != "");
 | 
|---|
 | 3727 |     STBaselineTable bt = STBaselineTable(*this);
 | 
|---|
 | 3728 |     Vector<Double> timeSecCol;
 | 
|---|
| [2344] | 3729 | 
 | 
|---|
| [2773] | 3730 |     initialiseBaselining(blfile, ofs, outLogger, outTextFile, csvFormat, 
 | 
|---|
 | 3731 |                          coordInfo, hasSameNchan, 
 | 
|---|
 | 3732 |                          progressInfo, showProgress, minNRow, 
 | 
|---|
 | 3733 |                          timeSecCol);
 | 
|---|
| [2767] | 3734 | 
 | 
|---|
| [2773] | 3735 |     std::vector<int> nChanNos;
 | 
|---|
 | 3736 |     std::vector<std::vector<std::vector<double> > > modelReservoir;
 | 
|---|
 | 3737 |     modelReservoir = getPolynomialModelReservoir(3, 
 | 
|---|
 | 3738 |                                                  &Scantable::getNormalPolynomial,
 | 
|---|
 | 3739 |                                                  nChanNos);
 | 
|---|
| [2767] | 3740 | 
 | 
|---|
| [2193] | 3741 |     for (int whichrow = 0; whichrow < nRow; ++whichrow) {
 | 
|---|
| [2591] | 3742 |       std::vector<float> sp = getSpectrum(whichrow);
 | 
|---|
| [2193] | 3743 |       chanMask = getCompositeChanMask(whichrow, mask);
 | 
|---|
| [2773] | 3744 | 
 | 
|---|
 | 3745 |       std::vector<int> pieceEdges;
 | 
|---|
 | 3746 |       std::vector<float> params;
 | 
|---|
| [2193] | 3747 |       int nClipped = 0;
 | 
|---|
| [2773] | 3748 |       std::vector<float> res = doCubicSplineLeastSquareFitting(sp, chanMask, 
 | 
|---|
 | 3749 |                                    modelReservoir[getIdxOfNchan(sp.size(), nChanNos)], 
 | 
|---|
 | 3750 |                                    nPiece, false, pieceEdges, params, rms, finalChanMask, 
 | 
|---|
 | 3751 |                                    nClipped, thresClip, nIterClip, getResidual);
 | 
|---|
| [2591] | 3752 | 
 | 
|---|
| [2773] | 3753 |       if (outBaselineTable) {
 | 
|---|
 | 3754 |         bt.appenddata(getScan(whichrow), getCycle(whichrow), getBeam(whichrow), 
 | 
|---|
 | 3755 |                       getIF(whichrow), getPol(whichrow), 0, timeSecCol[whichrow], 
 | 
|---|
 | 3756 |                       true, STBaselineFunc::CSpline, pieceEdges, std::vector<float>(),
 | 
|---|
 | 3757 |                       getMaskListFromMask(finalChanMask), params, rms, sp.size(), 
 | 
|---|
 | 3758 |                       thresClip, nIterClip, 0.0, 0, std::vector<int>());
 | 
|---|
| [2767] | 3759 |       } else {
 | 
|---|
 | 3760 |         setSpectrum(res, whichrow);
 | 
|---|
 | 3761 |       }
 | 
|---|
| [2591] | 3762 | 
 | 
|---|
| [2773] | 3763 |       outputFittingResult(outLogger, outTextFile, csvFormat, chanMask, whichrow, 
 | 
|---|
 | 3764 |                           coordInfo, hasSameNchan, ofs, "cubicSplineBaseline()", 
 | 
|---|
 | 3765 |                           pieceEdges, params, nClipped);
 | 
|---|
| [2193] | 3766 |       showProgressOnTerminal(whichrow, nRow, showProgress, minNRow);
 | 
|---|
 | 3767 |     }
 | 
|---|
| [2344] | 3768 |     
 | 
|---|
| [2773] | 3769 |     finaliseBaselining(outBaselineTable, &bt, bltable, outTextFile, ofs);
 | 
|---|
| [2767] | 3770 | 
 | 
|---|
| [2193] | 3771 |   } catch (...) {
 | 
|---|
 | 3772 |     throw;
 | 
|---|
| [2012] | 3773 |   }
 | 
|---|
| [2773] | 3774 | 
 | 
|---|
| [2774] | 3775 |   /****
 | 
|---|
| [2773] | 3776 |   double TimeEnd = mathutil::gettimeofday_sec();
 | 
|---|
 | 3777 |   double elapse1 = TimeEnd - TimeStart;
 | 
|---|
 | 3778 |   std::cout << "cspline-new   : " << elapse1 << " (sec.)" << endl;
 | 
|---|
| [2774] | 3779 |   ****/
 | 
|---|
| [2012] | 3780 | }
 | 
|---|
 | 3781 | 
 | 
|---|
| [2773] | 3782 | void Scantable::autoCubicSplineBaseline(const std::vector<bool>& mask, int nPiece, 
 | 
|---|
 | 3783 |                                         float thresClip, int nIterClip, 
 | 
|---|
 | 3784 |                                         const std::vector<int>& edge, 
 | 
|---|
 | 3785 |                                         float threshold, int chanAvgLimit, 
 | 
|---|
 | 3786 |                                         bool getResidual, 
 | 
|---|
 | 3787 |                                         const std::string& progressInfo, 
 | 
|---|
 | 3788 |                                         const bool outLogger, const std::string& blfile, 
 | 
|---|
 | 3789 |                                         const std::string& bltable)
 | 
|---|
| [2012] | 3790 | {
 | 
|---|
| [2193] | 3791 |   try {
 | 
|---|
 | 3792 |     ofstream ofs;
 | 
|---|
| [2773] | 3793 |     String coordInfo;
 | 
|---|
 | 3794 |     bool hasSameNchan, outTextFile, csvFormat, showProgress;
 | 
|---|
| [2767] | 3795 |     int minNRow;
 | 
|---|
 | 3796 |     int nRow = nrow();
 | 
|---|
| [2773] | 3797 |     std::vector<bool> chanMask, finalChanMask;
 | 
|---|
| [2767] | 3798 |     float rms;
 | 
|---|
| [2773] | 3799 |     bool outBaselineTable = (bltable != "");
 | 
|---|
 | 3800 |     STBaselineTable bt = STBaselineTable(*this);
 | 
|---|
 | 3801 |     Vector<Double> timeSecCol;
 | 
|---|
 | 3802 |     STLineFinder lineFinder = STLineFinder();
 | 
|---|
| [2189] | 3803 | 
 | 
|---|
| [2773] | 3804 |     initialiseBaselining(blfile, ofs, outLogger, outTextFile, csvFormat, 
 | 
|---|
 | 3805 |                          coordInfo, hasSameNchan, 
 | 
|---|
 | 3806 |                          progressInfo, showProgress, minNRow, 
 | 
|---|
 | 3807 |                          timeSecCol);
 | 
|---|
| [2767] | 3808 | 
 | 
|---|
| [2773] | 3809 |     initLineFinder(edge, threshold, chanAvgLimit, lineFinder);
 | 
|---|
 | 3810 | 
 | 
|---|
 | 3811 |     std::vector<int> nChanNos;
 | 
|---|
 | 3812 |     std::vector<std::vector<std::vector<double> > > modelReservoir;
 | 
|---|
 | 3813 |     modelReservoir = getPolynomialModelReservoir(3, 
 | 
|---|
 | 3814 |                                                  &Scantable::getNormalPolynomial,
 | 
|---|
 | 3815 |                                                  nChanNos);
 | 
|---|
 | 3816 | 
 | 
|---|
| [2193] | 3817 |     for (int whichrow = 0; whichrow < nRow; ++whichrow) {
 | 
|---|
| [2591] | 3818 |       std::vector<float> sp = getSpectrum(whichrow);
 | 
|---|
| [2193] | 3819 |       std::vector<int> currentEdge;
 | 
|---|
| [2773] | 3820 |       chanMask = getCompositeChanMask(whichrow, mask, edge, currentEdge, lineFinder);
 | 
|---|
| [2193] | 3821 | 
 | 
|---|
| [2773] | 3822 |       std::vector<int> pieceEdges;
 | 
|---|
 | 3823 |       std::vector<float> params;
 | 
|---|
| [2193] | 3824 |       int nClipped = 0;
 | 
|---|
| [2773] | 3825 |       std::vector<float> res = doCubicSplineLeastSquareFitting(sp, chanMask, 
 | 
|---|
 | 3826 |                                    modelReservoir[getIdxOfNchan(sp.size(), nChanNos)], 
 | 
|---|
 | 3827 |                                    nPiece, false, pieceEdges, params, rms, finalChanMask, 
 | 
|---|
 | 3828 |                                    nClipped, thresClip, nIterClip, getResidual);
 | 
|---|
| [2193] | 3829 | 
 | 
|---|
| [2773] | 3830 |       if (outBaselineTable) {
 | 
|---|
 | 3831 |         bt.appenddata(getScan(whichrow), getCycle(whichrow), getBeam(whichrow), 
 | 
|---|
 | 3832 |                       getIF(whichrow), getPol(whichrow), 0, timeSecCol[whichrow], 
 | 
|---|
 | 3833 |                       true, STBaselineFunc::CSpline, pieceEdges, std::vector<float>(),
 | 
|---|
 | 3834 |                       getMaskListFromMask(finalChanMask), params, rms, sp.size(), 
 | 
|---|
 | 3835 |                       thresClip, nIterClip, threshold, chanAvgLimit, currentEdge);
 | 
|---|
| [2767] | 3836 |       } else {
 | 
|---|
 | 3837 |         setSpectrum(res, whichrow);
 | 
|---|
 | 3838 |       }
 | 
|---|
 | 3839 | 
 | 
|---|
| [2773] | 3840 |       outputFittingResult(outLogger, outTextFile, csvFormat, chanMask, whichrow, 
 | 
|---|
 | 3841 |                           coordInfo, hasSameNchan, ofs, "autoCubicSplineBaseline()", 
 | 
|---|
 | 3842 |                           pieceEdges, params, nClipped);
 | 
|---|
| [2193] | 3843 |       showProgressOnTerminal(whichrow, nRow, showProgress, minNRow);
 | 
|---|
| [1907] | 3844 |     }
 | 
|---|
| [2012] | 3845 | 
 | 
|---|
| [2773] | 3846 |     finaliseBaselining(outBaselineTable, &bt, bltable, outTextFile, ofs);
 | 
|---|
| [2767] | 3847 | 
 | 
|---|
| [2193] | 3848 |   } catch (...) {
 | 
|---|
 | 3849 |     throw;
 | 
|---|
| [2012] | 3850 |   }
 | 
|---|
| [1730] | 3851 | }
 | 
|---|
| [1907] | 3852 | 
 | 
|---|
| [2773] | 3853 | std::vector<float> Scantable::doCubicSplineFitting(const std::vector<float>& data, 
 | 
|---|
 | 3854 |                                                    const std::vector<bool>& mask, 
 | 
|---|
 | 3855 |                                                    std::vector<int>& idxEdge, 
 | 
|---|
 | 3856 |                                                    std::vector<float>& params, 
 | 
|---|
 | 3857 |                                                    float& rms, 
 | 
|---|
 | 3858 |                                                    std::vector<bool>& finalmask, 
 | 
|---|
 | 3859 |                                                    float clipth, 
 | 
|---|
 | 3860 |                                                    int clipn)
 | 
|---|
| [2081] | 3861 | {
 | 
|---|
| [2767] | 3862 |   int nClipped = 0;
 | 
|---|
 | 3863 |   return doCubicSplineFitting(data, mask, idxEdge.size()-1, true, idxEdge, params, rms, finalmask, nClipped, clipth, clipn);
 | 
|---|
 | 3864 | }
 | 
|---|
 | 3865 | 
 | 
|---|
| [2773] | 3866 | std::vector<float> Scantable::doCubicSplineFitting(const std::vector<float>& data, 
 | 
|---|
 | 3867 |                                                    const std::vector<bool>& mask, 
 | 
|---|
 | 3868 |                                                    int nPiece, 
 | 
|---|
 | 3869 |                                                    std::vector<int>& idxEdge, 
 | 
|---|
 | 3870 |                                                    std::vector<float>& params, 
 | 
|---|
 | 3871 |                                                    float& rms, 
 | 
|---|
 | 3872 |                                                    std::vector<bool>& finalmask, 
 | 
|---|
 | 3873 |                                                    float clipth, 
 | 
|---|
 | 3874 |                                                    int clipn)
 | 
|---|
| [2767] | 3875 | {
 | 
|---|
 | 3876 |   int nClipped = 0;
 | 
|---|
 | 3877 |   return doCubicSplineFitting(data, mask, nPiece, false, idxEdge, params, rms, finalmask, nClipped, clipth, clipn);
 | 
|---|
 | 3878 | }
 | 
|---|
 | 3879 | 
 | 
|---|
| [2773] | 3880 | std::vector<float> Scantable::doCubicSplineFitting(const std::vector<float>& data, 
 | 
|---|
 | 3881 |                                                    const std::vector<bool>& mask, 
 | 
|---|
 | 3882 |                                                    int nPiece, 
 | 
|---|
 | 3883 |                                                    bool useGivenPieceBoundary, 
 | 
|---|
 | 3884 |                                                    std::vector<int>& idxEdge, 
 | 
|---|
 | 3885 |                                                    std::vector<float>& params, 
 | 
|---|
 | 3886 |                                                    float& rms, 
 | 
|---|
 | 3887 |                                                    std::vector<bool>& finalMask, 
 | 
|---|
 | 3888 |                                                    int& nClipped, 
 | 
|---|
 | 3889 |                                                    float thresClip, 
 | 
|---|
 | 3890 |                                                    int nIterClip, 
 | 
|---|
 | 3891 |                                                    bool getResidual)
 | 
|---|
| [2767] | 3892 | {
 | 
|---|
| [2773] | 3893 |   return doCubicSplineLeastSquareFitting(data, mask, 
 | 
|---|
 | 3894 |                                          getPolynomialModel(3, data.size(), &Scantable::getNormalPolynomial), 
 | 
|---|
 | 3895 |                                          nPiece, useGivenPieceBoundary, idxEdge, 
 | 
|---|
 | 3896 |                                          params, rms, finalMask, 
 | 
|---|
 | 3897 |                                          nClipped, thresClip, nIterClip, 
 | 
|---|
 | 3898 |                                          getResidual);
 | 
|---|
 | 3899 | }
 | 
|---|
 | 3900 | 
 | 
|---|
 | 3901 | std::vector<float> Scantable::doCubicSplineLeastSquareFitting(const std::vector<float>& data, 
 | 
|---|
 | 3902 |                                                               const std::vector<bool>& mask, 
 | 
|---|
 | 3903 |                                                               const std::vector<std::vector<double> >& model, 
 | 
|---|
 | 3904 |                                                               int nPiece, 
 | 
|---|
 | 3905 |                                                               bool useGivenPieceBoundary, 
 | 
|---|
 | 3906 |                                                               std::vector<int>& idxEdge, 
 | 
|---|
 | 3907 |                                                               std::vector<float>& params, 
 | 
|---|
 | 3908 |                                                               float& rms, 
 | 
|---|
 | 3909 |                                                               std::vector<bool>& finalMask, 
 | 
|---|
 | 3910 |                                                               int& nClipped, 
 | 
|---|
 | 3911 |                                                               float thresClip, 
 | 
|---|
 | 3912 |                                                               int nIterClip, 
 | 
|---|
 | 3913 |                                                               bool getResidual)
 | 
|---|
 | 3914 | {
 | 
|---|
 | 3915 |   int nDOF = nPiece + 3;  //number of independent parameters to solve, namely, 4+(nPiece-1).
 | 
|---|
 | 3916 |   int nModel = model.size();
 | 
|---|
 | 3917 |   int nChan = data.size();
 | 
|---|
 | 3918 | 
 | 
|---|
 | 3919 |   if (nModel != 4) {
 | 
|---|
 | 3920 |     throw(AipsError("model size must be 4."));
 | 
|---|
| [2081] | 3921 |   }
 | 
|---|
| [2012] | 3922 |   if (nPiece < 1) {
 | 
|---|
| [2094] | 3923 |     throw(AipsError("number of the sections must be one or more"));
 | 
|---|
| [2012] | 3924 |   }
 | 
|---|
| [2773] | 3925 |   if (nChan < 2*nPiece) {
 | 
|---|
 | 3926 |     throw(AipsError("data size is too few"));
 | 
|---|
 | 3927 |   }
 | 
|---|
 | 3928 |   if (nChan != (int)mask.size()) {
 | 
|---|
 | 3929 |     throw(AipsError("data and mask sizes are not identical"));
 | 
|---|
 | 3930 |   }
 | 
|---|
 | 3931 |   for (int i = 0; i < nModel; ++i) {
 | 
|---|
 | 3932 |     if (nChan != (int)model[i].size()) {
 | 
|---|
 | 3933 |       throw(AipsError("data and model sizes are not identical"));
 | 
|---|
 | 3934 |     }
 | 
|---|
 | 3935 |   }
 | 
|---|
| [2012] | 3936 | 
 | 
|---|
| [2773] | 3937 |   params.clear();
 | 
|---|
 | 3938 |   params.resize(nPiece*nModel);
 | 
|---|
| [2767] | 3939 | 
 | 
|---|
 | 3940 |   finalMask.clear();
 | 
|---|
 | 3941 |   finalMask.resize(nChan);
 | 
|---|
 | 3942 | 
 | 
|---|
| [2344] | 3943 |   std::vector<int> maskArray(nChan);
 | 
|---|
 | 3944 |   std::vector<int> x(nChan);
 | 
|---|
 | 3945 |   int j = 0;
 | 
|---|
| [2012] | 3946 |   for (int i = 0; i < nChan; ++i) {
 | 
|---|
| [2344] | 3947 |     maskArray[i] = mask[i] ? 1 : 0;
 | 
|---|
| [2012] | 3948 |     if (mask[i]) {
 | 
|---|
| [2344] | 3949 |       x[j] = i;
 | 
|---|
 | 3950 |       j++;
 | 
|---|
| [2012] | 3951 |     }
 | 
|---|
| [2767] | 3952 |     finalMask[i] = mask[i];
 | 
|---|
| [2012] | 3953 |   }
 | 
|---|
| [2773] | 3954 | 
 | 
|---|
| [2344] | 3955 |   int initNData = j;
 | 
|---|
| [2773] | 3956 |   int nData = initNData;
 | 
|---|
| [2012] | 3957 | 
 | 
|---|
| [2193] | 3958 |   if (initNData < nPiece) {
 | 
|---|
 | 3959 |     throw(AipsError("too few non-flagged channels"));
 | 
|---|
 | 3960 |   }
 | 
|---|
| [2081] | 3961 | 
 | 
|---|
 | 3962 |   int nElement = (int)(floor(floor((double)(initNData/nPiece))+0.5));
 | 
|---|
| [2344] | 3963 |   std::vector<double> invEdge(nPiece-1);
 | 
|---|
| [2767] | 3964 | 
 | 
|---|
 | 3965 |   if (useGivenPieceBoundary) {
 | 
|---|
 | 3966 |     if ((int)idxEdge.size() != nPiece+1) {
 | 
|---|
 | 3967 |       throw(AipsError("pieceEdge.size() must be equal to nPiece+1."));
 | 
|---|
 | 3968 |     }
 | 
|---|
 | 3969 |   } else {
 | 
|---|
 | 3970 |     idxEdge.clear();
 | 
|---|
 | 3971 |     idxEdge.resize(nPiece+1);
 | 
|---|
 | 3972 |     idxEdge[0] = x[0];
 | 
|---|
 | 3973 |   }
 | 
|---|
| [2012] | 3974 |   for (int i = 1; i < nPiece; ++i) {
 | 
|---|
| [2047] | 3975 |     int valX = x[nElement*i];
 | 
|---|
| [2767] | 3976 |     if (!useGivenPieceBoundary) {
 | 
|---|
 | 3977 |       idxEdge[i] = valX;
 | 
|---|
 | 3978 |     }
 | 
|---|
| [2344] | 3979 |     invEdge[i-1] = 1.0/(double)valX;
 | 
|---|
| [2012] | 3980 |   }
 | 
|---|
| [2767] | 3981 |   if (!useGivenPieceBoundary) {
 | 
|---|
 | 3982 |     idxEdge[nPiece] = x[initNData-1]+1;
 | 
|---|
 | 3983 |   }
 | 
|---|
| [2064] | 3984 | 
 | 
|---|
| [2773] | 3985 |   std::vector<double> z1(nChan), r1(nChan), residual(nChan);
 | 
|---|
| [2012] | 3986 |   for (int i = 0; i < nChan; ++i) {
 | 
|---|
| [2773] | 3987 |     z1[i] = (double)data[i];
 | 
|---|
 | 3988 |     r1[i] = 0.0;
 | 
|---|
| [2344] | 3989 |     residual[i] = 0.0;
 | 
|---|
| [2012] | 3990 |   }
 | 
|---|
 | 3991 | 
 | 
|---|
 | 3992 |   for (int nClip = 0; nClip < nIterClip+1; ++nClip) {
 | 
|---|
| [2064] | 3993 |     // xMatrix : horizontal concatenation of 
 | 
|---|
 | 3994 |     //           the least-sq. matrix (left) and an 
 | 
|---|
 | 3995 |     //           identity matrix (right).
 | 
|---|
 | 3996 |     // the right part is used to calculate the inverse matrix of the left part. 
 | 
|---|
| [2767] | 3997 | 
 | 
|---|
| [2012] | 3998 |     double xMatrix[nDOF][2*nDOF];
 | 
|---|
 | 3999 |     double zMatrix[nDOF];
 | 
|---|
 | 4000 |     for (int i = 0; i < nDOF; ++i) {
 | 
|---|
 | 4001 |       for (int j = 0; j < 2*nDOF; ++j) {
 | 
|---|
 | 4002 |         xMatrix[i][j] = 0.0;
 | 
|---|
 | 4003 |       }
 | 
|---|
 | 4004 |       xMatrix[i][nDOF+i] = 1.0;
 | 
|---|
 | 4005 |       zMatrix[i] = 0.0;
 | 
|---|
 | 4006 |     }
 | 
|---|
 | 4007 | 
 | 
|---|
 | 4008 |     for (int n = 0; n < nPiece; ++n) {
 | 
|---|
| [2193] | 4009 |       int nUseDataInPiece = 0;
 | 
|---|
| [2773] | 4010 |       for (int k = idxEdge[n]; k < idxEdge[n+1]; ++k) {
 | 
|---|
| [2064] | 4011 | 
 | 
|---|
| [2773] | 4012 |         if (maskArray[k] == 0) continue;
 | 
|---|
| [2064] | 4013 | 
 | 
|---|
| [2773] | 4014 |         for (int i = 0; i < nModel; ++i) {
 | 
|---|
 | 4015 |           for (int j = i; j < nModel; ++j) {
 | 
|---|
 | 4016 |             xMatrix[i][j] += model[i][k] * model[j][k];
 | 
|---|
 | 4017 |           }
 | 
|---|
 | 4018 |           zMatrix[i] += z1[k] * model[i][k];
 | 
|---|
 | 4019 |         }
 | 
|---|
| [2064] | 4020 | 
 | 
|---|
| [2773] | 4021 |         for (int i = 0; i < n; ++i) {
 | 
|---|
 | 4022 |           double q = 1.0 - model[1][k]*invEdge[i];
 | 
|---|
| [2012] | 4023 |           q = q*q*q;
 | 
|---|
| [2773] | 4024 |           for (int j = 0; j < nModel; ++j) {
 | 
|---|
 | 4025 |             xMatrix[j][i+nModel] += q * model[j][k];
 | 
|---|
 | 4026 |           }
 | 
|---|
 | 4027 |           for (int j = 0; j < i; ++j) {
 | 
|---|
 | 4028 |             double r = 1.0 - model[1][k]*invEdge[j];
 | 
|---|
| [2012] | 4029 |             r = r*r*r;
 | 
|---|
| [2773] | 4030 |             xMatrix[j+nModel][i+nModel] += r*q;
 | 
|---|
| [2012] | 4031 |           }
 | 
|---|
| [2773] | 4032 |           xMatrix[i+nModel][i+nModel] += q*q;
 | 
|---|
 | 4033 |           zMatrix[i+nModel] += q*z1[k];
 | 
|---|
| [2012] | 4034 |         }
 | 
|---|
| [2064] | 4035 | 
 | 
|---|
| [2193] | 4036 |         nUseDataInPiece++;
 | 
|---|
| [2012] | 4037 |       }
 | 
|---|
| [2193] | 4038 | 
 | 
|---|
 | 4039 |       if (nUseDataInPiece < 1) {
 | 
|---|
 | 4040 |         std::vector<string> suffixOfPieceNumber(4);
 | 
|---|
 | 4041 |         suffixOfPieceNumber[0] = "th";
 | 
|---|
 | 4042 |         suffixOfPieceNumber[1] = "st";
 | 
|---|
 | 4043 |         suffixOfPieceNumber[2] = "nd";
 | 
|---|
 | 4044 |         suffixOfPieceNumber[3] = "rd";
 | 
|---|
 | 4045 |         int idxNoDataPiece = (n % 10 <= 3) ? n : 0;
 | 
|---|
 | 4046 |         ostringstream oss;
 | 
|---|
 | 4047 |         oss << "all channels clipped or masked in " << n << suffixOfPieceNumber[idxNoDataPiece];
 | 
|---|
 | 4048 |         oss << " piece of the spectrum. can't execute fitting anymore.";
 | 
|---|
 | 4049 |         throw(AipsError(String(oss)));
 | 
|---|
 | 4050 |       }
 | 
|---|
| [2012] | 4051 |     }
 | 
|---|
 | 4052 | 
 | 
|---|
 | 4053 |     for (int i = 0; i < nDOF; ++i) {
 | 
|---|
 | 4054 |       for (int j = 0; j < i; ++j) {
 | 
|---|
 | 4055 |         xMatrix[i][j] = xMatrix[j][i];
 | 
|---|
 | 4056 |       }
 | 
|---|
 | 4057 |     }
 | 
|---|
 | 4058 | 
 | 
|---|
| [2344] | 4059 |     std::vector<double> invDiag(nDOF);
 | 
|---|
| [2012] | 4060 |     for (int i = 0; i < nDOF; ++i) {
 | 
|---|
| [2773] | 4061 |       invDiag[i] = 1.0 / xMatrix[i][i];
 | 
|---|
| [2012] | 4062 |       for (int j = 0; j < nDOF; ++j) {
 | 
|---|
 | 4063 |         xMatrix[i][j] *= invDiag[i];
 | 
|---|
 | 4064 |       }
 | 
|---|
 | 4065 |     }
 | 
|---|
 | 4066 | 
 | 
|---|
 | 4067 |     for (int k = 0; k < nDOF; ++k) {
 | 
|---|
 | 4068 |       for (int i = 0; i < nDOF; ++i) {
 | 
|---|
 | 4069 |         if (i != k) {
 | 
|---|
 | 4070 |           double factor1 = xMatrix[k][k];
 | 
|---|
| [2773] | 4071 |           double invfactor1 = 1.0 / factor1;
 | 
|---|
| [2012] | 4072 |           double factor2 = xMatrix[i][k];
 | 
|---|
 | 4073 |           for (int j = k; j < 2*nDOF; ++j) {
 | 
|---|
 | 4074 |             xMatrix[i][j] *= factor1;
 | 
|---|
 | 4075 |             xMatrix[i][j] -= xMatrix[k][j]*factor2;
 | 
|---|
| [2773] | 4076 |             xMatrix[i][j] *= invfactor1;
 | 
|---|
| [2012] | 4077 |           }
 | 
|---|
 | 4078 |         }
 | 
|---|
 | 4079 |       }
 | 
|---|
| [2773] | 4080 |       double invXDiag = 1.0 / xMatrix[k][k];
 | 
|---|
| [2012] | 4081 |       for (int j = k; j < 2*nDOF; ++j) {
 | 
|---|
| [2773] | 4082 |         xMatrix[k][j] *= invXDiag;
 | 
|---|
| [2012] | 4083 |       }
 | 
|---|
 | 4084 |     }
 | 
|---|
 | 4085 |     
 | 
|---|
 | 4086 |     for (int i = 0; i < nDOF; ++i) {
 | 
|---|
 | 4087 |       for (int j = 0; j < nDOF; ++j) {
 | 
|---|
 | 4088 |         xMatrix[i][nDOF+j] *= invDiag[j];
 | 
|---|
 | 4089 |       }
 | 
|---|
 | 4090 |     }
 | 
|---|
| [2767] | 4091 | 
 | 
|---|
| [2012] | 4092 |     //compute a vector y which consists of the coefficients of the best-fit spline curves 
 | 
|---|
 | 4093 |     //(a0,a1,a2,a3(,b3,c3,...)), namely, the ones for the leftmost piece and the ones of 
 | 
|---|
 | 4094 |     //cubic terms for the other pieces (in case nPiece>1).
 | 
|---|
| [2344] | 4095 |     std::vector<double> y(nDOF);
 | 
|---|
| [2012] | 4096 |     for (int i = 0; i < nDOF; ++i) {
 | 
|---|
| [2344] | 4097 |       y[i] = 0.0;
 | 
|---|
| [2012] | 4098 |       for (int j = 0; j < nDOF; ++j) {
 | 
|---|
 | 4099 |         y[i] += xMatrix[i][nDOF+j]*zMatrix[j];
 | 
|---|
 | 4100 |       }
 | 
|---|
 | 4101 |     }
 | 
|---|
 | 4102 | 
 | 
|---|
| [2773] | 4103 |     std::vector<double> a(nModel);
 | 
|---|
 | 4104 |     for (int i = 0; i < nModel; ++i) {
 | 
|---|
 | 4105 |       a[i] = y[i];
 | 
|---|
 | 4106 |     }
 | 
|---|
| [2012] | 4107 | 
 | 
|---|
| [2344] | 4108 |     int j = 0;
 | 
|---|
| [2012] | 4109 |     for (int n = 0; n < nPiece; ++n) {
 | 
|---|
| [2064] | 4110 |       for (int i = idxEdge[n]; i < idxEdge[n+1]; ++i) {
 | 
|---|
| [2773] | 4111 |         r1[i] = 0.0;
 | 
|---|
 | 4112 |         for (int j = 0; j < nModel; ++j) {
 | 
|---|
 | 4113 |           r1[i] += a[j] * model[j][i];
 | 
|---|
 | 4114 |         }
 | 
|---|
| [2012] | 4115 |       }
 | 
|---|
| [2773] | 4116 |       for (int i = 0; i < nModel; ++i) {
 | 
|---|
 | 4117 |         params[j+i] = a[i];
 | 
|---|
 | 4118 |       }
 | 
|---|
 | 4119 |       j += nModel;
 | 
|---|
| [2012] | 4120 | 
 | 
|---|
 | 4121 |       if (n == nPiece-1) break;
 | 
|---|
 | 4122 | 
 | 
|---|
| [2773] | 4123 |       double d = y[n+nModel];
 | 
|---|
| [2064] | 4124 |       double iE = invEdge[n];
 | 
|---|
| [2773] | 4125 |       a[0] +=       d;
 | 
|---|
 | 4126 |       a[1] -= 3.0 * d * iE;
 | 
|---|
 | 4127 |       a[2] += 3.0 * d * iE * iE;
 | 
|---|
 | 4128 |       a[3] -=       d * iE * iE * iE;
 | 
|---|
| [2012] | 4129 |     }
 | 
|---|
 | 4130 | 
 | 
|---|
| [2344] | 4131 |     //subtract constant value for masked regions at the edge of spectrum
 | 
|---|
 | 4132 |     if (idxEdge[0] > 0) {
 | 
|---|
 | 4133 |       int n = idxEdge[0];
 | 
|---|
 | 4134 |       for (int i = 0; i < idxEdge[0]; ++i) {
 | 
|---|
 | 4135 |         //--cubic extrapolate--
 | 
|---|
 | 4136 |         //r1[i] = params[0] + params[1]*x1[i] + params[2]*x2[i] + params[3]*x3[i];
 | 
|---|
 | 4137 |         //--linear extrapolate--
 | 
|---|
 | 4138 |         //r1[i] = (r1[n+1] - r1[n])/(x1[n+1] - x1[n])*(x1[i] - x1[n]) + r1[n];
 | 
|---|
 | 4139 |         //--constant--
 | 
|---|
 | 4140 |         r1[i] = r1[n];
 | 
|---|
 | 4141 |       }
 | 
|---|
 | 4142 |     }
 | 
|---|
| [2767] | 4143 | 
 | 
|---|
| [2344] | 4144 |     if (idxEdge[nPiece] < nChan) {
 | 
|---|
 | 4145 |       int n = idxEdge[nPiece]-1;
 | 
|---|
 | 4146 |       for (int i = idxEdge[nPiece]; i < nChan; ++i) {
 | 
|---|
 | 4147 |         //--cubic extrapolate--
 | 
|---|
 | 4148 |         //int m = 4*(nPiece-1);
 | 
|---|
 | 4149 |         //r1[i] = params[m] + params[m+1]*x1[i] + params[m+2]*x2[i] + params[m+3]*x3[i];
 | 
|---|
 | 4150 |         //--linear extrapolate--
 | 
|---|
 | 4151 |         //r1[i] = (r1[n-1] - r1[n])/(x1[n-1] - x1[n])*(x1[i] - x1[n]) + r1[n];
 | 
|---|
 | 4152 |         //--constant--
 | 
|---|
 | 4153 |         r1[i] = r1[n];
 | 
|---|
 | 4154 |       }
 | 
|---|
 | 4155 |     }
 | 
|---|
 | 4156 | 
 | 
|---|
 | 4157 |     for (int i = 0; i < nChan; ++i) {
 | 
|---|
 | 4158 |       residual[i] = z1[i] - r1[i];
 | 
|---|
 | 4159 |     }
 | 
|---|
 | 4160 | 
 | 
|---|
| [2767] | 4161 |     double stdDev = 0.0;
 | 
|---|
 | 4162 |     for (int i = 0; i < nChan; ++i) {
 | 
|---|
 | 4163 |       stdDev += residual[i]*residual[i]*(double)maskArray[i];
 | 
|---|
 | 4164 |     }
 | 
|---|
 | 4165 |     stdDev = sqrt(stdDev/(double)nData);
 | 
|---|
 | 4166 |     rms = (float)stdDev;
 | 
|---|
 | 4167 | 
 | 
|---|
| [2012] | 4168 |     if ((nClip == nIterClip) || (thresClip <= 0.0)) {
 | 
|---|
 | 4169 |       break;
 | 
|---|
 | 4170 |     } else {
 | 
|---|
 | 4171 |       
 | 
|---|
 | 4172 |       double thres = stdDev * thresClip;
 | 
|---|
 | 4173 |       int newNData = 0;
 | 
|---|
 | 4174 |       for (int i = 0; i < nChan; ++i) {
 | 
|---|
| [2081] | 4175 |         if (abs(residual[i]) >= thres) {
 | 
|---|
| [2012] | 4176 |           maskArray[i] = 0;
 | 
|---|
| [2767] | 4177 |           finalMask[i] = false;
 | 
|---|
| [2012] | 4178 |         }
 | 
|---|
 | 4179 |         if (maskArray[i] > 0) {
 | 
|---|
 | 4180 |           newNData++;
 | 
|---|
 | 4181 |         }
 | 
|---|
 | 4182 |       }
 | 
|---|
| [2081] | 4183 |       if (newNData == nData) {
 | 
|---|
| [2064] | 4184 |         break; //no more flag to add. iteration stops.
 | 
|---|
| [2012] | 4185 |       } else {
 | 
|---|
| [2081] | 4186 |         nData = newNData;
 | 
|---|
| [2012] | 4187 |       }
 | 
|---|
| [2767] | 4188 | 
 | 
|---|
| [2012] | 4189 |     }
 | 
|---|
 | 4190 |   }
 | 
|---|
 | 4191 | 
 | 
|---|
| [2193] | 4192 |   nClipped = initNData - nData;
 | 
|---|
 | 4193 | 
 | 
|---|
| [2344] | 4194 |   std::vector<float> result(nChan);
 | 
|---|
| [2058] | 4195 |   if (getResidual) {
 | 
|---|
 | 4196 |     for (int i = 0; i < nChan; ++i) {
 | 
|---|
| [2344] | 4197 |       result[i] = (float)residual[i];
 | 
|---|
| [2058] | 4198 |     }
 | 
|---|
 | 4199 |   } else {
 | 
|---|
 | 4200 |     for (int i = 0; i < nChan; ++i) {
 | 
|---|
| [2344] | 4201 |       result[i] = (float)r1[i];
 | 
|---|
| [2058] | 4202 |     }
 | 
|---|
| [2012] | 4203 |   }
 | 
|---|
 | 4204 | 
 | 
|---|
| [2058] | 4205 |   return result;
 | 
|---|
| [2012] | 4206 | }
 | 
|---|
 | 4207 | 
 | 
|---|
| [2773] | 4208 | std::vector<int> Scantable::selectWaveNumbers(const std::vector<int>& addNWaves, 
 | 
|---|
 | 4209 |                                   const std::vector<int>& rejectNWaves)
 | 
|---|
| [2081] | 4210 | {
 | 
|---|
| [2773] | 4211 |   std::vector<bool> chanMask;
 | 
|---|
| [2767] | 4212 |   std::string fftMethod;
 | 
|---|
 | 4213 |   std::string fftThresh;
 | 
|---|
 | 4214 | 
 | 
|---|
| [2773] | 4215 |   return selectWaveNumbers(0, chanMask, false, fftMethod, fftThresh, addNWaves, rejectNWaves);
 | 
|---|
 | 4216 | }
 | 
|---|
 | 4217 | 
 | 
|---|
 | 4218 | std::vector<int> Scantable::selectWaveNumbers(const int whichrow, 
 | 
|---|
 | 4219 |                                   const std::vector<bool>& chanMask, 
 | 
|---|
 | 4220 |                                   const bool applyFFT, 
 | 
|---|
 | 4221 |                                   const std::string& fftMethod, 
 | 
|---|
 | 4222 |                                   const std::string& fftThresh, 
 | 
|---|
 | 4223 |                                   const std::vector<int>& addNWaves, 
 | 
|---|
 | 4224 |                                   const std::vector<int>& rejectNWaves)
 | 
|---|
 | 4225 | {
 | 
|---|
 | 4226 |   std::vector<int> nWaves;
 | 
|---|
| [2186] | 4227 |   nWaves.clear();
 | 
|---|
 | 4228 | 
 | 
|---|
 | 4229 |   if (applyFFT) {
 | 
|---|
 | 4230 |     string fftThAttr;
 | 
|---|
 | 4231 |     float fftThSigma;
 | 
|---|
 | 4232 |     int fftThTop;
 | 
|---|
| [2773] | 4233 |     parseFFTThresholdInfo(fftThresh, fftThAttr, fftThSigma, fftThTop);
 | 
|---|
| [2186] | 4234 |     doSelectWaveNumbers(whichrow, chanMask, fftMethod, fftThSigma, fftThTop, fftThAttr, nWaves);
 | 
|---|
 | 4235 |   }
 | 
|---|
 | 4236 | 
 | 
|---|
| [2411] | 4237 |   addAuxWaveNumbers(whichrow, addNWaves, rejectNWaves, nWaves);
 | 
|---|
| [2773] | 4238 | 
 | 
|---|
 | 4239 |   return nWaves;
 | 
|---|
| [2186] | 4240 | }
 | 
|---|
 | 4241 | 
 | 
|---|
| [2773] | 4242 | int Scantable::getIdxOfNchan(const int nChan, const std::vector<int>& nChanNos)
 | 
|---|
 | 4243 | {
 | 
|---|
 | 4244 |   int idx = -1;
 | 
|---|
 | 4245 |   for (uint i = 0; i < nChanNos.size(); ++i) {
 | 
|---|
 | 4246 |     if (nChan == nChanNos[i]) {
 | 
|---|
 | 4247 |       idx = i;
 | 
|---|
 | 4248 |       break;
 | 
|---|
 | 4249 |     }
 | 
|---|
 | 4250 |   }
 | 
|---|
 | 4251 | 
 | 
|---|
 | 4252 |   if (idx < 0) {
 | 
|---|
 | 4253 |     throw(AipsError("nChan not found in nChhanNos."));
 | 
|---|
 | 4254 |   }
 | 
|---|
 | 4255 | 
 | 
|---|
 | 4256 |   return idx;
 | 
|---|
 | 4257 | }
 | 
|---|
 | 4258 | 
 | 
|---|
| [2767] | 4259 | void Scantable::parseFFTInfo(const std::string& fftInfo, bool& applyFFT, std::string& fftMethod, std::string& fftThresh)
 | 
|---|
 | 4260 | {
 | 
|---|
 | 4261 |   istringstream iss(fftInfo);
 | 
|---|
 | 4262 |   std::string tmp;
 | 
|---|
 | 4263 |   std::vector<string> res;
 | 
|---|
 | 4264 |   while (getline(iss, tmp, ',')) {
 | 
|---|
 | 4265 |     res.push_back(tmp);
 | 
|---|
 | 4266 |   }
 | 
|---|
 | 4267 |   if (res.size() < 3) {
 | 
|---|
 | 4268 |     throw(AipsError("wrong value in 'fftinfo' parameter")) ;
 | 
|---|
 | 4269 |   }
 | 
|---|
 | 4270 |   applyFFT = (res[0] == "true");
 | 
|---|
 | 4271 |   fftMethod = res[1];
 | 
|---|
 | 4272 |   fftThresh = res[2];
 | 
|---|
 | 4273 | }
 | 
|---|
 | 4274 | 
 | 
|---|
| [2773] | 4275 | void Scantable::parseFFTThresholdInfo(const std::string& fftThresh, std::string& fftThAttr, float& fftThSigma, int& fftThTop)
 | 
|---|
| [2186] | 4276 | {
 | 
|---|
 | 4277 |   uInt idxSigma = fftThresh.find("sigma");
 | 
|---|
 | 4278 |   uInt idxTop   = fftThresh.find("top");
 | 
|---|
 | 4279 | 
 | 
|---|
 | 4280 |   if (idxSigma == fftThresh.size() - 5) {
 | 
|---|
 | 4281 |     std::istringstream is(fftThresh.substr(0, fftThresh.size() - 5));
 | 
|---|
 | 4282 |     is >> fftThSigma;
 | 
|---|
 | 4283 |     fftThAttr = "sigma";
 | 
|---|
 | 4284 |   } else if (idxTop == 0) {
 | 
|---|
 | 4285 |     std::istringstream is(fftThresh.substr(3));
 | 
|---|
 | 4286 |     is >> fftThTop;
 | 
|---|
 | 4287 |     fftThAttr = "top";
 | 
|---|
 | 4288 |   } else {
 | 
|---|
 | 4289 |     bool isNumber = true;
 | 
|---|
 | 4290 |     for (uInt i = 0; i < fftThresh.size()-1; ++i) {
 | 
|---|
 | 4291 |       char ch = (fftThresh.substr(i, 1).c_str())[0];
 | 
|---|
 | 4292 |       if (!(isdigit(ch) || (fftThresh.substr(i, 1) == "."))) {
 | 
|---|
 | 4293 |         isNumber = false;
 | 
|---|
 | 4294 |         break;
 | 
|---|
 | 4295 |       }
 | 
|---|
 | 4296 |     }
 | 
|---|
 | 4297 |     if (isNumber) {
 | 
|---|
 | 4298 |       std::istringstream is(fftThresh);
 | 
|---|
 | 4299 |       is >> fftThSigma;
 | 
|---|
 | 4300 |       fftThAttr = "sigma";
 | 
|---|
 | 4301 |     } else {
 | 
|---|
 | 4302 |       throw(AipsError("fftthresh has a wrong value"));
 | 
|---|
 | 4303 |     }
 | 
|---|
 | 4304 |   }
 | 
|---|
 | 4305 | }
 | 
|---|
 | 4306 | 
 | 
|---|
 | 4307 | void Scantable::doSelectWaveNumbers(const int whichrow, const std::vector<bool>& chanMask, const std::string& fftMethod, const float fftThSigma, const int fftThTop, const std::string& fftThAttr, std::vector<int>& nWaves)
 | 
|---|
 | 4308 | {
 | 
|---|
 | 4309 |   std::vector<float> fspec;
 | 
|---|
 | 4310 |   if (fftMethod == "fft") {
 | 
|---|
 | 4311 |     fspec = execFFT(whichrow, chanMask, false, true);
 | 
|---|
 | 4312 |   //} else if (fftMethod == "lsp") {
 | 
|---|
 | 4313 |   //  fspec = lombScarglePeriodogram(whichrow);
 | 
|---|
 | 4314 |   }
 | 
|---|
 | 4315 | 
 | 
|---|
 | 4316 |   if (fftThAttr == "sigma") {
 | 
|---|
 | 4317 |     float mean  = 0.0;
 | 
|---|
 | 4318 |     float mean2 = 0.0;
 | 
|---|
 | 4319 |     for (uInt i = 0; i < fspec.size(); ++i) {
 | 
|---|
 | 4320 |       mean  += fspec[i];
 | 
|---|
 | 4321 |       mean2 += fspec[i]*fspec[i];
 | 
|---|
 | 4322 |     }
 | 
|---|
 | 4323 |     mean  /= float(fspec.size());
 | 
|---|
 | 4324 |     mean2 /= float(fspec.size());
 | 
|---|
 | 4325 |     float thres = mean + fftThSigma * float(sqrt(mean2 - mean*mean));
 | 
|---|
 | 4326 | 
 | 
|---|
 | 4327 |     for (uInt i = 0; i < fspec.size(); ++i) {
 | 
|---|
 | 4328 |       if (fspec[i] >= thres) {
 | 
|---|
 | 4329 |         nWaves.push_back(i);
 | 
|---|
 | 4330 |       }
 | 
|---|
 | 4331 |     }
 | 
|---|
 | 4332 | 
 | 
|---|
 | 4333 |   } else if (fftThAttr == "top") {
 | 
|---|
 | 4334 |     for (int i = 0; i < fftThTop; ++i) {
 | 
|---|
 | 4335 |       float max = 0.0;
 | 
|---|
 | 4336 |       int maxIdx = 0;
 | 
|---|
 | 4337 |       for (uInt j = 0; j < fspec.size(); ++j) {
 | 
|---|
 | 4338 |         if (fspec[j] > max) {
 | 
|---|
 | 4339 |           max = fspec[j];
 | 
|---|
 | 4340 |           maxIdx = j;
 | 
|---|
 | 4341 |         }
 | 
|---|
 | 4342 |       }
 | 
|---|
 | 4343 |       nWaves.push_back(maxIdx);
 | 
|---|
 | 4344 |       fspec[maxIdx] = 0.0;
 | 
|---|
 | 4345 |     }
 | 
|---|
 | 4346 | 
 | 
|---|
 | 4347 |   }
 | 
|---|
 | 4348 | 
 | 
|---|
 | 4349 |   if (nWaves.size() > 1) {
 | 
|---|
 | 4350 |     sort(nWaves.begin(), nWaves.end());
 | 
|---|
 | 4351 |   }
 | 
|---|
 | 4352 | }
 | 
|---|
 | 4353 | 
 | 
|---|
| [2411] | 4354 | void Scantable::addAuxWaveNumbers(const int whichrow, const std::vector<int>& addNWaves, const std::vector<int>& rejectNWaves, std::vector<int>& nWaves)
 | 
|---|
| [2186] | 4355 | {
 | 
|---|
| [2411] | 4356 |   std::vector<int> tempAddNWaves, tempRejectNWaves;
 | 
|---|
| [2767] | 4357 |   tempAddNWaves.clear();
 | 
|---|
 | 4358 |   tempRejectNWaves.clear();
 | 
|---|
 | 4359 | 
 | 
|---|
| [2186] | 4360 |   for (uInt i = 0; i < addNWaves.size(); ++i) {
 | 
|---|
| [2411] | 4361 |     tempAddNWaves.push_back(addNWaves[i]);
 | 
|---|
 | 4362 |   }
 | 
|---|
 | 4363 |   if ((tempAddNWaves.size() == 2) && (tempAddNWaves[1] == -999)) {
 | 
|---|
 | 4364 |     setWaveNumberListUptoNyquistFreq(whichrow, tempAddNWaves);
 | 
|---|
 | 4365 |   }
 | 
|---|
 | 4366 | 
 | 
|---|
 | 4367 |   for (uInt i = 0; i < rejectNWaves.size(); ++i) {
 | 
|---|
 | 4368 |     tempRejectNWaves.push_back(rejectNWaves[i]);
 | 
|---|
 | 4369 |   }
 | 
|---|
 | 4370 |   if ((tempRejectNWaves.size() == 2) && (tempRejectNWaves[1] == -999)) {
 | 
|---|
 | 4371 |     setWaveNumberListUptoNyquistFreq(whichrow, tempRejectNWaves);
 | 
|---|
 | 4372 |   }
 | 
|---|
 | 4373 | 
 | 
|---|
 | 4374 |   for (uInt i = 0; i < tempAddNWaves.size(); ++i) {
 | 
|---|
| [2186] | 4375 |     bool found = false;
 | 
|---|
 | 4376 |     for (uInt j = 0; j < nWaves.size(); ++j) {
 | 
|---|
| [2411] | 4377 |       if (nWaves[j] == tempAddNWaves[i]) {
 | 
|---|
| [2186] | 4378 |         found = true;
 | 
|---|
 | 4379 |         break;
 | 
|---|
 | 4380 |       }
 | 
|---|
 | 4381 |     }
 | 
|---|
| [2411] | 4382 |     if (!found) nWaves.push_back(tempAddNWaves[i]);
 | 
|---|
| [2186] | 4383 |   }
 | 
|---|
 | 4384 | 
 | 
|---|
| [2411] | 4385 |   for (uInt i = 0; i < tempRejectNWaves.size(); ++i) {
 | 
|---|
| [2186] | 4386 |     for (std::vector<int>::iterator j = nWaves.begin(); j != nWaves.end(); ) {
 | 
|---|
| [2411] | 4387 |       if (*j == tempRejectNWaves[i]) {
 | 
|---|
| [2186] | 4388 |         j = nWaves.erase(j);
 | 
|---|
 | 4389 |       } else {
 | 
|---|
 | 4390 |         ++j;
 | 
|---|
 | 4391 |       }
 | 
|---|
 | 4392 |     }
 | 
|---|
 | 4393 |   }
 | 
|---|
 | 4394 | 
 | 
|---|
 | 4395 |   if (nWaves.size() > 1) {
 | 
|---|
 | 4396 |     sort(nWaves.begin(), nWaves.end());
 | 
|---|
 | 4397 |     unique(nWaves.begin(), nWaves.end());
 | 
|---|
 | 4398 |   }
 | 
|---|
 | 4399 | }
 | 
|---|
 | 4400 | 
 | 
|---|
| [2411] | 4401 | void Scantable::setWaveNumberListUptoNyquistFreq(const int whichrow, std::vector<int>& nWaves)
 | 
|---|
 | 4402 | {
 | 
|---|
| [2767] | 4403 |   int val = nWaves[0];
 | 
|---|
 | 4404 |   int nyquistFreq = nchan(getIF(whichrow))/2+1;
 | 
|---|
 | 4405 |   nWaves.clear();
 | 
|---|
 | 4406 |   if (val > nyquistFreq) {  // for safety, at least nWaves contains a constant; CAS-3759
 | 
|---|
 | 4407 |     nWaves.push_back(0);
 | 
|---|
| [2411] | 4408 |   }
 | 
|---|
| [2767] | 4409 |   while (val <= nyquistFreq) {
 | 
|---|
 | 4410 |     nWaves.push_back(val);
 | 
|---|
 | 4411 |     val++;
 | 
|---|
 | 4412 |   }
 | 
|---|
| [2411] | 4413 | }
 | 
|---|
 | 4414 | 
 | 
|---|
| [2773] | 4415 | void Scantable::sinusoidBaseline(const std::vector<bool>& mask, const std::string& fftInfo, 
 | 
|---|
 | 4416 |                                  const std::vector<int>& addNWaves, 
 | 
|---|
 | 4417 |                                  const std::vector<int>& rejectNWaves, 
 | 
|---|
 | 4418 |                                  float thresClip, int nIterClip, 
 | 
|---|
 | 4419 |                                  bool getResidual, 
 | 
|---|
 | 4420 |                                  const std::string& progressInfo, 
 | 
|---|
 | 4421 |                                  const bool outLogger, const std::string& blfile, 
 | 
|---|
 | 4422 |                                  const std::string& bltable)
 | 
|---|
| [2186] | 4423 | {
 | 
|---|
| [2774] | 4424 |   /****
 | 
|---|
| [2773] | 4425 |   double TimeStart = mathutil::gettimeofday_sec();
 | 
|---|
| [2774] | 4426 |   ****/
 | 
|---|
| [2773] | 4427 | 
 | 
|---|
| [2193] | 4428 |   try {
 | 
|---|
 | 4429 |     ofstream ofs;
 | 
|---|
| [2773] | 4430 |     String coordInfo;
 | 
|---|
 | 4431 |     bool hasSameNchan, outTextFile, csvFormat, showProgress;
 | 
|---|
 | 4432 |     int minNRow;
 | 
|---|
 | 4433 |     int nRow = nrow();
 | 
|---|
 | 4434 |     std::vector<bool> chanMask, finalChanMask;
 | 
|---|
 | 4435 |     float rms;
 | 
|---|
 | 4436 |     bool outBaselineTable = (bltable != "");
 | 
|---|
 | 4437 |     STBaselineTable bt = STBaselineTable(*this);
 | 
|---|
 | 4438 |     Vector<Double> timeSecCol;
 | 
|---|
| [2012] | 4439 | 
 | 
|---|
| [2773] | 4440 |     initialiseBaselining(blfile, ofs, outLogger, outTextFile, csvFormat, 
 | 
|---|
 | 4441 |                          coordInfo, hasSameNchan, 
 | 
|---|
 | 4442 |                          progressInfo, showProgress, minNRow, 
 | 
|---|
 | 4443 |                          timeSecCol);
 | 
|---|
| [2012] | 4444 | 
 | 
|---|
| [2773] | 4445 |     bool applyFFT;
 | 
|---|
 | 4446 |     std::string fftMethod, fftThresh;
 | 
|---|
 | 4447 |     parseFFTInfo(fftInfo, applyFFT, fftMethod, fftThresh);
 | 
|---|
| [2012] | 4448 | 
 | 
|---|
| [2193] | 4449 |     std::vector<int> nWaves;
 | 
|---|
| [2773] | 4450 |     std::vector<int> nChanNos;
 | 
|---|
 | 4451 |     std::vector<std::vector<std::vector<double> > > modelReservoir;
 | 
|---|
 | 4452 |     if (!applyFFT) {
 | 
|---|
 | 4453 |       nWaves = selectWaveNumbers(addNWaves, rejectNWaves);
 | 
|---|
 | 4454 |       modelReservoir = getSinusoidModelReservoir(nWaves, nChanNos);
 | 
|---|
 | 4455 |     }
 | 
|---|
| [2012] | 4456 | 
 | 
|---|
| [2193] | 4457 |     for (int whichrow = 0; whichrow < nRow; ++whichrow) {
 | 
|---|
| [2767] | 4458 |       std::vector<float> sp = getSpectrum(whichrow);
 | 
|---|
| [2193] | 4459 |       chanMask = getCompositeChanMask(whichrow, mask);
 | 
|---|
| [2773] | 4460 |       std::vector<std::vector<double> > model;
 | 
|---|
 | 4461 |       if (applyFFT) {
 | 
|---|
 | 4462 |         nWaves = selectWaveNumbers(whichrow, chanMask, true, fftMethod, fftThresh, 
 | 
|---|
 | 4463 |                                    addNWaves, rejectNWaves);
 | 
|---|
 | 4464 |         model = getSinusoidModel(nWaves, sp.size());
 | 
|---|
 | 4465 |       } else {
 | 
|---|
 | 4466 |         model = modelReservoir[getIdxOfNchan(sp.size(), nChanNos)];
 | 
|---|
 | 4467 |       }
 | 
|---|
| [2186] | 4468 | 
 | 
|---|
| [2767] | 4469 |       std::vector<float> params;
 | 
|---|
 | 4470 |       int nClipped = 0;
 | 
|---|
| [2773] | 4471 |       std::vector<float> res = doLeastSquareFitting(sp, chanMask, model, 
 | 
|---|
 | 4472 |                                    params, rms, finalChanMask, 
 | 
|---|
 | 4473 |                                    nClipped, thresClip, nIterClip, getResidual);
 | 
|---|
| [2767] | 4474 | 
 | 
|---|
| [2773] | 4475 |       if (outBaselineTable) {
 | 
|---|
 | 4476 |         bt.appenddata(getScan(whichrow), getCycle(whichrow), getBeam(whichrow), 
 | 
|---|
 | 4477 |                       getIF(whichrow), getPol(whichrow), 0, timeSecCol[whichrow], 
 | 
|---|
 | 4478 |                       true, STBaselineFunc::Sinusoid, nWaves, std::vector<float>(),
 | 
|---|
 | 4479 |                       getMaskListFromMask(finalChanMask), params, rms, sp.size(), 
 | 
|---|
 | 4480 |                       thresClip, nIterClip, 0.0, 0, std::vector<int>());
 | 
|---|
| [2767] | 4481 |       } else {
 | 
|---|
 | 4482 |         setSpectrum(res, whichrow);
 | 
|---|
| [2186] | 4483 |       }
 | 
|---|
| [2193] | 4484 | 
 | 
|---|
| [2773] | 4485 |       outputFittingResult(outLogger, outTextFile, csvFormat, chanMask, whichrow, 
 | 
|---|
 | 4486 |                           coordInfo, hasSameNchan, ofs, "sinusoidBaseline()", 
 | 
|---|
 | 4487 |                           params, nClipped);
 | 
|---|
| [2193] | 4488 |       showProgressOnTerminal(whichrow, nRow, showProgress, minNRow);
 | 
|---|
| [2186] | 4489 |     }
 | 
|---|
 | 4490 | 
 | 
|---|
| [2773] | 4491 |     finaliseBaselining(outBaselineTable, &bt, bltable, outTextFile, ofs);
 | 
|---|
| [2767] | 4492 | 
 | 
|---|
| [2193] | 4493 |   } catch (...) {
 | 
|---|
 | 4494 |     throw;
 | 
|---|
| [1931] | 4495 |   }
 | 
|---|
| [2773] | 4496 | 
 | 
|---|
| [2774] | 4497 |   /****
 | 
|---|
| [2773] | 4498 |   double TimeEnd = mathutil::gettimeofday_sec();
 | 
|---|
 | 4499 |   double elapse1 = TimeEnd - TimeStart;
 | 
|---|
 | 4500 |   std::cout << "sinusoid-old   : " << elapse1 << " (sec.)" << endl;
 | 
|---|
| [2774] | 4501 |   ****/
 | 
|---|
| [1907] | 4502 | }
 | 
|---|
 | 4503 | 
 | 
|---|
| [2773] | 4504 | void Scantable::autoSinusoidBaseline(const std::vector<bool>& mask, const std::string& fftInfo, 
 | 
|---|
 | 4505 |                                      const std::vector<int>& addNWaves, 
 | 
|---|
 | 4506 |                                      const std::vector<int>& rejectNWaves, 
 | 
|---|
 | 4507 |                                      float thresClip, int nIterClip, 
 | 
|---|
 | 4508 |                                      const std::vector<int>& edge, 
 | 
|---|
 | 4509 |                                      float threshold, int chanAvgLimit, 
 | 
|---|
 | 4510 |                                      bool getResidual, 
 | 
|---|
 | 4511 |                                      const std::string& progressInfo, 
 | 
|---|
 | 4512 |                                      const bool outLogger, const std::string& blfile, 
 | 
|---|
 | 4513 |                                      const std::string& bltable)
 | 
|---|
| [2012] | 4514 | {
 | 
|---|
| [2193] | 4515 |   try {
 | 
|---|
 | 4516 |     ofstream ofs;
 | 
|---|
| [2773] | 4517 |     String coordInfo;
 | 
|---|
 | 4518 |     bool hasSameNchan, outTextFile, csvFormat, showProgress;
 | 
|---|
 | 4519 |     int minNRow;
 | 
|---|
 | 4520 |     int nRow = nrow();
 | 
|---|
 | 4521 |     std::vector<bool> chanMask, finalChanMask;
 | 
|---|
 | 4522 |     float rms;
 | 
|---|
 | 4523 |     bool outBaselineTable = (bltable != "");
 | 
|---|
 | 4524 |     STBaselineTable bt = STBaselineTable(*this);
 | 
|---|
 | 4525 |     Vector<Double> timeSecCol;
 | 
|---|
 | 4526 |     STLineFinder lineFinder = STLineFinder();
 | 
|---|
| [2012] | 4527 | 
 | 
|---|
| [2773] | 4528 |     initialiseBaselining(blfile, ofs, outLogger, outTextFile, csvFormat, 
 | 
|---|
 | 4529 |                          coordInfo, hasSameNchan, 
 | 
|---|
 | 4530 |                          progressInfo, showProgress, minNRow, 
 | 
|---|
 | 4531 |                          timeSecCol);
 | 
|---|
| [2012] | 4532 | 
 | 
|---|
| [2773] | 4533 |     initLineFinder(edge, threshold, chanAvgLimit, lineFinder);
 | 
|---|
| [2012] | 4534 | 
 | 
|---|
| [2773] | 4535 |     bool applyFFT;
 | 
|---|
 | 4536 |     string fftMethod, fftThresh;
 | 
|---|
 | 4537 |     parseFFTInfo(fftInfo, applyFFT, fftMethod, fftThresh);
 | 
|---|
| [2012] | 4538 | 
 | 
|---|
| [2193] | 4539 |     std::vector<int> nWaves;
 | 
|---|
| [2773] | 4540 |     std::vector<int> nChanNos;
 | 
|---|
 | 4541 |     std::vector<std::vector<std::vector<double> > > modelReservoir;
 | 
|---|
 | 4542 |     if (!applyFFT) {
 | 
|---|
 | 4543 |       nWaves = selectWaveNumbers(addNWaves, rejectNWaves);
 | 
|---|
 | 4544 |       modelReservoir = getSinusoidModelReservoir(nWaves, nChanNos);
 | 
|---|
 | 4545 |     }
 | 
|---|
| [2186] | 4546 | 
 | 
|---|
| [2193] | 4547 |     for (int whichrow = 0; whichrow < nRow; ++whichrow) {
 | 
|---|
| [2767] | 4548 |       std::vector<float> sp = getSpectrum(whichrow);
 | 
|---|
| [2193] | 4549 |       std::vector<int> currentEdge;
 | 
|---|
| [2773] | 4550 |       chanMask = getCompositeChanMask(whichrow, mask, edge, currentEdge, lineFinder);
 | 
|---|
 | 4551 |       std::vector<std::vector<double> > model;
 | 
|---|
 | 4552 |       if (applyFFT) {
 | 
|---|
 | 4553 |         nWaves = selectWaveNumbers(whichrow, chanMask, true, fftMethod, fftThresh, 
 | 
|---|
 | 4554 |                                    addNWaves, rejectNWaves);
 | 
|---|
 | 4555 |         model = getSinusoidModel(nWaves, sp.size());
 | 
|---|
| [2193] | 4556 |       } else {
 | 
|---|
| [2773] | 4557 |         model = modelReservoir[getIdxOfNchan(sp.size(), nChanNos)];
 | 
|---|
| [2012] | 4558 |       }
 | 
|---|
| [2193] | 4559 | 
 | 
|---|
 | 4560 |       std::vector<float> params;
 | 
|---|
 | 4561 |       int nClipped = 0;
 | 
|---|
| [2773] | 4562 |       std::vector<float> res = doLeastSquareFitting(sp, chanMask, model, 
 | 
|---|
 | 4563 |                                    params, rms, finalChanMask, 
 | 
|---|
 | 4564 |                                    nClipped, thresClip, nIterClip, getResidual);
 | 
|---|
| [2193] | 4565 | 
 | 
|---|
| [2773] | 4566 |       if (outBaselineTable) {
 | 
|---|
 | 4567 |         bt.appenddata(getScan(whichrow), getCycle(whichrow), getBeam(whichrow), 
 | 
|---|
 | 4568 |                       getIF(whichrow), getPol(whichrow), 0, timeSecCol[whichrow], 
 | 
|---|
 | 4569 |                       true, STBaselineFunc::Sinusoid, nWaves, std::vector<float>(),
 | 
|---|
 | 4570 |                       getMaskListFromMask(finalChanMask), params, rms, sp.size(), 
 | 
|---|
 | 4571 |                       thresClip, nIterClip, threshold, chanAvgLimit, currentEdge);
 | 
|---|
| [2767] | 4572 |       } else {
 | 
|---|
 | 4573 |         setSpectrum(res, whichrow);
 | 
|---|
 | 4574 |       }
 | 
|---|
 | 4575 | 
 | 
|---|
| [2773] | 4576 |       outputFittingResult(outLogger, outTextFile, csvFormat, chanMask, whichrow, 
 | 
|---|
 | 4577 |                           coordInfo, hasSameNchan, ofs, "autoSinusoidBaseline()", 
 | 
|---|
 | 4578 |                           params, nClipped);
 | 
|---|
| [2193] | 4579 |       showProgressOnTerminal(whichrow, nRow, showProgress, minNRow);
 | 
|---|
| [2012] | 4580 |     }
 | 
|---|
 | 4581 | 
 | 
|---|
| [2773] | 4582 |     finaliseBaselining(outBaselineTable, &bt, bltable, outTextFile, ofs);
 | 
|---|
| [2767] | 4583 | 
 | 
|---|
| [2193] | 4584 |   } catch (...) {
 | 
|---|
 | 4585 |     throw;
 | 
|---|
| [2047] | 4586 |   }
 | 
|---|
 | 4587 | }
 | 
|---|
 | 4588 | 
 | 
|---|
| [2773] | 4589 | std::vector<float> Scantable::doSinusoidFitting(const std::vector<float>& data, 
 | 
|---|
 | 4590 |                                                 const std::vector<bool>& mask, 
 | 
|---|
 | 4591 |                                                 const std::vector<int>& waveNumbers, 
 | 
|---|
 | 4592 |                                                 std::vector<float>& params, 
 | 
|---|
 | 4593 |                                                 float& rms, 
 | 
|---|
 | 4594 |                                                 std::vector<bool>& finalmask, 
 | 
|---|
 | 4595 |                                                 float clipth, 
 | 
|---|
 | 4596 |                                                 int clipn)
 | 
|---|
| [2081] | 4597 | {
 | 
|---|
| [2767] | 4598 |   int nClipped = 0;
 | 
|---|
 | 4599 |   return doSinusoidFitting(data, mask, waveNumbers, params, rms, finalmask, nClipped, clipth, clipn);
 | 
|---|
 | 4600 | }
 | 
|---|
 | 4601 | 
 | 
|---|
| [2773] | 4602 | std::vector<float> Scantable::doSinusoidFitting(const std::vector<float>& data, 
 | 
|---|
 | 4603 |                                                 const std::vector<bool>& mask, 
 | 
|---|
 | 4604 |                                                 const std::vector<int>& waveNumbers, 
 | 
|---|
 | 4605 |                                                 std::vector<float>& params, 
 | 
|---|
 | 4606 |                                                 float& rms, 
 | 
|---|
 | 4607 |                                                 std::vector<bool>& finalMask, 
 | 
|---|
 | 4608 |                                                 int& nClipped, 
 | 
|---|
 | 4609 |                                                 float thresClip, 
 | 
|---|
 | 4610 |                                                 int nIterClip, 
 | 
|---|
 | 4611 |                                                 bool getResidual)
 | 
|---|
| [2767] | 4612 | {
 | 
|---|
| [2773] | 4613 |   return doLeastSquareFitting(data, mask, 
 | 
|---|
 | 4614 |                               getSinusoidModel(waveNumbers, data.size()), 
 | 
|---|
 | 4615 |                               params, rms, finalMask, 
 | 
|---|
 | 4616 |                               nClipped, thresClip, nIterClip, 
 | 
|---|
 | 4617 |                               getResidual);
 | 
|---|
 | 4618 | }
 | 
|---|
 | 4619 | 
 | 
|---|
 | 4620 | std::vector<std::vector<std::vector<double> > > Scantable::getSinusoidModelReservoir(const std::vector<int>& waveNumbers, 
 | 
|---|
 | 4621 |                                                                                      std::vector<int>& nChanNos)
 | 
|---|
 | 4622 | {
 | 
|---|
 | 4623 |   std::vector<std::vector<std::vector<double> > > res;
 | 
|---|
 | 4624 |   res.clear();
 | 
|---|
 | 4625 |   nChanNos.clear();
 | 
|---|
 | 4626 | 
 | 
|---|
 | 4627 |   std::vector<uint> ifNos = getIFNos();
 | 
|---|
 | 4628 |   for (uint i = 0; i < ifNos.size(); ++i) {
 | 
|---|
 | 4629 |     int currNchan = nchan(ifNos[i]);
 | 
|---|
 | 4630 |     bool hasDifferentNchan = (i == 0);
 | 
|---|
 | 4631 |     for (uint j = 0; j < i; ++j) {
 | 
|---|
 | 4632 |       if (currNchan != nchan(ifNos[j])) {
 | 
|---|
 | 4633 |         hasDifferentNchan = true;
 | 
|---|
 | 4634 |         break;
 | 
|---|
 | 4635 |       }
 | 
|---|
 | 4636 |     }
 | 
|---|
 | 4637 |     if (hasDifferentNchan) {
 | 
|---|
 | 4638 |       res.push_back(getSinusoidModel(waveNumbers, currNchan));
 | 
|---|
 | 4639 |       nChanNos.push_back(currNchan);
 | 
|---|
 | 4640 |     }
 | 
|---|
| [2047] | 4641 |   }
 | 
|---|
| [2773] | 4642 | 
 | 
|---|
 | 4643 |   return res;
 | 
|---|
 | 4644 | }
 | 
|---|
 | 4645 | 
 | 
|---|
 | 4646 | std::vector<std::vector<double> > Scantable::getSinusoidModel(const std::vector<int>& waveNumbers, int nchan)
 | 
|---|
 | 4647 | {
 | 
|---|
 | 4648 |   // model  : contains elemental values for computing the least-square matrix. 
 | 
|---|
 | 4649 |   //          model.size() is nmodel and model[*].size() is nchan. 
 | 
|---|
 | 4650 |   //          Each model element are as follows:
 | 
|---|
 | 4651 |   //          model[0]    = {1.0, 1.0, 1.0, ..., 1.0}, 
 | 
|---|
 | 4652 |   //          model[2n-1] = {sin(nPI/L*x[0]), sin(nPI/L*x[1]), ..., sin(nPI/L*x[nchan])}, 
 | 
|---|
 | 4653 |   //          model[2n]   = {cos(nPI/L*x[0]), cos(nPI/L*x[1]), ..., cos(nPI/L*x[nchan])}, 
 | 
|---|
 | 4654 |   //          where (1 <= n <= nMaxWavesInSW),
 | 
|---|
 | 4655 |   //          or, 
 | 
|---|
 | 4656 |   //          model[2n-1] = {sin(wn[n]PI/L*x[0]), sin(wn[n]PI/L*x[1]), ..., sin(wn[n]PI/L*x[nchan])}, 
 | 
|---|
 | 4657 |   //          model[2n]   = {cos(wn[n]PI/L*x[0]), cos(wn[n]PI/L*x[1]), ..., cos(wn[n]PI/L*x[nchan])}, 
 | 
|---|
 | 4658 |   //          where wn[n] denotes waveNumbers[n] (1 <= n <= waveNumbers.size()).
 | 
|---|
 | 4659 | 
 | 
|---|
| [2081] | 4660 |   std::vector<int> nWaves;  // sorted and uniqued array of wave numbers
 | 
|---|
 | 4661 |   nWaves.reserve(waveNumbers.size());
 | 
|---|
 | 4662 |   copy(waveNumbers.begin(), waveNumbers.end(), back_inserter(nWaves));
 | 
|---|
 | 4663 |   sort(nWaves.begin(), nWaves.end());
 | 
|---|
 | 4664 |   std::vector<int>::iterator end_it = unique(nWaves.begin(), nWaves.end());
 | 
|---|
 | 4665 |   nWaves.erase(end_it, nWaves.end());
 | 
|---|
 | 4666 | 
 | 
|---|
 | 4667 |   int minNWaves = nWaves[0];
 | 
|---|
 | 4668 |   if (minNWaves < 0) {
 | 
|---|
| [2058] | 4669 |     throw(AipsError("wave number must be positive or zero (i.e. constant)"));
 | 
|---|
 | 4670 |   }
 | 
|---|
| [2081] | 4671 |   bool hasConstantTerm = (minNWaves == 0);
 | 
|---|
| [2773] | 4672 |   int nmodel = nWaves.size() * 2 - (hasConstantTerm ? 1 : 0);  //number of parameters to solve.
 | 
|---|
| [2047] | 4673 | 
 | 
|---|
| [2773] | 4674 |   std::vector<std::vector<double> > model(nmodel, std::vector<double>(nchan));
 | 
|---|
| [2767] | 4675 | 
 | 
|---|
| [2773] | 4676 |   if (hasConstantTerm) {
 | 
|---|
 | 4677 |     for (int j = 0; j < nchan; ++j) {
 | 
|---|
 | 4678 |       model[0][j] = 1.0;
 | 
|---|
| [2047] | 4679 |     }
 | 
|---|
 | 4680 |   }
 | 
|---|
 | 4681 | 
 | 
|---|
| [2081] | 4682 |   const double PI = 6.0 * asin(0.5); // PI (= 3.141592653...)
 | 
|---|
| [2773] | 4683 |   double stretch0 = 2.0*PI/(double)(nchan-1);
 | 
|---|
| [2081] | 4684 | 
 | 
|---|
 | 4685 |   for (uInt i = (hasConstantTerm ? 1 : 0); i < nWaves.size(); ++i) {
 | 
|---|
| [2773] | 4686 |     int sidx = hasConstantTerm ? 2*i-1 : 2*i;
 | 
|---|
 | 4687 |     int cidx = sidx + 1;
 | 
|---|
 | 4688 |     double stretch = stretch0*(double)nWaves[i];
 | 
|---|
| [2081] | 4689 | 
 | 
|---|
| [2773] | 4690 |     for (int j = 0; j < nchan; ++j) {
 | 
|---|
 | 4691 |       model[sidx][j] = sin(stretch*(double)j);
 | 
|---|
 | 4692 |       model[cidx][j] = cos(stretch*(double)j);
 | 
|---|
| [2047] | 4693 |     }
 | 
|---|
| [2012] | 4694 |   }
 | 
|---|
 | 4695 | 
 | 
|---|
| [2773] | 4696 |   return model;
 | 
|---|
| [2012] | 4697 | }
 | 
|---|
 | 4698 | 
 | 
|---|
| [2773] | 4699 | std::vector<bool> Scantable::getCompositeChanMask(int whichrow, 
 | 
|---|
 | 4700 |                                                   const std::vector<bool>& inMask)
 | 
|---|
| [2047] | 4701 | {
 | 
|---|
| [2186] | 4702 |   std::vector<bool> mask = getMask(whichrow);
 | 
|---|
 | 4703 |   uInt maskSize = mask.size();
 | 
|---|
| [2410] | 4704 |   if (inMask.size() != 0) {
 | 
|---|
 | 4705 |     if (maskSize != inMask.size()) {
 | 
|---|
 | 4706 |       throw(AipsError("mask sizes are not the same."));
 | 
|---|
 | 4707 |     }
 | 
|---|
 | 4708 |     for (uInt i = 0; i < maskSize; ++i) {
 | 
|---|
 | 4709 |       mask[i] = mask[i] && inMask[i];
 | 
|---|
 | 4710 |     }
 | 
|---|
| [2047] | 4711 |   }
 | 
|---|
 | 4712 | 
 | 
|---|
| [2186] | 4713 |   return mask;
 | 
|---|
| [2047] | 4714 | }
 | 
|---|
 | 4715 | 
 | 
|---|
| [2773] | 4716 | std::vector<bool> Scantable::getCompositeChanMask(int whichrow, 
 | 
|---|
 | 4717 |                                                   const std::vector<bool>& inMask, 
 | 
|---|
 | 4718 |                                                   const std::vector<int>& edge, 
 | 
|---|
 | 4719 |                                                   std::vector<int>& currEdge, 
 | 
|---|
 | 4720 |                                                   STLineFinder& lineFinder)
 | 
|---|
| [2047] | 4721 | {
 | 
|---|
| [2773] | 4722 |   std::vector<uint> ifNos = getIFNos();
 | 
|---|
| [2774] | 4723 |   if ((edge.size() > 2) && (edge.size() < ifNos.size()*2)) {
 | 
|---|
| [2773] | 4724 |     throw(AipsError("Length of edge element info is less than that of IFs"));
 | 
|---|
| [2047] | 4725 |   }
 | 
|---|
 | 4726 | 
 | 
|---|
| [2774] | 4727 |   uint idx = 0;
 | 
|---|
 | 4728 |   if (edge.size() > 2) {
 | 
|---|
 | 4729 |     int ifVal = getIF(whichrow);
 | 
|---|
 | 4730 |     bool foundIF = false;
 | 
|---|
 | 4731 |     for (uint i = 0; i < ifNos.size(); ++i) {
 | 
|---|
 | 4732 |       if (ifVal == (int)ifNos[i]) {
 | 
|---|
 | 4733 |         idx = 2*i;
 | 
|---|
 | 4734 |         foundIF = true;
 | 
|---|
 | 4735 |         break;
 | 
|---|
 | 4736 |       }
 | 
|---|
| [2773] | 4737 |     }
 | 
|---|
| [2774] | 4738 |     if (!foundIF) {
 | 
|---|
 | 4739 |       throw(AipsError("bad IF number"));
 | 
|---|
 | 4740 |     }
 | 
|---|
| [2773] | 4741 |   }
 | 
|---|
 | 4742 | 
 | 
|---|
 | 4743 |   currEdge.clear();
 | 
|---|
 | 4744 |   currEdge.resize(2);
 | 
|---|
 | 4745 |   currEdge[0] = edge[idx];
 | 
|---|
 | 4746 |   currEdge[1] = edge[idx+1];
 | 
|---|
 | 4747 | 
 | 
|---|
| [2047] | 4748 |   lineFinder.setData(getSpectrum(whichrow));
 | 
|---|
| [2773] | 4749 |   lineFinder.findLines(getCompositeChanMask(whichrow, inMask), currEdge, whichrow);
 | 
|---|
| [2047] | 4750 | 
 | 
|---|
 | 4751 |   return lineFinder.getMask();
 | 
|---|
 | 4752 | }
 | 
|---|
 | 4753 | 
 | 
|---|
 | 4754 | /* for cspline. will be merged once cspline is available in fitter (2011/3/10 WK) */
 | 
|---|
| [2773] | 4755 | void Scantable::outputFittingResult(bool outLogger, 
 | 
|---|
 | 4756 |                                     bool outTextFile, 
 | 
|---|
 | 4757 |                                     bool csvFormat, 
 | 
|---|
 | 4758 |                                     const std::vector<bool>& chanMask, 
 | 
|---|
 | 4759 |                                     int whichrow, 
 | 
|---|
 | 4760 |                                     const casa::String& coordInfo, 
 | 
|---|
 | 4761 |                                     bool hasSameNchan, 
 | 
|---|
 | 4762 |                                     ofstream& ofs, 
 | 
|---|
 | 4763 |                                     const casa::String& funcName, 
 | 
|---|
 | 4764 |                                     const std::vector<int>& edge, 
 | 
|---|
 | 4765 |                                     const std::vector<float>& params, 
 | 
|---|
 | 4766 |                                     const int nClipped)
 | 
|---|
| [2186] | 4767 | {
 | 
|---|
| [2047] | 4768 |   if (outLogger || outTextFile) {
 | 
|---|
 | 4769 |     float rms = getRms(chanMask, whichrow);
 | 
|---|
 | 4770 |     String masklist = getMaskRangeList(chanMask, whichrow, coordInfo, hasSameNchan);
 | 
|---|
| [2081] | 4771 |     std::vector<bool> fixed;
 | 
|---|
 | 4772 |     fixed.clear();
 | 
|---|
| [2047] | 4773 | 
 | 
|---|
 | 4774 |     if (outLogger) {
 | 
|---|
 | 4775 |       LogIO ols(LogOrigin("Scantable", funcName, WHERE));
 | 
|---|
| [2773] | 4776 |       ols << formatPiecewiseBaselineParams(edge, params, fixed, rms, nClipped, 
 | 
|---|
 | 4777 |                                            masklist, whichrow, false, csvFormat) << LogIO::POST ;
 | 
|---|
| [2047] | 4778 |     }
 | 
|---|
 | 4779 |     if (outTextFile) {
 | 
|---|
| [2773] | 4780 |       ofs << formatPiecewiseBaselineParams(edge, params, fixed, rms, nClipped, 
 | 
|---|
 | 4781 |                                            masklist, whichrow, true, csvFormat) << flush;
 | 
|---|
| [2047] | 4782 |     }
 | 
|---|
 | 4783 |   }
 | 
|---|
 | 4784 | }
 | 
|---|
 | 4785 | 
 | 
|---|
| [2773] | 4786 | /* for poly/chebyshev/sinusoid. */
 | 
|---|
 | 4787 | void Scantable::outputFittingResult(bool outLogger, 
 | 
|---|
 | 4788 |                                     bool outTextFile, 
 | 
|---|
 | 4789 |                                     bool csvFormat, 
 | 
|---|
 | 4790 |                                     const std::vector<bool>& chanMask, 
 | 
|---|
 | 4791 |                                     int whichrow, 
 | 
|---|
 | 4792 |                                     const casa::String& coordInfo, 
 | 
|---|
 | 4793 |                                     bool hasSameNchan, 
 | 
|---|
 | 4794 |                                     ofstream& ofs, 
 | 
|---|
 | 4795 |                                     const casa::String& funcName, 
 | 
|---|
 | 4796 |                                     const std::vector<float>& params, 
 | 
|---|
 | 4797 |                                     const int nClipped)
 | 
|---|
| [2186] | 4798 | {
 | 
|---|
| [2047] | 4799 |   if (outLogger || outTextFile) {
 | 
|---|
 | 4800 |     float rms = getRms(chanMask, whichrow);
 | 
|---|
 | 4801 |     String masklist = getMaskRangeList(chanMask, whichrow, coordInfo, hasSameNchan);
 | 
|---|
| [2081] | 4802 |     std::vector<bool> fixed;
 | 
|---|
 | 4803 |     fixed.clear();
 | 
|---|
| [2047] | 4804 | 
 | 
|---|
 | 4805 |     if (outLogger) {
 | 
|---|
 | 4806 |       LogIO ols(LogOrigin("Scantable", funcName, WHERE));
 | 
|---|
| [2773] | 4807 |       ols << formatBaselineParams(params, fixed, rms, nClipped, 
 | 
|---|
 | 4808 |                                   masklist, whichrow, false, csvFormat) << LogIO::POST ;
 | 
|---|
| [2047] | 4809 |     }
 | 
|---|
 | 4810 |     if (outTextFile) {
 | 
|---|
| [2773] | 4811 |       ofs << formatBaselineParams(params, fixed, rms, nClipped, 
 | 
|---|
 | 4812 |                                   masklist, whichrow, true, csvFormat) << flush;
 | 
|---|
| [2047] | 4813 |     }
 | 
|---|
 | 4814 |   }
 | 
|---|
 | 4815 | }
 | 
|---|
 | 4816 | 
 | 
|---|
| [2189] | 4817 | void Scantable::parseProgressInfo(const std::string& progressInfo, bool& showProgress, int& minNRow)
 | 
|---|
| [2186] | 4818 | {
 | 
|---|
| [2189] | 4819 |   int idxDelimiter = progressInfo.find(",");
 | 
|---|
 | 4820 |   if (idxDelimiter < 0) {
 | 
|---|
 | 4821 |     throw(AipsError("wrong value in 'showprogress' parameter")) ;
 | 
|---|
 | 4822 |   }
 | 
|---|
 | 4823 |   showProgress = (progressInfo.substr(0, idxDelimiter) == "true");
 | 
|---|
 | 4824 |   std::istringstream is(progressInfo.substr(idxDelimiter+1));
 | 
|---|
 | 4825 |   is >> minNRow;
 | 
|---|
 | 4826 | }
 | 
|---|
 | 4827 | 
 | 
|---|
 | 4828 | void Scantable::showProgressOnTerminal(const int nProcessed, const int nTotal, const bool showProgress, const int nTotalThreshold)
 | 
|---|
 | 4829 | {
 | 
|---|
 | 4830 |   if (showProgress && (nTotal >= nTotalThreshold)) {
 | 
|---|
| [2186] | 4831 |     int nInterval = int(floor(double(nTotal)/100.0));
 | 
|---|
 | 4832 |     if (nInterval == 0) nInterval++;
 | 
|---|
 | 4833 | 
 | 
|---|
| [2193] | 4834 |     if (nProcessed % nInterval == 0) {
 | 
|---|
| [2189] | 4835 |       printf("\r");                          //go to the head of line
 | 
|---|
| [2186] | 4836 |       printf("\x1b[31m\x1b[1m");             //set red color, highlighted
 | 
|---|
| [2189] | 4837 |       printf("[%3d%%]", (int)(100.0*(double(nProcessed+1))/(double(nTotal))) );
 | 
|---|
 | 4838 |       printf("\x1b[39m\x1b[0m");             //set default attributes
 | 
|---|
| [2186] | 4839 |       fflush(NULL);
 | 
|---|
 | 4840 |     }
 | 
|---|
| [2193] | 4841 | 
 | 
|---|
| [2186] | 4842 |     if (nProcessed == nTotal - 1) {
 | 
|---|
 | 4843 |       printf("\r\x1b[K");                    //clear
 | 
|---|
 | 4844 |       fflush(NULL);
 | 
|---|
 | 4845 |     }
 | 
|---|
| [2193] | 4846 | 
 | 
|---|
| [2186] | 4847 |   }
 | 
|---|
 | 4848 | }
 | 
|---|
 | 4849 | 
 | 
|---|
 | 4850 | std::vector<float> Scantable::execFFT(const int whichrow, const std::vector<bool>& inMask, bool getRealImag, bool getAmplitudeOnly)
 | 
|---|
 | 4851 | {
 | 
|---|
 | 4852 |   std::vector<bool>  mask = getMask(whichrow);
 | 
|---|
 | 4853 | 
 | 
|---|
 | 4854 |   if (inMask.size() > 0) {
 | 
|---|
 | 4855 |     uInt maskSize = mask.size();
 | 
|---|
 | 4856 |     if (maskSize != inMask.size()) {
 | 
|---|
 | 4857 |       throw(AipsError("mask sizes are not the same."));
 | 
|---|
 | 4858 |     }
 | 
|---|
 | 4859 |     for (uInt i = 0; i < maskSize; ++i) {
 | 
|---|
 | 4860 |       mask[i] = mask[i] && inMask[i];
 | 
|---|
 | 4861 |     }
 | 
|---|
 | 4862 |   }
 | 
|---|
 | 4863 | 
 | 
|---|
 | 4864 |   Vector<Float> spec = getSpectrum(whichrow);
 | 
|---|
 | 4865 |   mathutil::doZeroOrderInterpolation(spec, mask);
 | 
|---|
 | 4866 | 
 | 
|---|
 | 4867 |   FFTServer<Float,Complex> ffts;
 | 
|---|
 | 4868 |   Vector<Complex> fftres;
 | 
|---|
 | 4869 |   ffts.fft0(fftres, spec);
 | 
|---|
 | 4870 | 
 | 
|---|
 | 4871 |   std::vector<float> res;
 | 
|---|
 | 4872 |   float norm = float(2.0/double(spec.size()));
 | 
|---|
 | 4873 | 
 | 
|---|
 | 4874 |   if (getRealImag) {
 | 
|---|
 | 4875 |     for (uInt i = 0; i < fftres.size(); ++i) {
 | 
|---|
 | 4876 |       res.push_back(real(fftres[i])*norm);
 | 
|---|
 | 4877 |       res.push_back(imag(fftres[i])*norm);
 | 
|---|
 | 4878 |     }
 | 
|---|
 | 4879 |   } else {
 | 
|---|
 | 4880 |     for (uInt i = 0; i < fftres.size(); ++i) {
 | 
|---|
 | 4881 |       res.push_back(abs(fftres[i])*norm);
 | 
|---|
 | 4882 |       if (!getAmplitudeOnly) res.push_back(arg(fftres[i]));
 | 
|---|
 | 4883 |     }
 | 
|---|
 | 4884 |   }
 | 
|---|
 | 4885 | 
 | 
|---|
 | 4886 |   return res;
 | 
|---|
 | 4887 | }
 | 
|---|
 | 4888 | 
 | 
|---|
 | 4889 | 
 | 
|---|
 | 4890 | float Scantable::getRms(const std::vector<bool>& mask, int whichrow)
 | 
|---|
 | 4891 | {
 | 
|---|
| [2591] | 4892 |   /****
 | 
|---|
| [2737] | 4893 |   double ms1TimeStart, ms1TimeEnd;
 | 
|---|
| [2591] | 4894 |   double elapse1 = 0.0;
 | 
|---|
 | 4895 |   ms1TimeStart = mathutil::gettimeofday_sec();
 | 
|---|
 | 4896 |   ****/
 | 
|---|
 | 4897 | 
 | 
|---|
| [2012] | 4898 |   Vector<Float> spec;
 | 
|---|
 | 4899 |   specCol_.get(whichrow, spec);
 | 
|---|
 | 4900 | 
 | 
|---|
| [2591] | 4901 |   /****
 | 
|---|
 | 4902 |   ms1TimeEnd = mathutil::gettimeofday_sec();
 | 
|---|
 | 4903 |   elapse1 = ms1TimeEnd - ms1TimeStart;
 | 
|---|
 | 4904 |   std::cout << "rm1   : " << elapse1 << " (sec.)" << endl;
 | 
|---|
 | 4905 |   ****/
 | 
|---|
 | 4906 | 
 | 
|---|
| [2737] | 4907 |   return (float)doGetRms(mask, spec);
 | 
|---|
 | 4908 | }
 | 
|---|
 | 4909 | 
 | 
|---|
 | 4910 | double Scantable::doGetRms(const std::vector<bool>& mask, const Vector<Float>& spec)
 | 
|---|
 | 4911 | {
 | 
|---|
 | 4912 |   double mean = 0.0;
 | 
|---|
 | 4913 |   double smean = 0.0;
 | 
|---|
| [2012] | 4914 |   int n = 0;
 | 
|---|
| [2047] | 4915 |   for (uInt i = 0; i < spec.nelements(); ++i) {
 | 
|---|
| [2012] | 4916 |     if (mask[i]) {
 | 
|---|
| [2737] | 4917 |       double val = (double)spec[i];
 | 
|---|
 | 4918 |       mean += val;
 | 
|---|
 | 4919 |       smean += val*val;
 | 
|---|
| [2012] | 4920 |       n++;
 | 
|---|
 | 4921 |     }
 | 
|---|
 | 4922 |   }
 | 
|---|
 | 4923 | 
 | 
|---|
| [2737] | 4924 |   mean /= (double)n;
 | 
|---|
 | 4925 |   smean /= (double)n;
 | 
|---|
| [2012] | 4926 | 
 | 
|---|
 | 4927 |   return sqrt(smean - mean*mean);
 | 
|---|
 | 4928 | }
 | 
|---|
 | 4929 | 
 | 
|---|
| [2641] | 4930 | std::string Scantable::formatBaselineParamsHeader(int whichrow, const std::string& masklist, bool verbose, bool csvformat) const
 | 
|---|
| [2012] | 4931 | {
 | 
|---|
| [2641] | 4932 |   if (verbose) {
 | 
|---|
 | 4933 |     ostringstream oss;
 | 
|---|
| [2012] | 4934 | 
 | 
|---|
| [2641] | 4935 |     if (csvformat) {
 | 
|---|
 | 4936 |       oss << getScan(whichrow)  << ",";
 | 
|---|
 | 4937 |       oss << getBeam(whichrow)  << ",";
 | 
|---|
 | 4938 |       oss << getIF(whichrow)    << ",";
 | 
|---|
 | 4939 |       oss << getPol(whichrow)   << ",";
 | 
|---|
 | 4940 |       oss << getCycle(whichrow) << ",";
 | 
|---|
 | 4941 |       String commaReplacedMasklist = masklist;
 | 
|---|
 | 4942 |       string::size_type pos = 0;
 | 
|---|
 | 4943 |       while (pos = commaReplacedMasklist.find(","), pos != string::npos) {
 | 
|---|
 | 4944 |         commaReplacedMasklist.replace(pos, 1, ";");
 | 
|---|
 | 4945 |         pos++;
 | 
|---|
 | 4946 |       }
 | 
|---|
 | 4947 |       oss << commaReplacedMasklist << ",";
 | 
|---|
 | 4948 |     } else {
 | 
|---|
 | 4949 |       oss <<  " Scan[" << getScan(whichrow)  << "]";
 | 
|---|
 | 4950 |       oss <<  " Beam[" << getBeam(whichrow)  << "]";
 | 
|---|
 | 4951 |       oss <<    " IF[" << getIF(whichrow)    << "]";
 | 
|---|
 | 4952 |       oss <<   " Pol[" << getPol(whichrow)   << "]";
 | 
|---|
 | 4953 |       oss << " Cycle[" << getCycle(whichrow) << "]: " << endl;
 | 
|---|
 | 4954 |       oss << "Fitter range = " << masklist << endl;
 | 
|---|
 | 4955 |       oss << "Baseline parameters" << endl;
 | 
|---|
 | 4956 |     }
 | 
|---|
| [2012] | 4957 |     oss << flush;
 | 
|---|
| [2641] | 4958 | 
 | 
|---|
 | 4959 |     return String(oss);
 | 
|---|
| [2012] | 4960 |   }
 | 
|---|
 | 4961 | 
 | 
|---|
| [2641] | 4962 |   return "";
 | 
|---|
| [2012] | 4963 | }
 | 
|---|
 | 4964 | 
 | 
|---|
| [2641] | 4965 | std::string Scantable::formatBaselineParamsFooter(float rms, int nClipped, bool verbose, bool csvformat) const
 | 
|---|
| [2012] | 4966 | {
 | 
|---|
| [2641] | 4967 |   if (verbose) {
 | 
|---|
 | 4968 |     ostringstream oss;
 | 
|---|
| [2012] | 4969 | 
 | 
|---|
| [2641] | 4970 |     if (csvformat) {
 | 
|---|
 | 4971 |       oss << rms << ",";
 | 
|---|
 | 4972 |       if (nClipped >= 0) {
 | 
|---|
 | 4973 |         oss << nClipped;
 | 
|---|
 | 4974 |       }
 | 
|---|
 | 4975 |     } else {
 | 
|---|
 | 4976 |       oss << "Results of baseline fit" << endl;
 | 
|---|
 | 4977 |       oss << "  rms = " << setprecision(6) << rms << endl;
 | 
|---|
 | 4978 |       if (nClipped >= 0) {
 | 
|---|
 | 4979 |         oss << "  Number of clipped channels = " << nClipped << endl;
 | 
|---|
 | 4980 |       }
 | 
|---|
 | 4981 |       for (int i = 0; i < 60; ++i) {
 | 
|---|
 | 4982 |         oss << "-";
 | 
|---|
 | 4983 |       }
 | 
|---|
| [2193] | 4984 |     }
 | 
|---|
| [2131] | 4985 |     oss << endl;
 | 
|---|
| [2094] | 4986 |     oss << flush;
 | 
|---|
| [2641] | 4987 | 
 | 
|---|
 | 4988 |     return String(oss);
 | 
|---|
| [2012] | 4989 |   }
 | 
|---|
 | 4990 | 
 | 
|---|
| [2641] | 4991 |   return "";
 | 
|---|
| [2012] | 4992 | }
 | 
|---|
 | 4993 | 
 | 
|---|
| [2186] | 4994 | std::string Scantable::formatBaselineParams(const std::vector<float>& params, 
 | 
|---|
 | 4995 |                                             const std::vector<bool>& fixed, 
 | 
|---|
 | 4996 |                                             float rms, 
 | 
|---|
| [2193] | 4997 |                                             int nClipped,
 | 
|---|
| [2186] | 4998 |                                             const std::string& masklist, 
 | 
|---|
 | 4999 |                                             int whichrow, 
 | 
|---|
 | 5000 |                                             bool verbose, 
 | 
|---|
| [2641] | 5001 |                                             bool csvformat, 
 | 
|---|
| [2186] | 5002 |                                             int start, int count,
 | 
|---|
 | 5003 |                                             bool resetparamid) const
 | 
|---|
| [2047] | 5004 | {
 | 
|---|
| [2064] | 5005 |   int nParam = (int)(params.size());
 | 
|---|
| [2047] | 5006 | 
 | 
|---|
| [2064] | 5007 |   if (nParam < 1) {
 | 
|---|
 | 5008 |     return("  Not fitted");
 | 
|---|
 | 5009 |   } else {
 | 
|---|
 | 5010 | 
 | 
|---|
 | 5011 |     ostringstream oss;
 | 
|---|
| [2641] | 5012 |     oss << formatBaselineParamsHeader(whichrow, masklist, verbose, csvformat);
 | 
|---|
| [2064] | 5013 | 
 | 
|---|
 | 5014 |     if (start < 0) start = 0;
 | 
|---|
 | 5015 |     if (count < 0) count = nParam;
 | 
|---|
 | 5016 |     int end = start + count;
 | 
|---|
 | 5017 |     if (end > nParam) end = nParam;
 | 
|---|
 | 5018 |     int paramidoffset = (resetparamid) ? (-start) : 0;
 | 
|---|
 | 5019 | 
 | 
|---|
 | 5020 |     for (int i = start; i < end; ++i) {
 | 
|---|
 | 5021 |       if (i > start) {
 | 
|---|
| [2047] | 5022 |         oss << ",";
 | 
|---|
 | 5023 |       }
 | 
|---|
| [2064] | 5024 |       std::string sFix = ((fixed.size() > 0) && (fixed[i]) && verbose) ? "(fixed)" : "";
 | 
|---|
| [2641] | 5025 |       if (csvformat) {
 | 
|---|
 | 5026 |         oss << params[i] << sFix;
 | 
|---|
 | 5027 |       } else {
 | 
|---|
 | 5028 |         oss << "  p" << (i+paramidoffset) << sFix << "= " << right << setw(13) << setprecision(6) << params[i];
 | 
|---|
 | 5029 |       }
 | 
|---|
| [2047] | 5030 |     }
 | 
|---|
| [2064] | 5031 | 
 | 
|---|
| [2641] | 5032 |     if (csvformat) {
 | 
|---|
 | 5033 |       oss << ",";
 | 
|---|
| [2644] | 5034 |     } else {
 | 
|---|
 | 5035 |       oss << endl;
 | 
|---|
| [2641] | 5036 |     }
 | 
|---|
 | 5037 |     oss << formatBaselineParamsFooter(rms, nClipped, verbose, csvformat);
 | 
|---|
| [2064] | 5038 | 
 | 
|---|
 | 5039 |     return String(oss);
 | 
|---|
| [2047] | 5040 |   }
 | 
|---|
 | 5041 | 
 | 
|---|
 | 5042 | }
 | 
|---|
 | 5043 | 
 | 
|---|
| [2641] | 5044 | std::string Scantable::formatPiecewiseBaselineParams(const std::vector<int>& ranges, const std::vector<float>& params, const std::vector<bool>& fixed, float rms, int nClipped, const std::string& masklist, int whichrow, bool verbose, bool csvformat) const
 | 
|---|
| [2012] | 5045 | {
 | 
|---|
| [2064] | 5046 |   int nOutParam = (int)(params.size());
 | 
|---|
 | 5047 |   int nPiece = (int)(ranges.size()) - 1;
 | 
|---|
| [2012] | 5048 | 
 | 
|---|
| [2064] | 5049 |   if (nOutParam < 1) {
 | 
|---|
 | 5050 |     return("  Not fitted");
 | 
|---|
 | 5051 |   } else if (nPiece < 0) {
 | 
|---|
| [2641] | 5052 |     return formatBaselineParams(params, fixed, rms, nClipped, masklist, whichrow, verbose, csvformat);
 | 
|---|
| [2064] | 5053 |   } else if (nPiece < 1) {
 | 
|---|
 | 5054 |     return("  Bad count of the piece edge info");
 | 
|---|
 | 5055 |   } else if (nOutParam % nPiece != 0) {
 | 
|---|
 | 5056 |     return("  Bad count of the output baseline parameters");
 | 
|---|
 | 5057 |   } else {
 | 
|---|
 | 5058 | 
 | 
|---|
 | 5059 |     int nParam = nOutParam / nPiece;
 | 
|---|
 | 5060 | 
 | 
|---|
 | 5061 |     ostringstream oss;
 | 
|---|
| [2641] | 5062 |     oss << formatBaselineParamsHeader(whichrow, masklist, verbose, csvformat);
 | 
|---|
| [2064] | 5063 | 
 | 
|---|
| [2641] | 5064 |     if (csvformat) {
 | 
|---|
 | 5065 |       for (int i = 0; i < nPiece; ++i) {
 | 
|---|
 | 5066 |         oss << ranges[i] << "," << (ranges[i+1]-1) << ","; 
 | 
|---|
 | 5067 |         oss << formatBaselineParams(params, fixed, rms, 0, masklist, whichrow, false, csvformat, i*nParam, nParam, true);
 | 
|---|
 | 5068 |       }
 | 
|---|
 | 5069 |     } else {
 | 
|---|
 | 5070 |       stringstream ss;
 | 
|---|
 | 5071 |       ss << ranges[nPiece] << flush;
 | 
|---|
 | 5072 |       int wRange = ss.str().size() * 2 + 5;
 | 
|---|
| [2064] | 5073 | 
 | 
|---|
| [2641] | 5074 |       for (int i = 0; i < nPiece; ++i) {
 | 
|---|
 | 5075 |         ss.str("");
 | 
|---|
 | 5076 |         ss << "  [" << ranges[i] << "," << (ranges[i+1]-1) << "]";
 | 
|---|
 | 5077 |         oss << left << setw(wRange) << ss.str();
 | 
|---|
 | 5078 |         oss << formatBaselineParams(params, fixed, rms, 0, masklist, whichrow, false, csvformat, i*nParam, nParam, true);
 | 
|---|
| [2644] | 5079 |         //oss << endl;
 | 
|---|
| [2641] | 5080 |       }
 | 
|---|
| [2012] | 5081 |     }
 | 
|---|
| [2064] | 5082 | 
 | 
|---|
| [2641] | 5083 |     oss << formatBaselineParamsFooter(rms, nClipped, verbose, csvformat);
 | 
|---|
| [2064] | 5084 | 
 | 
|---|
 | 5085 |     return String(oss);
 | 
|---|
| [2012] | 5086 |   }
 | 
|---|
 | 5087 | 
 | 
|---|
 | 5088 | }
 | 
|---|
 | 5089 | 
 | 
|---|
| [2047] | 5090 | bool Scantable::hasSameNchanOverIFs()
 | 
|---|
| [2012] | 5091 | {
 | 
|---|
| [2047] | 5092 |   int nIF = nif(-1);
 | 
|---|
 | 5093 |   int nCh;
 | 
|---|
 | 5094 |   int totalPositiveNChan = 0;
 | 
|---|
 | 5095 |   int nPositiveNChan = 0;
 | 
|---|
| [2012] | 5096 | 
 | 
|---|
| [2047] | 5097 |   for (int i = 0; i < nIF; ++i) {
 | 
|---|
 | 5098 |     nCh = nchan(i);
 | 
|---|
 | 5099 |     if (nCh > 0) {
 | 
|---|
 | 5100 |       totalPositiveNChan += nCh;
 | 
|---|
 | 5101 |       nPositiveNChan++;
 | 
|---|
| [2012] | 5102 |     }
 | 
|---|
 | 5103 |   }
 | 
|---|
 | 5104 | 
 | 
|---|
| [2047] | 5105 |   return (totalPositiveNChan == (nPositiveNChan * nchan(0)));
 | 
|---|
| [2012] | 5106 | }
 | 
|---|
 | 5107 | 
 | 
|---|
| [2047] | 5108 | std::string Scantable::getMaskRangeList(const std::vector<bool>& mask, int whichrow, const casa::String& coordInfo, bool hasSameNchan, bool verbose)
 | 
|---|
| [2012] | 5109 | {
 | 
|---|
| [2427] | 5110 |   if (mask.size() <= 0) {
 | 
|---|
 | 5111 |     throw(AipsError("The mask elements should be > 0"));
 | 
|---|
| [2012] | 5112 |   }
 | 
|---|
| [2047] | 5113 |   int IF = getIF(whichrow);
 | 
|---|
 | 5114 |   if (mask.size() != (uInt)nchan(IF)) {
 | 
|---|
| [2012] | 5115 |     throw(AipsError("Number of channels in scantable != number of mask elements"));
 | 
|---|
 | 5116 |   }
 | 
|---|
 | 5117 | 
 | 
|---|
| [2047] | 5118 |   if (verbose) {
 | 
|---|
| [2012] | 5119 |     LogIO logOs(LogOrigin("Scantable", "getMaskRangeList()", WHERE));
 | 
|---|
 | 5120 |     logOs << LogIO::WARN << "The current mask window unit is " << coordInfo;
 | 
|---|
 | 5121 |     if (!hasSameNchan) {
 | 
|---|
| [2047] | 5122 |       logOs << endl << "This mask is only valid for IF=" << IF;
 | 
|---|
| [2012] | 5123 |     }
 | 
|---|
 | 5124 |     logOs << LogIO::POST;
 | 
|---|
 | 5125 |   }
 | 
|---|
 | 5126 | 
 | 
|---|
 | 5127 |   std::vector<double> abcissa = getAbcissa(whichrow);
 | 
|---|
| [2047] | 5128 |   std::vector<int> edge = getMaskEdgeIndices(mask);
 | 
|---|
 | 5129 | 
 | 
|---|
| [2012] | 5130 |   ostringstream oss;
 | 
|---|
 | 5131 |   oss.setf(ios::fixed);
 | 
|---|
 | 5132 |   oss << setprecision(1) << "[";
 | 
|---|
| [2047] | 5133 |   for (uInt i = 0; i < edge.size(); i+=2) {
 | 
|---|
| [2012] | 5134 |     if (i > 0) oss << ",";
 | 
|---|
| [2047] | 5135 |     oss << "[" << (float)abcissa[edge[i]] << "," << (float)abcissa[edge[i+1]] << "]";
 | 
|---|
| [2012] | 5136 |   }
 | 
|---|
 | 5137 |   oss << "]" << flush;
 | 
|---|
 | 5138 | 
 | 
|---|
 | 5139 |   return String(oss);
 | 
|---|
 | 5140 | }
 | 
|---|
 | 5141 | 
 | 
|---|
| [2047] | 5142 | std::vector<int> Scantable::getMaskEdgeIndices(const std::vector<bool>& mask)
 | 
|---|
| [2012] | 5143 | {
 | 
|---|
| [2427] | 5144 |   if (mask.size() <= 0) {
 | 
|---|
 | 5145 |     throw(AipsError("The mask elements should be > 0"));
 | 
|---|
| [2012] | 5146 |   }
 | 
|---|
 | 5147 | 
 | 
|---|
| [2047] | 5148 |   std::vector<int> out, startIndices, endIndices;
 | 
|---|
 | 5149 |   int maskSize = mask.size();
 | 
|---|
| [2012] | 5150 | 
 | 
|---|
| [2047] | 5151 |   startIndices.clear();
 | 
|---|
 | 5152 |   endIndices.clear();
 | 
|---|
 | 5153 | 
 | 
|---|
 | 5154 |   if (mask[0]) {
 | 
|---|
 | 5155 |     startIndices.push_back(0);
 | 
|---|
| [2012] | 5156 |   }
 | 
|---|
| [2047] | 5157 |   for (int i = 1; i < maskSize; ++i) {
 | 
|---|
 | 5158 |     if ((!mask[i-1]) && mask[i]) {
 | 
|---|
 | 5159 |       startIndices.push_back(i);
 | 
|---|
 | 5160 |     } else if (mask[i-1] && (!mask[i])) {
 | 
|---|
 | 5161 |       endIndices.push_back(i-1);
 | 
|---|
 | 5162 |     }
 | 
|---|
| [2012] | 5163 |   }
 | 
|---|
| [2047] | 5164 |   if (mask[maskSize-1]) {
 | 
|---|
 | 5165 |     endIndices.push_back(maskSize-1);
 | 
|---|
 | 5166 |   }
 | 
|---|
| [2012] | 5167 | 
 | 
|---|
| [2047] | 5168 |   if (startIndices.size() != endIndices.size()) {
 | 
|---|
 | 5169 |     throw(AipsError("Inconsistent Mask Size: bad data?"));
 | 
|---|
 | 5170 |   }
 | 
|---|
 | 5171 |   for (uInt i = 0; i < startIndices.size(); ++i) {
 | 
|---|
 | 5172 |     if (startIndices[i] > endIndices[i]) {
 | 
|---|
 | 5173 |       throw(AipsError("Mask start index > mask end index"));
 | 
|---|
| [2012] | 5174 |     }
 | 
|---|
 | 5175 |   }
 | 
|---|
 | 5176 | 
 | 
|---|
| [2047] | 5177 |   out.clear();
 | 
|---|
 | 5178 |   for (uInt i = 0; i < startIndices.size(); ++i) {
 | 
|---|
 | 5179 |     out.push_back(startIndices[i]);
 | 
|---|
 | 5180 |     out.push_back(endIndices[i]);
 | 
|---|
 | 5181 |   }
 | 
|---|
 | 5182 | 
 | 
|---|
| [2012] | 5183 |   return out;
 | 
|---|
 | 5184 | }
 | 
|---|
 | 5185 | 
 | 
|---|
| [2791] | 5186 | void Scantable::setTsys(const std::vector<float>& newvals, int whichrow) {
 | 
|---|
 | 5187 |   Vector<Float> tsys(newvals);
 | 
|---|
 | 5188 |   if (whichrow > -1) {
 | 
|---|
 | 5189 |     if (tsysCol_.shape(whichrow) != tsys.shape())
 | 
|---|
 | 5190 |       throw(AipsError("Given Tsys values are not of the same shape"));
 | 
|---|
 | 5191 |     tsysCol_.put(whichrow, tsys);
 | 
|---|
 | 5192 |   } else {
 | 
|---|
 | 5193 |     tsysCol_.fillColumn(tsys);
 | 
|---|
 | 5194 |   }
 | 
|---|
 | 5195 | }
 | 
|---|
 | 5196 | 
 | 
|---|
| [2161] | 5197 | vector<float> Scantable::getTsysSpectrum( int whichrow ) const
 | 
|---|
 | 5198 | {
 | 
|---|
 | 5199 |   Vector<Float> tsys( tsysCol_(whichrow) ) ;
 | 
|---|
 | 5200 |   vector<float> stlTsys ;
 | 
|---|
 | 5201 |   tsys.tovector( stlTsys ) ;
 | 
|---|
 | 5202 |   return stlTsys ;
 | 
|---|
 | 5203 | }
 | 
|---|
| [2012] | 5204 | 
 | 
|---|
| [2591] | 5205 | vector<uint> Scantable::getMoleculeIdColumnData() const
 | 
|---|
 | 5206 | {
 | 
|---|
 | 5207 |   Vector<uInt> molIds(mmolidCol_.getColumn());
 | 
|---|
 | 5208 |   vector<uint> res;
 | 
|---|
 | 5209 |   molIds.tovector(res);
 | 
|---|
 | 5210 |   return res;
 | 
|---|
 | 5211 | }
 | 
|---|
| [2012] | 5212 | 
 | 
|---|
| [2591] | 5213 | void Scantable::setMoleculeIdColumnData(const std::vector<uint>& molids)
 | 
|---|
 | 5214 | {
 | 
|---|
 | 5215 |   Vector<uInt> molIds(molids);
 | 
|---|
 | 5216 |   Vector<uInt> arr(mmolidCol_.getColumn());
 | 
|---|
 | 5217 |   if ( molIds.nelements() != arr.nelements() )
 | 
|---|
 | 5218 |     throw AipsError("The input data size must be the number of rows.");
 | 
|---|
 | 5219 |   mmolidCol_.putColumn(molIds);
 | 
|---|
| [1907] | 5220 | }
 | 
|---|
| [2591] | 5221 | 
 | 
|---|
 | 5222 | 
 | 
|---|
| [2789] | 5223 | void Scantable::dropXPol()
 | 
|---|
 | 5224 | {
 | 
|---|
 | 5225 |   if (npol() <= 2) {
 | 
|---|
 | 5226 |     return;
 | 
|---|
 | 5227 |   }
 | 
|---|
 | 5228 |   if (!selector_.empty()) {
 | 
|---|
 | 5229 |     throw AipsError("Can only operate with empty selection");
 | 
|---|
 | 5230 |   }
 | 
|---|
 | 5231 |   std::string taql = "SELECT FROM $1 WHERE POLNO IN [0,1]";
 | 
|---|
 | 5232 |   Table tab = tableCommand(taql, table_);
 | 
|---|
 | 5233 |   table_ = tab;
 | 
|---|
 | 5234 |   table_.rwKeywordSet().define("nPol", Int(2));
 | 
|---|
 | 5235 |   originalTable_ = table_;
 | 
|---|
 | 5236 |   attach();
 | 
|---|
| [2591] | 5237 | }
 | 
|---|
| [2789] | 5238 | 
 | 
|---|
 | 5239 | }
 | 
|---|
| [1819] | 5240 | //namespace asap
 | 
|---|