mailr6593 - /1.3/generic_fns/mol_res_spin.py


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

Header


Content

Posted by edward on June 29, 2008 - 15:55:
Author: bugman
Date: Sun Jun 29 15:20:42 2008
New Revision: 6593

URL: http://svn.gna.org/viewcvs/relax?rev=6593&view=rev
Log:
Bug fix for the spin_loop.

If the spin_loop was being executed an arbitrary data pipe (rather than the 
current), the call to
exists_mol_res_spin_data() was operating not on that pipe but on the current 
pipe!


Modified:
    1.3/generic_fns/mol_res_spin.py

Modified: 1.3/generic_fns/mol_res_spin.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/generic_fns/mol_res_spin.py?rev=6593&r1=6592&r2=6593&view=diff
==============================================================================
--- 1.3/generic_fns/mol_res_spin.py (original)
+++ 1.3/generic_fns/mol_res_spin.py Sun Jun 29 15:20:42 2008
@@ -1860,7 +1860,7 @@
     pipes.test(pipe)
 
     # Test for the presence of data, and end the execution of this function 
if there is none.
-    if not exists_mol_res_spin_data():
+    if not exists_mol_res_spin_data(pipe):
         return
 
     # Parse the selection string.




Related Messages


Powered by MHonArc, Updated Sun Jun 29 16:00:20 2008