IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 2818


Ignore:
Timestamp:
Dec 23, 2004, 4:30:50 PM (22 years ago)
Author:
Paul Price
Message:

Added further explanation for pmReadoutCombine.

Location:
trunk/doc/modules
Files:
2 edited

Legend:

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

    r2649 r2818  
    1 %%% $Id: ChangeLogSDRS.tex,v 1.9 2004-12-07 21:29:38 price Exp $
     1%%% $Id: ChangeLogSDRS.tex,v 1.10 2004-12-24 02:30:46 price Exp $
    22
    33\subsection{Changes from version 00 to version 01}
     
    2929\end{itemize}
    3030
    31 \subsection{Changes from version 02 to version 01}
     31\subsection{Changes from version 02 to version 03}
    3232
    3333\begin{itemize}
    3434\item Fixed up specification of \code{fitSpec} for \code{pmSubtractSky}.
    3535\item Added a \code{mask} to \code{pmSubtractSky}, and specified that binned pixels which are clipped may be interpolated over, or simply ignored.
     36\item Added further explanation for \code{pmReadoutCombine}.
    3637\end{itemize}
  • trunk/doc/modules/ModulesSDRS.tex

    r2649 r2818  
    1 %%% $Id: ModulesSDRS.tex,v 1.25 2004-12-07 21:29:43 price Exp $
     1%%% $Id: ModulesSDRS.tex,v 1.26 2004-12-24 02:30:50 price Exp $
    22\documentclass[panstarrs]{panstarrs}
    33
     
    992992\code{inputs} before rejection is performed.  If \code{zero} is
    993993non-\code{NULL} and \code{applyZeroScale} is false, then the values
    994 shall only be used in calculating the noise.
     994shall only be used in calculating the Poisson variances.
    995995
    996996If the \code{scale} vector is non-\code{NULL} and
     
    998998shall multiply the \code{inputs} before rejection is performed.  If
    999999\code{scale} is non-\code{NULL} and \code{applyZeroScale} is false,
    1000 then the values shall only be used in calculating the noise.
     1000then the values shall only be used in calculating the Poisson
     1001variances.
    10011002
    10021003The purpose of \code{applyZeroScale} is to allow combination of fringe
     
    10091010If the \code{gain} and \code{readnoise} are positive and non-negative
    10101011(respectively), then these shall be used to provide weights for the
    1011 combination using Poisson statistics.
     1012combination using Poisson statistics ($\sigma_i$ below).
     1013
     1014In summary, pixels corresponding to the same physical pixel are
     1015combined, having values $x_i \pm \sigma_i$.  In the case that
     1016\code{applyZeroScale} is \code{true}, then:
     1017\begin{eqnarray}
     1018x_i & = & s_i f_i + z_i \\
     1019\sigma_i & = & [g x_i + r^2]^{1/2} / g
     1020\end{eqnarray}
     1021Where $f_i$ is the value of the pixel in image $i$, $s_i$ is the scale
     1022applied to image $i$, $z_i$ is the zero offset applied to image $i$,
     1023$g$ is the gain, and $r$ is the read noise.  If scales are not
     1024provided, they are set to unity; if zero offsets are not provided,
     1025they are set to zero.
     1026
     1027If \code{applyZeroScale} is \code{false}, then the values are:
     1028\begin{eqnarray}
     1029x_i & = & f_i \\
     1030\sigma_i & = & [g (s_i f_i + z_i) + r^2]^{1/2} / g
     1031\end{eqnarray}
     1032where the same symbols are used as above.
    10121033
    10131034The \code{inputs, zero} and \code{scale} may be of S16, S32 and F32
Note: See TracChangeset for help on using the changeset viewer.