Changeset 1221 in Sophya for trunk/SophyaExt/FitsIOServer/fitsfile.cc
- Timestamp:
- Oct 5, 2000, 2:40:40 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fitsfile.cc
r1220 r1221 1158 1158 \param <naxisn> array containind sizes of the different dimensions 1159 1159 */ 1160 void FitsOutFile::makeHeaderImageOnFits(char type, int nbdim, int* naxisn, DVList &dvl)1160 void FitsOutFile::makeHeaderImageOnFits(char type, int nbdim, int* naxisn, DVList* ptr_dvl) 1161 1161 { 1162 1162 int status = 0; … … 1191 1191 // write supplementary keywords 1192 1192 // dvl.Print(); 1193 addKeywordsOfDVList(dvl);1193 if (ptr_dvl != NULL) addKeywordsOfDVList(*ptr_dvl); 1194 1194 1195 1195 delete [] naxes; … … 1254 1254 \param <taille_des_chaines> vector containing the number of characters of data for each char* typed column, with order of appearance in 'fieldType' 1255 1255 */ 1256 void FitsOutFile::makeHeaderBntblOnFits( string fieldType, vector<string> Noms, int nentries, int tfields, DVList &dvl, string extname, vector<int> taille_des_chaines)1256 void FitsOutFile::makeHeaderBntblOnFits( string fieldType, vector<string> Noms, int nentries, int tfields, DVList* ptr_dvl, string extname, vector<int> taille_des_chaines) 1257 1257 { 1258 1258 int k; … … 1345 1345 // 1346 1346 // write supplementary keywords 1347 addKeywordsOfDVList(dvl);1347 if (ptr_dvl != NULL) addKeywordsOfDVList(*ptr_dvl); 1348 1348 } 1349 1349
Note:
See TracChangeset
for help on using the changeset viewer.