IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4073


Ignore:
Timestamp:
Jun 1, 2005, 11:22:29 AM (21 years ago)
Author:
jhoblitt
Message:

rename psHash.nbuckets to psHash.n
rename psList.size to psList.n

Location:
trunk/doc/pslib
Files:
2 edited

Legend:

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

    r4071 r4073  
    1 %%% $Id: ChangeLogSDRS.tex,v 1.113 2005-06-01 21:08:49 jhoblitt Exp $
     1%%% $Id: ChangeLogSDRS.tex,v 1.114 2005-06-01 21:22:29 jhoblitt Exp $
    22
    33\subsection{Changes from version 00 to version 01}
     
    649649  \item change \code{psImage} to use \code{psU32} rows \& columns
    650650  \item change parameter names to not use the words ``width'' or ``height''
     651  \item rename \code{psHash.nbuckets} to \code{psHash.n}
     652  \item rename \code{psList.size} to \code{psList.n}
    651653\end{itemize}
    652654\item rename \code{psFitsAlloc()} $\rightarrow$ \code{psFitsOpen()}
  • trunk/doc/pslib/psLibSDRS.tex

    r4072 r4073  
    1 %%% $Id: psLibSDRS.tex,v 1.248 2005-06-01 21:13:57 jhoblitt Exp $
     1%%% $Id: psLibSDRS.tex,v 1.249 2005-06-01 21:22:29 jhoblitt Exp $
    22\documentclass[panstarrs,spec]{panstarrs}
    33
     
    16301630\begin{datatype}
    16311631typedef struct {
    1632    unsigned int size;                  ///< number of elements on list
     1632   unsigned int n;                     ///< number of elements on list
    16331633   psListElem *head;                   ///< first element on list (may be NULL)
    16341634   psListElem *tail;                   ///< last element on list (may be NULL)
     
    18401840\begin{datatype}
    18411841typedef struct {
    1842     int nbucket;                        ///< number of buckets
     1842    int n;                              ///< number of buckets
    18431843    psHashBucket **buckets;             ///< the buckets themselves
    18441844} psHash;
Note: See TracChangeset for help on using the changeset viewer.