mailr7829 - /branches/multi_processor_merge/specific_fns/model_free/multi_processor_commands.py


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

Header


Content

Posted by edward on October 19, 2008 - 17:31:
Author: bugman
Date: Sun Oct 19 17:31:34 2008
New Revision: 7829

URL: http://svn.gna.org/viewcvs/relax?rev=7829&view=rev
Log:
More comments and docstrings.


Modified:
    
branches/multi_processor_merge/specific_fns/model_free/multi_processor_commands.py

Modified: 
branches/multi_processor_merge/specific_fns/model_free/multi_processor_commands.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/multi_processor_merge/specific_fns/model_free/multi_processor_commands.py?rev=7829&r1=7828&r2=7829&view=diff
==============================================================================
--- 
branches/multi_processor_merge/specific_fns/model_free/multi_processor_commands.py
 (original)
+++ 
branches/multi_processor_merge/specific_fns/model_free/multi_processor_commands.py
 Sun Oct 19 17:31:34 2008
@@ -306,12 +306,19 @@
 
     #FIXME: bad names
     def set_mf(self, **kwargs):
+        """Place the model-free information into the mf_map."""
+
+        # Fill out the mf_map using the keyword args.
         self.mf_map.update(kwargs)
-# FIXME: add to checking class
-#        self.mf_hash_map = self.get_hash_map(self.mf_map)
+
+        # FIXME: add to checking class
+        #self.mf_hash_map = self.get_hash_map(self.mf_map)
 
 
     def set_minimise(self, **kwargs):
+        """Place the minimisation and other information into the appropriate 
maps."""
+
+        # Strip out and store special arguments into the info_map.
         if 'spin_id' in kwargs:
            self.info_map['spin_id'] = kwargs['spin_id']
            del kwargs['spin_id']
@@ -325,9 +332,11 @@
            self.info_map['sim_index'] = kwargs['sim_index']
            del kwargs['sim_index']
 
+        # Fill out the minimise_map using the remaining keyword args.
         self.minimise_map.update(kwargs)
-# FIXME: add to checking class
-#        self.mf_minimise_map = self.get_hash_map(self.minimise_map)
+
+        # FIXME: add to checking class
+        #self.mf_minimise_map = self.get_hash_map(self.minimise_map)
 
 
 class MF_grid_command(MF_minimise_command):




Related Messages


Powered by MHonArc, Updated Sun Oct 19 17:40:03 2008