Index: /trunk/archive/pslib/include/psAstrom.h
===================================================================
--- /trunk/archive/pslib/include/psAstrom.h	(revision 159)
+++ /trunk/archive/pslib/include/psAstrom.h	(revision 160)
@@ -28,5 +28,5 @@
 /** Constructor */
 psAstromCoeffs *
-psAstromCoeffsNew(int xyOrder,		//!< Spatial (x,y) order of polynomial
+psAstromCoeffsAlloc(int xyOrder,		//!< Spatial (x,y) order of polynomial
 		  int colourOrder,	//!< Order of polynomial in colour
 		  int magOrder,		//!< Order of polynomial in magnitude
@@ -38,5 +38,5 @@
 /** Destructor */
 void
-psAstromCoeffsDel(psAstromCoeffs *restrict myAstromCoeffs //!< Object to destroy
+psAstromCoeffsFree(psAstromCoeffs *restrict myAstromCoeffs //!< Object to destroy
     );
 
@@ -60,5 +60,5 @@
 /** Constructor */
 psTelPointing *
-psTelPointingNew(double ra, double dec,	//!< Telescope boresight
+psTelPointingAlloc(double ra, double dec,	//!< Telescope boresight
 		 double ha,		//!< Hour angle
 		 double zd,		//!< Zenith distance
@@ -71,5 +71,5 @@
 /** Destructor */
 void
-psTelPointingDel(psTelPointing *restrict myTelPointing //!< Object to destroy
+psTelPointingFree(psTelPointing *restrict myTelPointing //!< Object to destroy
     );
 
@@ -91,9 +91,9 @@
 /** Constructor */
 psCellDescription *
-psCellDescriptionNew(void);
-
-/** Destructor */
-void
-psCellDescriptionDel(psCellDescription *restrict myCell //!< Cell description to destroy
+psCellDescriptionAlloc(void);
+
+/** Destructor */
+void
+psCellDescriptionFree(psCellDescription *restrict myCell //!< Cell description to destroy
     );
 
@@ -117,9 +117,9 @@
 /** Constructor */
 psOTADescription *
-psOTADescriptionNew(void);
+psOTADescriptionAlloc(void);
 
 /** Destructor. */
 void
-psOTADescriptionDel(psOTADescription *restrict myOTA //!< OTA description to destroy
+psOTADescriptionFree(psOTADescription *restrict myOTA //!< OTA description to destroy
     );
 
@@ -158,10 +158,10 @@
 /** Constructor */
 psAstrom *
-psAstromNew(const psTelPointing *telescope //!< Telescope pointing, used to initialise the tp data.
-    );
-
-/** Destructor */
-void
-psAstromDel(psAstrom *restrict myAstrom	//!< Object to destroy
+psAstromAlloc(const psTelPointing *telescope //!< Telescope pointing, used to initialise the tp data.
+    );
+
+/** Destructor */
+void
+psAstromFree(psAstrom *restrict myAstrom	//!< Object to destroy
     );
 
@@ -184,5 +184,5 @@
 /** Fit astrometric solution to list of (chip#,x,y) and (RA,Dec) */
 int
-psFitAstrom(psOTADescription *restrict ota, //!< psAstrom struct containing initial guess for coefficients
+psFitAstrom(psOTADescription *restrict ota, //!< Initial guess for coefficients
 	    const psOTAPosArray *restrict detector, //!< Positions on OTA (chip#,x,y)
 	    const psSkyPosArray *restrict sky, //!< Positions on the sky (RA,Dec)
Index: /trunk/archive/pslib/include/psMatrix.h
===================================================================
--- /trunk/archive/pslib/include/psMatrix.h	(revision 159)
+++ /trunk/archive/pslib/include/psMatrix.h	(revision 160)
@@ -10,5 +10,5 @@
 /** Constructor */
 psMatrix *
-psMatrixNew(int Xdimen,			//!< x dimension of new matrix
+psMatrixAlloc(int Xdimen,			//!< x dimension of new matrix
 	    int Ydimen			//!< y dimension of new matrix
 	    );
@@ -16,5 +16,5 @@
 /** Destructor */
 void
-psMatrixDel(psMatrix *restrict myMatrix	//!< Matrix to destroy
+psMatrixFree(psMatrix *restrict myMatrix	//!< Matrix to destroy
 	    );
 
Index: /trunk/archive/pslib/include/psObjects.h
===================================================================
--- /trunk/archive/pslib/include/psObjects.h	(revision 159)
+++ /trunk/archive/pslib/include/psObjects.h	(revision 160)
@@ -37,9 +37,9 @@
 /** Constructor */
 psObject *
-psObjectNew(void);
+psObjectAlloc(void);
 
 /** Destructor */
 void
-psObjectDel(psObject *restrict myObject);
+psObjectFree(psObject *restrict myObject);
 
 /***********************************************************************************************************/
@@ -59,5 +59,5 @@
 /** Constructor */
 psImageObjects *
-psImageObjectsNew(const psImage *image,	//!< Image that produced the objects, which has metadata we need
+psImageObjectsAlloc(const psImage *image,	//!< Image that produced the objects, which has metadata we need
 		  psObjectArray *objects //!< The objects
 		  );
@@ -65,5 +65,5 @@
 /** Destructor */
 void
-psImageObjectsDel(psImageObjects *restrict myImageObjects //!< Object to destroy
+psImageObjectsFree(psImageObjects *restrict myImageObjects //!< Object to destroy
 		  );
 
@@ -78,5 +78,5 @@
 /** Constructor */
 psCatalogueObjects *
-psCatalogueObjectsNew(enum psCatalogue *catalogue, //!< Source catalogue
+psCatalogueObjectsAlloc(enum psCatalogue *catalogue, //!< Source catalogue
 		      psObjectArray *objects //!< The objects
 		      );
@@ -84,5 +84,5 @@
 /** Destructor */
 void
-psCatalogueObjectsDel(psCatalogeObjects *restrict myCatalogueObjects //!< Object to destroy
+psCatalogueObjectsFree(psCatalogeObjects *restrict myCatalogueObjects //!< Object to destroy
 		      );
 
@@ -103,5 +103,5 @@
 /** Constructor */
 psSuperObject *
-psSuperObjectNew(const psImageArray *images, //!< The images with the measurements
+psSuperObjectAlloc(const psImageArray *images, //!< The images with the measurements
 		 const psObjectArray *objects //!< Object measurements
 		 );
@@ -109,5 +109,5 @@
 /** Destructor */
 void
-psSuperObjectDel(psSuperObject *restrict mySuperObject //!< Object to destroy
+psSuperObjectFree(psSuperObject *restrict mySuperObject //!< Object to destroy
 		 );
 
Index: /trunk/archive/pslib/include/psPosition.h
===================================================================
--- /trunk/archive/pslib/include/psPosition.h	(revision 159)
+++ /trunk/archive/pslib/include/psPosition.h	(revision 160)
@@ -49,9 +49,9 @@
 /** Constructor */
 psOTAPos *
-psOTAPosNew(void);
+psOTAPosAlloc(void);
 
 /** Destructor */
 void
-psOTAPosDel(psOTAPos *restrict myOTAPos	//!< Object to destroy
+psOTAPosFree(psOTAPos *restrict myOTAPos	//!< Object to destroy
     );
 
@@ -77,9 +77,9 @@
 /** Constructor */
 psSkyPos *
-psSkyPosNew(void);
+psSkyPosAlloc(void);
 
 /** Destructor */
 void
-psSkyPosDel(psSkyPos *restrict mySkyPos	//!< Object to destroy
+psSkyPosFree(psSkyPos *restrict mySkyPos	//!< Object to destroy
     );
 
@@ -102,9 +102,9 @@
 /** Constructor */
 psLatLong *
-psLatLongNew(void);
+psLatLongAlloc(void);
 
 /** Destructor */
 void
-psLatLongDel(psLatLong *restrict myLatLong //!< Object to destroy
+psLatLongFree(psLatLong *restrict myLatLong //!< Object to destroy
     );
 
Index: /trunk/archive/pslib/include/psStats.h
===================================================================
--- /trunk/archive/pslib/include/psStats.h	(revision 159)
+++ /trunk/archive/pslib/include/psStats.h	(revision 160)
@@ -31,5 +31,5 @@
 /** Constructor */
 psHistogram *
-psHistogramNew(float lower,		//!< Lower limit for the bins
+psHistogramAlloc(float lower,		//!< Lower limit for the bins
 	       float upper,		//!< Upper limit for the bins
 	       float size		//!< Size of the bins
@@ -38,5 +38,5 @@
 /** Generic constructor */
 psHistogram *
-psHistogramNewGeneric(const psFloatArray *restrict lower, //!< Lower bounds for the bins
+psHistogramAllocGeneric(const psFloatArray *restrict lower, //!< Lower bounds for the bins
 		      const psFloatArray *restrict upper, //!< Upper bounds for the bins
 		      float minVal,	//!< Minimum value
@@ -46,5 +46,5 @@
 /** Destructor */
 void
-psHistogramDel(psHistogram *restrict myHist //!< Histogram to destroy
+psHistogramFree(psHistogram *restrict myHist //!< Histogram to destroy
     );
 
