mailr12419 - /branches/bmrb/data/exp_info.py


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

Header


Content

Posted by edward on January 21, 2011 - 14:46:
Author: bugman
Date: Fri Jan 21 14:46:36 2011
New Revision: 12419

URL: http://svn.gna.org/viewcvs/relax?rev=12419&view=rev
Log:
ContainerList has been replaced by RelaxListType in the latest svnmerge.py 
update.


Modified:
    branches/bmrb/data/exp_info.py

Modified: branches/bmrb/data/exp_info.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bmrb/data/exp_info.py?rev=12419&r1=12418&r2=12419&view=diff
==============================================================================
--- branches/bmrb/data/exp_info.py (original)
+++ branches/bmrb/data/exp_info.py Fri Jan 21 14:46:36 2011
@@ -24,7 +24,7 @@
 """Module holding the experimental information data container."""
 
 # relax module imports.
-from data_classes import ContainerList, Element
+from data_classes import RelaxListType, Element
 
 
 class ExpInfo(Element):
@@ -81,7 +81,7 @@
         # Initialise the list container if needed.
         if not hasattr(self, "citations"):
             # The list.
-            self.citations = ContainerList()
+            self.citations = RelaxListType()
 
             # The name of the container.
             self.citations.container_name = "citation_list"
@@ -200,7 +200,7 @@
         # Initialise the container if needed.
         if not hasattr(self, "peak_intensity_type"):
             # The list.
-            self.peak_intensity_type = ContainerList()
+            self.peak_intensity_type = RelaxListType()
 
             # The name of the container.
             self.peak_intensity_type.container_name = 
"peak_intensity_type_list"
@@ -272,7 +272,7 @@
         # Initialise the container if needed.
         if not hasattr(self, "scripts"):
             # The list.
-            self.scripts = ContainerList()
+            self.scripts = RelaxListType()
 
             # The name of the container.
             self.scripts.container_name = "script_list"
@@ -324,7 +324,7 @@
         # Initialise the container if needed.
         if not hasattr(self, "software"):
             # The list.
-            self.software = ContainerList()
+            self.software = RelaxListType()
 
             # The name of the container.
             self.software.container_name = "software_list"
@@ -367,7 +367,7 @@
         # Initialise the container if needed.
         if not hasattr(self, "temp_calibration"):
             # The list.
-            self.temp_calibration = ContainerList()
+            self.temp_calibration = RelaxListType()
 
             # The name of the container.
             self.temp_calibration.container_name = "temp_calibration_list"
@@ -412,7 +412,7 @@
         # Initialise the container if needed.
         if not hasattr(self, "temp_control"):
             # The list.
-            self.temp_control = ContainerList()
+            self.temp_control = RelaxListType()
 
             # The name of the container.
             self.temp_control.container_name = "temp_control_list"




Related Messages


Powered by MHonArc, Updated Fri Jan 21 16:20:03 2011