- Timestamp:
- Dec 7, 2000, 5:18:43 PM (25 years ago)
- Location:
- trunk/SophyaExt/FitsIOServer
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fitsautoreader.cc
r1334 r1351 129 129 } 130 130 default : 131 cout << "type = " << dtype << endl;131 cout << "type = " << (int) dtype << endl; 132 132 throw IOExc("FITS_AutoReader::ReadObject : unsupported data type for TArray"); 133 133 } … … 167 167 } 168 168 default : 169 cout << "type = " << dtype << endl;169 cout << "type = " << (int) dtype << endl; 170 170 throw IOExc("FITS_AutoReader::ReadObject : unsupported data type for SphereHEALpix"); 171 171 } … … 205 205 } 206 206 default : 207 cout << "type = " << dtype << endl;207 cout << "type = " << (int) dtype << endl; 208 208 throw IOExc("FITS_AutoReader::ReadObject : unsupported data type for LocalMap"); 209 209 } -
trunk/SophyaExt/FitsIOServer/fitsbntbllineRW.cc
r1300 r1351 58 58 else if (ss == FitsFile::FitsDataType_char) SfitsCol.push_back(k); 59 59 else { 60 cout << " FITS_XNTuple: colonne fits " << k << " type= " << ss << endl;60 cout << " FITS_XNTuple: colonne fits " << k << " type= " << (int) ss << endl; 61 61 throw IOExc("type de champ inconnu"); 62 62 } -
trunk/SophyaExt/FitsIOServer/fitsfile.cc
r1334 r1351 510 510 else 511 511 { 512 cout << " hdutype= " << hdutype_ << endl;512 cout << " hdutype= " << (int) hdutype_ << endl; 513 513 throw PException("FitsFile::NbColsFromFits, HDU not supported"); 514 514 } … … 528 528 else 529 529 { 530 cout << "hdutype= " << hdutype_ << endl;530 cout << "hdutype= " << (int) hdutype_ << endl; 531 531 throw PException("FitsFile::NentriesFromFits, this HDU is not supported"); 532 532 } … … 880 880 else 881 881 { 882 cout << " hdutype= " << hdutype_ << endl;882 cout << " hdutype= " << (int) hdutype_ << endl; 883 883 throw IOExc("FitsFile::GetSingleColumn, this HDU is unknown"); 884 884 } … … 913 913 else 914 914 { 915 cout << " hdutype= " << hdutype_ << endl;915 cout << " hdutype= " << (int) hdutype_ << endl; 916 916 throw IOExc("FitsFile::GetSingleColumn this HDU is unknown"); 917 917 } … … 946 946 else 947 947 { 948 cout << " hdutype= " << hdutype_ << endl;948 cout << " hdutype= " << (int) hdutype_ << endl; 949 949 throw IOExc("FitsFile::GetSingleColumn this HDU is unknown"); 950 950 } -
trunk/SophyaExt/FitsIOServer/fitslocalmap.cc
r1300 r1351 127 127 if(dobj_->LocalMap_isDone()) 128 128 { 129 dvl["LCMP"] = 1;129 dvl["LCMP"] = (int_4) 1; 130 130 dvl.SetComment("LCMP", "local mapping 1= done, 0= not done"); 131 131 int_4 x0 = 0; … … 156 156 else 157 157 { 158 dvl["LCMP"] = 0;158 dvl["LCMP"] = (int_4) 0; 159 159 } 160 160 dvl["Content"]= "LocalMap"; -
trunk/SophyaExt/FitsIOServer/fitsxntuple.cc
r1300 r1351 86 86 else if (ss == FitsFile::FitsDataType_char) SfitsCol.push_back(k); 87 87 else { 88 cout << " FITS_XNTuple: colonne fits " << k << " type= " << ss << endl;88 cout << " FITS_XNTuple: colonne fits " << k << " type= " << (int) ss << endl; 89 89 throw IOExc("type de champ inconnu"); 90 90 }
Note:
See TracChangeset
for help on using the changeset viewer.