mailr3130 - /1.3/data/pipe_container.py


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

Header


Content

Posted by edward on March 09, 2007 - 08:47:
Author: bugman
Date: Fri Mar  9 08:46:41 2007
New Revision: 3130

URL: http://svn.gna.org/viewcvs/relax?rev=3130&view=rev
Log:
Converted the residue specific data container into the molecule list 'mol' in 
the pipe container.

The old residue specific container was located at 'self.relax.data.res' 
whereas the molecule list
object is located at D[pipe].mol where D is the relax data storage singleton.


Modified:
    1.3/data/pipe_container.py

Modified: 1.3/data/pipe_container.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/data/pipe_container.py?rev=3130&r1=3129&r2=3130&view=diff
==============================================================================
--- 1.3/data/pipe_container.py (original)
+++ 1.3/data/pipe_container.py Fri Mar  9 08:46:41 2007
@@ -24,7 +24,8 @@
 from re import match
 
 # relax module imports.
-from data_classes import Residue, SpecificData
+from data_classes import SpecificData
+from mol_res_spin import MoleculeList
 from diff_tensor import DiffTensorData
 
 
@@ -39,7 +40,7 @@
     diff = DiffTensorData()
 
     # The residue specific data.
-    res = Residue()
+    mol = MoleculeList()
 
     # The data pipe type.
     pipe_type = None




Related Messages


Powered by MHonArc, Updated Fri Mar 09 09:20:05 2007