mailr22221 - /trunk/specific_analyses/relax_disp/disp_data.py


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

Header


Content

Posted by tlinnet on February 20, 2014 - 18:16:
Author: tlinnet
Date: Thu Feb 20 18:16:39 2014
New Revision: 22221

URL: http://svn.gna.org/viewcvs/relax?rev=22221&view=rev
Log:
Added test for skipping non-matching time points.

Regarding bug #21665, (https://gna.org/bugs/?21665) - Running a CPMG analysis 
with two fields at two delay times.

Modified:
    trunk/specific_analyses/relax_disp/disp_data.py

Modified: trunk/specific_analyses/relax_disp/disp_data.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/specific_analyses/relax_disp/disp_data.py?rev=22221&r1=22220&r2=22221&view=diff
==============================================================================
--- trunk/specific_analyses/relax_disp/disp_data.py (original)
+++ trunk/specific_analyses/relax_disp/disp_data.py Thu Feb 20 18:16:39 2014
@@ -2412,6 +2412,10 @@
 
             # Skip non-matching offsets.
             if offset != None and hasattr(cdp, 'spin_lock_offset') and 
cdp.spin_lock_offset[id] != offset:
+                continue
+
+            # Skip non-matching time points.
+            if time != None and hasattr(cdp, 'relax_times') and 
cdp.relax_times[id] != time:
                 continue
 
             # Skip non-matching points.




Related Messages


Powered by MHonArc, Updated Thu Feb 20 18:20:02 2014