Package lib
[hide private]
[frames] | no frames]

Source Code for Package lib

 1  ############################################################################### 
 2  #                                                                             # 
 3  # Copyright (C) 2013-2015 Edward d'Auvergne                                   # 
 4  # Copyright (C) 2014 Troels E. Linnet                                         # 
 5  #                                                                             # 
 6  # This file is part of the program relax (http://www.nmr-relax.com).          # 
 7  #                                                                             # 
 8  # This program is free software: you can redistribute it and/or modify        # 
 9  # it under the terms of the GNU General Public License as published by        # 
10  # the Free Software Foundation, either version 3 of the License, or           # 
11  # (at your option) any later version.                                         # 
12  #                                                                             # 
13  # This program is distributed in the hope that it will be useful,             # 
14  # but WITHOUT ANY WARRANTY; without even the implied warranty of              # 
15  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               # 
16  # GNU General Public License for more details.                                # 
17  #                                                                             # 
18  # You should have received a copy of the GNU General Public License           # 
19  # along with this program.  If not, see <http://www.gnu.org/licenses/>.       # 
20  #                                                                             # 
21  ############################################################################### 
22   
23  # Package docstring. 
24  """The relax-lib package - a collection of functions, objects, and methods for the study of dynamics.""" 
25   
26  __all__ = [ 
27      'alignment', 
28      'ansi', 
29      'arg_check', 
30      'auto_relaxation', 
31      'check_types', 
32      'checks', 
33      'chemical_shift', 
34      'compat', 
35      'curve_fit', 
36      'diffusion', 
37      'dispersion', 
38      'errors', 
39      'float', 
40      'frame_order', 
41      'geometry', 
42      'io', 
43      'linear_algebra', 
44      'list', 
45      'mathematics', 
46      'model_selection', 
47      'nmr', 
48      'order', 
49      'periodic_table', 
50      'physical_constants', 
51      'plotting', 
52      'regex', 
53      'selection', 
54      'sequence', 
55      'sequence_alignment', 
56      'software', 
57      'spectral_densities', 
58      'spectrum', 
59      'statistics', 
60      'structure', 
61      'text', 
62      'timing', 
63      'warnings', 
64      'xml' 
65  ] 
66