mailr4823 - /1.3/specific_fns/__init__.py


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

Header


Content

Posted by edward on January 17, 2008 - 16:19:
Author: bugman
Date: Thu Jan 17 16:11:21 2008
New Revision: 4823

URL: http://svn.gna.org/viewcvs/relax?rev=4823&view=rev
Log:
Added a few more functions to be returned by get_specific_fn().

These include data_init(), default_value(), and set_update().


Modified:
    1.3/specific_fns/__init__.py

Modified: 1.3/specific_fns/__init__.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/specific_fns/__init__.py?rev=4823&r1=4822&r2=4823&view=diff
==============================================================================
--- 1.3/specific_fns/__init__.py (original)
+++ 1.3/specific_fns/__init__.py Thu Jan 17 16:11:21 2008
@@ -79,6 +79,14 @@
         if eqi == 'create_mc_data':
             function = inst.create_mc_data
 
+        # Data structure initialisation function.
+        if eqi == 'data_init':
+            function = inst.data_init
+
+        # Default parameter value returning function.
+        if eqi == 'default_value':
+            function = inst.default_value
+
         # Duplicate data function.
         if eqi == 'duplicate_data':
             function = inst.duplicate_data
@@ -186,6 +194,10 @@
         # Set the selected simulations array.
         if eqi == 'set_selected_sim':
             function = inst.set_selected_sim
+
+        # Set update function.
+        if eqi == 'set_update':
+            function = inst.set_update
 
         # Skip function.
         if eqi == 'skip_function':




Related Messages


Powered by MHonArc, Updated Thu Jan 17 16:20:14 2008