mailr19183 - /branches/relax_disp/specific_analyses/relax_disp.py


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

Header


Content

Posted by edward on March 27, 2013 - 13:05:
Author: bugman
Date: Wed Mar 27 13:05:12 2013
New Revision: 19183

URL: http://svn.gna.org/viewcvs/relax?rev=19183&view=rev
Log:
Ported r8335 from the old relax_disp branch into the new branch.

The command used was:
svn merge -r8334:8335 
svn+ssh://bugman@xxxxxxxxxxx/svn/relax/branches/relax_disp/specific_fns/@r18123
 specific_analyses

.....
  r8335 | semor | 2009-01-08 16:19:09 +0100 (Thu, 08 Jan 2009) | 9 lines
  Changed paths:
     M /branches/relax_disp/specific_fns/relax_disp.py
  
  Changed the index name and description.
  
  This is as proposed by Ed in a post at:
  https://mail.gna.org/public/relax-devel/2009-01/msg00029.html
  (Message-id: <7f080ed10901080144u541e6ed5ve52d2d233f8d7cf7@xxxxxxxxxxxxxx>)
  
  The description might change later to be more appropriate when the code is 
more mature...
.....


Modified:
    branches/relax_disp/specific_analyses/relax_disp.py

Modified: branches/relax_disp/specific_analyses/relax_disp.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/relax_disp/specific_analyses/relax_disp.py?rev=19183&r1=19182&r2=19183&view=diff
==============================================================================
--- branches/relax_disp/specific_analyses/relax_disp.py (original)
+++ branches/relax_disp/specific_analyses/relax_disp.py Wed Mar 27 13:05:12 
2013
@@ -135,14 +135,16 @@
         return scaling_matrix
 
 
-    def back_calc(self, spin=None, cpmg_frq_index=None):
+    def back_calc(self, spin=None, result_index=None):
         """Back-calculation of peak intensity for the given CPMG pulse train 
frequency.
 
         @keyword spin:            The spin container.
         @type spin:               SpinContainer instance
-        @keyword cpmg_frq_index:  The index for the desired CPMG pulse train 
frequency.
-        @type cpmg_frq_index:     int
-        @return:                  The peak intensity for the desired CPMG 
pulse train frequency.
+        @keyword result_index:    The index for the back-calculated data 
associated to every CPMG or
+                                  R1rho frequency, as well as every magnetic 
field frequency.
+        @type result_index:       int
+        @return:                  The R2eff value associated to every CPMG 
or R1rho frequency, as
+                                  well as every magnetic field frequency.
         @rtype:                   float
         """
 
@@ -165,7 +167,7 @@
         results = back_calc_I()
 
         # Return the correct peak height.
-        return results[cpmg_frq_index]
+        return results[result_index]
 
 
     def cpmg_frq(self, frq=0, spectrum_id=None):
@@ -239,7 +241,7 @@
         # Loop over the spectral time points.
         for j in xrange(len(cdp.cpmg_frqs)):
             # Back calculate the value.
-            value = self.back_calc(spin=spin, cpmg_frq_index=j)
+            value = self.back_calc(spin=spin, result_index=j)
 
             # Append the value.
             mc_data.append(value)




Related Messages


Powered by MHonArc, Updated Wed Mar 27 13:20:02 2013