- Timestamp:
- 02/24/06 11:31:22 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/STWriter.h
r827 r848 44 44 45 45 namespace 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 */ 47 55 class STWriter : public SDLog { 48 56 public: … … 50 58 ~STWriter(); 51 59 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 */ 55 73 casa::Int write(const casa::CountedPtr<Scantable> table, 56 const string &filename);74 const string& filename); 57 75 58 76 private:
Note:
See TracChangeset
for help on using the changeset viewer.