mailr25819 - /branches/frame_order_cleanup/specific_analyses/frame_order/checks.py


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

Header


Content

Posted by edward on September 14, 2014 - 12:48:
Author: bugman
Date: Sun Sep 14 12:48:27 2014
New Revision: 25819

URL: http://svn.gna.org/viewcvs/relax?rev=25819&view=rev
Log:
Created the check_domain() function for the frame order analysis.

This is in the specific_analyses.frame_order.checks module.  The function 
checks that the reference
domain has been specified.


Modified:
    branches/frame_order_cleanup/specific_analyses/frame_order/checks.py

Modified: branches/frame_order_cleanup/specific_analyses/frame_order/checks.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/frame_order_cleanup/specific_analyses/frame_order/checks.py?rev=25819&r1=25818&r2=25819&view=diff
==============================================================================
--- branches/frame_order_cleanup/specific_analyses/frame_order/checks.py      
  (original)
+++ branches/frame_order_cleanup/specific_analyses/frame_order/checks.py      
  Sun Sep 14 12:48:27 2014
@@ -22,9 +22,45 @@
 # Module docstring.
 """Module for checks for the frame order analysis."""
 
+# Python module imports.
+from warnings import warn
+
 # relax module imports.
 from lib.errors import RelaxError
+from lib.warnings import RelaxWarning
 from pipe_control.pipes import cdp_name, get_pipe
+
+
+def check_domain(domain=None, escalate=0):
+    """Check if the domain has been defined.
+
+    @keyword domain:        The domain to check for.  If None, then the 
check will be for any domain being defined.
+    @keyword escalate:      The feedback to give if the domain is not 
defined.  This can be 0 for no printouts, 1 to throw a RelaxWarning, or 2 to 
raise a RelaxError.
+    @type escalate:         None or str
+    @raises RelaxError:     If escalate is set to 2 and the domain is not 
defined.
+    @return:                True if the domain is defined, False otherwise.
+    @rtype:                 bool
+    """
+
+    # Init.
+    defined = True
+
+    # Check that the domain is defined.
+    if not hasattr(cdp, 'domain'):
+        defined = False
+        msg = "No domains have been defined.  Please use the domain user 
function."
+    if domain != None and domain not in list(cdp.domain.keys()):
+        defined = False
+        msg = "The domain '%s' has not been defined.  Please use the domain 
user function." % domain
+
+    # Warnings and errors.
+    if escalate == 1:
+        warn(RelaxWarning(msg))
+    elif escalate == 2:
+        raise RelaxError(msg)
+
+    # Return the answer.
+    return defined
 
 
 def check_pivot(pipe_name=None):




Related Messages


Powered by MHonArc, Updated Sun Sep 14 13:00:03 2014