<p><b>mpetersen@lanl.gov</b> 2010-03-24 14:50:49 -0600 (Wed, 24 Mar 2010)</p><p>Removed the need for a stats subdirectory.<br>
</p><hr noshade><pre><font color="gray">Modified: trunk/mpas/src/core_ocean/module_global_diagnostics.F
===================================================================
--- trunk/mpas/src/core_ocean/module_global_diagnostics.F        2010-03-24 17:16:59 UTC (rev 158)
+++ trunk/mpas/src/core_ocean/module_global_diagnostics.F        2010-03-24 20:50:49 UTC (rev 159)
@@ -307,27 +307,27 @@
       ! write out the data to files
       if (dminfo % my_proc_id == IO_NODE) then
          fileID = getFreeUnit()
-         open(fileID,file='stats/min.txt',ACCESS='append')
+         open(fileID,file='stats_min.txt',ACCESS='append')
             write (fileID,'(100es24.16)') mins(1:nVariables)
          close (fileID)
-         open(fileID,file='stats/max.txt',ACCESS='append')
+         open(fileID,file='stats_max.txt',ACCESS='append')
             write (fileID,'(100es24.16)') maxes(1:nVariables)
          close (fileID)
-         open(fileID,file='stats/sum.txt',ACCESS='append')
+         open(fileID,file='stats_sum.txt',ACCESS='append')
             write (fileID,'(100es24.16)') sums(1:nVariables)
          close (fileID)
-         open(fileID,file='stats/avg.txt',ACCESS='append')
+         open(fileID,file='stats_avg.txt',ACCESS='append')
             write (fileID,'(100es24.16)') averages(1:nVariables)
          close (fileID)
-         open(fileID,file='stats/time.txt',ACCESS='append')
+         open(fileID,file='stats_time.txt',ACCESS='append')
             write (fileID,'(i5,100es24.16)') timeIndex, &amp;
                state % xtime % scalar, dt, &amp;
                CFLNumberGlobal
          close (fileID)
-         open(fileID,file='stats/colmin.txt',ACCESS='append')
+         open(fileID,file='stats_colmin.txt',ACCESS='append')
             write (fileID,'(100es24.16)') verticalSumMins(1:nVariables)
          close (fileID)
-         open(fileID,file='stats/colmax.txt',ACCESS='append')
+         open(fileID,file='stats_colmax.txt',ACCESS='append')
             write (fileID,'(100es24.16)') verticalSumMaxes(1:nVariables)
          close (fileID)
       end if

</font>
</pre>