Index: /trunk/pswarp/src/pswarp.c
===================================================================
--- /trunk/pswarp/src/pswarp.c	(revision 17780)
+++ /trunk/pswarp/src/pswarp.c	(revision 17781)
@@ -13,5 +13,5 @@
 int main (int argc, char **argv)
 {
-    psTimerStart ("complete");
+    psTimerStart("pswarp");
 
     psLibInit(NULL);
@@ -19,8 +19,8 @@
     // model inits are needed in pmSourceIO
     // models defined in psphot/src/models are not available in psastro
-    pmModelClassInit ();
+    pmModelClassInit();
 
-    pmConfig *config = pswarpArguments (argc, argv);
-    if (!config) usage ();
+    pmConfig *config = pswarpArguments(argc, argv);
+    if (!config) usage();
 
     if (!pswarpOptions(config)) {
@@ -30,5 +30,5 @@
 
     // load identify the data sources
-    if (!pswarpParseCamera (config)) {
+    if (!pswarpParseCamera(config)) {
         psErrorStackPrint(stderr, "error setting up the camera\n");
         exit (1);
@@ -36,5 +36,5 @@
 
     // load the skycell layout information
-    if (!pswarpDefine (config)) {
+    if (!pswarpDefine(config)) {
         psErrorStackPrint(stderr, "error loading output definition\n");
         exit (1);
@@ -47,7 +47,7 @@
     }
 
-    psLogMsg ("pswarp", 3, "complete pswarp run: %f sec\n", psTimerMark ("complete"));
-    pswarpCleanup (config);
+    psLogMsg("pswarp", 3, "complete pswarp run: %f sec\n", psTimerMark("pswarp"));
+    pswarpCleanup(config);
     psLibFinalize();
-    exit (EXIT_SUCCESS);
+    exit(EXIT_SUCCESS);
 }
Index: /trunk/pswarp/src/pswarpLoop.c
===================================================================
--- /trunk/pswarp/src/pswarpLoop.c	(revision 17780)
+++ /trunk/pswarp/src/pswarpLoop.c	(revision 17781)
@@ -352,4 +352,7 @@
     // Write out summary statistics
     if (stats) {
+        psMetadataAddF32(stats, PS_LIST_TAIL, "DT_WARP", 0, "Time for warp completion",
+                         psTimerMark("pswarp"));
+
         const char *statsMDC = psMetadataConfigFormat(stats);
         if (!statsMDC) {
