source: trunk/src/Scantable.h@ 2009

Last change on this file since 2009 was 2005, checked in by Kana Sugimoto, 14 years ago

New Development: No

JIRA Issue: Yes (CAS-2817/ASAP-232)

Ready for Test: Yes

Interface Changes: Yes

What Interface Changed: added a new function SrcType::getName(int)

Test Programs: sdlist (CASA) or scantable.summary()

Put in Release Notes: No

Module(s): scantable, sdlist, sdplot

Description:

Added a new function SrcType::getName(int srctype) which returns
a source type in string.
The source type of each scan is retuned by Scantable::summary.


  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 17.6 KB
RevLine 
[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>
[1931]20#include <casa/Containers/Record.h>
[322]21#include <casa/Arrays/MaskedArray.h>
[80]22#include <casa/BasicSL/String.h>
[824]23#include <casa/Utilities/CountedPtr.h>
24
[80]25#include <tables/Tables/Table.h>
[322]26#include <tables/Tables/ArrayColumn.h>
27#include <tables/Tables/ScalarColumn.h>
28
[824]29#include <measures/TableMeasures/ScalarMeasColumn.h>
30
[1598]31#include <coordinates/Coordinates/SpectralCoordinate.h>
32
[1819]33#include <casa/Arrays/Vector.h>
34#include <casa/Quanta/Quantum.h>
35
36#include <casa/Exceptions/Error.h>
37
[894]38#include "Logger.h"
[901]39#include "STHeader.h"
[824]40#include "STFrequencies.h"
41#include "STWeather.h"
42#include "STFocus.h"
43#include "STTcal.h"
44#include "STMolecules.h"
45#include "STSelector.h"
[860]46#include "STHistory.h"
[896]47#include "STPol.h"
[960]48#include "STFit.h"
[972]49#include "STFitEntry.h"
[1907]50#include "STFitter.h"
[2]51
[824]52namespace asap {
[2]53
[824]54/**
55 * This class contains and wraps a casa::Table, which is used to store
56 * all the information. This can be either a MemoryTable or a
57 * disk based Table.
58 * It provides access functions to the underlying table
59 * It contains n subtables:
60 * @li weather
61 * @li frequencies
62 * @li molecules
63 * @li tcal
64 * @li focus
65 * @li fits
66 *
67 * @brief The main ASAP data container
68 * @author Malte Marquarding
69 * @date
70 * @version
71*/
[890]72class Scantable : private Logger
[824]73{
[902]74
75friend class STMath;
76
[2]77public:
[824]78 /**
79 * Default constructor
80 */
[1350]81 explicit Scantable(casa::Table::TableType ttype = casa::Table::Memory);
[19]82
[824]83 /**
84 * Create a Scantable object form an existing table on disk
85 * @param[in] name the name of the existing Scantable
86 */
[1385]87 explicit Scantable(const std::string& name, casa::Table::TableType ttype = casa::Table::Memory);
[2]88
[824]89 /// @fixme this is only sensible for MemoryTables....
90 Scantable(const Scantable& other, bool clear=true);
[161]91
[824]92 /**
93 * Destructor
94 */
95 virtual ~Scantable();
[745]96
[824]97 /**
98 * get a const reference to the underlying casa::Table
[1104]99 * @return const \ref casa::Table reference
[824]100 */
101 const casa::Table& table() const;
[19]102
[824]103 /**
104 * get a reference to the underlying casa::Table with the Selection
105 * object applied if set
106 * @return casa::Table reference
107 */
108 casa::Table& table();
[21]109
[845]110
111 /**
112 * Get a handle to the selection object
113 * @return constant STSelector reference
114 */
115 const STSelector& getSelection() const { return selector_; }
116
117 /**
118 * Set the data to be a subset as defined by the STSelector
119 * @param selection a STSelector object
120 */
[824]121 void setSelection(const STSelector& selection);
[845]122
123 /**
124 * unset the selection of the data
125 */
[824]126 void unsetSelection();
127 /**
128 * set the header
[1295]129 * @param[in] sth an STHeader object
[824]130 */
[901]131 void setHeader( const STHeader& sth );
[386]132
[824]133 /**
134 * get the header information
[901]135 * @return an STHeader object
[824]136 */
[901]137 STHeader getHeader( ) const;
[1068]138
[824]139 /**
140 * Checks if the "other" Scantable is conformant with this,
141 * i.e. if header values are the same.
142 * @param[in] other another Scantable
143 * @return true or false
144 */
145 bool conformant( const Scantable& other);
[430]146
[824]147 /**
[1068]148 *
149 * @param stype The type of the source, 0 = on, 1 = off
150 */
151 void setSourceType(int stype);
152
153
154 /**
[1104]155 * The number of scans in the table
[824]156 * @return number of scans in the table
157 */
[845]158 int nscan() const;
[490]159
[915]160 casa::MEpoch::Types getTimeReference() const;
[21]161
[1411]162
163 casa::MEpoch getEpoch(int whichrow) const;
164
[824]165 /**
166 * Get global antenna position
[845]167 * @return casa::MPosition
[824]168 */
169 casa::MPosition getAntennaPosition() const;
[490]170
[1441]171 /**
172 * the @ref casa::MDirection for a specific row
173 * @param[in] whichrow the row number
174 * return casa::MDirection
175 */
[987]176 casa::MDirection getDirection( int whichrow ) const;
[1598]177
[1441]178 /**
179 * get the direction type as a string, e.g. "J2000"
180 * @param[in] whichrow the row number
181 * return the direction string
182 */
[1068]183 std::string getDirectionString( int whichrow ) const;
184
[1441]185 /**
186 * set the direction type as a string, e.g. "J2000"
187 * @param[in] refstr the direction type
188 */
[987]189 void setDirectionRefString(const std::string& refstr="");
[1441]190
[1104]191 /**
192 * get the direction reference string
193 * @return a string describing the direction reference
194 */
[1598]195 std::string getDirectionRefString() const;
[987]196
[824]197 /**
[845]198 * Return the Flux unit of the data, e.g. "Jy" or "K"
199 * @return string
[824]200 */
201 std::string getFluxUnit() const;
[472]202
[824]203 /**
[845]204 * Set the Flux unit of the data
205 * @param unit a string representing the unit, e.g "Jy" or "K"
[824]206 */
207 void setFluxUnit( const std::string& unit );
[472]208
[824]209 /**
[1189]210 * Set the Stokes type of the data
[1295]211 * @param feedtype a string representing the type, e.g "circular" or "linear"
[1189]212 */
213 void setFeedType( const std::string& feedtype );
214
215 /**
[824]216 *
[845]217 * @param instrument a string representing an insturment. see xxx
[824]218 */
219 void setInstrument( const std::string& instrument );
[2]220
[845]221 /**
222 * (Re)calculate the azimuth and elevationnfor all rows
223 */
[824]224 void calculateAZEL();
[745]225
[824]226 /**
[845]227 * "hard" flag the data, this flags everything selected in setSelection()
[1104]228 * param[in] msk a boolean mask of length nchan describing the points to
229 * to be flagged
[824]230 */
[1430]231 //void flag( const std::vector<bool>& msk = std::vector<bool>());
[1994]232 //void flag( const std::vector<bool>& msk = std::vector<bool>(), bool unflag=false);
[455]233
[1994]234 void flag( int whichrow = -1, const std::vector<bool>& msk = std::vector<bool>(), bool unflag=false);
235
[852]236 /**
[1819]237 * Flag the data in a row-based manner. (CAS-1433 Wataru Kawasaki)
238 * param[in] rows list of row numbers to be flagged
239 */
240 void flagRow( const std::vector<casa::uInt>& rows = std::vector<casa::uInt>(), bool unflag=false);
241
242 /**
243 * Get flagRow info at the specified row. If true, the whole data
244 * at the row should be flagged.
245 */
246 bool getFlagRow(int whichrow) const
247 { return (flagrowCol_(whichrow) > 0); }
248
249 /**
250 * Flag the data outside a specified range (in a channel-based manner).
251 * (CAS-1807 Wataru Kawasaki)
252 */
253 void clip(const casa::Float uthres, const casa::Float dthres, bool clipoutside, bool unflag);
254
255 /**
256 * Return a list of booleans with the size of nchan for a specified row, to get info
257 * about which channel is clipped.
258 */
259 std::vector<bool> getClipMask(int whichrow, const casa::Float uthres, const casa::Float dthres, bool clipoutside, bool unflag);
260 void srchChannelsToClip(casa::uInt whichrow, const casa::Float uthres, const casa::Float dthres, bool clipoutside, bool unflag,
261 casa::Vector<casa::uChar> flgs);
262
263 /**
[852]264 * Return a list of row numbers with respect to the original table.
[902]265 * @return a list of unsigned ints
[852]266 */
267 std::vector<unsigned int> rownumbers() const;
[845]268
[852]269
[845]270 /**
271 * Get the number of beams in the data or a specific scan
272 * @param scanno the scan number to get the number of beams for.
273 * If scanno<0 the number is retrieved from the header.
274 * @return an integer number
275 */
[824]276 int nbeam(int scanno=-1) const;
[845]277 /**
278 * Get the number of IFs in the data or a specific scan
279 * @param scanno the scan number to get the number of IFs for.
280 * If scanno<0 the number is retrieved from the header.
281 * @return an integer number
282 */
[824]283 int nif(int scanno=-1) const;
[845]284 /**
285 * Get the number of polarizations in the data or a specific scan
286 * @param scanno the scan number to get the number of polarizations for.
287 * If scanno<0 the number is retrieved from the header.
288 * @return an integer number
289 */
[824]290 int npol(int scanno=-1) const;
[794]291
[896]292 std::string getPolType() const;
293
[845]294
295 /**
296 * Get the number of integartion cycles
297 * @param scanno the scan number to get the number of rows for.
298 * If scanno<0 the number is retrieved from the header.
[1104]299 * @return the number of rows (for the specified scanno)
[845]300 */
[824]301 int nrow(int scanno=-1) const;
[794]302
[1111]303 int getBeam(int whichrow) const;
[1694]304 std::vector<uint> getBeamNos() const { return getNumbers(beamCol_); }
[50]305
[847]306 int getIF(int whichrow) const;
[1694]307 std::vector<uint> getIFNos() const { return getNumbers(ifCol_); }
[1111]308
[847]309 int getPol(int whichrow) const;
[1694]310 std::vector<uint> getPolNos() const { return getNumbers(polCol_); }
[1111]311
[1694]312 std::vector<uint> getScanNos() const { return getNumbers(scanCol_); }
[865]313 int getScan(int whichrow) const { return scanCol_(whichrow); }
[1111]314
[1819]315 //TT addition
316 std::vector<uint> getMolNos() {return getNumbers(mmolidCol_); }
317
[1111]318 /**
319 * Get the number of channels in the data or a specific IF. This currently
320 * varies only with IF number
321 * @param ifno the IF number to get the number of channels for.
322 * If ifno<0 the number is retrieved from the header.
323 * @return an integer number
324 */
325 int nchan(int ifno=-1) const;
[923]326 int getChannels(int whichrow) const;
[206]327
[1111]328 int ncycle(int scanno=-1) const;
329 int getCycle(int whichrow) const { return cycleCol_(whichrow); }
330
[847]331 double getInterval(int whichrow) const
332 { return integrCol_(whichrow); }
[845]333
[865]334 float getTsys(int whichrow) const
335 { return casa::Vector<casa::Float>(tsysCol_(whichrow))(0); }
[847]336 float getElevation(int whichrow) const
337 { return elCol_(whichrow); }
338 float getAzimuth(int whichrow) const
339 { return azCol_(whichrow); }
[865]340 float getParAngle(int whichrow) const
[1819]341 { return focus().getParAngle(mfocusidCol_(whichrow)); }
342 int getTcalId(int whichrow) const
343 { return mtcalidCol_(whichrow); }
[386]344
[865]345 std::string getSourceName(int whichrow) const
346 { return srcnCol_(whichrow); }
347
[847]348 std::vector<bool> getMask(int whichrow) const;
[896]349 std::vector<float> getSpectrum(int whichrow,
[905]350 const std::string& poltype = "" ) const;
[847]351
[884]352 void setSpectrum(const std::vector<float>& spec, int whichrow);
353
[902]354 std::string getPolarizationLabel(int index, const std::string& ptype) const
355 { return STPol::getPolLabel(index, ptype ); }
[401]356
[845]357 /**
358 * Write the Scantable to disk
359 * @param filename the output file name
360 */
[824]361 void makePersistent(const std::string& filename);
[745]362
[860]363 std::vector<std::string> getHistory() const
364 { return historyTable_.getHistory(); };
[483]365
[860]366 void addHistory(const std::string& hist) { historyTable_.addEntry(hist); }
[488]367
[860]368 void appendToHistoryTable(const STHistory& otherhist)
369 { historyTable_.append(otherhist); }
370
[824]371 std::string summary(bool verbose=false);
[1947]372 //std::string getTime(int whichrow=-1, bool showdate=true) const;
373 std::string getTime(int whichrow=-1, bool showdate=true, casa::uInt prec=0) const;
[1350]374 double getIntTime(int whichrow) const { return integrCol_(whichrow); }
[19]375
[847]376 // returns unit, conversion frame, doppler, base-frame
[18]377
[847]378 /**
379 * Get the frequency set up
380 * This is forwarded to the STFrequencies subtable
381 * @return unit, frame, doppler
382 */
383 std::vector<std::string> getCoordInfo() const
384 { return freqTable_.getInfo(); };
385
386 void setCoordInfo(std::vector<string> theinfo)
387 { return freqTable_.setInfo(theinfo); };
388
[865]389
390 std::vector<double> getAbcissa(int whichrow) const;
391
[1730]392 std::vector<float> getWeather(int whichrow) const;
393
[847]394 std::string getAbcissaLabel(int whichrow) const;
395 std::vector<double> getRestFrequencies() const
396 { return moleculeTable_.getRestFrequencies(); }
[1819]397 std::vector<double> getRestFrequency(int id) const
398 { return moleculeTable_.getRestFrequency(id); }
[847]399
[1819]400 /**
[1170]401 void setRestFrequencies(double rf, const std::string& name = "",
402 const std::string& = "Hz");
[1819]403 **/
404 // Modified by Takeshi Nakazato 05/09/2008
405 /***
406 void setRestFrequencies(vector<double> rf, const vector<std::string>& name = "",
407 const std::string& = "Hz");
408 ***/
409 void setRestFrequencies(vector<double> rf,
410 const vector<std::string>& name = vector<std::string>(1,""),
411 const std::string& = "Hz");
[847]412
[1819]413 //void setRestFrequencies(const std::string& name);
414 void setRestFrequencies(const vector<std::string>& name);
415
[1360]416 void shift(int npix);
417
[1598]418 casa::SpectralCoordinate getSpectralCoordinate(int whichrow) const;
419
[987]420 void convertDirection(const std::string& newframe);
421
[824]422 STFrequencies& frequencies() { return freqTable_; }
[1375]423 const STFrequencies& frequencies() const { return freqTable_; }
[824]424 STWeather& weather() { return weatherTable_; }
[1375]425 const STWeather& weather() const { return weatherTable_; }
[824]426 STFocus& focus() { return focusTable_; }
[1375]427 const STFocus& focus() const { return focusTable_; }
[824]428 STTcal& tcal() { return tcalTable_; }
[1375]429 const STTcal& tcal() const { return tcalTable_; }
[824]430 STMolecules& molecules() { return moleculeTable_; }
[1375]431 const STMolecules& molecules() const { return moleculeTable_; }
[860]432 STHistory& history() { return historyTable_; }
[1375]433 const STHistory& history() const { return historyTable_; }
[972]434 STFit& fit() { return fitTable_; }
[1375]435 const STFit& fit() const { return fitTable_; }
[2]436
[902]437 std::vector<std::string> columnNames() const;
[896]438
[972]439 void addFit(const STFitEntry& fit, int row);
440 STFitEntry getFit(int row) const
441 { STFitEntry fe; fitTable_.getEntry(fe, mfitidCol_(row)); return fe; }
442
[1391]443 //Added by TT
444 /**
445 * Get the antenna name
446 * @return antenna name string
447 */
[1819]448 casa::String getAntennaName() const;
[1391]449
450 /**
451 * For GBT MS data only. check a scan list
452 * against the information found in GBT_GO table for
453 * scan number orders to get correct pairs.
454 * @param[in] scan list
455 * @return status
456 */
457 int checkScanInfo(const std::vector<int>& scanlist) const;
458
459 /**
460 * Get the direction as a vector, for a specific row
461 * @param[in] whichrow the row numbyyer
462 * @return the direction in a vector
463 */
464 std::vector<double> getDirectionVector(int whichrow) const;
465
[1586]466 /**
467 * Set a flag indicating whether the data was parallactified
468 * @param[in] flag true or false
469 */
[1598]470 void parallactify(bool flag)
[1727]471 { focus().setParallactify(flag); }
472
[1819]473 /**
474 * Reshape spectrum
475 * @param[in] nmin, nmax minimum and maximum channel
476 * @param[in] irow row number
477 *
478 * 30/07/2008 Takeshi Nakazato
479 **/
480 void reshapeSpectrum( int nmin, int nmax ) throw( casa::AipsError );
481 void reshapeSpectrum( int nmin, int nmax, int irow ) ;
482
483 /**
484 * Change channel number under fixed bandwidth
485 * @param[in] nchan, dnu new channel number and spectral resolution
486 * @param[in] irow row number
487 *
488 * 27/08/2008 Takeshi Nakazato
489 **/
490 void regridChannel( int nchan, double dnu ) ;
491 void regridChannel( int nchan, double dnu, int irow ) ;
492
[1907]493 bool getFlagtraFast(int whichrow);
[1819]494
[1931]495 void polyBaselineBatch(const std::vector<bool>& mask, int order);
496 STFitEntry polyBaseline(const std::vector<bool>& mask, int order, int rowno);
[1907]497
[824]498private:
[896]499
500 casa::Matrix<casa::Float> getPolMatrix( casa::uInt whichrow ) const;
501
[824]502 /**
[2005]503 * Turns a time value into a formatted string
[824]504 * @param x
505 * @return
506 */
507 std::string formatSec(casa::Double x) const;
[18]508
[824]509 std::string formatTime(const casa::MEpoch& me, bool showdate)const;
[1947]510 std::string formatTime(const casa::MEpoch& me, bool showdate, casa::uInt prec)const;
[22]511
[824]512 /**
513 * Turns a casa::MDirection into a nicely formatted string
514 * @param md an casa::MDirection
515 * @return
516 */
517 std::string formatDirection(const casa::MDirection& md) const;
[19]518
[824]519 /**
520 * Create a unique file name for the paged (temporary) table
521 * @return just the name
522 */
523 static casa::String generateName();
[286]524
[824]525 /**
526 * attach to cached columns
527 */
528 void attach();
[50]529
[824]530 /**
531 * Set up the main casa::Table
532 */
533 void setupMainTable();
[88]534
[859]535 void attachSubtables();
[865]536 void copySubtables(const Scantable& other);
537
[824]538 /**
539 * Convert an "old" asap1 style row index into a new index
540 * @param[in] therow
541 * @return and index into @table_
542 */
543 int rowToScanIndex(int therow);
[212]544
[1694]545 std::vector<uint> getNumbers(const casa::ScalarColumn<casa::uInt>& col) const;
[1111]546
[1586]547 static const casa::uInt version_ = 3;
[286]548
[824]549 STSelector selector_;
[236]550
[824]551 casa::Table::TableType type_;
[465]552
[824]553 // the actual data
554 casa::Table table_;
555 casa::Table originalTable_;
[745]556
[824]557 STTcal tcalTable_;
558 STFrequencies freqTable_;
559 STWeather weatherTable_;
560 STFocus focusTable_;
561 STMolecules moleculeTable_;
[860]562 STHistory historyTable_;
[960]563 STFit fitTable_;
[860]564
[824]565 // Cached Columns to avoid reconstructing them for each row get/put
[847]566 casa::ScalarColumn<casa::Double> integrCol_;
[824]567 casa::MDirection::ScalarColumn dirCol_;
[847]568 casa::MEpoch::ScalarColumn timeCol_;
[923]569 casa::ScalarColumn<casa::Float> azCol_;
570 casa::ScalarColumn<casa::Float> elCol_;
[824]571 casa::ScalarColumn<casa::String> srcnCol_, fldnCol_;
[1819]572 casa::ScalarColumn<casa::uInt> scanCol_, beamCol_, ifCol_, polCol_, cycleCol_, flagrowCol_;
[1068]573 casa::ScalarColumn<casa::Int> rbeamCol_, srctCol_;
[865]574 casa::ArrayColumn<casa::Float> specCol_, tsysCol_;
[824]575 casa::ArrayColumn<casa::uChar> flagsCol_;
[430]576
[824]577 // id in frequencies table
578 casa::ScalarColumn<casa::uInt> mfreqidCol_;
579 // id in tcal table
580 casa::ScalarColumn<casa::uInt> mtcalidCol_;
[430]581
[824]582 casa::ArrayColumn<casa::String> histitemCol_;
[972]583 casa::ScalarColumn<casa::Int> mfitidCol_;
[824]584 casa::ScalarColumn<casa::uInt> mweatheridCol_;
[322]585
[824]586 casa::ScalarColumn<casa::uInt> mfocusidCol_;
587
588 casa::ScalarColumn<casa::uInt> mmolidCol_;
589
[896]590 static std::map<std::string, STPol::STPolFactory *> factories_;
591 void initFactories();
592
[1819]593 /**
594 * Add an auxiliary column to the main table and attach it to a
595 * cached column. Use for adding new columns that the original asap2
596 * tables do not have.
597 * @param[in] col reference to the cached column to be attached
598 * @param[in] colName column name in asap table
599 * @param[in] defValue default value to fill in the column
600 *
601 * 25/10/2009 Wataru Kawasaki
602 */
603 template<class T, class T2> void attachAuxColumnDef(casa::ScalarColumn<T>&,
604 const casa::String&,
605 const T2&);
606 template<class T, class T2> void attachAuxColumnDef(casa::ArrayColumn<T>&,
607 const casa::String&,
608 const casa::Array<T2>&);
[1907]609
610 void doPolyBaseline(const std::vector<bool>& mask, int order, int rowno, Fitter& fitter);
[1994]611
612 void applyChanFlag( casa::uInt whichrow, const std::vector<bool>& msk, casa::uChar flagval);
613
614
[2]615};
616
[824]617} // namespace
618
[2]619#endif
Note: See TracBrowser for help on using the repository browser.