| 1 | //
|
|---|
| 2 | // C++ Interface: STFrequencies
|
|---|
| 3 | //
|
|---|
| 4 | // Description:
|
|---|
| 5 | //
|
|---|
| 6 | //
|
|---|
| 7 | // Author: Malte Marquarding <asap@atnf.csiro.au>, (C) 2006
|
|---|
| 8 | //
|
|---|
| 9 | // Copyright: See COPYING file that comes with this distribution
|
|---|
| 10 | //
|
|---|
| 11 | //
|
|---|
| 12 | #ifndef ASAPSTFREQUENCIES_H
|
|---|
| 13 | #define ASAPSTFREQUENCIES_H
|
|---|
| 14 |
|
|---|
| 15 | #include <casa/aips.h>
|
|---|
| 16 | #include <casa/BasicSL/String.h>
|
|---|
| 17 | #include <coordinates/Coordinates/SpectralCoordinate.h>
|
|---|
| 18 | #include <tables/Tables/Table.h>
|
|---|
| 19 | #include <tables/Tables/ScalarColumn.h>
|
|---|
| 20 |
|
|---|
| 21 | #include "STSubTable.h"
|
|---|
| 22 |
|
|---|
| 23 | namespace asap {
|
|---|
| 24 |
|
|---|
| 25 | /**
|
|---|
| 26 | The Frequencies subtable of the Scantable
|
|---|
| 27 |
|
|---|
| 28 | @author Malte Marquarding
|
|---|
| 29 | @brief The frequency subtable of the Scantable
|
|---|
| 30 | */
|
|---|
| 31 | class STFrequencies : public STSubTable {
|
|---|
| 32 | public:
|
|---|
| 33 | STFrequencies( casa::Table::TableType tt = casa::Table::Memory);
|
|---|
| 34 |
|
|---|
| 35 | virtual ~STFrequencies();
|
|---|
| 36 | /**
|
|---|
| 37 | * Add a new Entry to the Frequency subtable. This checks for duplicates.
|
|---|
| 38 | * @param[in] refpix the reference pixel
|
|---|
| 39 | * @param[in] refval the reference value
|
|---|
| 40 | * @param[in] inc the increment
|
|---|
| 41 | * @return an index into the frequency table
|
|---|
| 42 | */
|
|---|
| 43 | casa::uInt addEntry( casa::Double refpix, casa::Double refval,
|
|---|
| 44 | casa::Double inc );
|
|---|
| 45 |
|
|---|
| 46 | /**
|
|---|
| 47 | * Retrieve the frequency values for a specific id via references
|
|---|
| 48 | * @param refpix the reference pixel
|
|---|
| 49 | * @param refval the reference value
|
|---|
| 50 | * @param inc the increment
|
|---|
| 51 | * @param id the identifier
|
|---|
| 52 | */
|
|---|
| 53 | void getEntry( casa::Double& refpix, casa::Double& refval,
|
|---|
| 54 | casa::Double& inc, casa::uInt id );
|
|---|
| 55 |
|
|---|
| 56 |
|
|---|
| 57 | /**
|
|---|
| 58 | * Retrieve the frequency values as a casa::SpectralCoordinate
|
|---|
| 59 | * @param freqID
|
|---|
| 60 | * @return casa::SpectralCoordinate
|
|---|
| 61 | */
|
|---|
| 62 | casa::SpectralCoordinate getSpectralCoordinate( casa::uInt freqID );
|
|---|
| 63 |
|
|---|
| 64 | /**
|
|---|
| 65 | * Return the unit of the frequency values
|
|---|
| 66 | * @return casa::Unit
|
|---|
| 67 | */
|
|---|
| 68 | const casa::Unit& getUnit() const;
|
|---|
| 69 | /**
|
|---|
| 70 | * Return the doppler type of the values
|
|---|
| 71 | * @return casa::MDoppler
|
|---|
| 72 | */
|
|---|
| 73 | casa::MDoppler getDoppler() const;
|
|---|
| 74 |
|
|---|
| 75 |
|
|---|
| 76 | /**
|
|---|
| 77 | * Return the frame type, e.g MFrequency::TOPO
|
|---|
| 78 | * @return casa::MFrequency::Types
|
|---|
| 79 | */
|
|---|
| 80 | casa::MFrequency::Types getFrame() const;
|
|---|
| 81 |
|
|---|
| 82 | /**
|
|---|
| 83 | * Return a string representation of the frame type, e.g TOPO
|
|---|
| 84 | * @return
|
|---|
| 85 | */
|
|---|
| 86 | std::string getFrameString() const;
|
|---|
| 87 |
|
|---|
| 88 | /**
|
|---|
| 89 | * set the frequency frame from a string value
|
|---|
| 90 | * @param frame a string identifier
|
|---|
| 91 | */
|
|---|
| 92 | void setFrame(const std::string& frame);
|
|---|
| 93 | /**
|
|---|
| 94 | * set the frequency frame from a casa::MFrequency::Types
|
|---|
| 95 | * @param frame casa::MFrequency::Types
|
|---|
| 96 | */
|
|---|
| 97 | void setFrame(casa::MFrequency::Types frame);
|
|---|
| 98 |
|
|---|
| 99 | /**
|
|---|
| 100 | * rescale the whole table by a given factor
|
|---|
| 101 | * @param factor the factor to bin or resample by
|
|---|
| 102 | * @param mode the rescaling mode
|
|---|
| 103 | * @li "BIN"
|
|---|
| 104 | * @li "RESAMPLE"
|
|---|
| 105 | */
|
|---|
| 106 | void rescale(casa::Float factor, const std::string& mode);
|
|---|
| 107 |
|
|---|
| 108 | /**
|
|---|
| 109 | * get the reference frequency at a given channel for a specidif identifier
|
|---|
| 110 | * @param id the identifier
|
|---|
| 111 | * @param channel the channel number
|
|---|
| 112 | * @return teh reference frequency
|
|---|
| 113 | */
|
|---|
| 114 | float getRefFreq(casa::uInt id, casa::uInt channel);
|
|---|
| 115 |
|
|---|
| 116 |
|
|---|
| 117 | /**
|
|---|
| 118 | * Rteun this table or s specific row as a string representation
|
|---|
| 119 | * @param id the identifier. If id<0 all rows are returned
|
|---|
| 120 | * @return a string
|
|---|
| 121 | */
|
|---|
| 122 | std::string print(int id=-1);
|
|---|
| 123 |
|
|---|
| 124 | private:
|
|---|
| 125 |
|
|---|
| 126 | /**
|
|---|
| 127 | * setup the the column structure of the casa::table
|
|---|
| 128 | */
|
|---|
| 129 | void setup();
|
|---|
| 130 | /**
|
|---|
| 131 | * the actual binning of the SpectralCoordinate as called by rescale
|
|---|
| 132 | * @param sc
|
|---|
| 133 | * @param factor the bin factor
|
|---|
| 134 | * @return casa::SpectralCoordinate
|
|---|
| 135 | */
|
|---|
| 136 | casa::SpectralCoordinate binCsys(const casa::SpectralCoordinate& sc, casa::Int factor);
|
|---|
| 137 | /**
|
|---|
| 138 | * the actual resampling of the SpectralCoordinate as called by rescale
|
|---|
| 139 | * @param sc
|
|---|
| 140 | * @param width the resacle width. Can be decimal.
|
|---|
| 141 | * @return
|
|---|
| 142 | */
|
|---|
| 143 | casa::SpectralCoordinate resampleCsys(const casa::SpectralCoordinate& sc, casa::Float width);
|
|---|
| 144 |
|
|---|
| 145 | static const casa::String name_;
|
|---|
| 146 | casa::ScalarColumn<casa::Double> refvalCol_, refpixCol_, incrCol_;
|
|---|
| 147 | };
|
|---|
| 148 |
|
|---|
| 149 | }
|
|---|
| 150 |
|
|---|
| 151 | #endif
|
|---|