mailr3895 - /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 November 24, 2007 - 21:30:
Author: bugman
Date: Sat Nov 24 21:30:18 2007
New Revision: 3895

URL: http://svn.gna.org/viewcvs/relax?rev=3895&view=rev
Log:
Bug fix for generic_fns.selection.exists_mol_res_spin_data().

Fixed the circular dependence cased by calling the spin_loop() generator 
function!


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=3895&r1=3894&r2=3895&view=diff
==============================================================================
--- 1.3/generic_fns/selection.py (original)
+++ 1.3/generic_fns/selection.py Sat Nov 24 21:30:18 2007
@@ -360,26 +360,25 @@
     # Alias the data pipe container.
     cdp = relax_data_store[relax_data_store.current_pipe]
 
-    # Count the number of spin containers.
-    spin_num = 0
-    for spin in spin_loop(selection):
-        spin_num = spin_num + 1
-
-    # 2 or more spins (hence data exists).
-    if spin_num > 1:
+    # More than 1 molecule (hence data exists).
+    if len(cdp.mol) > 1:
         return True
 
-    # No spins have been selected (hence no data for the selection).
-    elif spin_num == 0:
-        return False
+    # More than 1 residue (hence data exists).
+    if len(cdp.mol[0].res) > 1:
+        return True
+
+    # More than 1 spin (hence data exists).
+    if len(cdp.mol[0].res[0].spin) > 1:
+        return True
 
     # Test the name and number of the single spin.
-    if spin.num == None and spin.name == None:
+    if cdp.mol[0].res[0].spin[0].num == None and 
cdp.mol[0].res[0].spin[0].name == None:
         # The object names in an empty container.
         white_list = ['name', 'num', 'select'] 
 
         # Loop over the objects in the spin container.
-        for name in dir(spin):
+        for name in dir(cdp.mol[0].res[0].spin[0]):
             # Skip white listed objects.
             if name in white_list:
                 continue




Related Messages


Powered by MHonArc, Updated Sun Nov 25 12:00:28 2007