mailr9668 - /branches/bmrb/bmrblib/kinetics/relaxation.py


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

Header


Content

Posted by edward on October 08, 2009 - 18:47:
Author: bugman
Date: Thu Oct  8 18:47:22 2009
New Revision: 9668

URL: http://svn.gna.org/viewcvs/relax?rev=9668&view=rev
Log:
Each Relaxation_v3_* class calls the base class __init__() method.


Modified:
    branches/bmrb/bmrblib/kinetics/relaxation.py

Modified: branches/bmrb/bmrblib/kinetics/relaxation.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bmrb/bmrblib/kinetics/relaxation.py?rev=9668&r1=9667&r2=9668&view=diff
==============================================================================
--- branches/bmrb/bmrblib/kinetics/relaxation.py (original)
+++ branches/bmrb/bmrblib/kinetics/relaxation.py Thu Oct  8 18:47:22 2009
@@ -63,8 +63,8 @@
         @type datanodes:    list
         """
 
-        # Place the data nodes into the namespace.
-        self.__datanodes = datanodes
+        # Execute the base class __init__() method.
+        Relaxation(self, datanodes)
 
         # Initialise the kinetic saveframe supergroups.
         self.__heteronucl_NOEs = 
HeteronuclNOESaveframe_v3_0(self.__datanodes)
@@ -83,8 +83,8 @@
         @type datanodes:    list
         """
 
-        # Place the data nodes into the namespace.
-        self.__datanodes = datanodes
+        # Execute the base class __init__() method.
+        Relaxation_v3_0(self, datanodes)
 
         # Initialise the kinetic saveframe supergroups.
         self.__heteronucl_NOEs = 
HeteronuclNOESaveframe_v3_1(self.__datanodes)
@@ -132,8 +132,8 @@
         @type datanodes:    list
         """
 
-        # Place the data nodes into the namespace.
-        self.__datanodes = datanodes
+        # Execute the base class __init__() method.
+        Relaxation_v3_1(self, datanodes)
 
         # Initialise the kinetic saveframe supergroups.
         self.__general_relaxation = 
GeneralRelaxationSaveframe(self.__datanodes)




Related Messages


Powered by MHonArc, Updated Thu Oct 08 19:00:02 2009