source: Sophya/trunk/SophyaExt/FitsIOServer/fabtwriter.h@ 2169

Last change on this file since 2169 was 2169, checked in by cmv, 23 years ago

long long gestion cfistio>2.4 (compat <2.4) cmv 8/8/2002

File size: 3.1 KB
Line 
1/* Interface Fits BINARY/ASCII Table Writer cmv 26/09/2001 */
2#ifndef FABTWRITER_H_SEEN
3#define FABTWRITER_H_SEEN
4
5#include "machdefs.h"
6#include <iostream.h>
7#include <string.h>
8#include <string>
9
10#include "anydataobj.h"
11#include "tvector.h"
12#include "FitsIO/fitsio.h"
13
14#include <vector>
15
16namespace SOPHYA {
17
18//! Class for writing a FITS ASCII or BINARY table
19class FitsABTWriter : public AnyDataObj {
20public:
21 FitsABTWriter(string fname,int hdutype=BINARY_TBL,int lp=0);
22 FitsABTWriter(const char* cfname,int hdutype=BINARY_TBL,int lp=0);
23 virtual ~FitsABTWriter();
24
25 void Flush(void);
26
27 //! Write a double value in Fits header.
28 void WriteKey(const char *keyname,double val,char* comment=NULL);
29 //! Write a long value in Fits header.
30 void WriteKey(const char *keyname,long val,char* comment=NULL);
31
32 //! Add a new column to the FITS table and return its number (see addcol).
33 inline int AddCol(string label,string tform=string("")
34 ,string tunit=string(""),int datatype=TDOUBLE)
35 {return addcol(label.c_str(),tform.c_str(),tunit.c_str(),datatype);}
36 //! Add a new column to the FITS table and return its number (see addcol).
37 inline int AddCol(const char* label,const char* tform=""
38 ,const char* tunit="",int datatype=TDOUBLE)
39 {return addcol(label,tform,tunit,datatype);}
40
41 //! Set the FITS table extension name
42 inline void SetExtName(string extname=string("")) {ExtName = extname;}
43 //! Set the FITS table extension name
44 inline void SetExtName(char* extname="") {ExtName = extname;}
45 //! Set debug level
46 inline void SetDebug(int lp=0) {DbgLevel = (unsigned short) lp;}
47
48 void Write(int col,long row,short val);
49 void Write(int col,long row,int_4 val);
50 void Write(int col,long row,int_8 val);
51 void Write(int col,long row,float val);
52 void Write(int col,long row,double val);
53 long Write(int col,long row,TVector<int_4>& val);
54 long Write(int col,long row,TVector<int_8>& val);
55 long Write(int col,long row,TVector<float>& val);
56 long Write(int col,long row,TVector<double>& val);
57 //! Return the number of overflows managed by cfitsio
58 inline unsigned long GetNOverFlow(void) {return NOverFlow;}
59
60 //! Return the number of created columns
61 inline int GetNbCol(void) {return (int) Label.size();}
62
63 //! Print to os
64 virtual void Print(ostream& os,int lp=1) const;
65 //! Print to stdout
66 inline void Print(int lp=1) const {Print(cout,lp);}
67
68protected:
69 struct KeyDouble {string keyname; double val; string comment;};
70 struct KeyLong {string keyname; long val; string comment;};
71
72 void createfits(const char *cfname,int hdutype,int lp);
73 int addcol(const char* label,const char* tform
74 ,const char* tunit,int datatype);
75 void createtbl(void);
76 void writekeys(void);
77 void printerrorwrite(const char* type,int col,long row,int sta);
78 void printerror(int sta) const;
79
80 string FitsFN,ExtName;
81 int HduType;
82 unsigned short DbgLevel;
83 fitsfile *FitsPtr;
84 bool FirstTime;
85 vector<string> Label;
86 vector<string> TForm;
87 vector<string> TUnit;
88 unsigned long NOverFlow;
89
90 vector<struct KeyDouble> DoubleKey;
91 vector<struct KeyLong> LongKey;
92};
93
94} // namespace SOPHYA
95#endif /* FABTWRITER_H_SEEN */
Note: See TracBrowser for help on using the repository browser.