source: branches/Release2.1/src/STFrequencies.h@ 2442

Last change on this file since 2442 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
Line 
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
29@brief The frequency subtable of the Scantable
30*/
31class STFrequencies : public STSubTable {
32public:
33 STFrequencies() {;}
34 STFrequencies(casa::Table tab);
35 STFrequencies(const Scantable& parent);
36
37 virtual ~STFrequencies();
38
39 STFrequencies& operator=(const STFrequencies& other);
40
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
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 */
58 void getEntry( casa::Double& refpix, casa::Double& refval,
59 casa::Double& inc, casa::uInt id );
60
61
62 bool conformant(const STFrequencies& other) const;
63
64 /**
65 * Retrieve the frequency values as a casa::SpectralCoordinate
66 * @param freqID
67 * @return casa::SpectralCoordinate
68 */
69 casa::SpectralCoordinate getSpectralCoordinate( casa::uInt freqID ) const;
70
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
78 /**
79 * Return the unit of the frequency values
80 * @return casa::Unit
81 */
82 casa::Unit getUnit() const;
83 std::string getUnitString() const;
84
85 /**
86 * Return the doppler type of the values
87 * @return casa::MDoppler::Types
88 */
89 casa::MDoppler::Types getDoppler() const;
90 std::string getDopplerString() const;
91
92
93 /**
94 * Return the frame type, e.g MFrequency::TOPO
95 * @param base return the base frame or the user frame
96 * @return casa::MFrequency::Types
97 */
98 casa::MFrequency::Types getFrame(bool base=false) const;
99
100 /**
101 * Return a string representation of the frame type, e.g TOPO
102 * @param base return the base frame or the user frame
103 * @return the string representation of the frame
104 */
105 std::string getFrameString(bool base=false) const;
106
107 /**
108 * set the frequency frame from a string value
109 * @param frame a string identifier
110 */
111 void setFrame(const std::string& frame, bool base=false);
112 /**
113 * set the frequency frame from a casa::MFrequency::Types
114 * @param frame casa::MFrequency::Types
115 */
116 void setFrame(casa::MFrequency::Types frame, bool base=false);
117 void setUnit( const std::string & unit );
118 void setDoppler( const std::string & doppler );
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 */
126 void rescale(casa::Float factor, const std::string& mode);
127
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 */
134 float getRefFreq(casa::uInt id, casa::uInt channel);
135
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 */
142 std::string print(int id=-1);
143
144 std::vector<std::string> getInfo() const;
145 void setInfo( const std::vector<std::string>& theinfo );
146
147 const casa::String& name() const { return name_; }
148
149private:
150
151 /**
152 * setup the the column structure of the casa::table
153 */
154 void setup();
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 */
161 casa::SpectralCoordinate binCsys(const casa::SpectralCoordinate& sc, casa::Int factor);
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 */
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.