source: trunk/src/STFrequencies.h@ 1225

Last change on this file since 1225 was 921, checked in by mar637, 18 years ago

Added setFrame form measures, implemented setFrame for both base and userframe

File size: 4.9 KB
RevLine 
[806]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
23namespace asap {
24
25/**
26The Frequencies subtable of the Scantable
27
28@author Malte Marquarding
[836]29@brief The frequency subtable of the Scantable
[806]30*/
31class STFrequencies : public STSubTable {
32public:
[849]33 STFrequencies() {;}
34 STFrequencies(casa::Table tab);
35 STFrequencies(const Scantable& parent);
[806]36
[849]37 virtual ~STFrequencies();
38
39 STFrequencies& operator=(const STFrequencies& other);
40
[806]41 /**
42 * Add a new Entry to the Frequency subtable. This checks for duplicates.
43 * @param[in] refpix the reference pixel
44 * @param[in] refval the reference value
45 * @param[in] inc the increment
46 * @return an index into the frequency table
47 */
48 casa::uInt addEntry( casa::Double refpix, casa::Double refval,
49 casa::Double inc );
50
[836]51 /**
52 * Retrieve the frequency values for a specific id via references
53 * @param refpix the reference pixel
54 * @param refval the reference value
55 * @param inc the increment
56 * @param id the identifier
57 */
[830]58 void getEntry( casa::Double& refpix, casa::Double& refval,
59 casa::Double& inc, casa::uInt id );
[806]60
[836]61
[840]62 bool conformant(const STFrequencies& other) const;
63
[836]64 /**
65 * Retrieve the frequency values as a casa::SpectralCoordinate
66 * @param freqID
67 * @return casa::SpectralCoordinate
68 */
[847]69 casa::SpectralCoordinate getSpectralCoordinate( casa::uInt freqID ) const;
[806]70
[847]71 casa::SpectralCoordinate getSpectralCoordinate( const casa::MDirection& md,
72 const casa::MPosition& mp,
73 const casa::MEpoch& me,
74 casa::Double restfreq,
75 casa::uInt freqID
76 ) const;
77
[836]78 /**
79 * Return the unit of the frequency values
80 * @return casa::Unit
81 */
[847]82 casa::Unit getUnit() const;
83 std::string getUnitString() const;
84
[836]85 /**
86 * Return the doppler type of the values
[847]87 * @return casa::MDoppler::Types
[836]88 */
[847]89 casa::MDoppler::Types getDoppler() const;
90 std::string getDopplerString() const;
[806]91
92
[836]93 /**
94 * Return the frame type, e.g MFrequency::TOPO
[847]95 * @param base return the base frame or the user frame
[836]96 * @return casa::MFrequency::Types
97 */
[847]98 casa::MFrequency::Types getFrame(bool base=false) const;
[836]99
100 /**
101 * Return a string representation of the frame type, e.g TOPO
[847]102 * @param base return the base frame or the user frame
103 * @return the string representation of the frame
[836]104 */
[847]105 std::string getFrameString(bool base=false) const;
[836]106
107 /**
108 * set the frequency frame from a string value
109 * @param frame a string identifier
110 */
[921]111 void setFrame(const std::string& frame, bool base=false);
[836]112 /**
113 * set the frequency frame from a casa::MFrequency::Types
114 * @param frame casa::MFrequency::Types
115 */
[921]116 void setFrame(casa::MFrequency::Types frame, bool base=false);
[866]117 void setUnit( const std::string & unit );
118 void setDoppler( const std::string & doppler );
[836]119 /**
120 * rescale the whole table by a given factor
121 * @param factor the factor to bin or resample by
122 * @param mode the rescaling mode
123 * @li "BIN"
124 * @li "RESAMPLE"
125 */
[806]126 void rescale(casa::Float factor, const std::string& mode);
127
[836]128 /**
129 * get the reference frequency at a given channel for a specidif identifier
130 * @param id the identifier
131 * @param channel the channel number
132 * @return teh reference frequency
133 */
[830]134 float getRefFreq(casa::uInt id, casa::uInt channel);
[806]135
[836]136
137 /**
138 * Rteun this table or s specific row as a string representation
139 * @param id the identifier. If id<0 all rows are returned
140 * @return a string
141 */
[806]142 std::string print(int id=-1);
143
[847]144 std::vector<std::string> getInfo() const;
145 void setInfo( const std::vector<std::string>& theinfo );
146
[856]147 const casa::String& name() const { return name_; }
148
[806]149private:
[836]150
151 /**
152 * setup the the column structure of the casa::table
153 */
[806]154 void setup();
[836]155 /**
156 * the actual binning of the SpectralCoordinate as called by rescale
157 * @param sc
158 * @param factor the bin factor
159 * @return casa::SpectralCoordinate
160 */
[806]161 casa::SpectralCoordinate binCsys(const casa::SpectralCoordinate& sc, casa::Int factor);
[836]162 /**
163 * the actual resampling of the SpectralCoordinate as called by rescale
164 * @param sc
165 * @param width the resacle width. Can be decimal.
166 * @return
167 */
[806]168 casa::SpectralCoordinate resampleCsys(const casa::SpectralCoordinate& sc, casa::Float width);
169
170 static const casa::String name_;
171 casa::ScalarColumn<casa::Double> refvalCol_, refpixCol_, incrCol_;
172};
173
174}
175
176#endif
Note: See TracBrowser for help on using the repository browser.