File: vmastrometrictable.c

package info (click to toggle)
cpl-plugin-vimos 2.9.15%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 18,560 kB
  • ctags: 6,341
  • sloc: ansic: 148,777; sh: 11,457; cpp: 724; makefile: 606; python: 287; perl: 10
file content (326 lines) | stat: -rw-r--r-- 7,662 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
/* $Id: vmastrometrictable.c,v 1.2 2013-03-25 11:43:04 cgarcia Exp $
 *
 * This file is part of the VIMOS Pipeline
 * Copyright (C) 2002-2004 European Southern Observatory
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#ifdef HAVE_CONFIG_H
#  include <config.h>
#endif

#include <string.h>

#include <fitsio.h>

#include <pilmessages.h>
#include <cpl_msg.h>

#include "vmtable.h"
#include "vmmath.h"
#include "vmastrometrictable.h"


/**
 * @name vmastrometrictable Astrometric Table
 *
 * The module astrometricTableFits includes the functions to treat 
 * fits astrometric tables.
 */

/**@{*/

/*
 *  Allocate a new AST Table. This is a VimosTable with name VM_AST (which
 * should have value "AST").
 */

VimosTable *newAstrometricTable()
{
  VimosTable *newTab;

  /* allocate new VimosTable */
  newTab = newTable();

  /* if error, exit(-1) */
  if (newTab == NULL) {
    return NULL;
  }

  /* copy "STAR" into name of table */
  strcpy(newTab->name, VM_AST);
  newTab->descs = newStringDescriptor("ESO PRO TABLE", VM_AST, "");

  /* return address of new Astrometric Table */
  return(newTab);

}

/*
  Delete an Astrometric Table. This is just an esthetic wrapper for
  deleteTable(astroTable)
*/
void deleteAstrometricTable(VimosTable *astroTable)
{
  deleteTable(astroTable);
}


/** 
 * @memo 
 *  Read astrometric Table from fitsfile (the file has to be open)
 *
 * @return VM_TRUE or VM_FALSE. 
 *
 * @param astTable        astrometric Table
 * @param fptr            pointer to fitsfile 
 *
 * @doc 
 *   Read astrometric Table from fitsfile (the file has to be already open)
 *
 * @author P. Sartoretti
 */


VimosBool readFitsAstrometricTable(VimosTable *astTable, fitsfile *fptr)
{

 int status = 0;
 char     modName[] = "readFitsAstrometricTable";

  /* validate input */
  if (astTable == NULL) {
    cpl_msg_error(modName,"NULL input table");
    return (VM_FALSE);
  }

  if (fptr == NULL) {
    cpl_msg_error(modName,"NULL pointer to fitsfile");
    return (VM_FALSE);
  }
  
  if ( strcmp(astTable->name, VM_AST) ) {
    cpl_msg_error(modName,"Invalid input table");
    return (VM_FALSE);
  }


/* open Table */
  if (fits_movnam_hdu(fptr, BINARY_TBL, VM_AST, 0, &status)) {
    cpl_msg_error(modName,"The function fits_movnam_hdu has returned an  "
		"error (code %d)", status);
    return(VM_FALSE);
  }

  astTable->fptr = fptr;

   
 /* read Table */

  if(!readFitsTable(astTable, astTable->fptr)) {
    cpl_msg_error(modName, "Error in reading the FITS file");
    return VM_FALSE;
  }
  
  /* check if all the descriptors and columns (with rigth name) are 
   present*/
  if(!checkAstrometricTable(astTable)) {
    cpl_msg_error(modName, "Astrometric table is incomplete");
    return VM_FALSE;
  }
  return VM_TRUE;
}


/** 
 * @memo 
 *  Write astrometric Table to fitsfile 
 *
 * @return VM_TRUE or VM_FALSE. 
 *
 * @param astTable        astrometric Table
 * @param filename        name of the fitsfile 
 *
 * @doc 
 *   Write astrometric Table to fitsfile 
 *
 * @author P. Sartoretti
 */

VimosBool writeFitsAstrometricTable(char *filename, VimosTable *astTable)
{
  char modName[]  = "writeFitsAstrometricTable";

 /* 
  * validate input 
  */
  if (astTable == NULL) {
    cpl_msg_error(modName,"NULL input table");
    return(VM_FALSE);
  }
  
  /*
   * check table 
   */
  if(!checkAstrometricTable(astTable)) {
    cpl_msg_error(modName, "Astrometric table is incomplete");
    return VM_FALSE;
  }
  if(!createFitsTable(filename, astTable, VM_AST)) {
    cpl_msg_error(modName, "Error in writing fits table");
    return VM_FALSE;
  }
  return VM_TRUE;
}


