mailr22420 - in /trunk/pipe_control: grace.py value.py


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

Header


Content

Posted by edward on March 06, 2014 - 19:30:
Author: bugman
Date: Thu Mar  6 19:30:06 2014
New Revision: 22420

URL: http://svn.gna.org/viewcvs/relax?rev=22420&view=rev
Log:
Fix for bug #21763 (https://gna.org/bugs/?21763).

This is the problem of the chi2 value not being visible in the parameter list 
of the grace.write and
value.write user functions in the GUI.

The problem was that when asking for the parameter name list, the 
minimisation parameters were not
being asked for.


Modified:
    trunk/pipe_control/grace.py
    trunk/pipe_control/value.py

Modified: trunk/pipe_control/grace.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/pipe_control/grace.py?rev=22420&r1=22419&r2=22420&view=diff
==============================================================================
--- trunk/pipe_control/grace.py (original)
+++ trunk/pipe_control/grace.py Thu Mar  6 19:30:06 2014
@@ -1,6 +1,6 @@
 
###############################################################################
 #                                                                            
 #
-# Copyright (C) 2003-2013 Edward d'Auvergne                                  
 #
+# Copyright (C) 2003-2014 Edward d'Auvergne                                  
 #
 #                                                                            
 #
 # This file is part of the program relax (http://www.nmr-relax.com).         
 #
 #                                                                            
 #
@@ -167,7 +167,7 @@
     data.append(["Spin sequence", 'spin'])
 
     # Loop over the parameters.
-    for name in (data_names(set='params') + data_names(set='generic')):
+    for name in (data_names(set='params') + data_names(set='generic') + 
data_names(set='min')):
         # Get the description.
         try:
             desc = return_data_desc(name)

Modified: trunk/pipe_control/value.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/pipe_control/value.py?rev=22420&r1=22419&r2=22420&view=diff
==============================================================================
--- trunk/pipe_control/value.py (original)
+++ trunk/pipe_control/value.py Thu Mar  6 19:30:06 2014
@@ -1,6 +1,6 @@
 
###############################################################################
 #                                                                            
 #
-# Copyright (C) 2003-2013 Edward d'Auvergne                                  
 #
+# Copyright (C) 2003-2014 Edward d'Auvergne                                  
 #
 #                                                                            
 #
 # This file is part of the program relax (http://www.nmr-relax.com).         
 #
 #                                                                            
 #
@@ -137,7 +137,7 @@
 
     # Loop over the parameters.
     params = []
-    for name in (data_names(set='params') + data_names(set='generic')):
+    for name in (data_names(set='params') + data_names(set='generic') + 
data_names(set='min')):
         # Get the description.
         desc = return_data_desc(name)
 




Related Messages


Powered by MHonArc, Updated Thu Mar 06 20:00:02 2014