Changeset 1183 in Sophya for trunk/SophyaExt/FitsIOServer/fitsfile.h
- Timestamp:
- Sep 11, 2000, 4:52:35 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fitsfile.h
r1175 r1183 68 68 this method is called from inherited objects : 69 69 70 for writing a new object in a new fits-extension, at the end of 70 for writing a new object in a new fits-extension : 71 72 ??? 73 74 at the end of 71 75 72 76 the existing file (flnm), if OldFile=true. … … 84 88 calls the method 'WriteToFits' from the inherited object 85 89 90 \param <WriteMode> string , WriteMode = "clear" -> if alreadyy exists, the file will be overwrited (else created) ; WriteMode = "append" -> further objects will be appended to the file if it exists (else : file created). Otherwise, file created if does not exist, else : exception. (the last situation is the default) 91 92 86 93 */ 87 void Write(char flnm[], bool OldFile=false) ;94 void Write(char flnm[], string WriteMode= string("unknown")) ; 88 95 89 96 /*! … … 352 359 public: 353 360 FitsOutFile(); 354 FitsOutFile(char flnm[], bool OldFile=false);361 FitsOutFile(char flnm[], string WriteMode= string("unknown")); 355 362 ~FitsOutFile() { ;}; 356 363 inline void InitNull() {imageOnPrimary_=false;}
Note:
See TracChangeset
for help on using the changeset viewer.