Changeset 1104 for trunk/src/Scantable.h


Ignore:
Timestamp:
08/02/06 14:58:50 (18 years ago)
Author:
mar637
Message:

added doxygen documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/Scantable.h

    r1068 r1104  
    9090  /**
    9191   * get a const reference to the underlying casa::Table
    92    * @return consantcasa::Table reference
     92   * @return const \ref casa::Table reference
    9393   */
    9494  const casa::Table& table() const;
     
    146146
    147147  /**
    148    * return the number of scans in the table
     148   * The number of scans in the table
    149149   * @return number of scans in the table
    150150   */
     
    159159  casa::MPosition getAntennaPosition() const;
    160160
     161        /**
     162         * the @ref casa::MDirection for a specific row
     163         * @param[in] whichrow the row number
     164         * return casa::MDirection
     165         */
    161166  casa::MDirection getDirection( int whichrow ) const;
    162167
     168        /**
     169         * get the direction type as a string, e.g. "J2000"
     170         * @param[in] whichrow the row number
     171         * return the direction string
     172         */
    163173  std::string getDirectionString( int whichrow ) const;
    164174
     175        /**
     176         * set the direction type as a string, e.g. "J2000"
     177         * @param[in] the direction type
     178         */     
    165179  void setDirectionRefString(const std::string& refstr="");
    166 
    167   std::string getDirectionRefString() const;
     180  /**
     181   * get the direction reference string
     182   * @return a string describing the direction reference
     183   */
     184  std::string getDirectionRefString() const;    /**
     185         * get the direction type as a string, e.g. "J2000"
     186         * param[in] whichrow the row number
     187         * return the direction string
     188         */
     189 
    168190
    169191  /**
     
    192214  /**
    193215   * "hard" flag the data, this flags everything selected in setSelection()
     216   * param[in] msk a boolean mask of length nchan describing the points to
     217   * to be flagged
    194218   */
    195219  void flag( const std::vector<bool>& msk = std::vector<bool>());
     
    239263   * @param scanno the scan number to get the number of rows for.
    240264   * If scanno<0 the number is retrieved from the header.
    241    * @return
     265   * @return the number of rows (for the specified scanno)
    242266   */
    243267  int nrow(int scanno=-1) const;
Note: See TracChangeset for help on using the changeset viewer.