Changeset 1379 in Sophya
- Timestamp:
- Jan 10, 2001, 5:52:40 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fitsfile.cc
r1371 r1379 574 574 else 575 575 { 576 cout << " hdutype= " << hdutype_ << endl;576 cout << " hdutype= " << (int) hdutype_ << endl; 577 577 throw PException("FitsFile::NbColsFromFits, HDU not supported"); 578 578 } … … 592 592 else 593 593 { 594 cout << "hdutype= " << hdutype_ << endl;594 cout << "hdutype= " << (int) hdutype_ << endl; 595 595 throw PException("FitsFile::NentriesFromFits, this HDU is not supported"); 596 596 } … … 781 781 \param <nentries> number of data to be read 782 782 */ 783 void FitsInFile::GetBinTabFCol( double* valeurs,int nentries, int NoCol) const783 void FitsInFile::GetBinTabFCol(r_8* valeurs,int nentries, int NoCol) const 784 784 { 785 785 int status= 0; … … 818 818 same as previous method with float data 819 819 */ 820 void FitsInFile::GetBinTabFCol( float* valeurs,int nentries, int NoCol) const820 void FitsInFile::GetBinTabFCol(r_4* valeurs,int nentries, int NoCol) const 821 821 { 822 822 int status= 0; … … 855 855 */ 856 856 857 void FitsInFile::GetBinTabFCol(int * valeurs,int nentries, int NoCol) const857 void FitsInFile::GetBinTabFCol(int_4* valeurs,int nentries, int NoCol) const 858 858 { 859 859 int status= 0; … … 922 922 \param <nentries> number of data to be read 923 923 */ 924 void FitsInFile::GetSingleColumn( double* map, int nentries) const924 void FitsInFile::GetSingleColumn(r_8* map, int nentries) const 925 925 { 926 926 int status = 0; … … 949 949 else 950 950 { 951 cout << " hdutype= " << hdutype_ << endl;951 cout << " hdutype= " << (int) hdutype_ << endl; 952 952 throw IOExc("FitsFile::GetSingleColumn, this HDU is unknown"); 953 953 } … … 957 957 same as above with float data 958 958 */ 959 void FitsInFile::GetSingleColumn( float* map, int nentries) const959 void FitsInFile::GetSingleColumn(r_4* map, int nentries) const 960 960 { 961 961 int status = 0; … … 982 982 else 983 983 { 984 cout << " hdutype= " << hdutype_ << endl;984 cout << " hdutype= " << (int) hdutype_ << endl; 985 985 throw IOExc("FitsFile::GetSingleColumn this HDU is unknown"); 986 986 } … … 990 990 same as above with int data 991 991 */ 992 void FitsInFile::GetSingleColumn( int * map, int nentries) const992 void FitsInFile::GetSingleColumn( int_4* map, int nentries) const 993 993 { 994 994 int status = 0; … … 1015 1015 else 1016 1016 { 1017 cout << " hdutype= " << hdutype_ << endl;1017 cout << " hdutype= " << (int) hdutype_ << endl; 1018 1018 throw IOExc("FitsFile::GetSingleColumn this HDU is unknown"); 1019 1019 } … … 1401 1401 \param <nbData> number of data to be written 1402 1402 */ 1403 void FitsOutFile::PutImageToFits(int nbData, double* map) const1403 void FitsOutFile::PutImageToFits(int nbData, r_8* map) const 1404 1404 { 1405 1405 int status = 0; … … 1413 1413 same as previous method with float data 1414 1414 */ 1415 void FitsOutFile::PutImageToFits(int nbData, float* map) const1415 void FitsOutFile::PutImageToFits(int nbData, r_4* map) const 1416 1416 { 1417 1417 int status = 0; … … 1425 1425 1426 1426 same as previous method with int data */ 1427 void FitsOutFile::PutImageToFits( int nbData, int * map) const1427 void FitsOutFile::PutImageToFits( int nbData, int_4* map) const 1428 1428 { 1429 1429 int status = 0; … … 1563 1563 */ 1564 1564 1565 void FitsOutFile::PutColToFits(int nocol, int nentries, double* donnees) const1565 void FitsOutFile::PutColToFits(int nocol, int nentries, r_8* donnees) const 1566 1566 { 1567 1567 int status = 0; … … 1592 1592 same as previous method with float data 1593 1593 */ 1594 void FitsOutFile::PutColToFits(int nocol, int nentries, float* donnees) const1594 void FitsOutFile::PutColToFits(int nocol, int nentries, r_4* donnees) const 1595 1595 { 1596 1596 int status = 0; … … 1624 1624 same as previous method with int data 1625 1625 */ 1626 void FitsOutFile::PutColToFits(int nocol, int nentries, int * donnees) const1626 void FitsOutFile::PutColToFits(int nocol, int nentries, int_4* donnees) const 1627 1627 { 1628 1628 int status = 0;
Note:
See TracChangeset
for help on using the changeset viewer.