mailr2931 - /1.3/specific_fns/model_free.py


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

Header


Content

Posted by edward on December 09, 2006 - 02:08:
Author: bugman
Date: Sat Dec  9 02:07:50 2006
New Revision: 2931

URL: http://svn.gna.org/viewcvs/relax?rev=2931&view=rev
Log:
Bug fix for the plotting of model-free results within Molmol macros.

The fast correlation time macro (te < 100 ps and tf) was setting bond lengths 
to zero when there
was no parameter.  This has been changed so that the bond is now set to a 
width of 0.3 and is
coloured white.


Modified:
    1.3/specific_fns/model_free.py

Modified: 1.3/specific_fns/model_free.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/specific_fns/model_free.py?rev=2931&r1=2930&r2=2931&view=diff
==============================================================================
--- 1.3/specific_fns/model_free.py (original)
+++ 1.3/specific_fns/model_free.py Sat Dec  9 02:07:50 2006
@@ -5483,9 +5483,10 @@
                 elif (model == 'm2' or model == 'm4') and residue.te <= 
100e-12:
                     self.classic_correlation_time(residue, residue.te, 
colour_start, colour_end, colour_list)
 
-                # All other residues are assumed to have a fast correlation 
time of zero (that's a statistical zero!).
+                # All other residues are assumed to have a fast correlation 
time of zero (statistically zero, not real zero!).
+                # Colour these bonds white.
                 else:
-                    self.classic_correlation_time(residue, 0.0, 
colour_start, colour_end, colour_list)
+                    self.classic_colour(res_num=residue.num, width=0.3, 
rgb_array=[1, 1, 1])
 
 
         # Timescale of slow motions.




Related Messages


Powered by MHonArc, Updated Sat Dec 09 02:20:05 2006