mailr12668 - /branches/relax_data/generic_fns/relax_data.py


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

Header


Content

Posted by edward on March 01, 2011 - 18:30:
Author: bugman
Date: Tue Mar  1 18:30:27 2011
New Revision: 12668

URL: http://svn.gna.org/viewcvs/relax?rev=12668&view=rev
Log:
Deletion of the useless update_noe_r1_table() function.


Modified:
    branches/relax_data/generic_fns/relax_data.py

Modified: branches/relax_data/generic_fns/relax_data.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/relax_data/generic_fns/relax_data.py?rev=12668&r1=12667&r2=12668&view=diff
==============================================================================
--- branches/relax_data/generic_fns/relax_data.py (original)
+++ branches/relax_data/generic_fns/relax_data.py Tue Mar  1 18:30:27 2011
@@ -931,33 +931,6 @@
                 spin.noe_r1_table[j] = spin.num_ri - 1
 
 
-def update_noe_r1_table(cont):
-    """Update the NOE-R1 translation table.
-
-    @param cont:    Either the pipe container or spin container to update 
the structure of.
-    @type cont:     PipeContainer or SpinContainer instance
-    """
-
-    # Create an array of None for the NOE R1 translation table, if the table 
is empty.
-    if cont.noe_r1_table == []:
-        for i in xrange(cont.num_ri):
-            cont.noe_r1_table.append(None)
-
-    # Loop over the relaxation data.
-    for i in xrange(cont.num_ri):
-        # If the data corresponds to 'NOE', try to find if the corresponding 
R1 data.
-        if cont.ri_labels[i] == 'NOE':
-            for j in xrange(cont.num_ri):
-                if cont.ri_labels[j] == 'R1' and 
cont.frq_labels[cont.remap_table[i]] == cont.frq_labels[cont.remap_table[j]]:
-                    cont.noe_r1_table[i] = j
-
-        # If the data corresponds to 'R1', try to find if the corresponding 
NOE data.
-        if cont.ri_labels[i] == 'R1':
-            for j in xrange(cont.num_ri):
-                if cont.ri_labels[j] == 'NOE' and 
cont.frq_labels[cont.remap_table[i]] == cont.frq_labels[cont.remap_table[j]]:
-                    cont.noe_r1_table[j] = i
-
-
 def write(ri_label=None, frq_label=None, file=None, dir=None, force=False):
     """Write relaxation data to a file."""
 




Related Messages


Powered by MHonArc, Updated Tue Mar 01 18:40:01 2011