Changeset 1352 in Sophya for trunk/SophyaExt/FitsIOServer/fitsfile.cc
- Timestamp:
- Dec 7, 2000, 5:32:49 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fitsfile.cc
r1351 r1352 712 712 \param <nentries> number of data to be read 713 713 */ 714 void FitsInFile::GetBinTabFCol( double* valeurs,int nentries, int NoCol) const714 void FitsInFile::GetBinTabFCol(r_8* valeurs,int nentries, int NoCol) const 715 715 { 716 716 int status= 0; … … 749 749 same as previous method with float data 750 750 */ 751 void FitsInFile::GetBinTabFCol( float* valeurs,int nentries, int NoCol) const751 void FitsInFile::GetBinTabFCol(r_4* valeurs,int nentries, int NoCol) const 752 752 { 753 753 int status= 0; … … 786 786 */ 787 787 788 void FitsInFile::GetBinTabFCol(int * valeurs,int nentries, int NoCol) const788 void FitsInFile::GetBinTabFCol(int_4* valeurs,int nentries, int NoCol) const 789 789 { 790 790 int status= 0; … … 853 853 \param <nentries> number of data to be read 854 854 */ 855 void FitsInFile::GetSingleColumn( double* map, int nentries) const855 void FitsInFile::GetSingleColumn(r_8* map, int nentries) const 856 856 { 857 857 int status = 0; … … 888 888 same as above with float data 889 889 */ 890 void FitsInFile::GetSingleColumn( float* map, int nentries) const890 void FitsInFile::GetSingleColumn(r_4* map, int nentries) const 891 891 { 892 892 int status = 0; … … 921 921 same as above with int data 922 922 */ 923 void FitsInFile::GetSingleColumn( int * map, int nentries) const923 void FitsInFile::GetSingleColumn( int_4* map, int nentries) const 924 924 { 925 925 int status = 0; … … 1328 1328 \param <nbData> number of data to be written 1329 1329 */ 1330 void FitsOutFile::PutImageToFits(int nbData, double* map) const1330 void FitsOutFile::PutImageToFits(int nbData, r_8* map) const 1331 1331 { 1332 1332 int status = 0; … … 1340 1340 same as previous method with float data 1341 1341 */ 1342 void FitsOutFile::PutImageToFits(int nbData, float* map) const1342 void FitsOutFile::PutImageToFits(int nbData, r_4* map) const 1343 1343 { 1344 1344 int status = 0; … … 1352 1352 1353 1353 same as previous method with int data */ 1354 void FitsOutFile::PutImageToFits( int nbData, int * map) const1354 void FitsOutFile::PutImageToFits( int nbData, int_4* map) const 1355 1355 { 1356 1356 int status = 0; … … 1480 1480 \param <nentries> number of data to be written 1481 1481 */ 1482 void FitsOutFile::PutColToFits(int nocol, int nentries, double* donnees) const1482 void FitsOutFile::PutColToFits(int nocol, int nentries, r_8* donnees) const 1483 1483 { 1484 1484 int status = 0; … … 1509 1509 same as previous method with float data 1510 1510 */ 1511 void FitsOutFile::PutColToFits(int nocol, int nentries, float* donnees) const1511 void FitsOutFile::PutColToFits(int nocol, int nentries, r_4* donnees) const 1512 1512 { 1513 1513 int status = 0; … … 1541 1541 same as previous method with int data 1542 1542 */ 1543 void FitsOutFile::PutColToFits(int nocol, int nentries, int * donnees) const1543 void FitsOutFile::PutColToFits(int nocol, int nentries, int_4* donnees) const 1544 1544 { 1545 1545 int status = 0;
Note:
See TracChangeset
for help on using the changeset viewer.