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

Source Code for Package diffpy.pdffit2

 1  #!/usr/bin/env python 
 2  ############################################################################## 
 3  # 
 4  # pdffit2           by DANSE Diffraction group 
 5  #                   Simon J. L. Billinge 
 6  #                   (c) 2006 trustees of the Michigan State University. 
 7  #                   All rights reserved. 
 8  # 
 9  # File coded by:    Pavol Juhas 
10  # 
11  # See AUTHORS.txt for a list of people who contributed. 
12  # See LICENSE.txt for license information. 
13  # 
14  ############################################################################## 
15   
16  """PDFfit2 - real space structure refinement program. 
17  Classes: 
18      PdfFit 
19  Routines: 
20      redirect_stdout 
21  """ 
22   
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   
30  # unit tests 
31 -def test():
32 '''Execute all unit tests for the diffpy.pdffit2 package. 33 Return a unittest TestResult object. 34 ''' 35 from diffpy.pdffit2.tests import test 36 return test()
37 38 # End of file 39