Supernova Search Code
Introduction
The goal of the supernova search software is to locate
new stars in the images of galaxies.
The supernova search code uses the
XVista
image processing suite and UNIX commands
combined as C-shell scripts.
sn
is the front end procedure that is used for the supernova search.
In the request file, one must specify RA, DEC, EPOCH, EXPTIME, FILTERS, and
OBJECT then invoke
sn
as the PROCEDUR.
Here is a typical request file
It then does the following:
- points to a bright star near to the galaxy and corrects the pointing
- points telescope at galaxy
- takes a picture using photo
- then in the background, flat fields
and bias corrects it using
ccdproc
- executes the sn_search. procedure
to analyze the image
SN_SEARCH
sn_search
is a C-shell script which takes as an argument
the DATID of the newly observed (target) image of the galaxy and looks for
supernova candidates.
It does the following:
- looks up the reference image
from the OBJECT field in the header
- executes sn_finder on the target image
to locate the fiducial stars generating a .coo file
- analyzes the fiducials stars and sky using
sn_merit
- determines image offset from the reference image from the fiducial
stars
(sn_fidmatch) and writes
a .match file
- if the name of the reference
appears in the file /data/sn/ref/cormatch.list
file it uses the correlation method
(sn_cormatch) to find the offset
- subtracts the image of the reference image from the target using
sn_sub.
This procedure calls
sn_cfinder to look for candidates.
- echoes report on the sucess of the subtraction and detection to
standard out using
showcand.
- reports an error to
insgen
if the match fails
- submits a request to re-observe the galaxy using
sn_submit
if there is an interesting
candidate
The script creates a file
with the name
$DATID.cand;
where DATID is the data id of the observation.
This
file contains the FITS header of the observation,
additional search keywords
and if any candidates were found, a line generated by
phot
containing the location and photometry of the
candidate(s).
Last Updated 4/21/97 - RRT