[cig-commits] r13112 - seismo/3D/SPECFEM3D/branches/update_temporary

nlegoff at geodynamics.org nlegoff at geodynamics.org
Tue Oct 21 03:07:06 PDT 2008


Author: nlegoff
Date: 2008-10-21 03:07:05 -0700 (Tue, 21 Oct 2008)
New Revision: 13112

Modified:
   seismo/3D/SPECFEM3D/branches/update_temporary/create_movie_AVS_DX.f90
Log:
modified print output in create_movie_AVS_DX.f90.

Modified: seismo/3D/SPECFEM3D/branches/update_temporary/create_movie_AVS_DX.f90
===================================================================
--- seismo/3D/SPECFEM3D/branches/update_temporary/create_movie_AVS_DX.f90	2008-10-21 07:48:07 UTC (rev 13111)
+++ seismo/3D/SPECFEM3D/branches/update_temporary/create_movie_AVS_DX.f90	2008-10-21 10:07:05 UTC (rev 13112)
@@ -847,9 +847,9 @@
 
 ! define geometrical tolerance based upon typical size of the model
     SMALLVALTOL = 1.d-10 * dabs(UTM_X_MAX - UTM_X_MIN)
-    print *, UTM_X_MAX
-    print *, UTM_X_MIN
-    print *, SMALLVALTOL
+    print *, 'UTM_X_MAX', UTM_X_MAX
+    print *, 'UTM_X_MIN', UTM_X_MIN
+    print *, 'SMALLVALTOL', SMALLVALTOL
 
 ! dynamically allocate arrays
   allocate(ind(npointot))
@@ -892,17 +892,14 @@
   if(j == 1) then
     do i=2,npointot
       if(dabs(xp(i)-xp(i-1)) > SMALLVALTOL) ifseg(i)=.true.
-      !ifseg(i)=.true.
     enddo
   else if(j == 2) then
     do i=2,npointot
       if(dabs(yp(i)-yp(i-1)) > SMALLVALTOL) ifseg(i)=.true.
-      !ifseg(i)=.true.
     enddo
   else
     do i=2,npointot
       if(dabs(zp(i)-zp(i-1)) > SMALLVALTOL) ifseg(i)=.true.
-      !ifseg(i)=.true.
     enddo
   endif
 



More information about the CIG-COMMITS mailing list