1 | """ |
---|
2 | P(r) inversion for SANS |
---|
3 | """ |
---|
4 | ## \mainpage P(r) inversion for SANS |
---|
5 | # |
---|
6 | # \section intro_sec Introduction |
---|
7 | # This module provides calculations to transform scattering intensity data |
---|
8 | # I(q) into distance distribution function P(r). A description of the |
---|
9 | # technique can be found elsewhere [1-5]. The module is useable as a |
---|
10 | # standalone application but its functionality is meant to be presented |
---|
11 | # to end-users through the user interface developed as part of the SANS |
---|
12 | # flagship application. |
---|
13 | # |
---|
14 | # Procedure: We will follow the procedure of Moore [1]. |
---|
15 | # |
---|
16 | # [1] P.B. Moore, J.Appl. Cryst (1980) 13, 168-175. |
---|
17 | # [2] O. Glatter, J.Appl. Cryst (1977) 10, 415-421. |
---|
18 | # [3] D.I. Svergun, J.Appl. Cryst (1991) 24, 485-492. |
---|
19 | # [4] D.I. Svergun, J.Appl. Cryst (1992) 25, 495-503. |
---|
20 | # [5] S. Hansen and J. Skov Pedersen, J.Appl. Cryst (1991) 24, 541-548. |
---|
21 | # |
---|
22 | # |
---|
23 | # \section install_sec Installation |
---|
24 | # |
---|
25 | # \subsection obtain Obtaining the Code |
---|
26 | # |
---|
27 | # The code is available here: |
---|
28 | # \verbatim |
---|
29 | #$ svn co svn://danse.us/sans/pr_inversion |
---|
30 | # \endverbatim |
---|
31 | # |
---|
32 | # \subsection depends External Dependencies |
---|
33 | # scipy, numpy, pylab |
---|
34 | # |
---|
35 | # \subsection build Building the code |
---|
36 | # The standard python package can be built with distutils. |
---|
37 | # \verbatim |
---|
38 | #$ python setup.py build |
---|
39 | #$ python setup.py install |
---|
40 | # \endverbatim |
---|
41 | # |
---|
42 | # |
---|
43 | # Examples are available as unit tests under sans.pr_inversion.test. |
---|
44 | # |
---|
45 | # \section help_sec Contact Info |
---|
46 | # Code and Documentation produced as part of the DANSE project. |
---|
47 | |
---|
48 | __author__ = 'University of Tennessee' |
---|