Package diffpy :: Package pdffit2
[hide private]
[frames] | no frames]

Source Code for Package diffpy.pdffit2

 1  ############################################################################## 
 2  # 
 3  # pdffit2           by DANSE Diffraction group 
 4  #                   Simon J. L. Billinge 
 5  #                   (c) 2006 trustees of the Michigan State University. 
 6  #                   All rights reserved. 
 7  # 
 8  # File coded by:    Pavol Juhas 
 9  # 
10  # See AUTHORS.txt for a list of people who contributed. 
11  # See LICENSE.txt for license information. 
12  # 
13  ############################################################################## 
14   
15  """PDFfit2 - real space structure refinement program. 
16  Classes: 
17      PdfFit 
18  Routines: 
19      redirect_stdout 
20  """ 
21   
22  __id__ = "$Id: __init__.py 3021 2009-04-08 02:55:11Z juhas $" 
23   
24  from diffpy.pdffit2.version import __version__, __date__ 
25  from diffpy.pdffit2.pdffit import PdfFit 
26  from diffpy.pdffit2.output import redirect_stdout 
27  from diffpy.pdffit2.pdffit2 import is_element 
28   
29  #  End of file 
30