Changeset 488 in Sophya for trunk/SophyaExt/FitsIOServer/fitsioserver.h
- Timestamp:
- Oct 21, 1999, 4:03:55 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fitsioserver.h
r482 r488 18 18 public : 19 19 20 FitsIoServer() : FITS_tab_typ_(0),i_4tab_(NULL), ftab_(NULL),dtab_(NULL) {;}20 FitsIoServer() : FITS_tab_typ_(0),i_4tab_(NULL),r_4tab_(NULL),r_8tab_(NULL) {;} 21 21 ~FitsIoServer() 22 22 { 23 23 if (i_4tab_ != NULL) delete [] i_4tab_; 24 if ( ftab_ != NULL) delete [] ftab_;25 if ( dtab_ != NULL) delete [] dtab_;24 if (r_4tab_ != NULL) delete [] r_4tab_; 25 if (r_8tab_ != NULL) delete [] r_8tab_; 26 26 } 27 27 … … 38 38 void save(SphericalMap<float>& sph, char flnm[]); 39 39 void save(LocalMap<double>& locm, char flnm[]); 40 void save( ImageR4& DpcImg,char flnm[]);41 void save( ImageI4& DpcImg,char flnm[]);40 void save(const ImageR4& DpcImg,char flnm[]); 41 void save(const ImageI4& DpcImg,char flnm[]); 42 42 void sinus_picture_projection(SphericalMap<double>& sph, char flnm[]); 43 43 void sinus_picture_projection(SphericalMap<float>& sph, char flnm[]); … … 50 50 private : 51 51 52 void read_sphere(char flnm[],int& npixels,int& nside);53 52 54 53 // creer, ecrire une imageformat FITS, a partir des tableaux de donnees … … 81 80 int FITS_tab_typ_; 82 81 int_4* i_4tab_; 83 float* ftab_;84 double* dtab_;82 r_4* r_4tab_; 83 r_8* r_8tab_; 85 84 }; 86 85
Note:
See TracChangeset
for help on using the changeset viewer.