source: Sophya/trunk/SophyaExt/FitsIOServer/fitsfile.h@ 985

Last change on this file since 985 was 971, checked in by ansari, 25 years ago

mise a jour 27/04/00 GLM

File size: 8.1 KB
RevLine 
[839]1#ifndef FITSFILE_H
2#define FITSFILE_H
3
4#include "ndatablock.h"
5#include "dvlist.h"
6#include "FitsIO/fitsio.h"
7
8#define OPENFILE 0
9#define CREATEFILE 1
10#define LEN_KEYWORD 9
11
[875]12namespace SOPHYA {
13
[903]14//
15//! Virtual Class for managing Interface for SOPHYA objects to FITS Format Files (uses cfitsio lib)
[875]16
[903]17/*!
18
19Each SOPHYA object XXX is associated with a object of class FITS_XXX
20 (inheriting from FitsFile), to which input/output operations with FITS
21 files are delegated. A typical example of use is the following :
22
23\verbatim
24 int m=... ;
25 SphereHEALPix<r_8> sphere1(m); // definition of the SOPHYA object
26 .... fill the sphere ....
27
28 FITS_SphereHEALPix<r_8> fits_sph1(sphere1);
29 // delegated object
30 fits_sph.Write("myfile.fits"); // writing on FITS file
31
32 FITS_SphereHEALPix<r_8> fits_sph2("myfile.fits");
33 // load a delegated object
34 // from FITS file
35 SphereHEALPix<r_8> sphere2=(SphereHEALPix<r_8>)fits_sph2;
36 // casting the delegated object
37 // into a SOPHYA object
38\endverbatim
39
40*/
[839]41class FitsFile
42{
43
44public:
45
46 FitsFile();
47 virtual ~FitsFile();
[903]48 static int NbBlocks(char flnm[]);
49 static void getBlockType(char flnm[], int hdunum, string& typeOfExtension, int& naxis, vector<int>& naxisn, string& dataType, DVList& dvl );
50/*! return true if the current header corresponds to a FITS image extension */
51inline bool IsFitsImage() const { return (hdutype_ == IMAGE_HDU);}
[839]52
[903]53/*! return true if the current header corresponds to a FITS ASCII or BINTABLE extension */
[839]54inline bool IsFitsTable() const {return (hdutype_ == ASCII_TBL || hdutype_ == BINARY_TBL);}
[903]55
56/*!
57this method is called from inherited objects :
58
59moves to header 'hdunum' on file 'flnm'
60
61gets parameters in header
62
63calls the method 'ReadFromFits' from the inherited delegated object
64
65*/
66 void ReadF(char flnm[],int hdunum= 0);
67
68/*!
69this method is called from inherited objects :
70
71opens a file 'flnm'
72
73gets parameters in header
74
75calls the method 'ReadFromFits' from the inherited delegated object
76
77*/
[971]78 void WriteF(char flnm[], bool OldFile=false);
[903]79
80
81 /*!
82fill the array 'map' with double data from the current extension on FITS file.
83If the extension is BINTABLE, the first column is provided.
84
85\param <nentries> number of data to be read
86 */
[839]87 void GetSingleColumn(double* map, int nentries) const;
[903]88
89 /*! same as above with float data */
[839]90 void GetSingleColumn(float* map, int nentries) const;
[903]91
92 /*! same as above with int data */
[839]93 void GetSingleColumn(int* map, int nentries) const;
[903]94
95 /*! number of dimensions of an image extension : NAXIS parameter (in FITS notations)
96 */
[861]97inline int nbDimOfImage() const {return naxis_;}
[903]98
99/*!
100 total number of data in the current IMAGE extension
101 */
[839]102inline int nbOfImageData() const { return nbData_; }
[903]103
104/*! a reference on a vector containing sizes of the NAXIS dimensions : NAXIS1, NAXIS2, NAXIS3 wtc.
105 */
[861]106 inline const vector<int>& dimOfImageAxes() const { return naxisn_;}
[903]107
108 /*! return number of columns (return 1 if IMAGE) */
[839]109 int NbColsFromFits() const;
[903]110
111 /*! return a character denoting data type of column number 'nocol' in a BINTABLE :
112
113D : double
114
115E : float
116
117I : integer
118
119S : character string
120
121 */
[839]122 char ColTypeFromFits(int nocol) const;
[903]123
124 /*! number of data in the current IMAGE extension on FITS file, or number
125 of data of column number 'nocol' of the current BINTABLE extension
126 */
[839]127 int NentriesFromFits(int nocol) const;
[903]128
129 /*! name of the column number 'nocol' of the current BINTABLE extension
130 */
[839]131 string ColNameFromFits(int nocol) const;
[903]132
133
134 /*! number of characters of each data for the column number 'nocol' (if char* typed) of the current BINTABLE extension
135 */
[839]136 int ColStringLengthFromFits(int nocol) const;
[903]137
138 /*! return a reference on a DVList containing the keywords from FITS file
139 */
[839]140 inline const DVList& DVListFromFits() const { return dvl_;}
[903]141
142
143 /*!
144fill the array 'valeurs' with double data from the current BINTABLE extension on FITS file, from column number 'NoCol'
145
146\param <nentries> number of data to be read
147 */
[839]148 void GetBinTabFCol(double* valeurs, int nentries, int NoCol) const;
[903]149
150 /*! same as previous method with float data */
[839]151 void GetBinTabFCol(float* valeurs, int nentries, int NoCol) const;
[903]152 /*! same as previous method with int data */
[839]153 void GetBinTabFCol(int* valeurs, int nentries, int NoCol) const;
[903]154 /*! same as previous method with char* data */
[839]155 void GetBinTabFCol(char** valeurs,int nentries, int NoCol) const;
156 // Write elements into the FITS data array
[903]157
158 /*! write double data from array 'map'on an IMAGE extension
159\param <nbData> number of data to be written
160
161 */
[839]162 void putImageToFits( int nbData, double* map) const;
[903]163
164 /*! same as previous method with float data */
[839]165 void putImageToFits(int nbData, float* map ) const;
[903]166
167 /*! same as previous method with int data */
[839]168 void putImageToFits(int nbData, int* map) const;
[903]169
170 /*! write double data from array 'donnees ' on column number 'nocol' of a BINTABLE extension.
171\param <nentries> number of data to be written
172
173 */
[839]174 void putColToFits(int nocol, int nentries, double* donnees) const;
[903]175
176 /*! same as previous method with float data */
[839]177 void putColToFits(int nocol, int nentries, float* donnees) const;
[903]178
179 /*! same as previous method with int data */
[839]180 void putColToFits(int nocol, int nentries, int* donnees) const;
[903]181
182 /*! same as previous method with char* data */
[839]183 void putColToFits(int nocol, int nentries, char** donnees) const;
[903]184
185 /*! create an IMAGE header on FITS file.
186\param <type> type of data (see method ColTypeFromFits)
187\param <nbdim> number of dimensions : 1D, 2D, 3D etc. = NAXIS
188\param <naxisn> array containind sizes of the different dimensions
189 */
[971]190 void makeHeaderImageOnFits(char type, int nbdim, int* naxisn) ;
[903]191
192 /*! create an BINTABLE header on FITS file.
193\param <fieldType> array containing characters denoting types of the different column (see method ColTypeFromFits)
194\param <Noms> array of the names of columns
195\param <nentries> number of data of each column
196\param <tfields> number of columns
197\param <dvl> a SOPHYA DVList containing keywords to be appended
198\param <extname> keyword EXTNAME for FITS file
199\param <taille_des_chaines> vector containing the number of characters of data for each char* typed column, with order of appearance in 'fieldType'
200 */
[971]201 void makeHeaderBntblOnFits ( char* fieldType, char** Noms, int nentries, int tfields, DVList &dvl, char* extname, vector<int> taille_des_chaines) ;
[839]202
[971]203 void moveToFollowingHeader();
[839]204 void readheader();
[903]205static void printerror(int&) ;
206static void printerror(int&,char* texte) ;
[839]207 protected:
[971]208 virtual void ReadFromFits(FitsFile& ff)=0;
209 virtual void WriteToFits(FitsFile& ff)=0;
[839]210private:
211
[903]212static void GetImageParameters (fitsfile* fileptr,int& bitpix,int& naxis,vector<int>& naxisn);
213static void GetBinTabParameters(fitsfile* fileptr, int& nbcols, int& nrows,
214 vector<int>& repeat,
215 vector<string>& noms,
216 vector<char>& types,
217 vector<int>& taille_des_chaines);
[971]218static void KeywordsIntoDVList(fitsfile* fileptr, DVList& dvl, int hdunum);
[839]219 void writeSignatureOnFits() const;
220
[903]221 //! pointer to the FITS file, defined in fitsio.h
222 fitsfile *fptr_;
[839]223
[903]224 //! image or bintable ?
225 int hdutype_;
[839]226
[903]227//! index of header to be read/written
228 int hdunum_;
[839]229
[903]230
231 //! fits-Image parameter
[839]232 int bitpix_;
[903]233
234 //! fits-Image parameter
[839]235 int naxis_;
[903]236
237 //! fits-Image parameters : sizes of dimensions
[861]238 vector<int> naxisn_;
[903]239
240 //! fits-Image parameter: number of data
[839]241 int nbData_;
242
[903]243 //! Bintable parameter
[839]244 int nrows_;
[903]245
246 //! Bintable parameter
[839]247 vector<int> repeat_;
248
[903]249 //! Bintable parameter
[839]250 int nbcols_;
251
[903]252 //! Bintable parameter: column names
253 vector<string> noms_;
254
255 //! Bintable parameters: types of columns (D: double, E: float, I: integers, A: char*)
256 vector<char> types_;
257
258 //! Bintable parameters: length of the char* variables
259 vector<int> taille_des_chaines_;
[839]260
[903]261 //! DVList for transferring keywords
[839]262 DVList dvl_;
263};
[875]264
265
266} // Fin du namespace
267
268
[839]269#endif
Note: See TracBrowser for help on using the repository browser.