[824] | 1 | //
|
---|
| 2 | // C++ Interface: Scantable
|
---|
| 3 | //
|
---|
| 4 | // Description:
|
---|
| 5 | //
|
---|
| 6 | //
|
---|
| 7 | // Author: Malte Marquarding <asap@atnf.csiro.au>, (C) 2005
|
---|
| 8 | //
|
---|
| 9 | // Copyright: See COPYING file that comes with this distribution
|
---|
| 10 | //
|
---|
| 11 | //
|
---|
| 12 | #ifndef ASAPSCANTABLE_H
|
---|
| 13 | #define ASAPSCANTABLE_H
|
---|
[2] | 14 |
|
---|
| 15 | // STL
|
---|
| 16 | #include <string>
|
---|
| 17 | #include <vector>
|
---|
| 18 | // AIPS++
|
---|
[455] | 19 | #include <casa/aips.h>
|
---|
[322] | 20 | #include <casa/Arrays/MaskedArray.h>
|
---|
[80] | 21 | #include <casa/BasicSL/String.h>
|
---|
[824] | 22 | #include <casa/Utilities/CountedPtr.h>
|
---|
| 23 |
|
---|
[80] | 24 | #include <tables/Tables/Table.h>
|
---|
[322] | 25 | #include <tables/Tables/ArrayColumn.h>
|
---|
| 26 | #include <tables/Tables/ScalarColumn.h>
|
---|
| 27 |
|
---|
[824] | 28 | #include <measures/TableMeasures/ScalarMeasColumn.h>
|
---|
| 29 |
|
---|
[1598] | 30 | #include <coordinates/Coordinates/SpectralCoordinate.h>
|
---|
| 31 |
|
---|
[894] | 32 | #include "Logger.h"
|
---|
[901] | 33 | #include "STHeader.h"
|
---|
[824] | 34 | #include "STFrequencies.h"
|
---|
| 35 | #include "STWeather.h"
|
---|
| 36 | #include "STFocus.h"
|
---|
| 37 | #include "STTcal.h"
|
---|
| 38 | #include "STMolecules.h"
|
---|
| 39 | #include "STSelector.h"
|
---|
[860] | 40 | #include "STHistory.h"
|
---|
[896] | 41 | #include "STPol.h"
|
---|
[960] | 42 | #include "STFit.h"
|
---|
[972] | 43 | #include "STFitEntry.h"
|
---|
[2] | 44 |
|
---|
[824] | 45 | namespace asap {
|
---|
[2] | 46 |
|
---|
[824] | 47 | /**
|
---|
| 48 | * This class contains and wraps a casa::Table, which is used to store
|
---|
| 49 | * all the information. This can be either a MemoryTable or a
|
---|
| 50 | * disk based Table.
|
---|
| 51 | * It provides access functions to the underlying table
|
---|
| 52 | * It contains n subtables:
|
---|
| 53 | * @li weather
|
---|
| 54 | * @li frequencies
|
---|
| 55 | * @li molecules
|
---|
| 56 | * @li tcal
|
---|
| 57 | * @li focus
|
---|
| 58 | * @li fits
|
---|
| 59 | *
|
---|
| 60 | * @brief The main ASAP data container
|
---|
| 61 | * @author Malte Marquarding
|
---|
| 62 | * @date
|
---|
| 63 | * @version
|
---|
| 64 | */
|
---|
[890] | 65 | class Scantable : private Logger
|
---|
[824] | 66 | {
|
---|
[902] | 67 |
|
---|
| 68 | friend class STMath;
|
---|
| 69 |
|
---|
[2] | 70 | public:
|
---|
[824] | 71 | /**
|
---|
| 72 | * Default constructor
|
---|
| 73 | */
|
---|
[1350] | 74 | explicit Scantable(casa::Table::TableType ttype = casa::Table::Memory);
|
---|
[19] | 75 |
|
---|
[824] | 76 | /**
|
---|
| 77 | * Create a Scantable object form an existing table on disk
|
---|
| 78 | * @param[in] name the name of the existing Scantable
|
---|
| 79 | */
|
---|
[1385] | 80 | explicit Scantable(const std::string& name, casa::Table::TableType ttype = casa::Table::Memory);
|
---|
[2] | 81 |
|
---|
[824] | 82 | /// @fixme this is only sensible for MemoryTables....
|
---|
| 83 | Scantable(const Scantable& other, bool clear=true);
|
---|
[161] | 84 |
|
---|
[824] | 85 | /**
|
---|
| 86 | * Destructor
|
---|
| 87 | */
|
---|
| 88 | virtual ~Scantable();
|
---|
[745] | 89 |
|
---|
[824] | 90 | /**
|
---|
| 91 | * get a const reference to the underlying casa::Table
|
---|
[1104] | 92 | * @return const \ref casa::Table reference
|
---|
[824] | 93 | */
|
---|
| 94 | const casa::Table& table() const;
|
---|
[19] | 95 |
|
---|
[824] | 96 | /**
|
---|
| 97 | * get a reference to the underlying casa::Table with the Selection
|
---|
| 98 | * object applied if set
|
---|
| 99 | * @return casa::Table reference
|
---|
| 100 | */
|
---|
| 101 | casa::Table& table();
|
---|
[21] | 102 |
|
---|
[845] | 103 |
|
---|
| 104 | /**
|
---|
| 105 | * Get a handle to the selection object
|
---|
| 106 | * @return constant STSelector reference
|
---|
| 107 | */
|
---|
| 108 | const STSelector& getSelection() const { return selector_; }
|
---|
| 109 |
|
---|
| 110 | /**
|
---|
| 111 | * Set the data to be a subset as defined by the STSelector
|
---|
| 112 | * @param selection a STSelector object
|
---|
| 113 | */
|
---|
[824] | 114 | void setSelection(const STSelector& selection);
|
---|
[845] | 115 |
|
---|
| 116 | /**
|
---|
| 117 | * unset the selection of the data
|
---|
| 118 | */
|
---|
[824] | 119 | void unsetSelection();
|
---|
| 120 | /**
|
---|
| 121 | * set the header
|
---|
[1295] | 122 | * @param[in] sth an STHeader object
|
---|
[824] | 123 | */
|
---|
[901] | 124 | void setHeader( const STHeader& sth );
|
---|
[386] | 125 |
|
---|
[824] | 126 | /**
|
---|
| 127 | * get the header information
|
---|
[901] | 128 | * @return an STHeader object
|
---|
[824] | 129 | */
|
---|
[901] | 130 | STHeader getHeader( ) const;
|
---|
[1068] | 131 |
|
---|
[824] | 132 | /**
|
---|
| 133 | * Checks if the "other" Scantable is conformant with this,
|
---|
| 134 | * i.e. if header values are the same.
|
---|
| 135 | * @param[in] other another Scantable
|
---|
| 136 | * @return true or false
|
---|
| 137 | */
|
---|
| 138 | bool conformant( const Scantable& other);
|
---|
[430] | 139 |
|
---|
[824] | 140 | /**
|
---|
[1068] | 141 | *
|
---|
| 142 | * @param stype The type of the source, 0 = on, 1 = off
|
---|
| 143 | */
|
---|
| 144 | void setSourceType(int stype);
|
---|
| 145 |
|
---|
| 146 |
|
---|
| 147 | /**
|
---|
[1104] | 148 | * The number of scans in the table
|
---|
[824] | 149 | * @return number of scans in the table
|
---|
| 150 | */
|
---|
[845] | 151 | int nscan() const;
|
---|
[490] | 152 |
|
---|
[915] | 153 | casa::MEpoch::Types getTimeReference() const;
|
---|
[21] | 154 |
|
---|
[1411] | 155 |
|
---|
| 156 | casa::MEpoch getEpoch(int whichrow) const;
|
---|
| 157 |
|
---|
[824] | 158 | /**
|
---|
| 159 | * Get global antenna position
|
---|
[845] | 160 | * @return casa::MPosition
|
---|
[824] | 161 | */
|
---|
| 162 | casa::MPosition getAntennaPosition() const;
|
---|
[490] | 163 |
|
---|
[1441] | 164 | /**
|
---|
| 165 | * the @ref casa::MDirection for a specific row
|
---|
| 166 | * @param[in] whichrow the row number
|
---|
| 167 | * return casa::MDirection
|
---|
| 168 | */
|
---|
[987] | 169 | casa::MDirection getDirection( int whichrow ) const;
|
---|
[1598] | 170 |
|
---|
[1441] | 171 | /**
|
---|
| 172 | * get the direction type as a string, e.g. "J2000"
|
---|
| 173 | * @param[in] whichrow the row number
|
---|
| 174 | * return the direction string
|
---|
| 175 | */
|
---|
[1068] | 176 | std::string getDirectionString( int whichrow ) const;
|
---|
| 177 |
|
---|
[1441] | 178 | /**
|
---|
| 179 | * set the direction type as a string, e.g. "J2000"
|
---|
| 180 | * @param[in] refstr the direction type
|
---|
| 181 | */
|
---|
[987] | 182 | void setDirectionRefString(const std::string& refstr="");
|
---|
[1441] | 183 |
|
---|
[1104] | 184 | /**
|
---|
| 185 | * get the direction reference string
|
---|
| 186 | * @return a string describing the direction reference
|
---|
| 187 | */
|
---|
[1598] | 188 | std::string getDirectionRefString() const;
|
---|
[987] | 189 |
|
---|
[824] | 190 | /**
|
---|
[845] | 191 | * Return the Flux unit of the data, e.g. "Jy" or "K"
|
---|
| 192 | * @return string
|
---|
[824] | 193 | */
|
---|
| 194 | std::string getFluxUnit() const;
|
---|
[472] | 195 |
|
---|
[824] | 196 | /**
|
---|
[845] | 197 | * Set the Flux unit of the data
|
---|
| 198 | * @param unit a string representing the unit, e.g "Jy" or "K"
|
---|
[824] | 199 | */
|
---|
| 200 | void setFluxUnit( const std::string& unit );
|
---|
[472] | 201 |
|
---|
[824] | 202 | /**
|
---|
[1189] | 203 | * Set the Stokes type of the data
|
---|
[1295] | 204 | * @param feedtype a string representing the type, e.g "circular" or "linear"
|
---|
[1189] | 205 | */
|
---|
| 206 | void setFeedType( const std::string& feedtype );
|
---|
| 207 |
|
---|
| 208 | /**
|
---|
[824] | 209 | *
|
---|
[845] | 210 | * @param instrument a string representing an insturment. see xxx
|
---|
[824] | 211 | */
|
---|
| 212 | void setInstrument( const std::string& instrument );
|
---|
[2] | 213 |
|
---|
[845] | 214 | /**
|
---|
| 215 | * (Re)calculate the azimuth and elevationnfor all rows
|
---|
| 216 | */
|
---|
[824] | 217 | void calculateAZEL();
|
---|
[745] | 218 |
|
---|
[824] | 219 | /**
|
---|
[845] | 220 | * "hard" flag the data, this flags everything selected in setSelection()
|
---|
[1104] | 221 | * param[in] msk a boolean mask of length nchan describing the points to
|
---|
| 222 | * to be flagged
|
---|
[824] | 223 | */
|
---|
[1430] | 224 | //void flag( const std::vector<bool>& msk = std::vector<bool>());
|
---|
| 225 | void flag( const std::vector<bool>& msk = std::vector<bool>(), bool unflag=false);
|
---|
[455] | 226 |
|
---|
[852] | 227 | /**
|
---|
| 228 | * Return a list of row numbers with respect to the original table.
|
---|
[902] | 229 | * @return a list of unsigned ints
|
---|
[852] | 230 | */
|
---|
| 231 | std::vector<unsigned int> rownumbers() const;
|
---|
[845] | 232 |
|
---|
[852] | 233 |
|
---|
[845] | 234 | /**
|
---|
| 235 | * Get the number of beams in the data or a specific scan
|
---|
| 236 | * @param scanno the scan number to get the number of beams for.
|
---|
| 237 | * If scanno<0 the number is retrieved from the header.
|
---|
| 238 | * @return an integer number
|
---|
| 239 | */
|
---|
[824] | 240 | int nbeam(int scanno=-1) const;
|
---|
[845] | 241 | /**
|
---|
| 242 | * Get the number of IFs in the data or a specific scan
|
---|
| 243 | * @param scanno the scan number to get the number of IFs for.
|
---|
| 244 | * If scanno<0 the number is retrieved from the header.
|
---|
| 245 | * @return an integer number
|
---|
| 246 | */
|
---|
[824] | 247 | int nif(int scanno=-1) const;
|
---|
[845] | 248 | /**
|
---|
| 249 | * Get the number of polarizations in the data or a specific scan
|
---|
| 250 | * @param scanno the scan number to get the number of polarizations for.
|
---|
| 251 | * If scanno<0 the number is retrieved from the header.
|
---|
| 252 | * @return an integer number
|
---|
| 253 | */
|
---|
[824] | 254 | int npol(int scanno=-1) const;
|
---|
[794] | 255 |
|
---|
[896] | 256 | std::string getPolType() const;
|
---|
| 257 |
|
---|
[845] | 258 |
|
---|
| 259 | /**
|
---|
| 260 | * Get the number of integartion cycles
|
---|
| 261 | * @param scanno the scan number to get the number of rows for.
|
---|
| 262 | * If scanno<0 the number is retrieved from the header.
|
---|
[1104] | 263 | * @return the number of rows (for the specified scanno)
|
---|
[845] | 264 | */
|
---|
[824] | 265 | int nrow(int scanno=-1) const;
|
---|
[794] | 266 |
|
---|
[1111] | 267 | int getBeam(int whichrow) const;
|
---|
| 268 | std::vector<uint> getBeamNos() { return getNumbers(beamCol_); }
|
---|
[50] | 269 |
|
---|
[847] | 270 | int getIF(int whichrow) const;
|
---|
[1111] | 271 | std::vector<uint> getIFNos() { return getNumbers(ifCol_); }
|
---|
| 272 |
|
---|
[847] | 273 | int getPol(int whichrow) const;
|
---|
[1111] | 274 | std::vector<uint> getPolNos() { return getNumbers(polCol_); }
|
---|
| 275 |
|
---|
| 276 | std::vector<uint> getScanNos() { return getNumbers(scanCol_); }
|
---|
[865] | 277 | int getScan(int whichrow) const { return scanCol_(whichrow); }
|
---|
[1111] | 278 |
|
---|
| 279 | /**
|
---|
| 280 | * Get the number of channels in the data or a specific IF. This currently
|
---|
| 281 | * varies only with IF number
|
---|
| 282 | * @param ifno the IF number to get the number of channels for.
|
---|
| 283 | * If ifno<0 the number is retrieved from the header.
|
---|
| 284 | * @return an integer number
|
---|
| 285 | */
|
---|
| 286 | int nchan(int ifno=-1) const;
|
---|
[923] | 287 | int getChannels(int whichrow) const;
|
---|
[206] | 288 |
|
---|
[1111] | 289 | int ncycle(int scanno=-1) const;
|
---|
| 290 | int getCycle(int whichrow) const { return cycleCol_(whichrow); }
|
---|
| 291 |
|
---|
[847] | 292 | double getInterval(int whichrow) const
|
---|
| 293 | { return integrCol_(whichrow); }
|
---|
[845] | 294 |
|
---|
[865] | 295 | float getTsys(int whichrow) const
|
---|
| 296 | { return casa::Vector<casa::Float>(tsysCol_(whichrow))(0); }
|
---|
[847] | 297 | float getElevation(int whichrow) const
|
---|
| 298 | { return elCol_(whichrow); }
|
---|
| 299 | float getAzimuth(int whichrow) const
|
---|
| 300 | { return azCol_(whichrow); }
|
---|
[865] | 301 | float getParAngle(int whichrow) const
|
---|
[1586] | 302 | { return focus().getParAngle(mfocusidCol_(whichrow)); }
|
---|
[386] | 303 |
|
---|
[865] | 304 | std::string getSourceName(int whichrow) const
|
---|
| 305 | { return srcnCol_(whichrow); }
|
---|
| 306 |
|
---|
[847] | 307 | std::vector<bool> getMask(int whichrow) const;
|
---|
[896] | 308 | std::vector<float> getSpectrum(int whichrow,
|
---|
[905] | 309 | const std::string& poltype = "" ) const;
|
---|
[847] | 310 |
|
---|
[884] | 311 | void setSpectrum(const std::vector<float>& spec, int whichrow);
|
---|
| 312 |
|
---|
[902] | 313 | std::string getPolarizationLabel(int index, const std::string& ptype) const
|
---|
| 314 | { return STPol::getPolLabel(index, ptype ); }
|
---|
[401] | 315 |
|
---|
[845] | 316 | /**
|
---|
| 317 | * Write the Scantable to disk
|
---|
| 318 | * @param filename the output file name
|
---|
| 319 | */
|
---|
[824] | 320 | void makePersistent(const std::string& filename);
|
---|
[745] | 321 |
|
---|
[860] | 322 | std::vector<std::string> getHistory() const
|
---|
| 323 | { return historyTable_.getHistory(); };
|
---|
[483] | 324 |
|
---|
[860] | 325 | void addHistory(const std::string& hist) { historyTable_.addEntry(hist); }
|
---|
[488] | 326 |
|
---|
[860] | 327 | void appendToHistoryTable(const STHistory& otherhist)
|
---|
| 328 | { historyTable_.append(otherhist); }
|
---|
| 329 |
|
---|
[824] | 330 | std::string summary(bool verbose=false);
|
---|
| 331 | std::string getTime(int whichrow=-1, bool showdate=true) const;
|
---|
[1350] | 332 | double getIntTime(int whichrow) const { return integrCol_(whichrow); }
|
---|
[19] | 333 |
|
---|
[847] | 334 | // returns unit, conversion frame, doppler, base-frame
|
---|
[18] | 335 |
|
---|
[847] | 336 | /**
|
---|
| 337 | * Get the frequency set up
|
---|
| 338 | * This is forwarded to the STFrequencies subtable
|
---|
| 339 | * @return unit, frame, doppler
|
---|
| 340 | */
|
---|
| 341 | std::vector<std::string> getCoordInfo() const
|
---|
| 342 | { return freqTable_.getInfo(); };
|
---|
| 343 |
|
---|
| 344 | void setCoordInfo(std::vector<string> theinfo)
|
---|
| 345 | { return freqTable_.setInfo(theinfo); };
|
---|
| 346 |
|
---|
[865] | 347 |
|
---|
| 348 | std::vector<double> getAbcissa(int whichrow) const;
|
---|
| 349 |
|
---|
[847] | 350 | std::string getAbcissaLabel(int whichrow) const;
|
---|
| 351 | std::vector<double> getRestFrequencies() const
|
---|
| 352 | { return moleculeTable_.getRestFrequencies(); }
|
---|
| 353 |
|
---|
[1170] | 354 | void setRestFrequencies(double rf, const std::string& name = "",
|
---|
| 355 | const std::string& = "Hz");
|
---|
[847] | 356 | void setRestFrequencies(const std::string& name);
|
---|
| 357 |
|
---|
[1360] | 358 | void shift(int npix);
|
---|
| 359 |
|
---|
[1598] | 360 | casa::SpectralCoordinate getSpectralCoordinate(int whichrow) const;
|
---|
| 361 |
|
---|
[987] | 362 | void convertDirection(const std::string& newframe);
|
---|
| 363 |
|
---|
[824] | 364 | STFrequencies& frequencies() { return freqTable_; }
|
---|
[1375] | 365 | const STFrequencies& frequencies() const { return freqTable_; }
|
---|
[824] | 366 | STWeather& weather() { return weatherTable_; }
|
---|
[1375] | 367 | const STWeather& weather() const { return weatherTable_; }
|
---|
[824] | 368 | STFocus& focus() { return focusTable_; }
|
---|
[1375] | 369 | const STFocus& focus() const { return focusTable_; }
|
---|
[824] | 370 | STTcal& tcal() { return tcalTable_; }
|
---|
[1375] | 371 | const STTcal& tcal() const { return tcalTable_; }
|
---|
[824] | 372 | STMolecules& molecules() { return moleculeTable_; }
|
---|
[1375] | 373 | const STMolecules& molecules() const { return moleculeTable_; }
|
---|
[860] | 374 | STHistory& history() { return historyTable_; }
|
---|
[1375] | 375 | const STHistory& history() const { return historyTable_; }
|
---|
[972] | 376 | STFit& fit() { return fitTable_; }
|
---|
[1375] | 377 | const STFit& fit() const { return fitTable_; }
|
---|
[2] | 378 |
|
---|
[902] | 379 | std::vector<std::string> columnNames() const;
|
---|
[896] | 380 |
|
---|
[972] | 381 | void addFit(const STFitEntry& fit, int row);
|
---|
| 382 | STFitEntry getFit(int row) const
|
---|
| 383 | { STFitEntry fe; fitTable_.getEntry(fe, mfitidCol_(row)); return fe; }
|
---|
| 384 |
|
---|
[1391] | 385 | //Added by TT
|
---|
| 386 | /**
|
---|
| 387 | * Get the antenna name
|
---|
| 388 | * @return antenna name string
|
---|
| 389 | */
|
---|
| 390 | std::string getAntennaName() const;
|
---|
| 391 |
|
---|
| 392 | /**
|
---|
| 393 | * For GBT MS data only. check a scan list
|
---|
| 394 | * against the information found in GBT_GO table for
|
---|
| 395 | * scan number orders to get correct pairs.
|
---|
| 396 | * @param[in] scan list
|
---|
| 397 | * @return status
|
---|
| 398 | */
|
---|
| 399 | int checkScanInfo(const std::vector<int>& scanlist) const;
|
---|
| 400 |
|
---|
| 401 | /**
|
---|
| 402 | * Get the direction as a vector, for a specific row
|
---|
| 403 | * @param[in] whichrow the row numbyyer
|
---|
| 404 | * @return the direction in a vector
|
---|
| 405 | */
|
---|
| 406 | std::vector<double> getDirectionVector(int whichrow) const;
|
---|
| 407 |
|
---|
[1586] | 408 | /**
|
---|
| 409 | * Set a flag indicating whether the data was parallactified
|
---|
| 410 | * @param[in] flag true or false
|
---|
| 411 | */
|
---|
[1598] | 412 | void parallactify(bool flag)
|
---|
[1586] | 413 | {focus().setParallactify(flag);}
|
---|
[824] | 414 | private:
|
---|
[896] | 415 |
|
---|
| 416 | casa::Matrix<casa::Float> getPolMatrix( casa::uInt whichrow ) const;
|
---|
| 417 |
|
---|
[824] | 418 | /**
|
---|
| 419 | * Turns a time vale into a formatted string
|
---|
| 420 | * @param x
|
---|
| 421 | * @return
|
---|
| 422 | */
|
---|
| 423 | std::string formatSec(casa::Double x) const;
|
---|
[18] | 424 |
|
---|
[824] | 425 | std::string formatTime(const casa::MEpoch& me, bool showdate)const;
|
---|
[22] | 426 |
|
---|
[824] | 427 | /**
|
---|
| 428 | * Turns a casa::MDirection into a nicely formatted string
|
---|
| 429 | * @param md an casa::MDirection
|
---|
| 430 | * @return
|
---|
| 431 | */
|
---|
| 432 | std::string formatDirection(const casa::MDirection& md) const;
|
---|
[19] | 433 |
|
---|
[286] | 434 |
|
---|
[824] | 435 | /**
|
---|
| 436 | * Create a unique file name for the paged (temporary) table
|
---|
| 437 | * @return just the name
|
---|
| 438 | */
|
---|
| 439 | static casa::String generateName();
|
---|
[286] | 440 |
|
---|
[824] | 441 | /**
|
---|
| 442 | * attach to cached columns
|
---|
| 443 | */
|
---|
| 444 | void attach();
|
---|
[50] | 445 |
|
---|
[824] | 446 | /**
|
---|
| 447 | * Set up the main casa::Table
|
---|
| 448 | */
|
---|
| 449 | void setupMainTable();
|
---|
[88] | 450 |
|
---|
[859] | 451 | void attachSubtables();
|
---|
[865] | 452 | void copySubtables(const Scantable& other);
|
---|
| 453 |
|
---|
[824] | 454 | /**
|
---|
| 455 | * Convert an "old" asap1 style row index into a new index
|
---|
| 456 | * @param[in] therow
|
---|
| 457 | * @return and index into @table_
|
---|
| 458 | */
|
---|
| 459 | int rowToScanIndex(int therow);
|
---|
[212] | 460 |
|
---|
[1111] | 461 | std::vector<uint> getNumbers(casa::ScalarColumn<casa::uInt>& col);
|
---|
| 462 |
|
---|
[1586] | 463 | static const casa::uInt version_ = 3;
|
---|
[286] | 464 |
|
---|
[824] | 465 | STSelector selector_;
|
---|
[236] | 466 |
|
---|
[824] | 467 | casa::Table::TableType type_;
|
---|
[465] | 468 |
|
---|
[824] | 469 | // the actual data
|
---|
| 470 | casa::Table table_;
|
---|
| 471 | casa::Table originalTable_;
|
---|
[745] | 472 |
|
---|
[824] | 473 | STTcal tcalTable_;
|
---|
| 474 | STFrequencies freqTable_;
|
---|
| 475 | STWeather weatherTable_;
|
---|
| 476 | STFocus focusTable_;
|
---|
| 477 | STMolecules moleculeTable_;
|
---|
[860] | 478 | STHistory historyTable_;
|
---|
[960] | 479 | STFit fitTable_;
|
---|
[860] | 480 |
|
---|
[824] | 481 | // Cached Columns to avoid reconstructing them for each row get/put
|
---|
[847] | 482 | casa::ScalarColumn<casa::Double> integrCol_;
|
---|
[824] | 483 | casa::MDirection::ScalarColumn dirCol_;
|
---|
[847] | 484 | casa::MEpoch::ScalarColumn timeCol_;
|
---|
[923] | 485 | casa::ScalarColumn<casa::Float> azCol_;
|
---|
| 486 | casa::ScalarColumn<casa::Float> elCol_;
|
---|
[824] | 487 | casa::ScalarColumn<casa::String> srcnCol_, fldnCol_;
|
---|
[847] | 488 | casa::ScalarColumn<casa::uInt> scanCol_, beamCol_, ifCol_, polCol_, cycleCol_;
|
---|
[1068] | 489 | casa::ScalarColumn<casa::Int> rbeamCol_, srctCol_;
|
---|
[865] | 490 | casa::ArrayColumn<casa::Float> specCol_, tsysCol_;
|
---|
[824] | 491 | casa::ArrayColumn<casa::uChar> flagsCol_;
|
---|
[430] | 492 |
|
---|
[824] | 493 | // id in frequencies table
|
---|
| 494 | casa::ScalarColumn<casa::uInt> mfreqidCol_;
|
---|
| 495 | // id in tcal table
|
---|
| 496 | casa::ScalarColumn<casa::uInt> mtcalidCol_;
|
---|
[430] | 497 |
|
---|
[824] | 498 | casa::ArrayColumn<casa::String> histitemCol_;
|
---|
[972] | 499 | casa::ScalarColumn<casa::Int> mfitidCol_;
|
---|
[824] | 500 | casa::ScalarColumn<casa::uInt> mweatheridCol_;
|
---|
[322] | 501 |
|
---|
[824] | 502 | casa::ScalarColumn<casa::uInt> mfocusidCol_;
|
---|
| 503 |
|
---|
| 504 | casa::ScalarColumn<casa::uInt> mmolidCol_;
|
---|
| 505 |
|
---|
[896] | 506 | static std::map<std::string, STPol::STPolFactory *> factories_;
|
---|
| 507 | void initFactories();
|
---|
| 508 |
|
---|
[2] | 509 | };
|
---|
| 510 |
|
---|
[824] | 511 |
|
---|
| 512 | } // namespace
|
---|
| 513 |
|
---|
[2] | 514 | #endif
|
---|