forked from demorest/psrfits_utils
-
Notifications
You must be signed in to change notification settings - Fork 7
/
read_psrfits.c
548 lines (498 loc) · 20.8 KB
/
read_psrfits.c
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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
/* read_psrfits.c */
#include <stdio.h>
#include <string.h>
#include "psrfits.h"
extern void pf_unpack_2bit_to_8bit(struct psrfits *pf, int numunsigned);
extern void pf_unpack_4bit_to_8bit(struct psrfits *pf, int numunsigned);
extern void unpack_2bit_to_8bit_unsigned(unsigned char *indata,
unsigned char *outdata, int N);
extern void unpack_4bit_to_8bit_unsigned(unsigned char *indata,
unsigned char *outdata, int N);
#define check_read_status(name) { \
if (*status) { \
fits_get_errstatus(*status, err_text); \
printf("Error %d reading %s : %s\n", *status, name, err_text); \
*status=0; \
} \
}
int is_search_PSRFITS(char *filename)
// Return 1 if the file described by filename is a PSRFITS file
// Return 0 otherwise.
{
fitsfile *fptr;
int status=0;
char ctmp[80], comment[120];
// Read the primary HDU
fits_open_file(&fptr, filename, READONLY, &status);
if (status) return 0;
// Make the easy check first
fits_read_key(fptr, TSTRING, "FITSTYPE", ctmp, comment, &status);
if (status || strcmp(ctmp, "PSRFITS")) return 0;
// See if the data are search-mode
fits_read_key(fptr, TSTRING, "OBS_MODE", ctmp, comment, &status);
if (status || (strcmp(ctmp, "SEARCH") &&
strcmp(ctmp, "SRCH"))) return 0;
fits_close_file(fptr, &status);
return 1; // it is search-mode PSRFITS
}
void psrfits_set_files(struct psrfits *pf, int numfiles, char *filenames[])
/* Determine whether we are using explicit filenames (and */
/* how many there are, or whether we are building our own */
/* using sequence numbers and the basefilename. */
{
int ii;
// Check if we were passed a basefilename
if (numfiles==1 && (!is_search_PSRFITS(filenames[0]))) {
strncpy(pf->basefilename, filenames[0], 200);
printf("Using '%s' as our base PSRFITS file name.\n", pf->basefilename);
pf->numfiles = 0; // dynamically determined
pf->filenum = 1;
pf->filename[0] = '\0';
pf->filenames = NULL;
return;
}
// Using real filenames instead...
pf->basefilename[0]='\0';
pf->numfiles = numfiles;
pf->filenum = 0;
pf->filenames = filenames;
// Test that all of the input files are valid PSRFITS
for (ii = 0; ii < numfiles; ii++) {
// printf("Checking '%s'...\n", filenames[ii]);
if (!is_search_PSRFITS(filenames[ii]))
fprintf(stderr, "Error: '%s' is not PSRFITS. Exiting.\n", filenames[ii]);
}
printf("Found %d valid PSRFITS files for input.\n", numfiles);
return;
}
/* This function is similar to psrfits_create, except it
* deals with reading existing files. It is assumed that
* basename and filenum are filled in correctly to point to
* the first file in the set OR that filename already contains
* the correct file name.
*/
int psrfits_open(struct psrfits *pf) {
int itmp;
double dtmp;
char ctmp[256], err_text[81];
struct hdrinfo *hdr = &(pf->hdr);
struct subint *sub = &(pf->sub);
struct foldinfo *fold = &(pf->fold);
int *status = &(pf->status);
if (pf->numfiles==0) {
// Dynamically generated file names
sprintf(pf->filename, "%s_%04d.fits", pf->basefilename, pf->filenum);
} else {
// Using explicit filenames
if (pf->filenum < pf->numfiles) {
strncpy(pf->filename, pf->filenames[pf->filenum], 200);
} else {
*status = FILE_NOT_OPENED;
return *status;
}
}
fits_open_file(&(pf->fptr), pf->filename, READONLY, status);
pf->mode = 'r';
// If file no exist, exit now
if (*status) {
return *status;
} else {
printf("Opened file '%s'\n", pf->filename);
}
// Move to main HDU
fits_movabs_hdu(pf->fptr, 1, NULL, status);
// Figure out obs mode
fits_read_key(pf->fptr, TSTRING, "OBS_MODE", hdr->obs_mode, NULL, status);
check_read_status("OBS_MODE");
int mode = psrfits_obs_mode(hdr->obs_mode);
// Set the downsampling stuff to default values
hdr->onlyI = 0;
hdr->ds_time_fact = 1;
hdr->ds_freq_fact = 1;
// Blank parfile name, folding params
fold->parfile[0] = '\0';
fold->n_polyco_sets = 0;
fold->pc = NULL;
// Read some stuff
fits_read_key(pf->fptr, TSTRING, "TELESCOP", hdr->telescope, NULL, status);
check_read_status("TELESCOP");
fits_read_key(pf->fptr, TSTRING, "OBSERVER", hdr->observer, NULL, status);
check_read_status("OBSERVER");
fits_read_key(pf->fptr, TSTRING, "PROJID", hdr->project_id, NULL, status);
check_read_status("PROJID");
fits_read_key(pf->fptr, TSTRING, "FRONTEND", hdr->frontend, NULL, status);
check_read_status("FRONTEND");
fits_read_key(pf->fptr, TSTRING, "BACKEND", hdr->backend, NULL, status);
check_read_status("BACKEND");
fits_read_key(pf->fptr, TSTRING, "FD_POLN", hdr->poln_type, NULL, status);
check_read_status("FD_POLN");
fits_read_key(pf->fptr, TSTRING, "DATE-OBS", hdr->date_obs, NULL, status);
check_read_status("DATE-OBS");
fits_read_key(pf->fptr, TDOUBLE, "OBSFREQ", &(hdr->fctr), NULL, status);
check_read_status("OBSFREQ");
fits_read_key(pf->fptr, TDOUBLE, "OBSBW", &(hdr->BW), NULL, status);
check_read_status("OBSBW");
fits_read_key(pf->fptr, TINT, "OBSNCHAN", &(hdr->orig_nchan), NULL, status);
check_read_status("OBSNCHAN");
hdr->orig_df = hdr->BW / hdr->orig_nchan;
fits_read_key(pf->fptr, TDOUBLE, "CHAN_DM", &(hdr->chan_dm), NULL, status);
if (*status==KEY_NO_EXIST) { hdr->chan_dm=0.0; *status=0; }
check_read_status("CHAN_DM");
fits_read_key(pf->fptr, TSTRING, "SRC_NAME", hdr->source, NULL, status);
check_read_status("SRC_NAME");
fits_read_key(pf->fptr, TSTRING, "TRK_MODE", hdr->track_mode, NULL, status);
check_read_status("TRK_MODE");
// TODO warn if not TRACK?
fits_read_key(pf->fptr, TSTRING, "RA", hdr->ra_str, NULL, status);
check_read_status("RA");
fits_read_key(pf->fptr, TSTRING, "DEC", hdr->dec_str, NULL, status);
check_read_status("DEC");
fits_read_key(pf->fptr, TDOUBLE, "BMAJ", &(hdr->beam_FWHM), NULL, status);
check_read_status("BMAJ");
fits_read_key(pf->fptr, TSTRING, "CAL_MODE", hdr->cal_mode, NULL, status);
check_read_status("CAL_MODE");
fits_read_key(pf->fptr, TDOUBLE, "CAL_FREQ", &(hdr->cal_freq), NULL,
status);
check_read_status("CAL_FREQ");
fits_read_key(pf->fptr, TDOUBLE, "CAL_DCYC", &(hdr->cal_dcyc), NULL,
status);
check_read_status("CAL_DCYC");
fits_read_key(pf->fptr, TDOUBLE, "CAL_PHS", &(hdr->cal_phs), NULL, status);
check_read_status("CAL_PHS");
fits_read_key(pf->fptr, TSTRING, "FD_MODE", hdr->feed_mode, NULL, status);
check_read_status("FD_MODE");
fits_read_key(pf->fptr, TDOUBLE, "FA_REQ", &(hdr->feed_angle), NULL,
status);
check_read_status("FA_REQ");
fits_read_key(pf->fptr, TDOUBLE, "SCANLEN", &(hdr->scanlen), NULL, status);
check_read_status("SCANLEN");
fits_read_key(pf->fptr, TDOUBLE, "FD_SANG", &(hdr->fd_sang), NULL, status);
check_read_status("FD_SANG");
fits_read_key(pf->fptr, TDOUBLE, "FD_XYPH", &(hdr->fd_xyph), NULL, status);
check_read_status("FD_XYPH");
fits_read_key(pf->fptr, TINT, "FD_HAND", &(hdr->fd_hand), NULL, status);
check_read_status("FD_HAND");
fits_read_key(pf->fptr, TINT, "BE_PHASE", &(hdr->be_phase), NULL, status);
check_read_status("BE_PHASE");
fits_read_key(pf->fptr, TINT, "STT_IMJD", &itmp, NULL, status);
check_read_status("STT_IMJD");
hdr->MJD_epoch = (long double)itmp;
hdr->start_day = itmp;
fits_read_key(pf->fptr, TDOUBLE, "STT_SMJD", &dtmp, NULL, status);
check_read_status("STT_SMJD");
hdr->MJD_epoch += dtmp/86400.0L;
hdr->start_sec = dtmp;
fits_read_key(pf->fptr, TDOUBLE, "STT_OFFS", &dtmp, NULL, status);
check_read_status("STT_OFFS");
hdr->MJD_epoch += dtmp/86400.0L;
hdr->start_sec += dtmp;
fits_read_key(pf->fptr, TDOUBLE, "STT_LST", &(hdr->start_lst), NULL,
status);
check_read_status("STT_LST");
// Move to first subint
fits_movnam_hdu(pf->fptr, BINARY_TBL, "SUBINT", 0, status);
check_read_status("SUBINT");
// Read some more stuff
fits_read_key(pf->fptr, TINT, "NPOL", &(hdr->npol), NULL, status);
check_read_status("NPOL");
fits_read_key(pf->fptr, TSTRING, "POL_TYPE", &(hdr->poln_order), NULL, status);
check_read_status("POL_TYPE");
if (strncmp(hdr->poln_order, "AA+BB", 6)==0) hdr->summed_polns=1;
else hdr->summed_polns=0;
fits_read_key(pf->fptr, TDOUBLE, "TBIN", &(hdr->dt), NULL, status);
check_read_status("TBIN");
fits_read_key(pf->fptr, TINT, "NBIN", &(hdr->nbin), NULL, status);
check_read_status("NBIN");
fits_read_key(pf->fptr, TINT, "NSUBOFFS", &(hdr->offset_subint), NULL,
status);
check_read_status("NSUBOFFS");
fits_read_key(pf->fptr, TINT, "NCHAN", &(hdr->nchan), NULL, status);
check_read_status("NCHAN");
fits_read_key(pf->fptr, TDOUBLE, "CHAN_BW", &(hdr->df), NULL, status);
check_read_status("CHAN_BW");
fits_read_key(pf->fptr, TINT, "NSBLK", &(hdr->nsblk), NULL, status);
check_read_status("NSBLK");
fits_read_key(pf->fptr, TINT, "NBITS", &(hdr->nbits), NULL, status);
check_read_status("NBITS");
// By default any output will have the same number of bits as input
hdr->orig_nbits = hdr->nbits;
if (mode==SEARCH_MODE) {
long long lltmp = hdr->nsblk; // Prevents a possible overflow in numerator below
lltmp = (lltmp * hdr->nbits * hdr->nchan * hdr->npol) / 8L;
sub->bytes_per_subint = (int) lltmp;
} else if (mode==FOLD_MODE) {
sub->bytes_per_subint =
(hdr->nbin * hdr->nchan * hdr->npol); // XXX data type??
}
// Init counters
pf->rownum = 1;
fits_read_key(pf->fptr, TINT, "NAXIS2", &(pf->rows_per_file), NULL, status);
check_read_status("NAXIS2");
return *status;
}
void apply_scales_and_offsets(int numchan, int numpol, int numspect,
int numunsigned,
float *scales, float *offsets,
unsigned char *inbuf, float *outbuf)
{
int ii, jj, poln, N;
float *outptr = outbuf;
N = numchan * numpol;
for (ii = 0 ; ii < numspect ; ii++) {
for (poln = 0 ; poln < numpol ; poln++) {
float *sptr = scales + poln * numchan;
float *optr = offsets + poln * numchan;
if (poln < numunsigned) {
unsigned char *inptr = inbuf + ii * N + poln * numchan;
for (jj = 0 ; jj < numchan ; jj++, sptr++, optr++, inptr++, outptr++)
*outptr = *sptr * (float)(*inptr) + *optr;
} else {
signed char *inptr = (signed char *)(inbuf + ii * N + poln * numchan);
for (jj = 0 ; jj < numchan ; jj++, sptr++, optr++, inptr++, outptr++)
*outptr = *sptr * (float)(*inptr) + *optr;
}
}
}
}
void scale_and_offset_data(struct psrfits *pf, int numunsigned) {
// Make sure that pf->sub.fdata has been allocated!
apply_scales_and_offsets(pf->hdr.nchan, pf->hdr.npol, pf->hdr.nsblk,
numunsigned,
pf->sub.dat_scales, pf->sub.dat_offsets,
pf->sub.data, pf->sub.fdata);
}
/* Read next subint from the set of files described
* by the psrfits struct. It is assumed that all files
* form a consistent set. Read automatically goes to the
* next file when one ends. Arrays should be allocated
* outside this routine.
*/
int psrfits_read_subint(struct psrfits *pf) {
struct hdrinfo *hdr = &(pf->hdr);
struct subint *sub = &(pf->sub);
int colnum = 0, *status = &(pf->status);
// See if we need to move to next file
if (pf->rownum > pf->rows_per_file) {
printf("Closing file '%s'\n", pf->filename);
fits_close_file(pf->fptr, status);
pf->filenum++;
psrfits_open(pf);
if (*status==FILE_NOT_OPENED) {
printf("Finished with all input files.\n");
pf->filenum--;
*status = 1;
return *status;
}
}
int mode = psrfits_obs_mode(hdr->obs_mode);
int nchan = hdr->nchan;
int nivals = hdr->nchan * hdr->npol;
int row = pf->rownum;
int numunsigned = hdr->npol;
if (hdr->npol==4) {
if (strncmp(hdr->poln_order, "AABBCRCI", 8)==0)
numunsigned = 2;
if (strncmp(hdr->poln_order, "IQUV", 4)==0)
numunsigned = 1;
}
// TODO: bad! really need to base this on column names
fits_get_colnum(pf->fptr, 0, "TSUBINT", &colnum, status);
fits_read_col(pf->fptr, TDOUBLE, colnum, row, 1, 1, NULL, &(sub->tsubint),
NULL, status);
double last_offs = sub->offs;
fits_get_colnum(pf->fptr, 0, "OFFS_SUB", &colnum, status);
fits_read_col(pf->fptr, TDOUBLE, colnum, row, 1, 1, NULL, &(sub->offs),
NULL, status);
// Hack to fix wrapping in coherent data
if (pf->tot_rows > 0) {
double delta_offs = sub->offs - last_offs;
double wrap_offs = 4294967296L * hdr->dt;
if (delta_offs < -0.5*wrap_offs) {
sub->offs += wrap_offs;
fprintf(stderr, "Warning: detected likely counter wrap, attempting to fix it.\n");
}
}
fits_get_colnum(pf->fptr, 0, "LST_SUB", &colnum, status);
if (*status==0) // This is not a crucial column
fits_read_col(pf->fptr, TDOUBLE, colnum, row, 1, 1, NULL, &(sub->lst),
NULL, status);
else {
sub->lst = 0.0;
*status = 0;
}
fits_get_colnum(pf->fptr, 0, "RA_SUB", &colnum, status);
if (*status==0) // This is not a crucial column
fits_read_col(pf->fptr, TDOUBLE, colnum, row, 1, 1, NULL, &(sub->ra),
NULL, status);
else {
sub->ra = 0.0;
*status = 0;
}
fits_get_colnum(pf->fptr, 0, "DEC_SUB", &colnum, status);
if (*status==0) // This is not a crucial column
fits_read_col(pf->fptr, TDOUBLE, colnum, row, 1, 1, NULL, &(sub->dec),
NULL, status);
else {
sub->dec = 0.0;
*status = 0;
}
fits_get_colnum(pf->fptr, 0, "GLON_SUB", &colnum, status);
if (*status==0) // This is not a crucial column
fits_read_col(pf->fptr, TDOUBLE, colnum, row, 1, 1, NULL, &(sub->glon),
NULL, status);
else {
sub->glon = 0.0;
*status = 0;
}
fits_get_colnum(pf->fptr, 0, "GLAT_SUB", &colnum, status);
if (*status==0) // This is not a crucial column
fits_read_col(pf->fptr, TDOUBLE, colnum, row, 1, 1, NULL, &(sub->glat),
NULL, status);
else {
sub->glat = 0.0;
*status = 0;
}
fits_get_colnum(pf->fptr, 0, "FD_ANG", &colnum, status);
if (*status==0) // This is not a crucial column
fits_read_col(pf->fptr, TDOUBLE, colnum, row, 1, 1, NULL, &(sub->feed_ang),
NULL, status);
else {
sub->feed_ang = 0.0;
*status = 0;
}
fits_get_colnum(pf->fptr, 0, "POS_ANG", &colnum, status);
if (*status==0) // This is not a crucial column
fits_read_col(pf->fptr, TDOUBLE, colnum, row, 1, 1, NULL, &(sub->pos_ang),
NULL, status);
else {
sub->pos_ang = 0.0;
*status = 0;
}
fits_get_colnum(pf->fptr, 0, "PAR_ANG", &colnum, status);
if (*status==0) // This is not a crucial column
fits_read_col(pf->fptr, TDOUBLE, colnum, row, 1, 1, NULL, &(sub->par_ang),
NULL, status);
else {
sub->par_ang = 0.0;
*status = 0;
}
fits_get_colnum(pf->fptr, 0, "TEL_AZ", &colnum, status);
if (*status==0) // This is not a crucial column
fits_read_col(pf->fptr, TDOUBLE, colnum, row, 1, 1, NULL, &(sub->tel_az),
NULL, status);
else {
sub->tel_az = 0.0;
*status = 0;
}
fits_get_colnum(pf->fptr, 0, "TEL_ZEN", &colnum, status);
if (*status==0) // This is not a crucial column
fits_read_col(pf->fptr, TDOUBLE, colnum, row, 1, 1, NULL, &(sub->tel_zen),
NULL, status);
else {
sub->tel_zen = 0.0;
*status = 0;
}
fits_get_colnum(pf->fptr, 0, "DAT_FREQ", &colnum, status);
fits_read_col(pf->fptr, TFLOAT, colnum, row, 1, nchan, NULL, sub->dat_freqs,
NULL, status);
fits_get_colnum(pf->fptr, 0, "DAT_WTS", &colnum, status);
fits_read_col(pf->fptr, TFLOAT, colnum, row, 1, nchan, NULL, sub->dat_weights,
NULL, status);
fits_get_colnum(pf->fptr, 0, "DAT_OFFS", &colnum, status);
fits_read_col(pf->fptr, TFLOAT, colnum, row, 1, nivals, NULL, sub->dat_offsets,
NULL, status);
fits_get_colnum(pf->fptr, 0, "DAT_SCL", &colnum, status);
fits_read_col(pf->fptr, TFLOAT, colnum, row, 1, nivals, NULL, sub->dat_scales,
NULL, status);
fits_get_colnum(pf->fptr, 0, "DATA", &colnum, status);
if (mode==SEARCH_MODE) {
if (hdr->nbits==32)
fits_read_col(pf->fptr, TFLOAT, colnum, row, 1,
sub->bytes_per_subint/4,
NULL, sub->rawdata, NULL, status);
else {
fits_read_col(pf->fptr, TBYTE, colnum, row, 1,
sub->bytes_per_subint,
NULL, sub->rawdata, NULL, status);
if (hdr->nbits==2) pf_unpack_2bit_to_8bit(pf, numunsigned);
else if (hdr->nbits==4) pf_unpack_4bit_to_8bit(pf, numunsigned);
}
} else if (mode==FOLD_MODE) {
fits_read_col(pf->fptr, TFLOAT, colnum, row, 1, sub->bytes_per_subint,
NULL, sub->data, NULL, status);
}
// Complain on error
fits_report_error(stderr, *status);
// Update counters
if (!(*status)) {
pf->rownum++;
pf->tot_rows++;
pf->N += hdr->nsblk;
pf->T = pf->N * hdr->dt;
}
return *status;
}
/* Read only part (N "spectra" in time) of the DATA column from the
* current subint from the set of files described by the psrfits
* struct. Put the data into the buffer "buffer". It is assumed that
* all files form a consistent set. Read automatically goes to the
* next file when one ends. Arrays should be allocated outside this
* routine. Counters are _not_ updated as they are in
* psrfits_read_subint().
*/
int psrfits_read_part_DATA(struct psrfits *pf, int N, int numunsigned,
float *fbuffer) {
struct hdrinfo *hdr = &(pf->hdr);
int colnum = 0, *status = &(pf->status);
// See if we need to move to next file
if (pf->rownum > pf->rows_per_file) {
printf("Closing file '%s'\n", pf->filename);
fits_close_file(pf->fptr, status);
pf->filenum++;
psrfits_open(pf);
if (*status==FILE_NOT_OPENED) {
printf("Finished with all input files.\n");
pf->filenum--;
*status = 1;
return *status;
}
}
int nivals = hdr->nchan * hdr->npol;
long long numdata = (long long) nivals * (long long) N;
long long bytes_to_read = (hdr->nbits * numdata) / 8L;
float *offsets = (float *)malloc(sizeof(float) * nivals);
float *scales = (float *)malloc(sizeof(float) * nivals);
unsigned char *buffer = (unsigned char *)malloc(numdata);
unsigned char *rawbuffer = buffer;
if (hdr->nbits==4 || hdr->nbits==2) {
rawbuffer = (unsigned char *)malloc(bytes_to_read);
}
// Now read the data
fits_get_colnum(pf->fptr, 0, "DAT_OFFS", &colnum, status);
fits_read_col(pf->fptr, TFLOAT, colnum, pf->rownum, 1, nivals,
NULL, offsets, NULL, status);
fits_get_colnum(pf->fptr, 0, "DAT_SCL", &colnum, status);
fits_read_col(pf->fptr, TFLOAT, colnum, pf->rownum, 1, nivals,
NULL, scales, NULL, status);
fits_get_colnum(pf->fptr, 0, "DATA", &colnum, status);
fits_read_col(pf->fptr, TBYTE, colnum, pf->rownum, 1, bytes_to_read,
NULL, rawbuffer, NULL, status);
if (hdr->nbits==4) {
unpack_4bit_to_8bit_unsigned(rawbuffer,
(unsigned char *)buffer, numdata);
free(rawbuffer);
} else if (hdr->nbits==2) {
unpack_2bit_to_8bit_unsigned(rawbuffer,
(unsigned char *)buffer, numdata);
free(rawbuffer);
}
// Now convert the 8-bit data to floats using the scales and offsets
apply_scales_and_offsets(hdr->nchan, hdr->npol, N, numunsigned,
scales, offsets, buffer, fbuffer);
free(offsets);
free(scales);
free(buffer);
// Complain on error
fits_report_error(stderr, *status);
return *status;
}