IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 18, 2005, 4:07:17 AM (21 years ago)
Author:
eugene
Message:

added astrometry matching tools, fringes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/modules/ModulesSDRS.tex

    r5077 r5359  
    1 %%% $Id: ModulesSDRS.tex,v 1.59 2005-09-20 22:01:33 jhoblitt Exp $
     1%%% $Id: ModulesSDRS.tex,v 1.60 2005-10-18 14:07:17 eugene Exp $
    22\documentclass[panstarrs,spec]{panstarrs}
    33
     
    12041204\item \code{MASK.NAME} (STR): Name of mask image
    12051205\end{itemize}
     1206
     1207\subsection{Fringes}
     1208
     1209Some images contain a signal caused by thin-film interference in the
     1210device due to strong emission lines.  The resulting instrumental
     1211effect consists of a pattern (the fringe pattern) of bright and dark
     1212bands corresponding to the constructive and destructive interference
     1213of the emission lines.  In the case that a single emission line causes
     1214the line structure, the resulting pattern can be described by two
     1215independent parameters: First, the amplitude of the emission line
     1216determines the overall amplitude of the pattern.  Second, the
     1217three-dimensional surface structure of the device determines the shape
     1218of the pattern.  In a typical situation, the device is not only
     1219illuminated by the emission line (or lines), but also by a continuum
     1220spectral source, which contributes to the overall light detected by
     1221the device without following the fringe pattern.  The relative
     1222intensities of the continuum background and the fringe pattern depend
     1223on the device structure (thickness) and on the ratio of the continuum
     1224and line emission fluxes. 
     1225
     1226A simple approach to the fringe pattern is to subtract a master fringe
     1227frame scaled by the amplitude of the fringe pattern.  We thus need a
     1228method of measuring the fringe amplitude which is robust in the
     1229presence of stars and which is fast.  We implement a method used at
     1230CFHT in which the fringe pattern is mapped by a series of points pairs
     1231which correspond to peaks and valleys of the fringe pattern.  We
     1232define the following function to measure the global fringe amplitude
     1233of an image given a collection of fringe point pairs.
     1234\begin{prototype}
     1235stats *pmFringeStats (psImage *image, psArray *fringePoints, psMetadata *config);
     1236\end{prototype}
     1237This function measures the robust median at each of the minimum and
     1238maximum coordinates and determines the difference and mean of the two
     1239values.  From the collection of differences, the robust median is
     1240calculated, and returned as part of the fringe statistics.
     1241 
     1242The \code{fringePoints} are defined by the following structure:
     1243\begin{datatype}
     1244typedef struct {
     1245    double xMin;
     1246    double yMin;
     1247    double xMax;
     1248    double yMax;
     1249    double delta;
     1250    double midValue;
     1251} pmFringePoint;
     1252\end{datatype}
     1253
    12061254
    12071255%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Note: See TracChangeset for help on using the changeset viewer.