mailr25732 - /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 10, 2014 - 13:49:
Author: bugman
Date: Wed Sep 10 13:49:20 2014
New Revision: 25732

URL: http://svn.gna.org/viewcvs/relax?rev=25732&view=rev
Log:
Fix for the frame_order.permute_axes for the torsionless pseudo-ellipse model.

The data structure cdp.cone_sigma_max does not exist in this model as 
cone_sigma_max == 0.0.


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=25732&r1=25731&r2=25732&view=diff
==============================================================================
--- branches/frame_order_cleanup/specific_analyses/frame_order/uf.py    
(original)
+++ branches/frame_order_cleanup/specific_analyses/frame_order/uf.py    Wed 
Sep 10 13:49:20 2014
@@ -201,7 +201,8 @@
     print("\nPermuted parameters:")
     print("%-20s %20.10f" % ("cone_theta_x", cdp.cone_theta_x))
     print("%-20s %20.10f" % ("cone_theta_y", cdp.cone_theta_y))
-    print("%-20s %20.10f" % ("cone_sigma_max", cdp.cone_sigma_max))
+    if cdp.model == MODEL_PSEUDO_ELLIPSE:
+        print("%-20s %20.10f" % ("cone_sigma_max", cdp.cone_sigma_max))
     print("%-20s %20.10f" % ("eigen_alpha", cdp.eigen_alpha))
     print("%-20s %20.10f" % ("eigen_beta", cdp.eigen_beta))
     print("%-20s %20.10f" % ("eigen_gamma", cdp.eigen_gamma))




Related Messages


Powered by MHonArc, Updated Wed Sep 10 14:00:03 2014