-
Notifications
You must be signed in to change notification settings - Fork 2
output files
Bill Freeman edited this page May 30, 2014
·
10 revisions
There are a couple of output files when you run things:
-
00_starinfo.txt
- This is a very important file. If your *_SlitList.txt files are setup -
00_redshift_catalog_bmep.txt
- if you used theX
orZ
command to get the redshifts of certain objects, this will contain that info. The columns are the maskname, filter, slit, aperture number, redshift, redshift error (might be underestimated), line name, rest wavelength, and observed wavelength. 00_extract_info.txt
- The spectra - Obviously, the extracted 1D spectra are output. Different data are in different extensions. See the fits header for more info. The extensions are 1: the optimal flux, 2: the optimal flux error, 3: boxcar flux, 4: boxcar flux error, 5: y-profile, and 6: y-profile error. You would read in the optimal flux like this
data=readfits([filename],hdr,exten=1)
and you would read in the optimal error likedata=readfits([filename],hdr,exten=2)