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))


_______________________________________________
relax (http://www.nmr-relax.com)

This is the relax-commits mailing list
[email protected]

To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-commits

Reply via email to