Author: bugman
Date: Thu Feb  3 20:34:33 2011
New Revision: 12513
URL: http://svn.gna.org/viewcvs/relax?rev=12513&view=rev
Log:
Fix for the Rex scaling - the factor was incorrect!
Modified:
    branches/bmrb/specific_fns/model_free/bmrb.py
Modified: branches/bmrb/specific_fns/model_free/bmrb.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bmrb/specific_fns/model_free/bmrb.py?rev=12513&r1=12512&r2=12513&view=diff
==============================================================================
--- branches/bmrb/specific_fns/model_free/bmrb.py (original)
+++ branches/bmrb/specific_fns/model_free/bmrb.py Thu Feb  3 20:34:33 2011
@@ -172,7 +172,7 @@
             # Rex scaling.
             rex_scale = 1.0
             if hasattr(cdp, 'frq') and len(cdp.frq):
-                rex_scale = 1.0 / (2.0*pi*cdp.frq[0]**2)
+                rex_scale = 1.0 / (2.0*pi*cdp.frq[0])**2
 
             # Loop over the spins.
             for i in range(N):