mailr6455 - /1.3/data/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 23, 2008 - 22:47:
Author: bugman
Date: Mon Jun 23 22:32:06 2008
New Revision: 6455

URL: http://svn.gna.org/viewcvs/relax?rev=6455&view=rev
Log:
The spin is passed into the return_data_desc() method.

The object name and description list is build for each spin separately now.


Modified:
    1.3/data/mol_res_spin.py

Modified: 1.3/data/mol_res_spin.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/data/mol_res_spin.py?rev=6455&r1=6454&r2=6455&view=diff
==============================================================================
--- 1.3/data/mol_res_spin.py (original)
+++ 1.3/data/mol_res_spin.py Mon Jun 23 22:32:06 2008
@@ -199,16 +199,6 @@
         data_names = specific_fns.setup.get_specific_fn('data_names', 
ds[ds.current_pipe].pipe_type, raise_error=False)
         return_data_desc = 
specific_fns.setup.get_specific_fn('return_data_desc', 
ds[ds.current_pipe].pipe_type, raise_error=False)
 
-        # Get the object names and loop over them to get their descriptions.
-        object_info = []
-        if data_names:
-            for name in data_names():
-                # Get the description.
-                desc = return_data_desc(name)
-
-                # Append the two.
-                object_info.append([name, desc])
-
         # Loop over the spins.
         for i in xrange(len(self)):
             # Create an XML element for this spin and add it to the higher 
level element.
@@ -219,6 +209,16 @@
             spin_element.setAttribute('name', self[i].name)
             spin_element.setAttribute('num', str(self[i].num))
             spin_element.setAttribute('desc', 'Spin')
+
+            # Get the spin specific object names and loop over them to get 
their descriptions.
+            object_info = []
+            if data_names:
+                for name in data_names():
+                    # Get the description.
+                    desc = return_data_desc(name, spin=self[i])
+
+                    # Append the two.
+                    object_info.append([name, desc])
 
             # Add the ordered objects.
             blacklist = []




Related Messages


Powered by MHonArc, Updated Mon Jun 23 23:20:13 2008