mailr21232 - /branches/relax_disp/specific_analyses/relax_disp/variables.py


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

Header


Content

Posted by edward on October 25, 2013 - 18:31:
Author: bugman
Date: Fri Oct 25 18:31:09 2013
New Revision: 21232

URL: http://svn.gna.org/viewcvs/relax?rev=21232&view=rev
Log:
Added the ZQ and DQ CPMG experiment types to the dispersion variables.

This is needed for the 'MQ NS CPMG 2-site' model change to 'MMQ 2-site' and 
follows from the post at
http://article.gmane.org/gmane.science.nmr.relax.devel/4734.

This follows the tutorial for adding relaxation dispersion models at:
http://wiki.nmr-relax.com/Tutorial_for_adding_relaxation_dispersion_models_to_relax#Creating_a_new_experiment_type.


Modified:
    branches/relax_disp/specific_analyses/relax_disp/variables.py

Modified: branches/relax_disp/specific_analyses/relax_disp/variables.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/relax_disp/specific_analyses/relax_disp/variables.py?rev=21232&r1=21231&r2=21232&view=diff
==============================================================================
--- branches/relax_disp/specific_analyses/relax_disp/variables.py (original)
+++ branches/relax_disp/specific_analyses/relax_disp/variables.py Fri Oct 25 
18:31:09 2013
@@ -27,19 +27,23 @@
 # Experiment types.
 EXP_TYPE_CPMG = 'CPMG'
 EXP_TYPE_R1RHO = 'R1rho'
+EXP_TYPE_DQ_CPMG = 'DQ CPMG'
 EXP_TYPE_MQ_CPMG = 'MQ CPMG'
+EXP_TYPE_ZQ_CPMG = 'ZQ CPMG'
 EXP_TYPE_MQ_R1RHO = 'MQ R1rho'
 
 
 # Experiment type descriptions.
 EXP_TYPE_DESC_CPMG = "the CPMG-type experiment"
 EXP_TYPE_DESC_R1RHO = "the R1rho-type experiment"
-EXP_TYPE_DESC_MQ_CPMG = "the MQ CPMG-type experiment"
-EXP_TYPE_DESC_MQ_R1RHO = "the MQ R1rho-type experiment"
+EXP_TYPE_DESC_DQ_CPMG = "the double quantum (DQ) CPMG-type experiment"
+EXP_TYPE_DESC_MQ_CPMG = "the multiple quantum (MQ) CPMG-type experiment"
+EXP_TYPE_DESC_ZQ_CPMG = "the zero quantum (ZQ) CPMG-type experiment"
+EXP_TYPE_DESC_MQ_R1RHO = "the multiple quantum (MQ) R1rho-type experiment"
 
 
 # The experiment type lists.
-EXP_TYPE_LIST = [EXP_TYPE_CPMG, EXP_TYPE_R1RHO, EXP_TYPE_MQ_CPMG, 
EXP_TYPE_MQ_R1RHO]
+EXP_TYPE_LIST = [EXP_TYPE_CPMG, EXP_TYPE_R1RHO, EXP_TYPE_DQ_CPMG, 
EXP_TYPE_MQ_CPMG, EXP_TYPE_ZQ_CPMG, EXP_TYPE_MQ_R1RHO]
 """The list of all dispersion experiment types."""
 
 




Related Messages


Powered by MHonArc, Updated Fri Oct 25 19:00:02 2013