mailr6237 - /1.3/generic_fns/selection.py


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

Header


Content

Posted by edward on May 22, 2008 - 12:25:
Author: bugman
Date: Thu May 22 12:25:26 2008
New Revision: 6237

URL: http://svn.gna.org/viewcvs/relax?rev=6237&view=rev
Log:
Changed all selection flags to bools.


Modified:
    1.3/generic_fns/selection.py

Modified: 1.3/generic_fns/selection.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/generic_fns/selection.py?rev=6237&r1=6236&r2=6237&view=diff
==============================================================================
--- 1.3/generic_fns/selection.py (original)
+++ 1.3/generic_fns/selection.py Thu May 22 12:25:26 2008
@@ -48,7 +48,7 @@
 
     # Loop over the spins and deselect them.
     for spin in spin_loop():
-        spin.select = 0
+        spin.select = False
 
 
 def desel_read(file=None, dir=None, mol_name_col=None, res_num_col=None, 
res_name_col=None, spin_num_col=None, spin_name_col=None, sep=None, 
change_all=False):
@@ -116,7 +116,7 @@
     # First select all spins if desired.
     if change_all:
         for spin in spin_loop():
-            spin.select = 1
+            spin.select = True
 
     # Then deselect the spins in the file.
     for i in xrange(len(file_data)):
@@ -136,7 +136,7 @@
             continue
 
         # Deselect the spin.
-        spin.select = 0
+        spin.select = False
 
 
 def desel_spin(spin_id=None, change_all=None):
@@ -162,11 +162,11 @@
     # First select all spins if desired.
     if change_all:
         for spin in spin_loop():
-            spin.select = 1
+            spin.select = True
 
     # Then deselect the desired spins.
     for spin in spin_loop(spin_id):
-        spin.select = 0
+        spin.select = False
 
 
 def reverse(spin_id=None):
@@ -190,9 +190,9 @@
     for spin in spin_loop(spin_id):
         # Reverse the selection.
         if spin.select:
-            spin.select = 0
-        else:
-            spin.select = 1
+            spin.select = False
+        else:
+            spin.select = True
 
 
 def sel_all():
@@ -212,7 +212,7 @@
 
     # Loop over the spins and select them.
     for spin in spin_loop():
-        spin.select = 1
+        spin.select = True
 
 
 def sel_read(file=None, dir=None, mol_name_col=None, res_num_col=None, 
res_name_col=None, spin_num_col=None, spin_name_col=None, sep=None, 
boolean='OR', change_all=False):




Related Messages


Powered by MHonArc, Updated Thu May 22 12:40:16 2008