blob: 08f44c0e0c159652d0f11f6478332d456f632047 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# FITS reader common
int len_record # Length of FITS records in bytes
int data_type # Output data type
real blank # Blank value
real fe # Maximum size in megabytes for scan mode
# Option flags
int make_image # Create an IRAF image
int long_header # Print a long header (FITS header cards)
int short_header # Print a short header (Title and size)
int scale # Scale the data
int old_name # Use old IRAF name?
common /rfitscom/ len_record, data_type, blank, fe, make_image, long_header,
short_header, scale, old_name
|