[cig-commits] r4590 - mc/3D/CitcomS/trunk/visual

tan2 at geodynamics.org tan2 at geodynamics.org
Fri Sep 22 13:37:27 PDT 2006


Author: tan2
Date: 2006-09-22 13:37:27 -0700 (Fri, 22 Sep 2006)
New Revision: 4590

Modified:
   mc/3D/CitcomS/trunk/visual/autocombine.py
   mc/3D/CitcomS/trunk/visual/estimate.py
   mc/3D/CitcomS/trunk/visual/h5tocap.py
   mc/3D/CitcomS/trunk/visual/miff2avi
   mc/3D/CitcomS/trunk/visual/miff2mpg
   mc/3D/CitcomS/trunk/visual/parser.py
   mc/3D/CitcomS/trunk/visual/zslice.py
Log:
Added 'Id' keyword to the files

Modified: mc/3D/CitcomS/trunk/visual/autocombine.py
===================================================================
--- mc/3D/CitcomS/trunk/visual/autocombine.py	2006-09-22 19:19:11 UTC (rev 4589)
+++ mc/3D/CitcomS/trunk/visual/autocombine.py	2006-09-22 20:37:27 UTC (rev 4590)
@@ -92,3 +92,10 @@
         combine_fn(nodelist, datadir, datafile, timestep,
                    nodex, nodey, nodez,
                    ncap, nprocx, nprocy, nprocz)
+
+
+
+# version
+# $Id$
+
+# End of file


Property changes on: mc/3D/CitcomS/trunk/visual/autocombine.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: mc/3D/CitcomS/trunk/visual/estimate.py
===================================================================
--- mc/3D/CitcomS/trunk/visual/estimate.py	2006-09-22 19:19:11 UTC (rev 4589)
+++ mc/3D/CitcomS/trunk/visual/estimate.py	2006-09-22 20:37:27 UTC (rev 4590)
@@ -87,9 +87,9 @@
     opts, args = getopt.getopt(sys.argv[1:], "hac:t:x:y:z:",
         ['help','full','regional','caps=','steps=','nodex=','nodey=','nodez=',
          'all','connectivity','stress','pressure','surf','botm','average'])
-    
+
     for opt,arg in opts:
-        
+
         if opt in ('-h','--help'):
             print __doc__
             sys.exit(1)
@@ -109,7 +109,7 @@
             nodey = int(arg)
         if opt in ('-z','--nodez'):
             nodez = int(arg)
-        
+
         if opt in ('-a','--all'):
             for k in out:
                 out[k] = True
@@ -125,7 +125,7 @@
             out['botm'] = True
         if opt == '--average':
             out['average'] = True
-    
+
     if not caps or not steps or not nodex or not nodey or not nodez:
         print "Enter the following quantities:\n"
 
@@ -134,13 +134,13 @@
 
     if not steps:
         steps = int(raw_input('\tsteps = '))
-    
+
     if not nodex:
         nodex = int(raw_input('\tnodex = '))
-    
+
     if not nodey:
         nodey = int(raw_input('\tnodey = '))
-    
+
     if not nodez:
         nodez = int(raw_input('\tnodez = '))
 
@@ -276,3 +276,9 @@
 
 if __name__ == '__main__':
     main()
+
+
+# version
+# $Id$
+
+# End of file


Property changes on: mc/3D/CitcomS/trunk/visual/estimate.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: mc/3D/CitcomS/trunk/visual/h5tocap.py
===================================================================
--- mc/3D/CitcomS/trunk/visual/h5tocap.py	2006-09-22 19:19:11 UTC (rev 4589)
+++ mc/3D/CitcomS/trunk/visual/h5tocap.py	2006-09-22 20:37:27 UTC (rev 4590)
@@ -125,3 +125,7 @@
         convert(h5file, file_prefix, frame)
 
 
+# version
+# $Id$
+
+# End of file


Property changes on: mc/3D/CitcomS/trunk/visual/h5tocap.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: mc/3D/CitcomS/trunk/visual/miff2avi
===================================================================
--- mc/3D/CitcomS/trunk/visual/miff2avi	2006-09-22 19:19:11 UTC (rev 4589)
+++ mc/3D/CitcomS/trunk/visual/miff2avi	2006-09-22 20:37:27 UTC (rev 4590)
@@ -104,3 +104,7 @@
 
 rm -rf $TMPDIR
 
+# version
+# $Id$
+
+# End of file


Property changes on: mc/3D/CitcomS/trunk/visual/miff2avi
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: mc/3D/CitcomS/trunk/visual/miff2mpg
===================================================================
--- mc/3D/CitcomS/trunk/visual/miff2mpg	2006-09-22 19:19:11 UTC (rev 4589)
+++ mc/3D/CitcomS/trunk/visual/miff2mpg	2006-09-22 20:37:27 UTC (rev 4590)
@@ -84,3 +84,9 @@
 #png2yuv -n $(( FRAMES+1 )) -f30 -L0 -Ip -j $TMPDIR/frame.$NUMFMT.png | mpeg2enc -o $OOPTION --video-bitrate 1151 --format 3 --motion-search-radius 32 --no-constraints
 
 rm -rf $TMPDIR
+
+
+# version
+# $Id$
+
+# End of file


Property changes on: mc/3D/CitcomS/trunk/visual/miff2mpg
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: mc/3D/CitcomS/trunk/visual/parser.py
===================================================================
--- mc/3D/CitcomS/trunk/visual/parser.py	2006-09-22 19:19:11 UTC (rev 4589)
+++ mc/3D/CitcomS/trunk/visual/parser.py	2006-09-22 20:37:27 UTC (rev 4590)
@@ -32,7 +32,8 @@
 Read and parse input file which consists of 'name=value' pairs. Note that
 'name =value', `name= value', or 'name = value' is not allowed, i.e. space
 is not allowed on either sides of the eqaul sign. 'name' is case-sensitive.
-Blank lines, anything after `#', and just about everything else is ignored.
+Blank lines, lines starting with '[', anything after `#', and just about
+everything else is ignored.
 
 Intrinsic defaults can be specified by passing them into the constructor as
 a dictionary.
@@ -265,3 +266,7 @@
             break
 
 
+# version
+# $Id$
+
+# End of file


Property changes on: mc/3D/CitcomS/trunk/visual/parser.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: mc/3D/CitcomS/trunk/visual/zslice.py
===================================================================
--- mc/3D/CitcomS/trunk/visual/zslice.py	2006-09-22 19:19:11 UTC (rev 4589)
+++ mc/3D/CitcomS/trunk/visual/zslice.py	2006-09-22 20:37:27 UTC (rev 4590)
@@ -124,3 +124,9 @@
     layers = [ int(x) for x in sys.argv[2:] ]
 
     zslice(prefix, *layers)
+
+
+# version
+# $Id$
+
+# End of file


Property changes on: mc/3D/CitcomS/trunk/visual/zslice.py
___________________________________________________________________
Name: svn:keywords
   + Id



More information about the cig-commits mailing list