IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4609


Ignore:
Timestamp:
Jul 25, 2005, 1:23:28 PM (21 years ago)
Author:
Paul Price
Message:

Adding CELL.READDIR

Location:
trunk/doc/modules
Files:
3 edited

Legend:

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

    r4563 r4609  
    123123    // Information
    124124    psImage *image;                    // Imaging area of readout
     125    psList *bias;                      // List of bias section (sub-)images
    125126    psMetadata *analysis;              // Readout-level analysis metadata
    126127    psMetadata *concepts;              // Cache for PS concepts
  • trunk/doc/modules/ChangeLogSDRS.tex

    r4565 r4609  
    1 %%% $Id: ChangeLogSDRS.tex,v 1.24 2005-07-15 22:03:27 eugene Exp $
     1%%% $Id: ChangeLogSDRS.tex,v 1.25 2005-07-25 23:23:28 price Exp $
    22
    33\subsection{Changes from version 00 (16 August 2004) to version 01 (12 October 2004)}
     
    8686\item Added \code{pmFPAConstruct, pmFPARead, pmFPAMorph, pmFPAWrite}.
    8787\end{itemize}
     88
     89\subsection{Changes from version 07 (15 July 2005) to present (???)}
     90
     91\begin{itemize}
     92\item Added \code{bias} sections to \code{pmReadout}.
     93\item Added \code{CELL.READDIR} to specify read direction; \code{pmCellGetReaddir}.
     94\end{itemize}
  • trunk/doc/modules/ModulesSDRS.tex

    r4565 r4609  
    1 %%% $Id: ModulesSDRS.tex,v 1.49 2005-07-15 22:03:27 eugene Exp $
     1%%% $Id: ModulesSDRS.tex,v 1.50 2005-07-25 23:23:28 price Exp $
    22\documentclass[panstarrs]{panstarrs}
    33
     
    433433\item \code{FPA.RA}: Right Ascension of boresight
    434434\item \code{FPA.DEC}: Declination of boresight
    435 \item \code{FPA.RADECSYS}: System of RA,Dec (e.g., J2000 or ICRS)
    436 \item \code{FPA.NAME}: An identifier (e.g., observation number) for the FPA instance
    437 \item \code{CHIP.NAME}: The name of the chip (unique within the FPA) --- set at FITS read
    438 \item \code{CELL.NAME}: The name of the cell (unique within the parent chip) --- set at FITS read
     435\item \code{FPA.RADECSYS} (STR): System of RA,Dec (e.g., J2000 or ICRS)
     436\item \code{FPA.NAME} (STR): An identifier (e.g., observation number) for the FPA instance
     437\item \code{CHIP.NAME} (STR): The name of the chip (unique within the FPA) --- set at FITS read
     438\item \code{CELL.NAME} (STR): The name of the cell (unique within the parent chip) --- set at FITS read
    439439\item \code{CELL.TIME}: Time of observation start
    440440\item \code{CELL.TIMESYS}: Time system in use (e.g., UTC)
    441 \item \code{CELL.BIASSEC}: Overscan region(s)
    442 \item \code{CELL.TRIMSEC}: Trim region
    443 \item \code{CELL.GAIN}: CCD gain (e/ADU)
    444 \item \code{CELL.READNOISE}: CCD read noise (e)
    445 \item \code{CELL.SATURATION}: CCD saturation point (ADU)
    446 \item \code{CELL.BAD}: CCD bad pixel point (ADU)
     441\item \code{CELL.READDIR} (S32): Read direction: line (1) or column (2)
     442\item \code{CELL.BIASSEC} (STR): Overscan region(s)
     443\item \code{CELL.TRIMSEC} (STR): Trim region
     444\item \code{CELL.GAIN} (F32): CCD gain (e/ADU)
     445\item \code{CELL.READNOISE} (F32): CCD read noise (e)
     446\item \code{CELL.SATURATION} (F32): CCD saturation point (ADU)
     447\item \code{CELL.BAD} (F32): CCD bad pixel point (ADU)
    447448\item \code{CELL.BINNING}: CCD Binning
    448 \item \code{CELL.PARITY}: Direction of CCD readout
    449 \item \code{READOUT.EXPOSURE}: Exposure time of image (sec)
    450 \item \code{READOUT.DARKTIME}: Dark time for image (sec)
     449\item \code{CELL.PARITY} (S32): Direction of CCD readout
     450\item \code{READOUT.EXPOSURE} (F32): Exposure time of image (sec)
     451\item \code{READOUT.DARKTIME} (F32): Dark time for image (sec)
    451452\end{itemize}
    452453
     
    706707psList *pmCellGetBiasSec(pmCell *cell); // CELL.BIASSEC
    707708psRegion pmCellGetTrimSec(pmCell *cell); // CELL.TRIMSEC
     709int pmCellGetReaddir(pmCell *cell);    // CELL.READDIR
    708710float pmCellGetGain(pmCell *cell);     // CELL.GAIN
    709711float pmCellGetReadNoise(pmCell *cell); // CELL.READNOISE
Note: See TracChangeset for help on using the changeset viewer.