Package reflectometry :: Package reduction

Source Code for Package reflectometry.reduction

 1  # This code is in the public domain 
 2  """ 
 3  The DANSE Reflectometry data reduction library will use a data flow 
 4  architecture consisting of file readers, various corrections, 
 5  plotters and file writers.  Many operations work on sets of files, 
 6  so we also provide tools for displaying and selecting files. 
 7   
 8  Further details available at: 
 9   
10      http://www.reflectometry.org/danse 
11   
12   
13  === Getting Started === 
14   
15  Once you have the reduction library installed you will need to do 
16  a little bit of reading to see what is available.  The following 
17  is a good order to proceed:: 
18   
19     import reflectometry.reduction as red 
20     # Reflectometry data format 
21     help(red.refldata) 
22     # Loading data and saving results 
23     help(red.formats) 
24     # Data transformations 
25     help(red.corrections) 
26   
27  === Acknowledgements === 
28   
29  This work was primarily supported by the NIST Center for Neutron Research, 
30  with minor support from National Science Foundation DMR-0520547. 
31   
32  Contributing developers: 
33      Paul Kienzle 
34  """ 
35   
36  # Make module headers available to the help system 
37  from reflectometry.reduction \ 
38      import formats, corrections, refldata 
39  from reflectometry.reduction.formats import * 
40  from reflectometry.reduction.corrections import * 
41  from reflectometry.reduction.refldata import * 
42