Changeset 848


Ignore:
Timestamp:
02/24/06 11:31:22 (18 years ago)
Author:
mar637
Message:

DOcumentation update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/STWriter.h

    r827 r848  
    4444
    4545namespace asap {
    46 
     46/**
     47  * This exports the ASAP internal data format to othe formats,
     48  * such as "SDFITS", "FITS", "MS2" or "ASCII"
     49  *
     50  * @brief Export of ASAP data container into forign formats
     51  * @author Malte Marquarding
     52  * @date $Date:$
     53  * @version 2.0a
     54*/
    4755class STWriter : public SDLog {
    4856public:
     
    5058  ~STWriter();
    5159
    52 // Format can be "SDFITS", "FITS", "MS2" or "ASCII"
    53 // Stokes conversion available for FITS and ASCII at present
    54   casa::Int setFormat(const string &format = "SDFITS");
     60  /**
     61   * Set the format the data should be exported in
     62   * @param format an be "SDFITS", "FITS", "MS2" or "ASCII"
     63   * @return ststus code from PKSwriter
     64   */
     65  casa::Int setFormat(const string& format = "SDFITS");
     66
     67  /**
     68   * Write the data to a file (directory)
     69   * @param table the Scantable object
     70   * @param filename the output file name
     71   * @return
     72   */
    5573  casa::Int write(const casa::CountedPtr<Scantable> table,
    56             const string &filename);
     74            const string& filename);
    5775
    5876private:
Note: See TracChangeset for help on using the changeset viewer.