Index: trunk/doc/pslib/psLibSDRS.tex
===================================================================
--- trunk/doc/pslib/psLibSDRS.tex	(revision 6507)
+++ trunk/doc/pslib/psLibSDRS.tex	(revision 6532)
@@ -1,3 +1,3 @@
-%%% $Id: psLibSDRS.tex,v 1.386 2006-03-03 21:48:12 price Exp $
+%%% $Id: psLibSDRS.tex,v 1.387 2006-03-06 23:12:45 price Exp $
 \documentclass[panstarrs,spec]{panstarrs}
 
@@ -4146,5 +4146,5 @@
 
 \begin{prototype}
-psImage *psFitsReadImage(psImage *out, const psFits *fits, psRegion region, int z);
+psImage *psFitsReadImage(const psFits *fits, psRegion region, int z);
 \end{prototype}
 Read an image or subimage from the \code{psFits} file pointer.  This
@@ -4211,4 +4211,18 @@
 the entire file following the inserted extension must be rewritten.}
 
+We also provide the following functions that use a \code{psArray} of
+\code{psImages}, so that the user need not worry about updating
+\code{NAXIS} headers:
+
+\begin{prototype}
+psArray *psFitsReadImageCube(const psFits *fits, psRegion region);
+bool psFitsUpdateImageCube(psFits *fits, const psArray *input, int x0, int y0);
+bool psFitsWriteImageCube(psFits *fits, psMetadata *header, const psArray
+*input, const char *extname);
+bool psFitsInsertImageCube(psFits *fits, psMetadata *header, const psArray
+*input, const char *extname, bool after);
+\end{prototype}
+
+
 \subsubsection{FITS Table I/O Functions}
 
@@ -4277,8 +4291,9 @@
 
 \begin{prototype}
-bool psFitsWriteTable(psFits* fits, const psMetadata *header, const psArray* table); 
+bool psFitsWriteTable(psFits* fits, const psMetadata *header, const psArray* table
+                      const char *extname); 
 \end{prototype}
 Accepts a \code{psArray} of \code{psMetadata} and writes it to the end
-of the file.
+of the file with the given \code{extname}.
 
 \begin{prototype}
@@ -4291,5 +4306,5 @@
 \begin{prototype}
 bool psFitsInsertTable(psFits *fits, const psMetadata *header, const psArray* table,
-                       bool after);
+                       const char *extname, bool after);
 \end{prototype}
 
