Changeset 3572 in Sophya for trunk/SophyaExt/FitsIOServer/fitsbntbllineRW.cc
- Timestamp:
- Feb 7, 2009, 10:50:34 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fitsbntbllineRW.cc
r2615 r3572 64 64 else if (ss == FitsFile::FitsDataType_char) SfitsCol.push_back(k); 65 65 else { 66 cout << " FITS_XNTuple: colonne fits " << k << " type= " << (int) ss << endl;66 cout << "FITS_BntblLineReader: colonne fits " << k << " type= " << (int) ss << endl; 67 67 throw IOExc("type de champ inconnu"); 68 68 } … … 113 113 114 114 115 FITS_BntblLineWriter::FITS_BntblLineWriter(c har inputfile[],int dc, int fc,int ic, int lc, int bc, int cc, vector<string> names,DVList* ptr_dvl, FitsFile::WriteMode wrm)115 FITS_BntblLineWriter::FITS_BntblLineWriter(const char inputfile[],int dc, int fc,int ic, int lc, int bc, int cc, vector<string> names,DVList* ptr_dvl, FitsFile::WriteMode wrm) 116 116 { 117 117 int k; 118 118 int nbcols = dc+fc+ic+cc+lc+bc; 119 if (nbcols != names.size())119 if (nbcols != (int)names.size()) 120 120 { 121 121 cout << " WARNING: BnTblLineWriter:: length of vector of column names not equal to total number of columns" << endl;
Note:
See TracChangeset
for help on using the changeset viewer.