mailr25744 - /branches/frame_order_cleanup/specific_analyses/frame_order/uf.py


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

Header


Content

Posted by edward on September 11, 2014 - 15:42:
Author: bugman
Date: Thu Sep 11 15:42:19 2014
New Revision: 25744

URL: http://svn.gna.org/viewcvs/relax?rev=25744&view=rev
Log:
Fix for the frame_order.permute_axes user function.

One of the 6 permutations had the x and y axes switched (the x <= z <= y 
condition, permutation A).


Modified:
    branches/frame_order_cleanup/specific_analyses/frame_order/uf.py

Modified: branches/frame_order_cleanup/specific_analyses/frame_order/uf.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/frame_order_cleanup/specific_analyses/frame_order/uf.py?rev=25744&r1=25743&r2=25744&view=diff
==============================================================================
--- branches/frame_order_cleanup/specific_analyses/frame_order/uf.py    
(original)
+++ branches/frame_order_cleanup/specific_analyses/frame_order/uf.py    Thu 
Sep 11 15:42:19 2014
@@ -163,7 +163,7 @@
         # The cone angle and axes permutations.
         if permutation == 'A':
             perm_angles = [0, 2, 1]
-            perm_axes   = [1, 2, 0]
+            perm_axes   = [2, 1, 0]
         else:
             perm_angles = [2, 1, 0]
             perm_axes   = [0, 2, 1]




Related Messages


Powered by MHonArc, Updated Thu Sep 11 17:20:02 2014