Changeset 4078
- Timestamp:
- Jun 1, 2005, 11:51:25 AM (21 years ago)
- Location:
- trunk/doc/pslib
- Files:
-
- 2 edited
-
ChangeLogSDRS.tex (modified) (3 diffs)
-
psLibSDRS.tex (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/pslib/ChangeLogSDRS.tex
r4077 r4078 1 %%% $Id: ChangeLogSDRS.tex,v 1.11 7 2005-06-01 21:37:23jhoblitt Exp $1 %%% $Id: ChangeLogSDRS.tex,v 1.118 2005-06-01 21:51:25 jhoblitt Exp $ 2 2 3 3 \subsection{Changes from version 00 to version 01} … … 654 654 \item rename \code{psFitsAlloc()} $\rightarrow$ \code{psFitsOpen()} 655 655 \item add \code{psFitsClose()} 656 \item remove \code{lock} from \code{psList} 656 657 \item change \code{psVector} to store it's number of elements as an \code{unsigned long int} 657 658 \item change \code{psArray} to store it's number of elements as an \code{unsigned long int} … … 660 661 \item change \code{psListIterator} to store it's index as an \code{long int} 661 662 \item change \code{psHash} to store it's number of elements as an \code{unsigned long int} 662 \item remove \code{lock} from \code{psList}663 \end{itemize} 664 \end{itemize} 663 \item change \code{psLookupTable} to store it's index as an \code{unsigned long int} 664 \end{itemize} 665 \end{itemize} -
trunk/doc/pslib/psLibSDRS.tex
r4077 r4078 1 %%% $Id: psLibSDRS.tex,v 1.25 2 2005-06-01 21:37:23jhoblitt Exp $1 %%% $Id: psLibSDRS.tex,v 1.253 2005-06-01 21:51:25 jhoblitt Exp $ 2 2 \documentclass[panstarrs,spec]{panstarrs} 3 3 … … 1939 1939 const char *filename; ///< File from which data is to be read 1940 1940 const char *format; ///< scanf-like format string for file 1941 unsigned int indexCol;///< Column of the index vector (starting at zero)1941 unsigned long int indexCol; ///< Column of the index vector (starting at zero) 1942 1942 psVector *index; ///< Index values 1943 1943 psArray *values; ///< Corresponding values: an array of vectors … … 1964 1964 psLookupTable *psLookupTableAlloc(const char *filename, ///< File from which to read 1965 1965 const char *format, ///< scanf-like format string 1966 int indexCol ///< Column of the index vector (starting at zero)1966 long int indexCol ///< Column of the index vector (starting at zero) 1967 1967 ); 1968 1968 \end{prototype} … … 1977 1977 psLookupTable *psLookupTableImport(psLookupTable *table, ///< Lookup table into which to import 1978 1978 const psArray *vectors, ///< Array of vectors 1979 int indexCol ///< Index of the index vector in the array of vectors1979 long int indexCol ///< Index of the index vector in the array of vectors 1980 1980 ); 1981 1981 \end{prototype} … … 2007 2007 functions: 2008 2008 \begin{prototype} 2009 double psLookupTableInterpolate(const psLookupTable *table, double index, int column, psLookupStatusType *status);2009 double psLookupTableInterpolate(const psLookupTable *table, double index, long int column, psLookupStatusType *status); 2010 2010 psVector *psLookupTableInterpolateAll(const psLookupTable *table, double index, psVector *stats); 2011 2011 \end{prototype}
Note:
See TracChangeset
for help on using the changeset viewer.
