mailr3558 - /1.3/generic_fns/spin.py


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

Header


Content

Posted by edward on November 18, 2007 - 20:20:
Author: bugman
Date: Sun Nov 18 20:19:52 2007
New Revision: 3558

URL: http://svn.gna.org/viewcvs/relax?rev=3558&view=rev
Log:
A few comment fixes.


Modified:
    1.3/generic_fns/spin.py

Modified: 1.3/generic_fns/spin.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/generic_fns/spin.py?rev=3558&r1=3557&r2=3558&view=diff
==============================================================================
--- 1.3/generic_fns/spin.py (original)
+++ 1.3/generic_fns/spin.py Sun Nov 18 20:19:52 2007
@@ -165,18 +165,18 @@
 
         # Loop over the spins of the residue.
         for i in xrange(len(res.spin)):
-            # Remove the spin is there is a match.
+            # Store the spin indecies for deletion.
             if res.spin[i].num in spins or res.spin[i].name in spins:
                 indecies.append(i)
 
         # Reverse the indecies.
         indecies.reverse()
 
-        # Delete the residues.
+        # Delete the spins.
         for index in indecies:
             res.spin.pop(index)
 
-        # Create an empty residue container if no residues remain.
+        # Create an empty spin container if no spins remain.
         if len(res.spin) == 0:
             res.spin.add_item()
 




Related Messages


Powered by MHonArc, Updated Sun Nov 18 20:40:09 2007