mailr20422 - in /branches/relax_disp: ./ data_store/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 July 19, 2013 - 19:24:
Author: bugman
Date: Fri Jul 19 19:24:14 2013
New Revision: 20422

URL: http://svn.gna.org/viewcvs/relax?rev=20422&view=rev
Log:
Merged revisions 20421 via svnmerge from 
svn+ssh://bugman@xxxxxxxxxxx/svn/relax/trunk

........
  r20421 | bugman | 2013-07-19 19:21:27 +0200 (Fri, 19 Jul 2013) | 7 lines
  
  Bug fix for the spin parameter array always being converted to lowercase.
  
  The is in the data_store.mol_res_spin.SpinContainer._back_compat_hook() 
method.  It always calls the
  _back_compat_hook_mf_data() method which converts the spin 'params' list 
all to lowercase.  Now the
  _back_compat_hook() method first checks that the data pipe is that of a 
model-free analysis.
........

Modified:
    branches/relax_disp/   (props changed)
    branches/relax_disp/data_store/mol_res_spin.py

Propchange: branches/relax_disp/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Fri Jul 19 19:24:14 2013
@@ -1,1 +1,1 @@
-/trunk:1-20400
+/trunk:1-20421

Modified: branches/relax_disp/data_store/mol_res_spin.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/relax_disp/data_store/mol_res_spin.py?rev=20422&r1=20421&r2=20422&view=diff
==============================================================================
--- branches/relax_disp/data_store/mol_res_spin.py (original)
+++ branches/relax_disp/data_store/mol_res_spin.py Fri Jul 19 19:24:14 2013
@@ -93,7 +93,8 @@
         """
 
         # Model-free parameters.
-        self._back_compat_hook_mf_data()
+        if pipe_control.pipes.get_type() == 'mf':
+            self._back_compat_hook_mf_data()
 
         # Relaxation data.
         self._back_compat_hook_ri_data()




Related Messages


Powered by MHonArc, Updated Fri Jul 19 20:20:06 2013