/** 
 * @memo 
 *  Check the astrometric Table 
 *
 * @return VM_TRUE or VM_FALSE. 
 *
 * @param astTable        astrometric Table 
 *
 * @doc 
 *   Check if all keywords and columns of the astrometric Table are there
 *
 * @author P. Sartoretti
 */
  
VimosBool checkAstrometricTable(VimosTable *astTable)
{
  char modName[]   = "checkAstrometricTable";
  VimosColumn *column;
  int count = 0;

  if(astTable == NULL) {
    cpl_msg_info(modName, "Null Input Table");
    return VM_FALSE;
  }

  if (strcmp(astTable->name, VM_AST)) {
    cpl_msg_error(modName, "Invalid input table");
    return(VM_FALSE);
  }

  if ((column = findColInTab(astTable, "ID"))) { 
    if (column->colType != VM_STRING) {
      cpl_msg_error(modName, "Column ID has wrong type - should be VM_STRING");
      return VM_FALSE;
    }
  }
  else {
    cpl_msg_error(modName, "Column ID not found");
    return VM_FALSE;
  }

  if ((column = findColInTab(astTable, "RA"))) {
    if (column->colType != VM_DOUBLE) {
      cpl_msg_error(modName, "Column RA has wrong type - should be VM_DOUBLE");
      return VM_FALSE;
    }
  } 
  else { 
    cpl_msg_error(modName, "Column RA not found");
    return VM_FALSE;
  }
  
  if ((column = findColInTab(astTable, "DEC"))) { 
    if (column->colType != VM_DOUBLE) {
      cpl_msg_error(modName, "Column DEC has wrong type - should be VM_DOUBLE");
      return VM_FALSE; 
    } 
  }  
  else { 
    cpl_msg_error(modName, "Column DEC not found");
    return VM_FALSE;
  }
 
  if ((column = findColInTab(astTable, "MAG_U"))) { 
    if (column->colType != VM_DOUBLE) {
      cpl_msg_error(modName, "Column MAG_U wrong type - should be VM_DOUBLE");
      return VM_FALSE; 
    } 
  }  
  else { 
    cpl_msg_warning(modName, "Column MAG_U not found");
    count++;
  }

  if ((column = findColInTab(astTable, "MAG_B"))) { 
    if (column->colType != VM_DOUBLE) {
      cpl_msg_error(modName, "Column MAG_B wrong type - should be VM_DOUBLE");
      return VM_FALSE; 
    } 
  }  
  else { 
    cpl_msg_warning(modName, "Column MAG_B not found");
    count++;
  }

  if ((column = findColInTab(astTable, "MAG_V"))) { 
    if (column->colType != VM_DOUBLE) {
      cpl_msg_error(modName, "Column MAG_V wrong type - should be VM_DOUBLE");
      return VM_FALSE; 
    } 
  }  
  else { 
    cpl_msg_warning(modName, "Column MAG_V not found");
    count++;
  }

  if ((column = findColInTab(astTable, "MAG_R"))) { 
    if (column->colType != VM_DOUBLE) {
      cpl_msg_error(modName, "Column MAG_R wrong type - should be VM_DOUBLE");
      return VM_FALSE; 
    } 
  }  
  else { 
    cpl_msg_warning(modName, "Column MAG_R not found");
    count++;
  }

  if ((column = findColInTab(astTable, "MAG_I"))) { 
    if (column->colType != VM_DOUBLE) {
      cpl_msg_error(modName, "Column MAG_I wrong type - should be VM_DOUBLE");
      return VM_FALSE; 
    } 
  }  
  else { 
    cpl_msg_warning(modName, "Column MAG_I not found");
    count++;
  }

  if ((column = findColInTab(astTable, "MAG_z"))) { 
    if (column->colType != VM_DOUBLE) {
      cpl_msg_error(modName, "Column MAG_z wrong type - should be VM_DOUBLE");
      return VM_FALSE; 
    } 
  }  
  else { 
    cpl_msg_warning(modName, "Column MAG_z not found");
    count++;
  }

  if (count == 6) { 
    cpl_msg_error(modName, "No magnitude column found");
    return VM_FALSE;
  }

  return VM_TRUE;
}
/**@}*/