Package user_functions :: Module jw_mapping'
[hide private]
[frames] | no frames]

Source Code for Module user_functions.jw_mapping'

 1  ############################################################################### 
 2  #                                                                             # 
 3  # Copyright (C) 2004-2012 Edward d'Auvergne                                   # 
 4  #                                                                             # 
 5  # This file is part of the program relax.                                     # 
 6  #                                                                             # 
 7  # relax is free software; you can redistribute it and/or modify               # 
 8  # it under the terms of the GNU General Public License as published by        # 
 9  # the Free Software Foundation; either version 2 of the License, or           # 
10  # (at your option) any later version.                                         # 
11  #                                                                             # 
12  # relax is distributed in the hope that it will be useful,                    # 
13  # but WITHOUT ANY WARRANTY; without even the implied warranty of              # 
14  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               # 
15  # GNU General Public License for more details.                                # 
16  #                                                                             # 
17  # You should have received a copy of the GNU General Public License           # 
18  # along with relax; if not, write to the Free Software                        # 
19  # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA   # 
20  #                                                                             # 
21  ############################################################################### 
22   
23  # Module docstring. 
24  """The jw_mapping user function definitions for Reduced Spectral Density Mapping.""" 
25   
26  # relax module imports. 
27  from generic_fns import frq 
28  from graphics import ANALYSIS_IMAGE_PATH 
29  from specific_fns.setup import jw_mapping_obj 
30  from user_functions.data import Uf_info; uf_info = Uf_info() 
31  from user_functions.objects import Desc_container 
32   
33   
34  # The user function class. 
35  uf_class = uf_info.add_class('jw_mapping') 
36  uf_class.title = "Class containing functions specific to reduced spectral density mapping." 
37  uf_class.menu_text = "&jw_mapping" 
38  uf_class.gui_icon = "relax.jw_mapping" 
39   
40   
41  # The jw_mapping.set_frq user function. 
42  uf = uf_info.add_uf('jw_mapping.set_frq') 
43  uf.title = "Select which relaxation data to use in the J(w) mapping by NMR spectrometer frequency." 
44  uf.title_short = "Spectrometer selection." 
45  uf.add_keyarg( 
46      name = "frq", 
47      py_type = "float", 
48      desc_short = "spectrometer frequency in Hz", 
49      desc = "The spectrometer frequency in Hz.  This must match the currently loaded data to the last decimal point.  See the 'sfrq' parameter in the Varian procpar file or the 'SFO1' parameter in the Bruker acqus file.", 
50      wiz_element_type = 'combo', 
51      wiz_combo_iter = frq.get_values, 
52      wiz_read_only = True, 
53  ) 
54  # Description. 
55  uf.desc.append(Desc_container()) 
56  uf.desc[-1].add_paragraph("This will select the relaxation data to use in the reduced spectral density mapping corresponding to the given frequency.  The data is selected by the spectrometer frequency in Hertz, which should be set to the exact value (see the 'sfrq' parameter in the Varian procpar file or the 'SFO1' parameter in the Bruker acqus file).  Note thought that the R1, R2 and NOE are all expected to have the exact same frequency in the J(w) mapping analysis (to the last decimal point).") 
57  # Prompt examples. 
58  uf.desc.append(Desc_container("Prompt examples")) 
59  uf.desc[-1].add_prompt("relax> jw_mapping.set_frq(600.0 * 1e6)") 
60  uf.desc[-1].add_prompt("relax> jw_mapping.set_frq(frq=600.0 * 1e6)") 
61  uf.backend = jw_mapping_obj._set_frq 
62  uf.menu_text = "&set_frq" 
63  uf.gui_icon = "relax.frq" 
64  uf.wizard_height_desc = 350 
65  uf.wizard_size = (700, 500) 
66