mailr13846 - /1.3/test_suite/shared_data/model_free/sphere/create_sphere.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on July 25, 2011 - 10:13:
Author: bugman
Date: Mon Jul 25 10:13:27 2011
New Revision: 13846

URL: http://svn.gna.org/viewcvs/relax?rev=13846&view=rev
Log:
Modified the spherical vector distribution script in preparation for Python 3.


Modified:
    1.3/test_suite/shared_data/model_free/sphere/create_sphere.py

Modified: 1.3/test_suite/shared_data/model_free/sphere/create_sphere.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/shared_data/model_free/sphere/create_sphere.py?rev=13846&r1=13845&r2=13846&view=diff
==============================================================================
--- 1.3/test_suite/shared_data/model_free/sphere/create_sphere.py (original)
+++ 1.3/test_suite/shared_data/model_free/sphere/create_sphere.py Mon Jul 25 
10:13:27 2011
@@ -1,6 +1,6 @@
 #!/usr/bin/python
 
-# Copyright 2004, Edward d'Auvergne
+# Copyright 2004-2011, Edward d'Auvergne
 
 from math import acos, cos, pi, sin
 
@@ -38,7 +38,7 @@
 # U and V.
 u = []
 val = 1.0 / float(number)
-for i in xrange(number):
+for i in range(number):
     u.append(float(i) * val)
 
 
@@ -47,14 +47,14 @@
 
 theta = []
 phi = []
-for i in xrange(len(u)):
+for i in range(len(u)):
     theta.append(acos(2.0 * (u[i] + val/2.0) - 1.0))
     phi.append(2.0 * pi * u[i])
-    print "\ni: " + `i`
-    print "u: " + `u[i]`
-    print "v: " + `u[i] + val/2.0`
-    print "theta: " + `theta[i]`
-    print "phi: " + `phi[i]`
+    print("\ni: %s" % i)
+    print("u: %s" % u[i])
+    print("v: %s" % (u[i] + val/2.0))
+    print("theta: %s" % theta[i])
+    print("phi: %s" % phi[i])
 
 
 # Generate the vectors:
@@ -95,10 +95,10 @@
 used = []
 
 # Loop over the vectors. 
-for i in xrange(len(vectors)):
+for i in range(len(vectors)):
     # Test if the vector has already been used.
     if vectors[i] in used:
-        print "Vector " + `vectors[i]` + " already used."
+        print("Vector %s already used." % vectors[i])
         continue
 
     # Nitrogen line.




Related Messages


Powered by MHonArc, Updated Mon Jul 25 10:20:02 2011