IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 5369


Ignore:
Timestamp:
Oct 18, 2005, 12:16:41 PM (21 years ago)
Author:
eugene
Message:

adding pmDetrendLookup

File:
1 edited

Legend:

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

    r5367 r5369  
    1 %%% $Id: ModulesSDRS.tex,v 1.62 2005-10-18 20:15:05 eugene Exp $
     1%%% $Id: ModulesSDRS.tex,v 1.63 2005-10-18 22:16:41 eugene Exp $
    22\documentclass[panstarrs,spec]{panstarrs}
    33
     
    12051205\end{itemize}
    12061206
    1207 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
     1207\subsection{Detrend Lookups}
     1208
     1209When it comes time to perform a detrend operation on an image, it is
     1210necessary to determine {\em which} detrend image should be used.  The
     1211Pan-STARRS Image Processing Pipeline uses the concept of a detrend
     1212image database table, or set of tables (part of the Metadata
     1213Database), to store the known master detrend images.  These tables can
     1214be accessed though the basic query functions specified for the master
     1215detrend database.  To simplify the interaction for the case of the
     1216detrend images, the following function allows the user to explicitly
     1217search the detrend database table or tables for detrend images which
     1218satisfy a set of characteristics.
     1219
     1220\begin{prototype}
     1221psArray *pmDetrendLookup (psMetadata *constraints, psMetadata *tableDefs);
     1222\end{prototype}
     1223This function accepts a metadata structure which restricts the
     1224selected detrend images.  This metadata structure may contain any of
     1225the following entries:
     1226\begin{verbatim}
     1227TYPE        type of detrend data (eg, flat, bias)
     1228CAMERA      name of desired camera (eg, GPC, MEGACAM)
     1229CHIP        chip identifier (eg., ccd00)
     1230FILTERNAME  name of specific filter hardware (eg, r.GPC01)
     1231FILTERTYPE  conceptual name of filter (eg., r)
     1232TIME_MIN    lower bound on valid time range
     1233TIME_MAX    upper bound on valid time range
     1234LABEL       match the entry label
     1235RECIPE      recipe used to build detrend image
     1236EXPTIME     exposure time
     1237AIRMASS     airmass
     1238\end{verbatim}
     1239Any detrend images which match the provided constraints are returned
     1240as an array of \code{psMetadata} elements corresponding to the columns
     1241of the detrend database table.  The additional input parameter
     1242specifies additional information to define the detrend database
     1243tables.  This may include the access information (IP, Username,
     1244Password), as well as names for the table and the columns which
     1245correspond to the constraint names.
     1246
     1247%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    12081248
    12091249\section{Detrend Creation}
Note: See TracChangeset for help on using the changeset viewer.