mailr11111 - /branches/bieri_gui/gui_bieri/analyses/auto_noe.py


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

Header


Content

Posted by michael . bieri on April 22, 2010 - 06:17:
Author: michaelbieri
Date: Thu Apr 22 06:17:02 2010
New Revision: 11111

URL: http://svn.gna.org/viewcvs/relax?rev=11111&view=rev
Log:
Noe calculation is executed in thread.

Storage of thread information is deleted, as threads are unkillable in python.

Modified:
    branches/bieri_gui/gui_bieri/analyses/auto_noe.py

Modified: branches/bieri_gui/gui_bieri/analyses/auto_noe.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/analyses/auto_noe.py?rev=11111&r1=11110&r2=11111&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/analyses/auto_noe.py (original)
+++ branches/bieri_gui/gui_bieri/analyses/auto_noe.py Thu Apr 22 06:17:02 2010
@@ -489,21 +489,8 @@
         # Display the relax controller.
         self.gui.controller.Show()
 
-        # FIXME:  Debugging code, non-threaded exec.
-        self.execute_thread()
-        event.Skip()
-        return
-
-        # The thread object storage.
-        self.gui.calc_threads.append(Thread_container())
-        thread_cont = self.gui.calc_threads[-1]
-
         # Start the thread.
         id = thread.start_new_thread(self.execute_thread, ())
-
-        # Add the thread info to the container.
-        thread_cont.id = id
-        thread_cont.analysis_type = self.analysis_type
 
         # Terminate the event.
         event.Skip()




Related Messages


Powered by MHonArc, Updated Thu Apr 22 06:20:02 2010