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 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
|
/*===========================================================================
Copyright (C) 2001 European Southern Observatory (ESO)
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., 675 Massachusetss Ave, Cambridge,
MA 02139, USA.
Corresponding concerning ESO-MIDAS should be addressed as follows:
Internet e-mail: midas@eso.org
Postal address: European Southern Observatory
Data Management Division
Karl-Schwarzschild-Strasse 2
D 85748 Garching bei Muenchen
GERMANY
===========================================================================*/
/* Program : writeframe.c */
/* Author : G. Mulas - ITAL_FLAMES Consortium */
/* Date : */
/* */
/* Purpose : Missing */
/* */
/* */
/* Input: see interface */
/* */
/* Output: */
/* */
/* DRS Functions called: */
/* none */
/* */
/* Pseudocode: */
/* Missing */
/* */
/* Version : */
/* Last modification date: 2002/08/05 */
/* Who When Why Where */
/* AMo 02-08-05 Add header header */
/*-------------------------------------------------------------------------*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#include <stdio.h>
#include <math.h>
#include <flames_midas_def.h>
#include <flames_uves.h>
#include <flames_stripfitsext.h>
#include <flames_writeframe.h>
#include <flames_newmatrix.h>
flames_err writeframe(flames_frame *myframe, char *framename, char *templatefile)
{
char basename[CATREC_LEN+1];
char filename[CATREC_LEN+1];
int dataid=0;
int sigmaid=0;
int badid=0;
int templateid=0;
char cdummy[CATREC_LEN+1];
char ident[73];
char cunit[3][17];
float lhcuts[4]={0,0,0,0};
int unit=0;
frame_data minimum=0;
frame_data maximum=0;
int maxfibres=0;
int naxis=0;
int nflats=0;
int status=0;
frame_data *fdvecbuf1=0;
int32_t iyixend=0;
int32_t iyixindex=0;
memset(basename, '\0', CATREC_LEN+1);
memset(filename, '\0', CATREC_LEN+1);
memset(cdummy, '\0', CATREC_LEN+1);
memset(ident, '\0', 73);
memset(cunit[0], '\0', 51);
iyixend = (myframe->subrows*myframe->subcols)-1;
/* find out whether the framename includes the .fits extension or not */
if ((status = stripfitsext(framename, basename)) != NOERR) {
/* problems stripping extension */
return(MAREMMA);
}
/* create the actual data file */
sprintf(filename,"%s.fits",basename);
/* create the normalised data frame on disk */
if ((status = SCFCRE(filename, FLAMESDATATYPE, F_O_MODE, F_IMA_TYPE,
myframe->subrows*myframe->subcols, &dataid))
!= 0) {
/* could not create the data file */
return(MAREMMA);
}
/* have I got a template to copy the descriptors from? */
if (strlen(templatefile) > 0) {
/* it seems I do: open it */
if ((status = SCFOPN(templatefile, FLAMESDATATYPE, 0, F_IMA_TYPE,
&templateid)) != 0) {
/* I could not open the template, wrong file name? */
return(MAREMMA);
}
/* copy the descriptors to the data file */
if ((status = SCDCOP(templateid, dataid, 1)) != 0) {
/* I could not copy the descriptors */
return(MAREMMA);
}
/* close the template file */
if ((status = SCFCLO(templateid)) != 0) {
/* I could not close the template file */
return(MAREMMA);
}
}
else {
/* no template available, create and write standard descriptors */
int npix[2]={0,0};
double start[2]={0,0};
double step[2]={0,0};
memset(ident, ' ', 72);
naxis = 2;
npix[0] = (int) myframe->subcols;
npix[1] = (int) myframe->subrows;
start[0] = myframe->substartx;
start[1] = myframe->substarty;
step[0] = myframe->substepx;
step[1] = myframe->substepy;
memset(cunit[0], ' ', 16);
strncpy(cunit[1], "PIXEL ", 16);
strncpy(cunit[2], "PIXEL ", 16);
lhcuts[0] = 0;
lhcuts[1] = 0;
if ((status = SCDWRC(dataid, "IDENT", 1, ident, 1, 72, &unit)) != 0) {
/* error writing descriptor */
return(MAREMMA);
}
if ((status = SCDWRI(dataid, "NAXIS", &naxis, 1, 1, &unit)) != 0) {
/* error writing descriptor */
return(MAREMMA);
}
if (SCDWRI(dataid, "NPIX", npix, 1, 2, &unit))
{
/* error writing descriptor */
return MAREMMA;
}
if ((status = SCDWRD(dataid, "START", start, 1, 2, &unit)) != 0) {
/* error writing descriptor */
return(MAREMMA);
}
if ((status = SCDWRD(dataid, "STEP", step, 1, 2, &unit)) != 0) {
/* error writing descriptor */
return(MAREMMA);
}
if ((status = SCDWRC(dataid, "CUNIT", 16, (char*) cunit, 1, 3, &unit))
!= 0) {
/* error writing descriptor */
return(MAREMMA);
}
if ((status = SCDWRR(dataid, "LHCUTS", lhcuts, 1, 2, &unit)) != 0) {
/* error writing descriptor */
return(MAREMMA);
}
}
/* There is one descriptor I want to fill differently anyway */
/* find maximum and minimum in frame */
fdvecbuf1 = myframe->frame_array[0];
minimum = maximum = fdvecbuf1[0];
for (iyixindex=1; iyixindex<=iyixend; iyixindex++) {
if (fdvecbuf1[iyixindex]>maximum) maximum = fdvecbuf1[iyixindex];
if (fdvecbuf1[iyixindex]<minimum) minimum = fdvecbuf1[iyixindex];
}
lhcuts[0] = lhcuts[1] = 0;
lhcuts[2] = (float) minimum;
lhcuts[3] = (float) maximum;
if ((status = SCDWRR(dataid, "LHCUTS", lhcuts, 1, 4, &unit)) != 0) {
/* error writing descriptor */
return(MAREMMA);
}
/* write the scalars in descriptors */
maxfibres = myframe->maxfibres;
if ((status = SCDWRI(dataid, "MAXFIBRES", &maxfibres, 1, 1, &unit)) != 0) {
/* error writing descriptor */
return(MAREMMA);
}
if ((status = SCDWRC(dataid, "CHIPCHOICE", 1, &myframe->chipchoice, 1, 1,
&unit)) != 0) {
/* error writing descriptor */
return(MAREMMA);
}
if ((status = SCDWRD(dataid, "RON", &myframe->ron, 1, 1, &unit)) != 0) {
/* error writing descriptor */
return(MAREMMA);
}
if ((status = SCDWRD(dataid, "GAIN", &myframe->gain, 1, 1, &unit)) != 0) {
/* error writing descriptor */
return(MAREMMA);
}
nflats = (int) myframe->nflats;
if ((status = SCDWRI(dataid, "NFLATS", &nflats, 1, 1, &unit))
!= 0) {
/* error writing descriptor */
return(MAREMMA);
}
if (myframe->nflats > 0) {
if ((status = SCDWRD(dataid, "YSHIFT", myframe->yshift, 1,
myframe->nflats, &unit)) != 0) {
/* error writing descriptor */
return(MAREMMA);
}
}
if ((status = SCDWRI(dataid, "ORDERLIM", &myframe->firstorder, 1, 1,
&unit)) != 0) {
/* error writing descriptor */
return(MAREMMA);
}
if ((status = SCDWRI(dataid, "ORDERLIM", &myframe->lastorder, 2, 1,
&unit)) != 0) {
/* error writing descriptor */
return(MAREMMA);
}
if ((status = SCDWRI(dataid, "TAB_IN_OUT_OSHIFT", &myframe->tab_io_oshift,
1, 1, &unit)) != 0) {
/* error writing descriptor */
return(MAREMMA);
}
/* write the data frame itself */
if ((status = SCFPUT(dataid, 1, myframe->subrows*myframe->subcols,
(char *) myframe->frame_array[0])) != 0) {
/* writing failed */
return(MAREMMA);
}
/* create the sigma file name */
sprintf(filename,"%s_sigma.fits",basename);
/* create the sigma frame on disk */
if ((status = SCFCRE(filename, FLAMESDATATYPE, F_O_MODE, F_IMA_TYPE,
myframe->subrows*myframe->subcols, &sigmaid))
!= 0) {
/* could not create the data file */
return(MAREMMA);
}
/* copy the descriptors from the data file */
if ((status = SCDCOP(dataid, sigmaid, 1)) != 0) {
/* I could not copy the descriptors */
return(MAREMMA);
}
/* There is one descriptor I want to fill differently anyway */
/* find maximum and minimum in sigma */
fdvecbuf1 = myframe->frame_sigma[0];
minimum = maximum = fdvecbuf1[0];
for (iyixindex=1; iyixindex<=iyixend; iyixindex++) {
if (fdvecbuf1[iyixindex]>maximum) maximum = fdvecbuf1[iyixindex];
if (fdvecbuf1[iyixindex]<minimum) minimum = fdvecbuf1[iyixindex];
}
lhcuts[0] = lhcuts[1] = 0;
lhcuts[2] = (float) minimum;
lhcuts[3] = (float) maximum;
if ((status = SCDWRR(sigmaid, "LHCUTS", lhcuts, 1, 4, &unit)) != 0) {
/* error writing descriptor */
return(MAREMMA);
}
/* write the sigma file name as a descriptor of the data file */
if ((status = SCDWRC(dataid, "SIGMAFRAME", 1, filename, 1, 80,
&unit)) != 0) {
/* error writing descriptor */
return(MAREMMA);
}
/* write the sigma frame itself */
if ((status = SCFPUT(sigmaid, 1, myframe->subrows*myframe->subcols,
(char *) myframe->frame_sigma[0])) != 0) {
/* writing failed */
return(MAREMMA);
}
/* close the sigma file */
if ((status = SCFCLO(sigmaid)) != 0) {
/* error closing file */
return(MAREMMA);
}
/* create the badpixel file name */
sprintf(filename,"%s_mask.fits",basename);
/* create the sigma frame on disk */
if ((status = SCFCRE(filename, FLAMESMASKTYPE, F_O_MODE, F_IMA_TYPE,
myframe->subrows*myframe->subcols, &badid))
!= 0) {
/* could not create the bad pixel file */
return(MAREMMA);
}
/* copy the descriptors from the data file */
if ((status = SCDCOP(dataid, badid, 1)) != 0) {
/* I could not copy the descriptors */
return(MAREMMA);
}
/* There is one descriptor I want to fill differently anyway */
/* put maximum and minimum of badpixel */
lhcuts[0] = lhcuts[1] = 0;
lhcuts[2] = 0;
lhcuts[3] = 1;
if ((status = SCDWRR(badid, "LHCUTS", lhcuts, 1, 4, &unit)) != 0) {
/* error writing descriptor */
return(MAREMMA);
}
/* write the file name as a descriptor of the data file */
if ((status = SCDWRC(dataid, "BADPXFRAME", 1, filename, 1, 80,
&unit)) != 0) {
/* error writing descriptor */
return(MAREMMA);
}
/* write the bad pixel frame itself */
if ((status = SCFPUT(badid, 1, myframe->subrows*myframe->subcols,
(char *) myframe->badpixel[0])) != 0) {
/* writing failed */
return(MAREMMA);
}
/* close the sigma file */
if ((status = SCFCLO(badid)) != 0) {
/* error closing file */
return(MAREMMA);
}
/* close the data file */
if ((status = SCFCLO(dataid)) != 0) {
/* error closing file */
return(MAREMMA);
}
/* the end */
return(NOERR);
}
|