mailr10427 - /branches/bieri_gui/gui_bieri/execution/calc_modelfree.py


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

Header


Content

Posted by edward on January 27, 2010 - 10:58:
Author: bugman
Date: Wed Jan 27 10:58:46 2010
New Revision: 10427

URL: http://svn.gna.org/viewcvs/relax?rev=10427&view=rev
Log:
Successful relax calculation will be displayed in relaxGUI Log Window and not 
as a pop-up.

This feedback_after_calc_patch file was attached to 
https://gna.org/task/?6847 by Michael Bieri
(https://gna.org/users/michaelbieri), in the zip file 
calc_modelfree.py_patch.tar.gz
(https://gna.org/support/download.php?file_id=7750).

Replaced:  relax_run_ok() to print ''.


Modified:
    branches/bieri_gui/gui_bieri/execution/calc_modelfree.py

Modified: branches/bieri_gui/gui_bieri/execution/calc_modelfree.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/execution/calc_modelfree.py?rev=10427&r1=10426&r2=10427&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/execution/calc_modelfree.py (original)
+++ branches/bieri_gui/gui_bieri/execution/calc_modelfree.py Wed Jan 27 
10:58:46 2010
@@ -260,21 +260,24 @@
     # Feedback about successful Calculation in manual mode and after final 
calculation in autamatic mode
     if not automatic:
         if model == 'local_tm':
-            relax_run_ok('Local Tm calculation was successful !')
+            print ('Local Tm calculation was successful !')
 
             # enable m1 - m5 to choose for calculation
             return True
 
         if model == 'sphere':
-            relax_run_ok('Sphere calculation was successful !')
+            print ('Sphere calculation was successful !')
         if model == 'prolate':
-            relax_run_ok('Prolate calculation was successful !')
+            print ('Prolate calculation was successful !')
         if model == 'oblate':
-            relax_run_ok('Oblate calculation was successful !')
+            print ('Oblate calculation was successful !')
         if model == 'ellipsoid':
-            relax_run_ok('Ellipsoid calculation was successful !')
+            print ('Ellipsoid calculation was successful !')
         if model == 'Final':
-            relax_run_ok('Final Model-free calculation was successful !')
+            print ('Final Model-free calculation was successful !')
+
+    # Close thread.
+    return
 
 
 




Related Messages


Powered by MHonArc, Updated Wed Jan 27 11:20:02 2010