source: Sophya/trunk/ArchTOIPipe/Kernel/fitstoiwtr.cc@ 1454

Last change on this file since 1454 was 1442, checked in by ansari, 25 years ago

Ajout de processeurs simples - Deglitcher + Filtre, + programme test - Reza 15/3/2001

File size: 3.9 KB
Line 
1#include "fitstoiwtr.h"
2#include "toimanager.h"
3
4
5
6extern void fits_lock();
7extern void fits_unlock();
8
9FITSTOIWriter::FITSTOIWriter(string fn) {
10 fname = fn;
11 fstatus = 0;
12 outFlags = false;
13
14 // Open file
15 remove(fname.c_str());
16 fits_lock();
17 fits_create_file(&fptr,fname.c_str(),&fstatus);
18 fits_unlock();
19 name = "wtr";
20}
21
22FITSTOIWriter::~FITSTOIWriter() {
23}
24
25void FITSTOIWriter::setOutFlags(bool yn) {
26 outFlags = yn;
27}
28
29void FITSTOIWriter::addInput(string name, TOI* toi) {
30 declareInput(name);
31 fwinputs.push_back(toi);
32}
33
34void FITSTOIWriter::afterinit()
35{
36 if (inTOIs) delete[] inTOIs;
37 inTOIs = new (TOI*[fwinputs.size()]);
38
39 for (int i=0; i<fwinputs.size(); i++) {
40 inTOIs[i] = fwinputs[i];
41 }
42
43}
44
45void FITSTOIWriter::run() {
46 cout << "fitstoiwriter running" << endl;
47 // init done here
48 afterinit();
49 inited=true;
50
51 int ndata = inIx.size();
52 int ncols = inIx.size() * (outFlags ? 2 : 1) + 1;
53
54 char** colnames = new (char*[ncols]);
55 char** coltypes = new (char*[ncols]);
56 char** colunits = new (char*[ncols]);
57
58 colnames[0] = "samplenum";
59 coltypes[0] = "1D";
60 colunits[0] = "integer";
61
62 cout << " FITSTOIWriter::run() - Creating output FITS file: "
63 << name << endl;
64
65 vector<string> coln;
66 int ck=0;
67 for (map<string, int>::iterator ii = inIx.begin(); ii != inIx.end(); ii++) {
68 int j = (*ii).second;
69 coln.push_back((*ii).first);
70 if (outFlags) j += j;
71 colnames[j+1] = const_cast<char*>(coln[ck].c_str());
72 cout << " Column[" << j+1 << "] Name=" << coln[ck] << endl;
73 ck++;
74 coltypes[j+1] = "1D";
75 colunits[j+1] = "double";
76 if (outFlags) {
77 coln.push_back("fg_" + coln[ck-1]);
78 colnames[j+2] = const_cast<char*>(coln[ck].c_str());
79 cout << " Column[" << j+1 << "] -Flag- Name=" << coln[ck] << endl;
80 ck++;
81 coltypes[j+2] = "1D";
82 colunits[j+2] = "IntFlag";
83 }
84 }
85
86 fits_lock();
87 fits_create_tbl(fptr, BINARY_TBL, 0, ncols, colnames, coltypes, colunits, NULL, &fstatus);
88 fits_write_date(fptr, &fstatus);
89 fits_unlock();
90
91 delete[] colunits;
92 delete[] coltypes;
93 delete[] colnames;
94
95 // Add headers ?
96
97 // loop
98
99 int fitsLine = 1;
100 int snb = getMinIn();
101 int sne = getMaxIn();
102
103 double* tabdata = new double[ndata];
104 double* tabflag = new double[ndata]; // ? pas integer ?? $CHECK$ - Reza
105 bool* tabck = new bool[ndata];
106 int i;
107 for(i=0; i<ndata; i++) {
108 tabdata[i] = -9.e19; // $CHECK$ - Reza valeur par defaut !
109 tabflag[i] = -9.e19; // $CHECK$ - Reza valeur par defaut !
110 tabck[i] = checkInputTOIIndex(i);
111 }
112
113 for (int sn = snb; sn <= sne; sn++) {
114 // if ((sn%2000 == 0) || (sn<snb+5))
115 // cout << " DBG-A-FitsWriter::run()" << sn << endl;
116 try {
117 for (i=0; i<ndata; i++) {
118 if (tabck[i]) {
119 tabdata[i] = getData(i, sn);
120 if (outFlags) tabflag[i] = getFlag(i, sn);
121 }
122 }
123 fits_lock();
124 // if ((sn%2000 == 0) || (sn<snb+5))
125 //cout << " DBG-B-FitsWriter::run()" << sn << endl;
126 double xx = sn;
127 fits_write_col_dbl(fptr, 1, fitsLine, 1, 1, &xx, &fstatus);
128
129 for (i=0; i<ndata; i++) {
130 if (outFlags) {
131 fits_write_col_dbl(fptr, 2*i+2, fitsLine, 1, 1, tabdata+i, &fstatus);
132 fits_write_col_dbl(fptr, 2*i+3, fitsLine, 1, 1, tabflag+i, &fstatus);
133 } else {
134 fits_write_col_dbl(fptr, i+2, fitsLine, 1, 1, tabdata+i, &fstatus);
135 }
136 if (fstatus != 0) {
137 cerr << "fitstoiwtr error sn = " << sn << " i = "<< i << endl;
138 fits_report_error(stderr, fstatus);
139 abort();
140 }
141 }
142 fits_unlock();
143 // if ((sn%2000 == 0) || (sn<snb+5))
144 // cout << " DBG-C-FitsWriter::run()" << sn << " line=" << fitsLine << endl;
145 fitsLine++;
146 } catch (PException e) {
147 cout << "fitstoiwtr exception " << e.Msg() << endl;
148 continue;
149 }
150 }
151
152 delete[] tabdata;
153 delete[] tabflag;
154 delete[] tabck;
155
156 fits_lock();
157 fits_close_file(fptr, &fstatus);
158 fits_report_error(stderr, fstatus);
159 fits_unlock();
160 cout << "fitstoiwriter done fitsLine= " << fitsLine << endl;
161}
162
163
164
165
166
167
168
169
Note: See TracBrowser for help on using the repository browser.