mailr4508 - /branches/consistency_tests_1.3/specific_fns/consistency_tests.py


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

Header


Content

Posted by sebastien . morin . 1 on January 08, 2008 - 21:12:
Author: semor
Date: Tue Jan  8 21:12:11 2008
New Revision: 4508

URL: http://svn.gna.org/viewcvs/relax?rev=4508&view=rev
Log:
Removed remnants of the 1.2 line code.

These were pointed out by a post by Edward d'Auvergne :
https://mail.gna.org/public/relax-devel/2008-01/msg00012.html (Message-id:
<1199821867.8905.7.camel@localhost>)

"...in the set_doc() method where something strange has happened. I think 
some lines and the start
of a function have been lost somewhere."


Modified:
    branches/consistency_tests_1.3/specific_fns/consistency_tests.py

Modified: branches/consistency_tests_1.3/specific_fns/consistency_tests.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/consistency_tests_1.3/specific_fns/consistency_tests.py?rev=4508&r1=4507&r2=4508&view=diff
==============================================================================
--- branches/consistency_tests_1.3/specific_fns/consistency_tests.py 
(original)
+++ branches/consistency_tests_1.3/specific_fns/consistency_tests.py Tue Jan  
8 21:12:11 2008
@@ -444,66 +444,6 @@
         """
         __docformat__ = "plaintext"
 
-        # Arguments.
-        self.run = run
-
-        # Setting the model parameters prior to calculation.
-        ####################################################
-
-        if param == None:
-            # The values are supplied by the user:
-            if value:
-                # Test if the length of the value array is equal to 2.
-                if len(value) != 2:
-                    raise RelaxError, "The length of " + `len(value)` + " of 
the value array must be equal to two."
-
-            # Default values.
-            else:
-                # Set 'value' to an empty array.
-                value = []
-
-                # CSA and Bond length.
-                value.append(self.default_value('csa'))
-                value.append(self.default_value('r'))
-                value.append(self.default_value('orientation'))
-                value.append(self.default_value('tc'))
-
-            # Initilise data.
-            if not hasattr(relax_data_store.res[self.run][index], 'csa') or 
not hasattr(relax_data_store.res[self.run][index], 'r') or not 
hasattr(self.relax.data.res[self.run][index], 'orientation') or not 
hasattr(self.relax.data.res[self.run][index], 'tc'):
-                self.data_init(relax_data_store.res[self.run][index])
-
-            # CSA and Bond length.
-            setattr(relax_data_store.res[self.run][index], 'csa', 
float(value[0]))
-            setattr(relax_data_store.res[self.run][index], 'r', 
float(value[1]))
-            setattr(self.relax.data.res[self.run][index], 'orientation', 
float(value[2]))
-            setattr(self.relax.data.res[self.run][index], 'tc', 
float(value[3]))
-
-
-        # Individual data type.
-        #######################
-
-        else:
-            # Get the object.
-            object_name = self.return_data_name(param)
-            if not object_name:
-                raise RelaxError, "The consistency tests data type " + 
`param` + " does not exist."
-
-            # Initialise all data if it doesn't exist.
-            if not hasattr(relax_data_store.res[self.run][index], 
object_name):
-                self.data_init(relax_data_store.res[self.run][index])
-
-            # Default value.
-            if value == None:
-                value = self.default_value(object_name)
-
-            # Set the value.
-            setattr(relax_data_store.res[self.run][index], object_name, 
float(value))
-
-            # Set the error.
-            if error != None:
-                setattr(relax_data_store.res[self.run][index], 
object_name+'_err', float(error))
-
-
     def set_frq(self, run=None, frq=None):
         """Function for selecting which relaxation data to use in the 
consistency tests."""
 




Related Messages


Powered by MHonArc, Updated Tue Jan 08 21:40:10 2008