Changeset 1287
- Timestamp:
- 11/06/06 14:16:40 (18 years ago)
- Location:
- tags/Release2.1.1b/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/Release2.1.1b/src/LineCatalog.h
r1259 r1287 36 36 */ 37 37 LineCatalog(const std::string& name = "jpl"); 38 /**39 * select a subset of the table by frequency range40 * @param fmin the lower frequency bound41 * @param fmin the upper frequency bound42 */43 38 44 39 virtual ~LineCatalog() {} … … 50 45 */ 51 46 void setFrequencyLimits(double fmin, double fmax); 47 52 48 /** 53 49 * select a subset of the table by line strength range … … 56 52 */ 57 53 void setStrengthLimits(double smin, double smax); 54 58 55 /** 59 56 * select a subset of the data by name pattern match (unix-style) … … 64 61 */ 65 62 void setPattern(const std::string& name, const std::string& ptype="pattern"); 63 66 64 /** 67 65 * save the table with current limits to disk (as an aips++ table) … … 69 67 */ 70 68 void save(const std::string& name); 69 71 70 /** 72 71 * Return a string representation of this table -
tags/Release2.1.1b/src/RowAccumulator.h
r1114 r1287 43 43 * @param tsys the Tsys corresponing to the spectrum 44 44 * @param interval the intergration time 45 * @param t he time of the observation45 * @param time the time of the observation 46 46 */ 47 47 void add(const casa::Vector<casa::Float>& v, -
tags/Release2.1.1b/src/STMath.h
r1200 r1287 51 51 52 52 /** 53 * get the currnt @attr inistu state53 * get the currnt @attr inistu_ state 54 54 */ 55 55 bool insitu() const { return insitu_;}; … … 65 65 * average a vector of Scantables 66 66 * @param in the vector of Scantables to average 67 * @param an optional mask to apply on specific weights67 * @param mask an optional mask to apply on specific weights 68 68 * @param weight weighting scheme 69 69 * @param avmode the mode ov averaging. Per "SCAN" or "ALL". -
tags/Release2.1.1b/src/Scantable.h
r1189 r1287 120 120 /** 121 121 * set the header 122 * @param[in] s dh an STHeader object122 * @param[in] sth an STHeader object 123 123 */ 124 124 void setHeader( const STHeader& sth ); … … 175 175 /** 176 176 * set the direction type as a string, e.g. "J2000" 177 * @param[in] the direction type177 * @param[in] refstr the direction type 178 178 */ 179 179 void setDirectionRefString(const std::string& refstr=""); … … 203 203 /** 204 204 * Set the Stokes type of the data 205 * @param a string representing the type, e.g "circular" or "linear"205 * @param feedtype a string representing the type, e.g "circular" or "linear" 206 206 */ 207 207 void setFeedType( const std::string& feedtype );
Note:
See TracChangeset
for help on using the changeset viewer.