1 | #include "machdefs.h"
|
---|
2 | #include <stdlib.h>
|
---|
3 | #include "fitsfile.h"
|
---|
4 | #include "pexceptions.h"
|
---|
5 | #include "strutil.h"
|
---|
6 | #include "anydataobj.h"
|
---|
7 | #include "fitsspherehealpix.h"
|
---|
8 |
|
---|
9 |
|
---|
10 | void BnTblLine::setFormat(int dc, int fc, int ic, int cc, vector<string> names)
|
---|
11 | {
|
---|
12 | int nbcols = dc + fc + ic + cc;
|
---|
13 | int maxName = names.size();
|
---|
14 | if (nbcols != maxName)
|
---|
15 | {
|
---|
16 | cout << " WARNING: BnTblLine:: length of vector of column names not equal to total number of columns" << endl;
|
---|
17 | maxName = nbcols < maxName ? nbcols : maxName;
|
---|
18 | }
|
---|
19 | ColName_ = vector<string>(nbcols);
|
---|
20 | for (int k=0; k < maxName; k++) ColName_[k] = names[k];
|
---|
21 | if (dc >0) ddata_ = vector<double>(dc);
|
---|
22 | if (fc >0) fdata_ = vector<float>(fc);
|
---|
23 | if (ic >0) idata_ = vector<int>(fc);
|
---|
24 | if (cc >0) cdata_ = vector<string>(fc);
|
---|
25 | }
|
---|
26 |
|
---|
27 | bool BnTblLine::sameFormat(const BnTblLine& btl) const
|
---|
28 | {
|
---|
29 | if (btl.ddata_.size() == ddata_.size() && btl.fdata_.size() == fdata_.size() && btl.idata_.size() == idata_.size() && btl.cdata_.size() == cdata_.size()) return true;
|
---|
30 | else return false;
|
---|
31 | }
|
---|
32 |
|
---|
33 | void BnTblLine::Print()
|
---|
34 | {
|
---|
35 | int k;
|
---|
36 | cout << " ********* ligne ************* " << endl;
|
---|
37 | cout << " *** noms de variables " << endl;
|
---|
38 | for (k=0; k < ColName_.size(); k++) cout << ColName_[k] << " ";
|
---|
39 | cout << endl;
|
---|
40 | cout << " *** variables doubles " << endl;
|
---|
41 | for (k=0; k < ddata_.size(); k++) cout << ddata_[k] << " ";
|
---|
42 | cout << endl;
|
---|
43 | cout << " *** variables float " << endl;
|
---|
44 | for (k=0; k < fdata_.size(); k++) cout << fdata_[k] << " ";
|
---|
45 | cout << endl;
|
---|
46 | cout << " *** variables int " << endl;
|
---|
47 | for (k=0; k < idata_.size(); k++) cout << idata_[k] << " ";
|
---|
48 | cout << endl;
|
---|
49 | cout << " *** variables string " << endl;
|
---|
50 | for (k=0; k < cdata_.size(); k++) cout << cdata_[k] << " ";
|
---|
51 | cout << endl;
|
---|
52 | cout << " ***************************** " << endl;
|
---|
53 | }
|
---|
54 |
|
---|
55 |
|
---|
56 |
|
---|
57 | /*!
|
---|
58 | \class SOPHYA::FitsIOHandler
|
---|
59 | The class structure is analogous to Sophya-PPersist system :
|
---|
60 | Each SOPHYA object XXX is associated with a object of class FITS_XXX
|
---|
61 | (inheriting from FitsFileHandler), to which input/output operations with FITS
|
---|
62 | files are delegated (through a class Hierarchy : FitsFile (virtual),
|
---|
63 | FitsInFile, FitsOutFile) . A typical example of use is the following :
|
---|
64 |
|
---|
65 | \verbatim
|
---|
66 | int m=... ;
|
---|
67 | SphereHEALPix<r_8> sphere1(m); // definition of the SOPHYA object
|
---|
68 | .... fill the sphere ....
|
---|
69 |
|
---|
70 | FITS_SphereHEALPix<r_8> fits_sph1(sphere1);
|
---|
71 | // delegated object
|
---|
72 | fits_sph.Write("myfile.fits"); // writing on FITS file
|
---|
73 |
|
---|
74 | FITS_SphereHEALPix<r_8> fits_sph2("myfile.fits");
|
---|
75 | // load a delegated object
|
---|
76 | // from FITS file
|
---|
77 | SphereHEALPix<r_8> sphere2=(SphereHEALPix<r_8>)fits_sph2;
|
---|
78 | // casting the delegated object
|
---|
79 | // into a SOPHYA object
|
---|
80 | \endverbatim
|
---|
81 |
|
---|
82 |
|
---|
83 | */
|
---|
84 |
|
---|
85 | /*! \fn void SOPHYA::FitsIOHandler::Read(char flnm[],int hdunum)
|
---|
86 |
|
---|
87 | this method is called from inherited objects :
|
---|
88 |
|
---|
89 | opens a file 'flnm'
|
---|
90 |
|
---|
91 | gets parameters in extension-header (hdunum)
|
---|
92 |
|
---|
93 | calls the method 'ReadFromFits' from the inherited object
|
---|
94 | */
|
---|
95 | void FitsIOHandler::Read(char flnm[],int hdunum)
|
---|
96 | {
|
---|
97 | FitsInFile ifts(flnm);
|
---|
98 | Read(ifts, hdunum);
|
---|
99 | }
|
---|
100 |
|
---|
101 | /*! \fn void SOPHYA::FitsIOHandler::Read(FitsInFile& is, int hdunum)
|
---|
102 | Read the data on extension hdunum (or primary header, if hdunum=1) from FitsInFIle. If hdunum is not addressed, , one reads the next extension, with respect to the current position.
|
---|
103 | */
|
---|
104 | void FitsIOHandler::Read(FitsInFile& is, int hdunum)
|
---|
105 | {
|
---|
106 | is.ReadHeader(hdunum);
|
---|
107 | ReadFromFits(is);
|
---|
108 | }
|
---|
109 |
|
---|
110 |
|
---|
111 | /*! \fn void SOPHYA::FitsIOHandler::Write(char flnm[])
|
---|
112 | this method is called from inherited objects.
|
---|
113 |
|
---|
114 | for writing a new object in a new fits-extension :
|
---|
115 |
|
---|
116 | \warning By convention, primary header may contain fits-image data.
|
---|
117 | For switching off this convention (i.e. to make sure that all data will be on fits-extensions) use the method :
|
---|
118 |
|
---|
119 | firstImageOnPrimaryHeader() (see below)
|
---|
120 |
|
---|
121 | calls the method 'WriteToFits' from the inherited object
|
---|
122 |
|
---|
123 | */
|
---|
124 | void FitsIOHandler::Write(char flnm[])
|
---|
125 |
|
---|
126 | {
|
---|
127 | FitsOutFile of(flnm, FitsFile::unknown);
|
---|
128 | Write(of);
|
---|
129 | }
|
---|
130 |
|
---|
131 | void FitsIOHandler::Write(FitsOutFile& os)
|
---|
132 | {
|
---|
133 | WriteToFits(os);
|
---|
134 | }
|
---|
135 |
|
---|
136 |
|
---|
137 | /*!
|
---|
138 | \class SOPHYA::FitsIOHandler
|
---|
139 | Class (virtual) for managing FITS format files
|
---|
140 | */
|
---|
141 |
|
---|
142 |
|
---|
143 |
|
---|
144 | FitsFile::~FitsFile()
|
---|
145 | {
|
---|
146 | int status = 0;
|
---|
147 | if( fptr_ != NULL)
|
---|
148 | {
|
---|
149 | fits_close_file(fptr_,&status);
|
---|
150 | // je ne fais pas delete fptr_, c'est la lib. fitsio qui a fait
|
---|
151 | // new...
|
---|
152 | }
|
---|
153 | if( status ) printerror( status );
|
---|
154 | }
|
---|
155 |
|
---|
156 |
|
---|
157 | void FitsFile::printerror(int &status)
|
---|
158 | //*****************************************************/
|
---|
159 | //* Print out cfitsio error messages and exit program */
|
---|
160 | //*****************************************************/
|
---|
161 | {
|
---|
162 | if( status )
|
---|
163 | {
|
---|
164 | fits_report_error(stderr,status);
|
---|
165 | throw IOExc("FitsFile:: error FITSIO status");
|
---|
166 | }
|
---|
167 | return;
|
---|
168 | }
|
---|
169 |
|
---|
170 | void FitsFile::printerror(int& status, char* texte)
|
---|
171 | //*****************************************************/
|
---|
172 | //* Print out cfitsio error messages and exit program */
|
---|
173 | //*****************************************************/
|
---|
174 | {
|
---|
175 | // print out cfitsio error messages and exit program
|
---|
176 | // print error report
|
---|
177 | fits_report_error(stderr, status);
|
---|
178 | cout << " erreur:: " << texte << endl;
|
---|
179 | throw IOExc("FitsFile:: error FITSIO status");
|
---|
180 | }
|
---|
181 |
|
---|
182 | void FitsFile::ResetStatus(int& status)
|
---|
183 | {
|
---|
184 | fits_status_ = status;
|
---|
185 | status = 0;
|
---|
186 | fits_clear_errmsg();
|
---|
187 | }
|
---|
188 |
|
---|
189 | string FitsFile::GetErrStatus(int status)
|
---|
190 | {
|
---|
191 | char text[31];
|
---|
192 | fits_get_errstatus(status, text);
|
---|
193 | return string(text);
|
---|
194 | }
|
---|
195 |
|
---|
196 | /*!
|
---|
197 | \class SOPHYA::FitsInFile
|
---|
198 |
|
---|
199 | class for reading SOPHYA objects from FITS Format Files (uses cfitsio lib)
|
---|
200 | */
|
---|
201 |
|
---|
202 | FitsInFile::FitsInFile()
|
---|
203 | {
|
---|
204 | InitNull();
|
---|
205 | }
|
---|
206 |
|
---|
207 | FitsInFile::FitsInFile(string const & flnm)
|
---|
208 | {
|
---|
209 | InitNull();
|
---|
210 | int status = 0;
|
---|
211 | fits_open_file(&fptr_,flnm.c_str(),READONLY,&status);
|
---|
212 | if( status ) printerror( status );
|
---|
213 | }
|
---|
214 |
|
---|
215 | FitsInFile::FitsInFile(const char * flnm)
|
---|
216 | {
|
---|
217 | InitNull();
|
---|
218 | int status = 0;
|
---|
219 | fits_open_file(&fptr_,flnm,READONLY,&status);
|
---|
220 | if( status ) printerror( status );
|
---|
221 | }
|
---|
222 |
|
---|
223 |
|
---|
224 | void FitsInFile::InitNull()
|
---|
225 | {
|
---|
226 | imageDataType_ = FitsDataType_NULL;
|
---|
227 | naxis_ = 0;
|
---|
228 | nbData_ = 0;
|
---|
229 | nrows_ = 0;
|
---|
230 | nbcols_ = 0;
|
---|
231 | naxisn_.clear();
|
---|
232 | repeat_.clear();
|
---|
233 | noms_.clear();
|
---|
234 | taille_des_chaines_.clear();
|
---|
235 | dvl_.Clear();
|
---|
236 |
|
---|
237 | }
|
---|
238 |
|
---|
239 | //////////////////////////////////////////////////////////
|
---|
240 | // methods with general purpose
|
---|
241 | /////////////////////////////////////////////////////////
|
---|
242 |
|
---|
243 | int FitsInFile::NbBlocks(char flnm[])
|
---|
244 | {
|
---|
245 | int status = 0;
|
---|
246 | int nbhdu = 0;
|
---|
247 | fitsfile* fileptr;
|
---|
248 | fits_open_file(&fileptr,flnm,READONLY,&status);
|
---|
249 | if( status ) printerror( status, "NbBlocks: erreur ouverture fichier" );
|
---|
250 | fits_get_num_hdus(fileptr, &nbhdu, &status);
|
---|
251 | fits_close_file(fileptr,&status);
|
---|
252 | return nbhdu;
|
---|
253 | }
|
---|
254 |
|
---|
255 | void FitsInFile::GetBlockType(char flnm[], int hdunum, FitsExtensionType& typeOfExtension, int& naxis, vector<int>& naxisn, FitsDataType& dataType, DVList& dvl )
|
---|
256 | {
|
---|
257 | int status = 0;
|
---|
258 | fitsfile* fileptr;
|
---|
259 | fits_open_file(&fileptr,flnm,READONLY,&status);
|
---|
260 | if( status ) printerror( status, "GetBlockType: erreur ouverture fichier" );
|
---|
261 | // move to the specified HDU number
|
---|
262 | int hdutype = 0;
|
---|
263 | fits_movabs_hdu(fileptr,hdunum,&hdutype,&status);
|
---|
264 | if( status ) printerror( status,"GetBlockType: erreur movabs");
|
---|
265 | if(hdutype == IMAGE_HDU)
|
---|
266 | {
|
---|
267 | typeOfExtension = FitsExtensionType_IMAGE;
|
---|
268 | GetImageParameters (fileptr, dataType, naxis, naxisn);
|
---|
269 | }
|
---|
270 | else
|
---|
271 | if(hdutype == ASCII_TBL || hdutype == BINARY_TBL)
|
---|
272 | {
|
---|
273 | int nrows = 0;
|
---|
274 | vector<string> noms;
|
---|
275 | vector<FitsDataType> types;
|
---|
276 | vector<int> taille_des_chaines;
|
---|
277 | GetBinTabParameters(fileptr, naxis, nrows, naxisn, noms, types, taille_des_chaines);
|
---|
278 | int k;
|
---|
279 | for (k=0; k< naxisn.size(); k++) naxisn[k] *= nrows;
|
---|
280 | if(hdutype == ASCII_TBL)
|
---|
281 | {
|
---|
282 | typeOfExtension = FitsExtensionType_ASCII_TBL;
|
---|
283 | dataType = FitsDataType_ASCII;
|
---|
284 | }
|
---|
285 | else
|
---|
286 | {
|
---|
287 | typeOfExtension = FitsExtensionType_BINARY_TBL;
|
---|
288 | dataType = types[0];
|
---|
289 | }
|
---|
290 | }
|
---|
291 | else
|
---|
292 | {
|
---|
293 | cout << " hdutype= " << hdutype << endl;
|
---|
294 | throw IOExc("FitsFile::GetBlockType: this HDU type is unknown");
|
---|
295 | }
|
---|
296 |
|
---|
297 | KeywordsIntoDVList(fileptr, dvl, hdunum);
|
---|
298 | fits_close_file(fileptr,&status);
|
---|
299 | }
|
---|
300 |
|
---|
301 |
|
---|
302 | void FitsInFile::ReadHeader(int hdunum)
|
---|
303 | {
|
---|
304 | // InitNull();
|
---|
305 | int status = 0;
|
---|
306 |
|
---|
307 | if (hdunum != 0 ) hdunum_ = hdunum;
|
---|
308 |
|
---|
309 | // si le numero de header non precise
|
---|
310 | else
|
---|
311 | {
|
---|
312 | // si c'est le premier objet a lire
|
---|
313 | if (hdunum_ == 0)
|
---|
314 | {
|
---|
315 | // on calcule le numero de header a lire
|
---|
316 | if (imageOnPrimary_ == true ) hdunum_ = 1;
|
---|
317 | else hdunum_ = 2;
|
---|
318 | }
|
---|
319 | // sinon objet suivant
|
---|
320 | else hdunum_++;
|
---|
321 | }
|
---|
322 | getHeader();
|
---|
323 |
|
---|
324 | }
|
---|
325 |
|
---|
326 |
|
---|
327 | void FitsInFile::GetImageParameters (fitsfile* fileptr,FitsDataType& dataType,int& naxis,vector<int>& naxisn)
|
---|
328 | {
|
---|
329 | int hdunum=0;
|
---|
330 | cout << " Reading a FITS image in HDU : " << fits_get_hdu_num(fileptr,&hdunum) << endl;
|
---|
331 | int status= 0;
|
---|
332 |
|
---|
333 | // bits per pixels
|
---|
334 | int bitpix=0;
|
---|
335 | fits_read_key(fileptr,TINT,"BITPIX",&bitpix,NULL,&status);
|
---|
336 | if( status ) printerror( status );
|
---|
337 | if(bitpix == DOUBLE_IMG) dataType = FitsDataType_double;
|
---|
338 | else if(bitpix == FLOAT_IMG) dataType = FitsDataType_float;
|
---|
339 | else if(bitpix == LONG_IMG || bitpix == SHORT_IMG ) dataType = FitsDataType_int;
|
---|
340 | else if (bitpix == BYTE_IMG) dataType = FitsDataType_char;
|
---|
341 | else
|
---|
342 | {
|
---|
343 | cout << " bitpix= " << bitpix << endl;
|
---|
344 | throw PException(" FitsFile::GetImageParameters : unsupported FITS data type");
|
---|
345 | }
|
---|
346 |
|
---|
347 | // number of dimensions in the FITS array
|
---|
348 | naxis= 0;
|
---|
349 | fits_read_key(fileptr,TINT,"NAXIS",&naxis,NULL,&status);
|
---|
350 | if( status ) printerror( status );
|
---|
351 | // read the NAXISn keywords to get image size
|
---|
352 | long* naxes = new long[naxis] ;
|
---|
353 | int nfound;
|
---|
354 | fits_read_keys_lng(fileptr,"NAXIS",1,naxis,naxes,&nfound,&status);
|
---|
355 | if( status ) printerror( status );
|
---|
356 | if (nfound != naxis )
|
---|
357 | cout << " WARNING : " << nfound << " axes found, expected naxis= " << naxis << endl;
|
---|
358 | int k;
|
---|
359 | for (k=0; k<naxis; k++)
|
---|
360 | {
|
---|
361 | naxisn.push_back( (int)naxes[k] );
|
---|
362 | }
|
---|
363 | delete [] naxes;
|
---|
364 | }
|
---|
365 |
|
---|
366 |
|
---|
367 |
|
---|
368 |
|
---|
369 | /*! \fn DVList SOPHYA::FitsInFile::DVListFromPrimaryHeader() const
|
---|
370 |
|
---|
371 | \return the keywords of primary header in a DVList
|
---|
372 |
|
---|
373 | */
|
---|
374 | DVList FitsInFile::DVListFromPrimaryHeader() const
|
---|
375 | {
|
---|
376 | int status;
|
---|
377 | DVList dvl;
|
---|
378 | KeywordsIntoDVList(fptr_, dvl, 1);
|
---|
379 | int hdutype = 0;
|
---|
380 | if (hdunum_ > 0) fits_movabs_hdu(fptr_,hdunum_,&hdutype,&status);
|
---|
381 | return dvl;
|
---|
382 | }
|
---|
383 |
|
---|
384 | void FitsInFile::getHeader()
|
---|
385 | {
|
---|
386 | // si hdunum_ > 1 lit le header correspondant
|
---|
387 | // si hdunum_ = 1 se positionne au (et lit le) premier header qui
|
---|
388 | // contient reellement un objet
|
---|
389 | int status=0;
|
---|
390 | if (hdunum_ < 1) throw PException(" attempt to read hdunum < 1");
|
---|
391 | InitNull();
|
---|
392 | if (hdunum_ == 1)
|
---|
393 | {
|
---|
394 | // presence of image ?
|
---|
395 | int naxis= 0;
|
---|
396 | fits_read_key(fptr_,TINT,"NAXIS",&naxis,NULL,&status);
|
---|
397 | if( status ) printerror( status );
|
---|
398 | if (naxis > 0 ) // there is an image
|
---|
399 | {
|
---|
400 | hdutype_ = IMAGE_HDU;
|
---|
401 | GetImageParameters (fptr_, imageDataType_, naxis_, naxisn_);
|
---|
402 | nbData_ = 1;
|
---|
403 | int k;
|
---|
404 | for (k=0; k<naxis_; k++) if (naxisn_[k] > 0) nbData_ *= naxisn_[k];
|
---|
405 | KeywordsIntoDVList(fptr_, dvl_,hdunum_);
|
---|
406 | }
|
---|
407 | else
|
---|
408 | {
|
---|
409 | // the object to be read is probably a bin or ascii table
|
---|
410 | // (on an extension)
|
---|
411 | hdunum_++;
|
---|
412 | getHeader();
|
---|
413 |
|
---|
414 | // throw PException(" first header : no image, probably error in hdunum");
|
---|
415 | }
|
---|
416 | }
|
---|
417 | else
|
---|
418 | {
|
---|
419 | int hdutype;
|
---|
420 | fits_movabs_hdu(fptr_,hdunum_,&hdutype,&status);
|
---|
421 | if( status ) printerror( status,":FitsInFile::getHeader : erreur movabs");
|
---|
422 | hdutype_= hdutype;
|
---|
423 | if(hdutype_ == IMAGE_HDU)
|
---|
424 | {
|
---|
425 | GetImageParameters (fptr_, imageDataType_, naxis_, naxisn_);
|
---|
426 | nbData_ = 1;
|
---|
427 | int k;
|
---|
428 | for (k=0; k<naxis_; k++) if (naxisn_[k] > 0) nbData_ *= naxisn_[k];
|
---|
429 | KeywordsIntoDVList(fptr_, dvl_,hdunum_);
|
---|
430 | }
|
---|
431 | if(hdutype_ == ASCII_TBL || hdutype_ == BINARY_TBL)
|
---|
432 | {
|
---|
433 | GetBinTabParameters(fptr_,nbcols_, nrows_,repeat_, noms_, types_, taille_des_chaines_);
|
---|
434 | KeywordsIntoDVList(fptr_, dvl_, hdunum_);
|
---|
435 | }
|
---|
436 | }
|
---|
437 | }
|
---|
438 |
|
---|
439 |
|
---|
440 | void FitsInFile::moveToFollowingHeader()
|
---|
441 | {
|
---|
442 | int status = 0;
|
---|
443 | hdunum_++;
|
---|
444 | getHeader();
|
---|
445 | }
|
---|
446 |
|
---|
447 |
|
---|
448 |
|
---|
449 |
|
---|
450 |
|
---|
451 | /*! \fn int SOPHYA::FitsInFile::NbColsFromFits() const
|
---|
452 | \return number of columns (return 1 if IMAGE)
|
---|
453 | */
|
---|
454 | int FitsInFile::NbColsFromFits() const
|
---|
455 | {
|
---|
456 | if(hdutype_ == BINARY_TBL) return nbcols_;
|
---|
457 | else
|
---|
458 | if(hdutype_ == ASCII_TBL || hdutype_ == IMAGE_HDU) return 1;
|
---|
459 | else
|
---|
460 | {
|
---|
461 | cout << " hdutype= " << hdutype_ << endl;
|
---|
462 | throw PException("FitsFile::NbColsFromFits, this HDU is unknown");
|
---|
463 | }
|
---|
464 | }
|
---|
465 |
|
---|
466 | /*! \fn int SOPHYA::FitsInFile::NentriesFromFits(int nocol) const
|
---|
467 | \return number of data in the current IMAGE extension on FITS file, or number
|
---|
468 | of data of column number 'nocol' of the current BINTABLE extension
|
---|
469 | */
|
---|
470 | int FitsInFile::NentriesFromFits(int nocol) const
|
---|
471 | {
|
---|
472 | if(hdutype_ == BINARY_TBL ) return nrows_*repeat_[nocol];
|
---|
473 | else
|
---|
474 | if(hdutype_ == ASCII_TBL) return nrows_;
|
---|
475 | else
|
---|
476 | if(hdutype_ == IMAGE_HDU) return nbData_;
|
---|
477 | else
|
---|
478 | {
|
---|
479 | cout << "hdutype= " << hdutype_ << endl;
|
---|
480 | throw PException("FitsFile::NentriesFromFits, this HDU is unknown");
|
---|
481 | }
|
---|
482 | }
|
---|
483 |
|
---|
484 | /*! \fn char SOPHYA::FitsInFile::ColTypeFromFits(int nocol) const
|
---|
485 |
|
---|
486 | return a character denoting data type of column number 'nocol' in a BINTABLE :
|
---|
487 |
|
---|
488 | D : double
|
---|
489 |
|
---|
490 | E : float
|
---|
491 |
|
---|
492 | I : integer
|
---|
493 |
|
---|
494 | S : character string
|
---|
495 |
|
---|
496 | */
|
---|
497 |
|
---|
498 | FitsFile::FitsDataType FitsInFile::ColTypeFromFits(int nocol) const
|
---|
499 | {
|
---|
500 | if(hdutype_ != ASCII_TBL && hdutype_ != BINARY_TBL)
|
---|
501 | {
|
---|
502 | throw IOExc("FitsFile::TypeFromFits, this HDU is not an ASCII table nor a binary table");
|
---|
503 | }
|
---|
504 | return types_[nocol];
|
---|
505 | }
|
---|
506 |
|
---|
507 |
|
---|
508 | /*! \fn string SOPHYA::FitsInFile::ColNameFromFits(int nocol) const
|
---|
509 |
|
---|
510 | \return name of the column number 'nocol' of the current BINTABLE extension
|
---|
511 | */
|
---|
512 |
|
---|
513 | string FitsInFile::ColNameFromFits(int nocol) const
|
---|
514 | {
|
---|
515 | if(hdutype_ != ASCII_TBL && hdutype_ != BINARY_TBL)
|
---|
516 | {
|
---|
517 | throw IOExc("FitsFile::TypeFromFits, this HDU is not an ASCII table nor a binary table");
|
---|
518 | }
|
---|
519 | return noms_[nocol];
|
---|
520 | }
|
---|
521 |
|
---|
522 | /*! \fn int DSOPHYA::FitsInFile::ColStringLengthFromFits(int nocol) const
|
---|
523 |
|
---|
524 | \return number of characters of each data for the column number 'nocol' (if char* typed) of the current BINTABLE extension
|
---|
525 | */
|
---|
526 |
|
---|
527 | int FitsInFile::ColStringLengthFromFits(int nocol) const
|
---|
528 | {
|
---|
529 | if(hdutype_ != ASCII_TBL && hdutype_ != BINARY_TBL)
|
---|
530 | {
|
---|
531 | throw IOExc("FitsFile::TypeFromFits, this HDU is not an ASCII table nor a binary table");
|
---|
532 | }
|
---|
533 | int index=-1;
|
---|
534 | int k;
|
---|
535 | for (k=0; k<=nocol; k++)
|
---|
536 | {
|
---|
537 | if (types_[k] == FitsDataType_char) index++;
|
---|
538 | }
|
---|
539 | return taille_des_chaines_[index];
|
---|
540 | }
|
---|
541 |
|
---|
542 |
|
---|
543 |
|
---|
544 | /*! \fn void SOPHYA::FitsInFile::GetBinTabLine(int NoLine, double* ddata, float* fdata, int* idata, char ** cdata)
|
---|
545 |
|
---|
546 | Get the NoLine-th 'line' from the current BINTABLE extension on FITS file,
|
---|
547 | */
|
---|
548 |
|
---|
549 | void FitsInFile::GetBinTabLine(int NoLine, double* ddata, float* fdata, int* idata, char ** cdata)
|
---|
550 | {
|
---|
551 | int status= 0;
|
---|
552 | int anull;
|
---|
553 | double dnull= 0.;
|
---|
554 | float fnull= 0.;
|
---|
555 | int inull= 0;
|
---|
556 | char* cnull= "";
|
---|
557 | int dcount = 0.;
|
---|
558 | int fcount = 0.;
|
---|
559 | int icount = 0;
|
---|
560 | int ccount =0;
|
---|
561 | int ncol;
|
---|
562 | long nels=1;
|
---|
563 | for (ncol=0; ncol<nbcols_; ncol++)
|
---|
564 | {
|
---|
565 | switch (types_[ncol])
|
---|
566 | {
|
---|
567 | case FitsDataType_double :
|
---|
568 | fits_read_col(fptr_,TDOUBLE,ncol+1,NoLine+1,1,1,&dnull,&ddata[dcount++],&anull,&status);
|
---|
569 | break;
|
---|
570 | case FitsDataType_float :
|
---|
571 | fits_read_col(fptr_,TFLOAT,ncol+1,NoLine+1,1,1,&fnull,&fdata[fcount++],&anull,&status);
|
---|
572 | break;
|
---|
573 | case FitsDataType_int :
|
---|
574 | fits_read_col(fptr_,TINT,ncol+1,NoLine+1,1,1,&inull,&idata[icount++],
|
---|
575 | &anull,&status);
|
---|
576 | break;
|
---|
577 | case FitsDataType_char :
|
---|
578 | fits_read_col(fptr_,TSTRING,ncol+1,NoLine+1,1,1,cnull,&cdata[ccount++],&anull,&status);
|
---|
579 | break;
|
---|
580 | }
|
---|
581 | if (status)
|
---|
582 | {
|
---|
583 | ResetStatus(status);
|
---|
584 | break;
|
---|
585 | }
|
---|
586 | }
|
---|
587 | }
|
---|
588 |
|
---|
589 | /*! \fn void SOPHYA::FitsInFile::GetBinTabLine(long NoLine, BnTblLine& ligne)
|
---|
590 | Get the NoLine-th 'line' from the current BINTABLE extension on FITS file,
|
---|
591 | */
|
---|
592 | void FitsInFile::GetBinTabLine(long NoLine, BnTblLine& ligne)
|
---|
593 | {
|
---|
594 | int status= 0;
|
---|
595 | int anull;
|
---|
596 | double dnull= 0.;
|
---|
597 | float fnull= 0.;
|
---|
598 | int inull= 0;
|
---|
599 | char* cnull= "";
|
---|
600 | int dcount = 0.;
|
---|
601 | int fcount = 0.;
|
---|
602 | int icount = 0;
|
---|
603 | int ccount =0;
|
---|
604 | int ncol;
|
---|
605 | long nels=1;
|
---|
606 | for (ncol=0; ncol<nbcols_; ncol++)
|
---|
607 | {
|
---|
608 | switch (types_[ncol])
|
---|
609 | {
|
---|
610 | case FitsDataType_double :
|
---|
611 | fits_read_col(fptr_,TDOUBLE,ncol+1,NoLine+1,1,1,&dnull,&ligne.ddata_[dcount++],&anull,&status);
|
---|
612 | break;
|
---|
613 | case FitsDataType_float :
|
---|
614 | fits_read_col(fptr_,TFLOAT,ncol+1,NoLine+1,1,1,&fnull,&ligne.fdata_[fcount++],&anull,&status);
|
---|
615 | break;
|
---|
616 | case FitsDataType_int :
|
---|
617 | fits_read_col(fptr_,TINT,ncol+1,NoLine+1,1,1,&inull,&ligne.idata_[icount++],
|
---|
618 | &anull,&status);
|
---|
619 | break;
|
---|
620 | case FitsDataType_char :
|
---|
621 | char* chaine = new char[taille_des_chaines_[ccount]];
|
---|
622 | fits_read_col(fptr_,TSTRING,ncol+1,NoLine+1,1,1,cnull,&chaine,&anull,&status);
|
---|
623 | ligne.cdata_[ccount++] = string(chaine);
|
---|
624 | break;
|
---|
625 | }
|
---|
626 | if (status)
|
---|
627 | {
|
---|
628 | ResetStatus(status);
|
---|
629 | break;
|
---|
630 | }
|
---|
631 | }
|
---|
632 | }
|
---|
633 |
|
---|
634 | /*! \fn void SOPHYA::FitsInFile::GetBinTabLine(int NoLine, float* fdata)
|
---|
635 |
|
---|
636 | Get the NoLine-th float 'line' from the current BINTABLE extension on FITS file,
|
---|
637 | */
|
---|
638 | void FitsInFile::GetBinTabLine(int NoLine, float* fdata)
|
---|
639 | {
|
---|
640 | int status= 0;
|
---|
641 | int anull;
|
---|
642 | float fnull= 0.;
|
---|
643 | long nels=1;
|
---|
644 | int ncol;
|
---|
645 | for (ncol=0; ncol<nbcols_; ncol++)
|
---|
646 | {
|
---|
647 | fits_read_col(fptr_,TFLOAT,ncol+1,NoLine+1,1,1,&fnull,&fdata[ncol],&anull,&status);
|
---|
648 | if (status)
|
---|
649 | {
|
---|
650 | ResetStatus(status);
|
---|
651 | break;
|
---|
652 | }
|
---|
653 | }
|
---|
654 | }
|
---|
655 |
|
---|
656 |
|
---|
657 | /*! \fn void SPOPHYA::FitsInFile::GetBinTabFCol(double* valeurs,int nentries, int NoCol) const
|
---|
658 |
|
---|
659 | fill the array 'valeurs' with double data from the current BINTABLE extension on FITS file, from column number 'NoCol'
|
---|
660 |
|
---|
661 | \param <nentries> number of data to be read
|
---|
662 | */
|
---|
663 | void FitsInFile::GetBinTabFCol(double* valeurs,int nentries, int NoCol) const
|
---|
664 | {
|
---|
665 | int status= 0;
|
---|
666 | int DTYPE;
|
---|
667 | long repeat,width;
|
---|
668 | fits_get_coltype(fptr_, NoCol+1,&DTYPE,&repeat,&width,&status);
|
---|
669 | if( DTYPE != TDOUBLE)
|
---|
670 | {
|
---|
671 | if (DTYPE == TFLOAT) cout << " WARNING: reading double from float : conversion will be made by fitsio library" << endl;
|
---|
672 | else
|
---|
673 | throw IOExc("FitsFile::GetBinTabFCol, tentative de lecture non double");
|
---|
674 | }
|
---|
675 | long nels=nentries;
|
---|
676 | int anull;
|
---|
677 | // no checking for undefined pixels
|
---|
678 | double dnull= 0.;
|
---|
679 | // fits_read_key(fptr_,TDOUBLE,"BAD_DATA",&dnull,NULL,&status);
|
---|
680 | // if (status != 0)
|
---|
681 | // {
|
---|
682 | // dnull = -1.6375e30; // default value
|
---|
683 | // status = 0;
|
---|
684 | // }
|
---|
685 | if (nentries != nrows_*repeat)
|
---|
686 | {
|
---|
687 | cout << " found " << nentries << " pixels, expected: " << nrows_*repeat << endl;
|
---|
688 | throw PException(" FitsFile:::GetBinTabFCol ");
|
---|
689 | }
|
---|
690 | fits_read_col(fptr_,TDOUBLE,NoCol+1,1,1,nels,&dnull,valeurs,
|
---|
691 | &anull,&status);
|
---|
692 | if( status ) printerror( status,"erreur lecture de colonne" );
|
---|
693 |
|
---|
694 | }
|
---|
695 |
|
---|
696 | /*! \fn void SOPHYA::FitsInFile::GetBinTabFCol(float* valeurs,int nentries, int NoCol) const
|
---|
697 |
|
---|
698 | same as previous method with float data
|
---|
699 | */
|
---|
700 | void FitsInFile::GetBinTabFCol(float* valeurs,int nentries, int NoCol) const
|
---|
701 | {
|
---|
702 | int status= 0;
|
---|
703 | int DTYPE;
|
---|
704 | long repeat,width;
|
---|
705 | fits_get_coltype(fptr_, NoCol+1,&DTYPE,&repeat,&width,&status);
|
---|
706 | if( DTYPE != TFLOAT)
|
---|
707 | {
|
---|
708 | if (DTYPE == TDOUBLE) cout << " WARNING: reading float from double : conversion will be made by fitsio library" << endl;
|
---|
709 | else
|
---|
710 | throw IOExc("FitsFile::GetBinTabFCol, tentative de lecture non float");
|
---|
711 | }
|
---|
712 | long nels=nentries;
|
---|
713 | int anull;
|
---|
714 | // no checking for undefined pixels
|
---|
715 | float fnull= 0.;
|
---|
716 | // fits_read_key(fptr_,TFLOAT,"BAD_DATA",&fnull,NULL,&status);
|
---|
717 | // if (status != 0)
|
---|
718 | // {
|
---|
719 | // fnull = -1.6375e30; // default value
|
---|
720 | // status = 0;
|
---|
721 | // }
|
---|
722 | if (nentries != nrows_*repeat)
|
---|
723 | {
|
---|
724 | cout << " found " << nentries << " pixels, expected: " << nrows_*repeat << endl;
|
---|
725 | throw PException(" FitsFile:::GetBinTabFCol ");
|
---|
726 | }
|
---|
727 | fits_read_col(fptr_,TFLOAT,NoCol+1,1,1,nels,&fnull,valeurs,
|
---|
728 | &anull,&status);
|
---|
729 | if( status ) printerror( status,"erreur lecture de colonne" );
|
---|
730 | }
|
---|
731 |
|
---|
732 | /*! \fn void SOPHYA::FitsInFile::GetBinTabFCol(int* valeurs,int nentries, int NoCol) const
|
---|
733 |
|
---|
734 | same as previous method with int data
|
---|
735 | */
|
---|
736 |
|
---|
737 | void FitsInFile::GetBinTabFCol(int* valeurs,int nentries, int NoCol) const
|
---|
738 | {
|
---|
739 | int status= 0;
|
---|
740 | int DTYPE;
|
---|
741 | long repeat,width;
|
---|
742 | fits_get_coltype(fptr_, NoCol+1,&DTYPE,&repeat,&width,&status);
|
---|
743 | if( DTYPE != TLONG && DTYPE != TINT && DTYPE != TSHORT )
|
---|
744 | {
|
---|
745 | throw IOExc("FitsFile::GetBinTabFCol, tentative de lecture non entier");
|
---|
746 | }
|
---|
747 | long nels=nentries;
|
---|
748 | // no checking for undefined pixels
|
---|
749 | int anull;
|
---|
750 | int inull= 0;
|
---|
751 | // fits_read_key(fptr_,TINT,"BAD_DATA",&inull,NULL,&status);
|
---|
752 | // if (status != 0)
|
---|
753 | // {
|
---|
754 | // inull = -999999; // default value
|
---|
755 | // status = 0;
|
---|
756 | // }
|
---|
757 | if (nentries != nrows_*repeat)
|
---|
758 | {
|
---|
759 | cout << " found " << nentries << " pixels, expected: " << nrows_*repeat << endl;
|
---|
760 | throw PException(" FitsFile:::GetBinTabFCol ");
|
---|
761 | }
|
---|
762 | fits_read_col(fptr_,TINT,NoCol+1,1,1,nels,&inull,valeurs,
|
---|
763 | &anull,&status);
|
---|
764 | if( status ) printerror( status,"erreur lecture de colonne" );
|
---|
765 | }
|
---|
766 |
|
---|
767 | /*! \fn void SOPHYA::FitsInFile::GetBinTabFCol(char** valeurs, int nentries, int NoCol) const
|
---|
768 |
|
---|
769 | same as previous method with char* data
|
---|
770 | */
|
---|
771 |
|
---|
772 | void FitsInFile::GetBinTabFCol(char** valeurs, int nentries, int NoCol) const
|
---|
773 | {
|
---|
774 | int status= 0;
|
---|
775 | int DTYPE;
|
---|
776 | long repeat,width;
|
---|
777 | fits_get_coltype(fptr_, NoCol+1,&DTYPE,&repeat,&width,&status);
|
---|
778 | if( DTYPE != TSTRING && DTYPE != TBYTE)
|
---|
779 | {
|
---|
780 | throw IOExc("FitsFile::GetBinTabFCol, tentative de lecture non string");
|
---|
781 | }
|
---|
782 | long nels=nentries;
|
---|
783 | // no checking for undefined pixels
|
---|
784 | int anull;
|
---|
785 | char* cnull= "";
|
---|
786 | if (nentries != nrows_*repeat/width)
|
---|
787 | {
|
---|
788 | cout << " found " << nentries << " pixels, expected: " << nrows_*repeat/width << endl;
|
---|
789 | throw PException(" FitsFile:::GetBinTabFCol ");
|
---|
790 | }
|
---|
791 | long frow=1;
|
---|
792 | long felem=1;
|
---|
793 | fits_read_col(fptr_,TSTRING,NoCol+1,frow,felem,nels,cnull,valeurs,
|
---|
794 | &anull,&status);
|
---|
795 | if( status ) printerror( status,"erreur lecture de colonne" );
|
---|
796 | }
|
---|
797 |
|
---|
798 | /*! \fn void SOPHYA::FitsInFile::GetSingleColumn(double* map, int nentries) const
|
---|
799 | fill the array 'map' with double data from the current extension on FITS file.
|
---|
800 | If the extension is BINTABLE, the first column is provided.
|
---|
801 |
|
---|
802 | \param <nentries> number of data to be read
|
---|
803 | */
|
---|
804 | void FitsInFile::GetSingleColumn(double* map, int nentries) const
|
---|
805 | {
|
---|
806 | int status = 0;
|
---|
807 | if(hdutype_ == IMAGE_HDU)
|
---|
808 | {
|
---|
809 |
|
---|
810 | if(imageDataType_ != FitsDataType_double)
|
---|
811 | {
|
---|
812 | cout << " The data type on fits file is not double...";
|
---|
813 | cout << " Conversion to double achieved by cfitsio lib" << endl;
|
---|
814 | }
|
---|
815 |
|
---|
816 | // no checking for undefined pixels
|
---|
817 | int anull;
|
---|
818 | double dnull= 0.;
|
---|
819 |
|
---|
820 | long nels= nentries;
|
---|
821 | fits_read_img(fptr_,TDOUBLE,1,nels,&dnull,map,&anull,&status);
|
---|
822 | if( status ) printerror( status );
|
---|
823 | }
|
---|
824 | else
|
---|
825 | if(hdutype_ == ASCII_TBL || hdutype_ == BINARY_TBL)
|
---|
826 | {
|
---|
827 | GetBinTabFCol(map,nentries, 0);
|
---|
828 | }
|
---|
829 | else
|
---|
830 | {
|
---|
831 | cout << " hdutype= " << hdutype_ << endl;
|
---|
832 | throw IOExc("FitsFile::GetSingleColumn this HDU is unknown");
|
---|
833 | }
|
---|
834 | }
|
---|
835 |
|
---|
836 | /*! \fn void SOPHYA::FitsInFile::GetSingleColumn(float* map, int nentries) const
|
---|
837 | same as above with float data
|
---|
838 | */
|
---|
839 | void FitsInFile::GetSingleColumn(float* map, int nentries) const
|
---|
840 | {
|
---|
841 | int status = 0;
|
---|
842 | if(hdutype_ == IMAGE_HDU)
|
---|
843 | {
|
---|
844 | if(imageDataType_ != FitsDataType_float)
|
---|
845 | {
|
---|
846 | cout << " The data type on fits file is not float ";
|
---|
847 | cout << " Conversion to float achieved by cfitsio lib" << endl;
|
---|
848 | }
|
---|
849 | // no checking for undefined pixels
|
---|
850 | int anull;
|
---|
851 | float fnull= 0.;
|
---|
852 |
|
---|
853 | long nels= nentries;
|
---|
854 | fits_read_img(fptr_,TFLOAT,1,nels,&fnull, map,&anull,&status);
|
---|
855 | if( status ) printerror( status );
|
---|
856 | }
|
---|
857 | else
|
---|
858 | if(hdutype_ == ASCII_TBL || hdutype_ == BINARY_TBL)
|
---|
859 | {
|
---|
860 | GetBinTabFCol(map,nentries, 0);
|
---|
861 | }
|
---|
862 | else
|
---|
863 | {
|
---|
864 | cout << " hdutype= " << hdutype_ << endl;
|
---|
865 | throw IOExc("FitsFile::GetSingleColumn this HDU is unknown");
|
---|
866 | }
|
---|
867 | }
|
---|
868 |
|
---|
869 | /*! \fn void SOPHYA::FitsInFile::GetSingleColumn( int* map, int nentries) const
|
---|
870 | same as above with int data
|
---|
871 | */
|
---|
872 | void FitsInFile::GetSingleColumn( int* map, int nentries) const
|
---|
873 | {
|
---|
874 | int status = 0;
|
---|
875 | if(hdutype_ == IMAGE_HDU)
|
---|
876 | {
|
---|
877 | if(imageDataType_ != FitsDataType_int)
|
---|
878 | {
|
---|
879 | cout << " The data type on fits file is not int ";
|
---|
880 | cout << " Conversion to float achieved by cfitsio lib" << endl;
|
---|
881 | }
|
---|
882 | // no checking for undefined pixels
|
---|
883 | int anull;
|
---|
884 | float fnull= 0.;
|
---|
885 |
|
---|
886 | long nels= nentries;
|
---|
887 | fits_read_img(fptr_,TINT,1,nels,&fnull,map,&anull,&status);
|
---|
888 | if( status ) printerror( status );
|
---|
889 | }
|
---|
890 | else
|
---|
891 | if(hdutype_ == ASCII_TBL || hdutype_ == BINARY_TBL)
|
---|
892 | {
|
---|
893 | GetBinTabFCol(map,nentries, 0);
|
---|
894 | }
|
---|
895 | else
|
---|
896 | {
|
---|
897 | cout << " hdutype= " << hdutype_ << endl;
|
---|
898 | throw IOExc("FitsFile::GetSingleColumn this HDU is unknown");
|
---|
899 | }
|
---|
900 | }
|
---|
901 |
|
---|
902 | void FitsInFile::GetBinTabParameters(fitsfile* fileptr, int& nbcols, int& nrows,
|
---|
903 | vector<int>& repeat,
|
---|
904 | vector<string>& noms,
|
---|
905 | vector<FitsDataType>& types,
|
---|
906 | vector<int>& taille_des_chaines)
|
---|
907 | {
|
---|
908 | int status= 0;
|
---|
909 | int hdunum=0;
|
---|
910 | int hdutype=0;
|
---|
911 | fits_get_hdu_num(fileptr,&hdunum);
|
---|
912 | fits_get_hdu_type(fileptr, &hdutype, &status);
|
---|
913 |
|
---|
914 | if(hdutype != ASCII_TBL && hdutype != BINARY_TBL)
|
---|
915 | {
|
---|
916 | throw IOExc("FitsFile::GetBinTabParameters this HDU is not an ASCII table nor a binary table");
|
---|
917 | }
|
---|
918 | if(hdutype == ASCII_TBL)
|
---|
919 | cout << " Reading a FITS ascii table in HDU : " << hdunum << endl;
|
---|
920 | if(hdutype == BINARY_TBL)
|
---|
921 | cout << " Reading a FITS binary table in HDU : " << hdunum << endl;
|
---|
922 |
|
---|
923 | // get the number of columns
|
---|
924 | fits_get_num_cols(fileptr, &nbcols,&status);
|
---|
925 | if( status ) printerror( status );
|
---|
926 |
|
---|
927 | // get the number of rows
|
---|
928 | long naxis2= 0;
|
---|
929 | fits_get_num_rows(fileptr,&naxis2,&status);
|
---|
930 | if( status ) printerror( status );
|
---|
931 | nrows = (int)naxis2;
|
---|
932 |
|
---|
933 | // get the datatype, names and the repeat count
|
---|
934 | noms.clear();
|
---|
935 | noms.reserve(nbcols);
|
---|
936 | types.clear();
|
---|
937 | types.reserve(nbcols);
|
---|
938 | repeat.clear();
|
---|
939 | repeat.reserve(nbcols);
|
---|
940 | taille_des_chaines.clear();
|
---|
941 | char **ttype = new char*[nbcols];
|
---|
942 | int ii;
|
---|
943 | //
|
---|
944 | //
|
---|
945 | for (ii=0; ii < nbcols; ii++) ttype[ii]=new char[FLEN_VALUE];
|
---|
946 | int nfound;
|
---|
947 | fits_read_keys_str(fileptr, "TTYPE",1,nbcols,ttype,&nfound, &status);
|
---|
948 | if( status ) printerror( status,"erreur lecture des noms de colonne");
|
---|
949 | int rept=0;
|
---|
950 | if(hdutype == ASCII_TBL)
|
---|
951 | {
|
---|
952 | for(ii = 0; ii < nbcols; ii++)
|
---|
953 | {
|
---|
954 | int DTYPE;
|
---|
955 | long width;
|
---|
956 | long repete = 0;
|
---|
957 | fits_get_coltype(fileptr,ii+1,&DTYPE,&repete,&width,&status);
|
---|
958 | if( status ) printerror( status,"erreur lecture type de colonne");
|
---|
959 | rept = repete;
|
---|
960 | noms.push_back(string(ttype[ii]));
|
---|
961 | switch (DTYPE)
|
---|
962 | {
|
---|
963 | case TDOUBLE :
|
---|
964 | types.push_back(FitsDataType_double);
|
---|
965 | break;
|
---|
966 | case TFLOAT :
|
---|
967 | types.push_back(FitsDataType_float);
|
---|
968 | break;
|
---|
969 | case TLONG :
|
---|
970 | types.push_back(FitsDataType_int);
|
---|
971 | break;
|
---|
972 | case TSHORT :
|
---|
973 | types.push_back(FitsDataType_int);
|
---|
974 | break;
|
---|
975 | case TSTRING :
|
---|
976 | types.push_back(FitsDataType_char);
|
---|
977 | taille_des_chaines.push_back(width);
|
---|
978 | rept/=width;
|
---|
979 | break;
|
---|
980 | default :
|
---|
981 | cout << " field " << ii+1 << " DTYPE= " << DTYPE << endl;
|
---|
982 | throw IOExc("FitsFile::GetBinTabParameters, unsupported data type of field, for ASCII table");
|
---|
983 | }
|
---|
984 | repeat.push_back(rept);
|
---|
985 | }
|
---|
986 | }
|
---|
987 | else
|
---|
988 | {
|
---|
989 | for(ii = 0; ii < nbcols; ii++)
|
---|
990 | {
|
---|
991 | int DTYPE;
|
---|
992 | long width;
|
---|
993 | long repete = 0;
|
---|
994 | fits_get_coltype(fileptr,ii+1,&DTYPE,&repete,&width,&status);
|
---|
995 | if( status ) printerror( status,"erreur lecture type de colonne");
|
---|
996 | rept = repete;
|
---|
997 | noms.push_back(string(ttype[ii]));
|
---|
998 | switch (DTYPE)
|
---|
999 | {
|
---|
1000 | case TDOUBLE :
|
---|
1001 | types.push_back(FitsDataType_double);
|
---|
1002 | break;
|
---|
1003 | case TFLOAT :
|
---|
1004 | types.push_back(FitsDataType_float);
|
---|
1005 | break;
|
---|
1006 | case TLONG :
|
---|
1007 | types.push_back(FitsDataType_int);
|
---|
1008 | break;
|
---|
1009 | case TINT :
|
---|
1010 | types.push_back(FitsDataType_int);
|
---|
1011 | break;
|
---|
1012 | case TSHORT :
|
---|
1013 | types.push_back(FitsDataType_int);
|
---|
1014 | break;
|
---|
1015 | case TSTRING :
|
---|
1016 | types.push_back(FitsDataType_char);
|
---|
1017 | taille_des_chaines.push_back(width);
|
---|
1018 | rept/=width;
|
---|
1019 | break;
|
---|
1020 | case TBYTE :
|
---|
1021 | types.push_back(FitsDataType_char);
|
---|
1022 | taille_des_chaines.push_back(width);
|
---|
1023 | rept/=width;
|
---|
1024 | break;
|
---|
1025 | default :
|
---|
1026 | cout << " field " << ii+1 << " DTYPE= " << DTYPE << endl;
|
---|
1027 | throw IOExc("FitsFile::GetBinTabParameters, unsupported data type of field, for BINTABLE");
|
---|
1028 | }
|
---|
1029 | repeat.push_back(rept);
|
---|
1030 | }
|
---|
1031 | }
|
---|
1032 | for (ii=0; ii < nbcols; ii++) delete [] ttype[ii];
|
---|
1033 | delete [] ttype;
|
---|
1034 | }
|
---|
1035 |
|
---|
1036 | void FitsInFile::KeywordsIntoDVList(fitsfile* fileptr, DVList& dvl, int hdunum)
|
---|
1037 | {
|
---|
1038 | int status = 0;
|
---|
1039 | int hdutype;
|
---|
1040 | fits_movabs_hdu(fileptr,hdunum,&hdutype,&status);
|
---|
1041 | if( status ) printerror( status,":KeywordsIntoDVList : erreur movabs");
|
---|
1042 | // get number of keywords
|
---|
1043 | int nkeys,keypos;
|
---|
1044 | fits_get_hdrpos(fileptr,&nkeys,&keypos,&status);
|
---|
1045 | if( status ) printerror( status );
|
---|
1046 |
|
---|
1047 | // put keywords in a DVList object
|
---|
1048 | char keyname[LEN_KEYWORD]= "";
|
---|
1049 | char strval[FLEN_VALUE]= "";
|
---|
1050 | char dtype;
|
---|
1051 | char card[FLEN_CARD];
|
---|
1052 | char *comkey = "COMMENT";
|
---|
1053 | char comment[FLEN_COMMENT];
|
---|
1054 |
|
---|
1055 | // shift with the number of mandatory keywords
|
---|
1056 | // int num= 8;
|
---|
1057 | int num= 0;
|
---|
1058 | // primary header
|
---|
1059 | if (hdunum == 1)
|
---|
1060 | {
|
---|
1061 | // read NAXIS
|
---|
1062 | int naxis=0;
|
---|
1063 | fits_read_key(fileptr,TINT,"NAXIS",&naxis,NULL,&status);
|
---|
1064 | // number of mandatory keywords
|
---|
1065 | num = naxis+3;
|
---|
1066 | }
|
---|
1067 | // extensions
|
---|
1068 | else
|
---|
1069 | {
|
---|
1070 | if (hdutype == IMAGE_HDU)
|
---|
1071 | {
|
---|
1072 | // read NAXIS
|
---|
1073 | int naxis=0;
|
---|
1074 | fits_read_key(fileptr,TINT,"NAXIS",&naxis,NULL,&status);
|
---|
1075 | // number of mandatory keywords
|
---|
1076 | num = naxis+5;
|
---|
1077 | }
|
---|
1078 | else
|
---|
1079 | if(hdutype == ASCII_TBL || hdutype == BINARY_TBL)
|
---|
1080 | {
|
---|
1081 | // number of mandatory keywords
|
---|
1082 | num = 8;
|
---|
1083 | }
|
---|
1084 | }
|
---|
1085 | int j;
|
---|
1086 | for(j = num+1; j <= nkeys; j++)
|
---|
1087 | {
|
---|
1088 | fits_read_keyn(fileptr,j,card,strval,NULL,&status);
|
---|
1089 | if(status) printerror(status);
|
---|
1090 |
|
---|
1091 | strncpy(keyname,card,LEN_KEYWORD-1);
|
---|
1092 | if(strncmp(keyname,comkey,LEN_KEYWORD-1) != 0 && strlen(keyname) != 0
|
---|
1093 | && strlen(strval) != 0)
|
---|
1094 | {
|
---|
1095 | fits_get_keytype(strval,&dtype,&status);
|
---|
1096 | if(status) printerror(status);
|
---|
1097 |
|
---|
1098 | strip(keyname, 'B',' ');
|
---|
1099 | strip(strval, 'B',' ');
|
---|
1100 | strip(strval, 'B','\'');
|
---|
1101 |
|
---|
1102 | switch( dtype )
|
---|
1103 | {
|
---|
1104 | case 'C':
|
---|
1105 | fits_read_key(fileptr,TSTRING,keyname,strval,comment,&status);
|
---|
1106 | dvl[keyname]= strval;
|
---|
1107 | dvl.SetComment(keyname, comment);
|
---|
1108 | break;
|
---|
1109 | case 'I':
|
---|
1110 | int ival;
|
---|
1111 | fits_read_key(fileptr,TINT,keyname,&ival,comment,&status);
|
---|
1112 | dvl[keyname]= (int_4) ival; // Portage mac DY
|
---|
1113 | dvl.SetComment(keyname, comment);
|
---|
1114 | break;
|
---|
1115 | case 'L':
|
---|
1116 | int ilog;
|
---|
1117 | fits_read_key(fileptr,TLOGICAL,keyname,&ilog,comment,&status);
|
---|
1118 | dvl[keyname]= (int_4) ilog;
|
---|
1119 | dvl.SetComment(keyname, comment);
|
---|
1120 | break;
|
---|
1121 | case 'F':
|
---|
1122 | double dval;
|
---|
1123 | fits_read_key(fileptr,TDOUBLE,keyname,&dval,comment,&status);
|
---|
1124 | dvl[keyname]= dval;
|
---|
1125 | dvl.SetComment(keyname, comment);
|
---|
1126 | break;
|
---|
1127 | }
|
---|
1128 |
|
---|
1129 | }
|
---|
1130 | }
|
---|
1131 | // dvl_.Print();
|
---|
1132 | }
|
---|
1133 |
|
---|
1134 |
|
---|
1135 | /*!
|
---|
1136 | \class SOPHYA::FitsOutFile
|
---|
1137 | Class for loading SOPHYA objects from FITS Format Files (uses cfitsio lib)
|
---|
1138 | */
|
---|
1139 |
|
---|
1140 | FitsOutFile::FitsOutFile()
|
---|
1141 | {
|
---|
1142 | InitNull();
|
---|
1143 | }
|
---|
1144 |
|
---|
1145 | /*! \fn SOPHYA::FitsOutFile::FitsOutFile(char flnm[], WriteMode wrm)
|
---|
1146 |
|
---|
1147 | \param <WriteMode> enum , WriteMode = clear -> if alreadyy exists, the file will be overwritten (else created) ; WriteMode = append -> further objects will be appended to the file if it exists (else : file created). WriteMode = unknown -> file created if does not exist, else : exception. (the last situation is the default)
|
---|
1148 |
|
---|
1149 | */
|
---|
1150 |
|
---|
1151 | FitsOutFile::FitsOutFile(string const & flnm, WriteMode wrm)
|
---|
1152 | {
|
---|
1153 | InitNull();
|
---|
1154 | openoutputfitsfile(flnm.c_str(), wrm);
|
---|
1155 | }
|
---|
1156 |
|
---|
1157 | FitsOutFile::FitsOutFile(const char * flnm, WriteMode wrm)
|
---|
1158 | {
|
---|
1159 | InitNull();
|
---|
1160 | openoutputfitsfile(flnm, wrm);
|
---|
1161 | }
|
---|
1162 |
|
---|
1163 | void FitsOutFile::openoutputfitsfile(const char * flnm, WriteMode wrm)
|
---|
1164 | {
|
---|
1165 | int status = 0;
|
---|
1166 |
|
---|
1167 | // create new FITS file
|
---|
1168 | fits_create_file(&fptr_,flnm,&status);
|
---|
1169 | if( status )
|
---|
1170 | {
|
---|
1171 |
|
---|
1172 | switch (wrm)
|
---|
1173 | {
|
---|
1174 | // si on veut ecrire a la fin de ce fichier
|
---|
1175 | case append :
|
---|
1176 | status = 0;
|
---|
1177 | fits_clear_errmsg();
|
---|
1178 | fits_open_file(&fptr_,flnm,READWRITE,&status);
|
---|
1179 | if( status )
|
---|
1180 | {
|
---|
1181 | cout << " error opening file: " << flnm << endl;
|
---|
1182 | printerror(status, "failure opening a file supposed to exist");
|
---|
1183 | }
|
---|
1184 | else cout << " file " << flnm << " opened, new objects will be appended " << endl;
|
---|
1185 | fits_get_num_hdus(fptr_, &hdunum_, &status);
|
---|
1186 | int hdutype;
|
---|
1187 | fits_movabs_hdu(fptr_,hdunum_,&hdutype,&status);
|
---|
1188 | if( status ) printerror( status,":FitsFile::WriteF : erreur movabs");
|
---|
1189 | break;
|
---|
1190 |
|
---|
1191 | case clear :
|
---|
1192 | {
|
---|
1193 | status = 0;
|
---|
1194 | fits_clear_errmsg();
|
---|
1195 | char* newname = new char[strlen(flnm)+1];
|
---|
1196 | //
|
---|
1197 | newname[0] = '!';
|
---|
1198 | newname[1] = '\0';
|
---|
1199 | strcat(newname, flnm);
|
---|
1200 | fits_create_file(&fptr_,newname,&status);
|
---|
1201 | delete [] newname;
|
---|
1202 | if (status)
|
---|
1203 | {
|
---|
1204 | cout << " error opening file: " << flnm << endl;
|
---|
1205 | printerror(status, "unable to open file, supposed to exist");
|
---|
1206 | }
|
---|
1207 | else cout << " WARNING : file " << flnm << " is overwritten " << endl;
|
---|
1208 | break;
|
---|
1209 | }
|
---|
1210 | case unknown :
|
---|
1211 | printerror(status, " file seems already to exist");
|
---|
1212 | break;
|
---|
1213 |
|
---|
1214 | }
|
---|
1215 | }
|
---|
1216 | }
|
---|
1217 |
|
---|
1218 |
|
---|
1219 |
|
---|
1220 | /*! \fn void SOPHYA::FitsOutFile::makeHeaderImageOnFits(char type, int nbdim, int* naxisn, DVList &dvl)
|
---|
1221 |
|
---|
1222 | create an IMAGE header on FITS file.
|
---|
1223 | \param <type> type of data (see method ColTypeFromFits)
|
---|
1224 | \param <nbdim> number of dimensions : 1D, 2D, 3D etc. = NAXIS
|
---|
1225 | \param <naxisn> array containind sizes of the different dimensions
|
---|
1226 | */
|
---|
1227 | void FitsOutFile::makeHeaderImageOnFits(char type, int nbdim, int* naxisn, DVList* ptr_dvl)
|
---|
1228 | {
|
---|
1229 | int status = 0;
|
---|
1230 | long naxis = nbdim;
|
---|
1231 | long* naxes = new long[nbdim];
|
---|
1232 | bool hdunfirst= (hdunum_ == 0);
|
---|
1233 | if (hdunfirst)
|
---|
1234 | {
|
---|
1235 | if (imageOnPrimary_ == false)
|
---|
1236 | {
|
---|
1237 | hdunum_ = 1;
|
---|
1238 | fits_create_img(fptr_,FLOAT_IMG,0,naxes,&status);
|
---|
1239 | }
|
---|
1240 | }
|
---|
1241 | int k;
|
---|
1242 | for (k=0; k< nbdim; k++) naxes[k] = (long)naxisn[k];
|
---|
1243 | if (type == 'D')
|
---|
1244 | fits_create_img(fptr_,DOUBLE_IMG,naxis,naxes,&status);
|
---|
1245 | else
|
---|
1246 | if (type == 'E')
|
---|
1247 | fits_create_img(fptr_,FLOAT_IMG,naxis,naxes,&status);
|
---|
1248 | else
|
---|
1249 | if (type == 'I')
|
---|
1250 | fits_create_img(fptr_,LONG_IMG,naxis,naxes,&status);
|
---|
1251 | else
|
---|
1252 | {
|
---|
1253 | cout << " type of data: " << type << endl;
|
---|
1254 | throw PException("FitsFile:::makeHeaderImageOnFits:unprogrammed type of data ");
|
---|
1255 | }
|
---|
1256 | // on ajoute eventuellement un dvlist prepare et la doc SOPHYA
|
---|
1257 | hdunum_++;
|
---|
1258 | if (hdunfirst)
|
---|
1259 | {
|
---|
1260 | addDVListOnPrimary();
|
---|
1261 | writeSignatureOnFits(1);
|
---|
1262 | }
|
---|
1263 |
|
---|
1264 | // write supplementary keywords
|
---|
1265 | // dvl.Print();
|
---|
1266 | if (ptr_dvl != NULL) addKeywordsOfDVList(*ptr_dvl);
|
---|
1267 |
|
---|
1268 | delete [] naxes;
|
---|
1269 | if( status ) printerror( status, "erreur creation HDU IMAGE" );
|
---|
1270 |
|
---|
1271 | }
|
---|
1272 |
|
---|
1273 |
|
---|
1274 | /*! \fn void SOPHYA::FitsOutFile::PutImageToFits(int nbData, double* map) const
|
---|
1275 |
|
---|
1276 | write double data from array 'map'on an IMAGE extension
|
---|
1277 | \param <nbData> number of data to be written
|
---|
1278 | */
|
---|
1279 | void FitsOutFile::PutImageToFits(int nbData, double* map) const
|
---|
1280 | {
|
---|
1281 | int status = 0;
|
---|
1282 | long npix= nbData;
|
---|
1283 | fits_write_img(fptr_,TDOUBLE,1,npix,map,&status);
|
---|
1284 | if( status ) printerror( status, "erreur ecriture PutImageToFits" );
|
---|
1285 | }
|
---|
1286 |
|
---|
1287 | /*! \fn void SOPHYA::FitsOutFile::PutImageToFits(int nbData, float* map) const
|
---|
1288 |
|
---|
1289 | same as previous method with float data
|
---|
1290 | */
|
---|
1291 | void FitsOutFile::PutImageToFits(int nbData, float* map) const
|
---|
1292 | {
|
---|
1293 | int status = 0;
|
---|
1294 | long npix= nbData;
|
---|
1295 | fits_write_img(fptr_,TFLOAT,1,npix, map,&status);
|
---|
1296 | if( status ) printerror( status, "erreur ecriture PutImageToFits" );
|
---|
1297 |
|
---|
1298 | }
|
---|
1299 |
|
---|
1300 | /*! \fn void SOPHYA::FitsOutFile::PutImageToFits( int nbData, int* map) const
|
---|
1301 |
|
---|
1302 | same as previous method with int data */
|
---|
1303 | void FitsOutFile::PutImageToFits( int nbData, int* map) const
|
---|
1304 | {
|
---|
1305 | int status = 0;
|
---|
1306 |
|
---|
1307 | long npix= nbData;
|
---|
1308 | fits_write_img(fptr_,TINT,1,npix,map,&status);
|
---|
1309 | if( status ) printerror( status, "erreur ecriture PutImageToFits" );
|
---|
1310 | }
|
---|
1311 |
|
---|
1312 |
|
---|
1313 |
|
---|
1314 | /*! \fn void SOPHYA::FitsOutFile::makeHeaderBntblOnFits( string fieldType, vector<string> Noms, int nentries, int tfields, DVList &dvl, string extname, vector<int> taille_des_chaines)
|
---|
1315 |
|
---|
1316 | create an BINTABLE header on FITS file.
|
---|
1317 | \param <fieldType> array conta
|
---|
1318 | ining characters denoting types of the different column (see method ColTypeFromFits)
|
---|
1319 | \param <Noms> array of the names of columns
|
---|
1320 | \param <nentries> number of data of each column
|
---|
1321 | \param <tfields> number of columns
|
---|
1322 | \param <dvl> a SOPHYA DVList containing keywords to be appended
|
---|
1323 | \param <extname> keyword EXTNAME for FITS file
|
---|
1324 | \param <taille_des_chaines> vector containing the number of characters of data for each char* typed column, with order of appearance in 'fieldType'
|
---|
1325 | */
|
---|
1326 | void FitsOutFile::makeHeaderBntblOnFits(string fieldType, vector<string> Noms, int nentries, int tfields, DVList* ptr_dvl, string extname, vector<int> taille_des_chaines)
|
---|
1327 | {
|
---|
1328 | int k;
|
---|
1329 | int status = 0;
|
---|
1330 | long nrows;
|
---|
1331 | // verifications de coherences
|
---|
1332 |
|
---|
1333 | if (fieldType.length() != tfields)
|
---|
1334 | {
|
---|
1335 | cout << " nombre de champs :" << tfields << "nombre de types: " << fieldType.length() << endl;
|
---|
1336 | throw ParmError("FitsFile:: fields and types don't match");
|
---|
1337 |
|
---|
1338 | }
|
---|
1339 | if (tfields > Noms.size())
|
---|
1340 | {
|
---|
1341 | cout << " WARNING: FitsOutFile::makeHeaderBntblOnFits, length of vector of column names not equal to total number of columns" << endl;
|
---|
1342 | for (k=0; k<(tfields-Noms.size()); k++) Noms.push_back( string(" "));
|
---|
1343 | }
|
---|
1344 |
|
---|
1345 | // nombre de variables "chaines de caracteres"
|
---|
1346 | int nbString = 0;
|
---|
1347 | for (k=0; k<tfields;k++) if (fieldType[k] == 'A') nbString++;
|
---|
1348 | // coherence de la longueur du vecteur des tailles
|
---|
1349 | if (nbString > taille_des_chaines.size())
|
---|
1350 | {
|
---|
1351 | cout << " WARNING: FitsOutFile::makeHeaderBntblOnFits, length of vector of string lengths not equal to total number of columns" << endl;
|
---|
1352 | int strSz=0;
|
---|
1353 | for (k=0; k<taille_des_chaines.size(); k++) if ( taille_des_chaines[k] > strSz) strSz = taille_des_chaines[k];
|
---|
1354 | for (k=0; k<(nbString-taille_des_chaines.size()); k++) taille_des_chaines.push_back(strSz);
|
---|
1355 | }
|
---|
1356 | char ** ttype= new char*[tfields];
|
---|
1357 | char ** tform= new char*[tfields];
|
---|
1358 | char largeur[FLEN_VALUE];
|
---|
1359 | int noColString=0;
|
---|
1360 | for (k=0; k<tfields;k++)
|
---|
1361 | {
|
---|
1362 | char format[FLEN_VALUE];
|
---|
1363 |
|
---|
1364 | if(nentries < 1024)
|
---|
1365 | {
|
---|
1366 | nrows= nentries;
|
---|
1367 | if (fieldType[k] == 'A')
|
---|
1368 | {
|
---|
1369 | sprintf(largeur,"%d",taille_des_chaines[noColString++]);
|
---|
1370 | strcpy(format,largeur);
|
---|
1371 | }
|
---|
1372 | else strcpy(format,"1");
|
---|
1373 | }
|
---|
1374 | else
|
---|
1375 | {
|
---|
1376 | nrows = nentries/1024;
|
---|
1377 | if(nentries%1024 != 0) nrows++;
|
---|
1378 | if (fieldType[k] == 'A')
|
---|
1379 | {
|
---|
1380 | char largaux[FLEN_VALUE];
|
---|
1381 | sprintf(largeur,"%d",taille_des_chaines[noColString]);
|
---|
1382 | sprintf(largaux,"%d",1024*taille_des_chaines[noColString]);
|
---|
1383 | noColString++;
|
---|
1384 | strcpy(format, largaux);
|
---|
1385 | }
|
---|
1386 | else strcpy(format,"1024");
|
---|
1387 | }
|
---|
1388 | strncat(format,&fieldType[k],1);
|
---|
1389 | if (fieldType[k] == 'A')
|
---|
1390 | {
|
---|
1391 | strcat(format,largeur);
|
---|
1392 | }
|
---|
1393 | ttype[k] = const_cast<char*>(Noms[k].c_str());
|
---|
1394 | tform[k]= new char[FLEN_VALUE];
|
---|
1395 | strcpy(tform[k],format);
|
---|
1396 | }
|
---|
1397 | char* extn = const_cast<char*>(extname.c_str());
|
---|
1398 |
|
---|
1399 | // create a new empty binary table onto the FITS file
|
---|
1400 | // physical units if they exist, are defined in the DVList object
|
---|
1401 | // so the NULL pointer is given for the tunit parameters.
|
---|
1402 | nrows=0;
|
---|
1403 | fits_create_tbl(fptr_,BINARY_TBL,nrows,tfields,ttype,tform,
|
---|
1404 | NULL,extn,&status);
|
---|
1405 | if( status ) printerror( status );
|
---|
1406 | // on ajoute eventuellement un dvlist prepare
|
---|
1407 | if ( hdunum_ == 0 )
|
---|
1408 | {
|
---|
1409 | hdunum_ = 2;
|
---|
1410 | addDVListOnPrimary();
|
---|
1411 | writeSignatureOnFits(1);
|
---|
1412 | }
|
---|
1413 | else hdunum_++;
|
---|
1414 | int ii;
|
---|
1415 | for(ii = 0; ii < tfields; ii++)
|
---|
1416 | {
|
---|
1417 | delete [] tform[ii];
|
---|
1418 | }
|
---|
1419 | delete [] ttype;
|
---|
1420 | delete [] tform;
|
---|
1421 | //
|
---|
1422 | // write supplementary keywords
|
---|
1423 | if (ptr_dvl != NULL) addKeywordsOfDVList(*ptr_dvl);
|
---|
1424 | }
|
---|
1425 |
|
---|
1426 | /*! \fn void SOPHYA::FitsOutFile::PutColToFits(int nocol, int nentries, double* donnees) const
|
---|
1427 |
|
---|
1428 | write double data from array 'donnees ' on column number 'nocol' of a BINTABLE extension.
|
---|
1429 | \param <nentries> number of data to be written
|
---|
1430 | */
|
---|
1431 | void FitsOutFile::PutColToFits(int nocol, int nentries, double* donnees) const
|
---|
1432 | {
|
---|
1433 | int status = 0;
|
---|
1434 | int hdutype;
|
---|
1435 | fits_movabs_hdu(fptr_,hdunum_,&hdutype,&status);
|
---|
1436 | if( status ) printerror(status,"PutColToFits: le movabs a foire");
|
---|
1437 | fits_get_hdu_type(fptr_, &hdutype, &status);
|
---|
1438 | if(hdutype != ASCII_TBL && hdutype != BINARY_TBL)
|
---|
1439 | {
|
---|
1440 | cout << " hdunum= " << hdunum_ << " hdutype= " << hdutype << endl;
|
---|
1441 | throw IOExc("FitsFile::PutColToFits, this HDU is not an ASCII table nor a binary table");
|
---|
1442 | }
|
---|
1443 | int code;
|
---|
1444 | long repeat, width;
|
---|
1445 | fits_get_coltype(fptr_, nocol+1, &code, &repeat,&width, &status);
|
---|
1446 | if( code != TDOUBLE)
|
---|
1447 | {
|
---|
1448 | cout << " WARNING : types don't match (PutColToFits) : on fits file= " << code << " to be written= DOUBLE " << endl;
|
---|
1449 | }
|
---|
1450 | fits_write_col(fptr_,TDOUBLE,nocol+1,1,1,nentries, donnees ,&status);
|
---|
1451 | if( status ) printerror( status,"erreur ecriture du fichier fits" );
|
---|
1452 | }
|
---|
1453 |
|
---|
1454 |
|
---|
1455 |
|
---|
1456 | /*! \fn void SOPHYA::FitsOutFile::PutColToFits(int nocol, int nentries, float* donnees) const
|
---|
1457 |
|
---|
1458 | same as previous method with float data
|
---|
1459 | */
|
---|
1460 | void FitsOutFile::PutColToFits(int nocol, int nentries, float* donnees) const
|
---|
1461 | {
|
---|
1462 | int status = 0;
|
---|
1463 | int hdutype;
|
---|
1464 | fits_movabs_hdu(fptr_,hdunum_,&hdutype,&status);
|
---|
1465 | if( status ) printerror(status,"PutColToFits: le movabs a foire");
|
---|
1466 | fits_get_hdu_type(fptr_, &hdutype, &status);
|
---|
1467 | if(hdutype != ASCII_TBL && hdutype != BINARY_TBL)
|
---|
1468 | {
|
---|
1469 | cout << " hdunum= " << hdunum_ << " hdutype= " << hdutype << endl;
|
---|
1470 | throw IOExc("FitsFile::PutColToFits, this HDU is not an ASCII table nor a binary table");
|
---|
1471 | }
|
---|
1472 | if(hdutype == ASCII_TBL && nocol>0)
|
---|
1473 | {
|
---|
1474 | throw IOExc("FitsFile::PutColToFits, this HDU is an ASCII table, nocol>0 forbidden");
|
---|
1475 | }
|
---|
1476 | int code;
|
---|
1477 | long repeat, width;
|
---|
1478 | fits_get_coltype(fptr_, nocol+1, &code, &repeat,&width, &status);
|
---|
1479 | if( code != TFLOAT)
|
---|
1480 | {
|
---|
1481 | cout << " WARNING : types don't match (PutColToFits) : on fits file= " << code << " (FITS code), to be written= FLOAT " << endl;
|
---|
1482 | }
|
---|
1483 | fits_write_col(fptr_,TFLOAT,nocol+1,1,1,nentries, donnees ,&status);
|
---|
1484 | if( status ) printerror( status,"erreur ecriture du fichier fits" );
|
---|
1485 | }
|
---|
1486 |
|
---|
1487 |
|
---|
1488 | /*! \fn void FitsOutFile::PutColToFits(int nocol, int nentries, int* donnees) const
|
---|
1489 |
|
---|
1490 | same as previous method with int data
|
---|
1491 | */
|
---|
1492 | void FitsOutFile::PutColToFits(int nocol, int nentries, int* donnees) const
|
---|
1493 | {
|
---|
1494 | int status = 0;
|
---|
1495 | int hdutype;
|
---|
1496 | fits_movabs_hdu(fptr_,hdunum_,&hdutype,&status);
|
---|
1497 | if( status ) printerror(status,"PutColToFits: le movabs a foire");
|
---|
1498 | fits_get_hdu_type(fptr_, &hdutype, &status);
|
---|
1499 | if(hdutype != ASCII_TBL && hdutype != BINARY_TBL)
|
---|
1500 | {
|
---|
1501 | cout << " hdunum= " << hdunum_ << " hdutype= " << hdutype << endl;
|
---|
1502 | throw IOExc("FitsFile::PutColToFits, this HDU is not an ASCII table nor a binary table");
|
---|
1503 | }
|
---|
1504 | if(hdutype == ASCII_TBL && nocol>0)
|
---|
1505 | {
|
---|
1506 | throw IOExc("FitsFile::PutColToFits, this HDU is an ASCII table, nocol>0 forbidden");
|
---|
1507 | }
|
---|
1508 | int code;
|
---|
1509 | long repeat, width;
|
---|
1510 | fits_get_coltype(fptr_, nocol+1, &code, &repeat,&width, &status);
|
---|
1511 | if( code != TLONG && code != TINT && code != TSHORT )
|
---|
1512 | {
|
---|
1513 | cout << " WARNING : types don't match (PutColToFits) : on fits file= " << code << " (FITS code), to be written= INT " << endl;
|
---|
1514 | }
|
---|
1515 | fits_write_col(fptr_,TINT,nocol+1,1,1,nentries, donnees ,&status);
|
---|
1516 | if( status ) printerror( status," ecriture du fichier fits" );
|
---|
1517 | }
|
---|
1518 |
|
---|
1519 |
|
---|
1520 | /*! \fn void SOPHYA::FitsOutFile::PutColToFits(int nocol, int nentries, char** donnees) const
|
---|
1521 | same as previous method with char* data
|
---|
1522 | */
|
---|
1523 | void FitsOutFile::PutColToFits(int nocol, int nentries, char** donnees) const
|
---|
1524 | {
|
---|
1525 | int status = 0;
|
---|
1526 | int hdutype;
|
---|
1527 | fits_movabs_hdu(fptr_,hdunum_,&hdutype,&status);
|
---|
1528 | if( status ) printerror(status,"PutColToFits: le movabs a foire");
|
---|
1529 | fits_get_hdu_type(fptr_, &hdutype, &status);
|
---|
1530 | if(hdutype != ASCII_TBL && hdutype != BINARY_TBL)
|
---|
1531 | {
|
---|
1532 | cout << " hdunum= " << hdunum_ << " hdutype= " << hdutype << endl;
|
---|
1533 | throw IOExc("FitsFile::PutColToFits, this HDU is not an ASCII table nor a binary table");
|
---|
1534 | }
|
---|
1535 | if(hdutype == ASCII_TBL && nocol>0)
|
---|
1536 | {
|
---|
1537 | throw IOExc("FitsFile::PutColToFits, this HDU is an ASCII table, nocol>0 forbidden");
|
---|
1538 | }
|
---|
1539 | int code;
|
---|
1540 | long repeat, width;
|
---|
1541 | fits_get_coltype(fptr_, nocol+1, &code, &repeat,&width, &status);
|
---|
1542 | if( code != TSTRING)
|
---|
1543 | {
|
---|
1544 | cout << " WARNING : types don't match (PutColToFits) : on fits file= " << code << " (FITS code), to be written= char** " << endl;
|
---|
1545 | }
|
---|
1546 | fits_write_col(fptr_,TSTRING,nocol+1,1,1,nentries, donnees ,&status);
|
---|
1547 | if( status ) printerror( status,"erreur ecriture du fichier fits" );
|
---|
1548 | }
|
---|
1549 |
|
---|
1550 | void FitsOutFile::PutBinTabLine(long NoLine, BnTblLine& ligne) const
|
---|
1551 | {
|
---|
1552 | // on ne fait pas de verification de type, ni de dimension ici, pour
|
---|
1553 | // des raisons de performances
|
---|
1554 | int k;
|
---|
1555 | int status= 0;
|
---|
1556 | int anull;
|
---|
1557 | int ncol=0;
|
---|
1558 | long nels=1;
|
---|
1559 | // int nbcols;
|
---|
1560 | // fits_get_num_cols(fptr_, &nbcols,&status);
|
---|
1561 | for (k=0; k<ligne.ddata_.size(); k++, ncol++)
|
---|
1562 | {
|
---|
1563 | fits_write_col(fptr_,TDOUBLE,ncol+1,NoLine+1,1,1, &ligne.ddata_[k] ,&status);
|
---|
1564 | if( status ) printerror( status, "PutBinTabLine : erreur ecriture double" );
|
---|
1565 | }
|
---|
1566 | for (k=0; k<ligne.fdata_.size(); k++, ncol++)
|
---|
1567 | {
|
---|
1568 | fits_write_col(fptr_,TFLOAT,ncol+1,NoLine+1,1,1, &ligne.fdata_[k] ,&status);
|
---|
1569 | if( status ) printerror( status, "PutBinTabLine : erreur ecriture float" );
|
---|
1570 | }
|
---|
1571 | for (k=0; k<ligne.idata_.size(); k++, ncol++)
|
---|
1572 | {
|
---|
1573 | fits_write_col(fptr_,TINT,ncol+1,NoLine+1,1,1, &ligne.idata_[k] ,&status);
|
---|
1574 | if( status ) printerror( status, "PutBinTabLine : erreur ecriture entier" );
|
---|
1575 | }
|
---|
1576 |
|
---|
1577 | for (k=0; k<ligne.cdata_.size(); k++, ncol++)
|
---|
1578 | {
|
---|
1579 | fits_write_col(fptr_,TSTRING,ncol+1,NoLine+1,1,1, (void*)ligne.cdata_[k].c_str() ,&status);
|
---|
1580 | if( status ) printerror( status, "PutBinTabLine : erreur ecriture caracteres" );
|
---|
1581 | }
|
---|
1582 | }
|
---|
1583 |
|
---|
1584 |
|
---|
1585 | /* \fn void SOPHYA::FitsOutFile::DVListIntoPrimaryHeader(DVList& dvl) const
|
---|
1586 |
|
---|
1587 | Put keywords from a DVList into the primary header of the fits-file
|
---|
1588 | */
|
---|
1589 | void FitsOutFile::DVListIntoPrimaryHeader(DVList& dvl)
|
---|
1590 | {
|
---|
1591 | int status = 0;
|
---|
1592 | int hdutype;
|
---|
1593 | if (hdunum_ == 0)
|
---|
1594 | {
|
---|
1595 | if (dvlToPrimary_ == NULL) dvlToPrimary_ = new DVList(dvl);
|
---|
1596 | else dvlToPrimary_->Merge(dvl);
|
---|
1597 | }
|
---|
1598 | else
|
---|
1599 | {
|
---|
1600 | fits_movabs_hdu(fptr_,1,&hdutype,&status);
|
---|
1601 | addKeywordsOfDVList(dvl);
|
---|
1602 | fits_movabs_hdu(fptr_,hdunum_,&hdutype,&status);
|
---|
1603 | }
|
---|
1604 | }
|
---|
1605 |
|
---|
1606 |
|
---|
1607 | void FitsOutFile::writeSignatureOnFits(int hdunum) const
|
---|
1608 | {
|
---|
1609 | int status = 0;
|
---|
1610 | int hdutype;
|
---|
1611 | char keyname[LEN_KEYWORD];
|
---|
1612 | char strval[FLEN_VALUE];
|
---|
1613 | char comment[FLEN_COMMENT];
|
---|
1614 | if (hdunum_ == 0)
|
---|
1615 | {
|
---|
1616 | cerr << " WARNING : can't write keywords on non existing primary header" << endl;
|
---|
1617 | return;
|
---|
1618 | }
|
---|
1619 | fits_movabs_hdu(fptr_,1,&hdutype,&status);
|
---|
1620 | //
|
---|
1621 | strncpy(keyname, "CREATOR", LEN_KEYWORD);
|
---|
1622 | keyname[LEN_KEYWORD-1] = '\0';
|
---|
1623 | strcpy(strval, "SOPHYA");
|
---|
1624 | strcpy(comment," SOPHYA Package - FITSIOServer ");
|
---|
1625 | fits_write_key(fptr_, TSTRING, keyname, &strval, comment, &status);
|
---|
1626 | if( status ) printerror( status );
|
---|
1627 | fits_write_date(fptr_, &status);
|
---|
1628 | fits_write_comment(fptr_,"..............................................", &status);
|
---|
1629 | fits_write_comment(fptr_, " SOPHYA package - FITSIOSever ", &status);
|
---|
1630 | fits_write_comment(fptr_, " (C) LAL/IN2P3-CNRS Orsay, FRANCE 2000", &status);
|
---|
1631 | fits_write_comment(fptr_, " (C) DAPNIA/CEA Saclay, FRANCE 2000", &status);
|
---|
1632 | fits_write_comment(fptr_,"..............................................", &status);
|
---|
1633 | if( status ) printerror( status, "erreur writeSignatureOnFits" );
|
---|
1634 | //
|
---|
1635 | fits_movabs_hdu(fptr_,hdunum_,&hdutype,&status);
|
---|
1636 | }
|
---|
1637 |
|
---|
1638 |
|
---|
1639 | void FitsOutFile::addKeywordsOfDVList( DVList& dvl) const
|
---|
1640 | {
|
---|
1641 | int status = 0;
|
---|
1642 | fits_write_comment(fptr_,"---------- keywords from SOPHYA ---------", &status);
|
---|
1643 | DVList::ValList::const_iterator it;
|
---|
1644 | for(it = dvl.Begin(); it != dvl.End(); it++)
|
---|
1645 | {
|
---|
1646 | MuTyV::MTVType keytype= (*it).second.elval.Type();
|
---|
1647 | char keyname[10];
|
---|
1648 | strncpy(keyname,(*it).first.substr(0,64).c_str(),10);
|
---|
1649 | string key(keyname);
|
---|
1650 | char comment[FLEN_COMMENT];
|
---|
1651 | char strval[FLEN_VALUE]= "";
|
---|
1652 | char *comkey = "COMMENT";
|
---|
1653 | fits_read_keyword(fptr_, keyname, strval, NULL, &status);
|
---|
1654 | if (status != 0 || strncmp(keyname,comkey,LEN_KEYWORD-1) == 0 )
|
---|
1655 | {
|
---|
1656 | string coco = dvl.GetComment(key);
|
---|
1657 | coco.copy( comment, FLEN_COMMENT-1);
|
---|
1658 | int bout = (coco.length() < FLEN_COMMENT) ? coco.length() : FLEN_COMMENT-1;
|
---|
1659 | comment[bout]= '\0';
|
---|
1660 | status = 0;
|
---|
1661 | switch (keytype)
|
---|
1662 | {
|
---|
1663 | case MuTyV::MTVInteger :
|
---|
1664 | {
|
---|
1665 | int ival = (int)dvl.GetI(key);
|
---|
1666 | fits_write_key(fptr_,TINT,keyname,&ival, comment,&status);
|
---|
1667 | break;
|
---|
1668 | }
|
---|
1669 | case MuTyV::MTVFloat :
|
---|
1670 | {
|
---|
1671 | double dval= (double)dvl.GetD(key);
|
---|
1672 | fits_write_key(fptr_,TDOUBLE,keyname,&dval,comment,&status);
|
---|
1673 | break;
|
---|
1674 | }
|
---|
1675 | case MuTyV::MTVString :
|
---|
1676 | {
|
---|
1677 | char strvaleur[FLEN_VALUE]= "";
|
---|
1678 | string valChaine = dvl.GetS(key);
|
---|
1679 | valChaine.copy(strvaleur, FLEN_VALUE-1);
|
---|
1680 | int fin = (valChaine.length() < FLEN_VALUE) ? valChaine.length() : FLEN_VALUE-1;
|
---|
1681 | strvaleur[fin]= '\0';
|
---|
1682 |
|
---|
1683 | fits_write_key(fptr_,TSTRING,keyname,&strvaleur,comment,&status);
|
---|
1684 | break;
|
---|
1685 | }
|
---|
1686 | }
|
---|
1687 | }
|
---|
1688 | if( status ) printerror( status,"fitsfile: probleme ecriture mot-cle du dvlist" );
|
---|
1689 | }
|
---|
1690 | fits_write_comment(fptr_,"--------------------------------------", &status);
|
---|
1691 | }
|
---|
1692 |
|
---|
1693 |
|
---|
1694 | void FitsOutFile::addDVListOnPrimary()
|
---|
1695 | {
|
---|
1696 | int status = 0;
|
---|
1697 | int hdutype;
|
---|
1698 | if (hdunum_ == 0)
|
---|
1699 | {
|
---|
1700 | cerr << " WARNING : can't write keywords on non existing primary header" << endl;
|
---|
1701 | return;
|
---|
1702 | }
|
---|
1703 | if (dvlToPrimary_ != NULL)
|
---|
1704 | {
|
---|
1705 | fits_movabs_hdu(fptr_,1,&hdutype,&status);
|
---|
1706 | addKeywordsOfDVList(*dvlToPrimary_);
|
---|
1707 | delete dvlToPrimary_;
|
---|
1708 | dvlToPrimary_ = NULL;
|
---|
1709 | fits_movabs_hdu(fptr_,hdunum_,&hdutype,&status);
|
---|
1710 | }
|
---|
1711 | }
|
---|
1712 |
|
---|