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

Source Code for Package diffpy.Structure

 1  ############################################################################## 
 2  # 
 3  # Structure         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  """classes related to structure of materials 
16  Classes: 
17      Atom 
18      Lattice 
19      Structure 
20      PDFFitStructure 
21  Exceptions: 
22      StructureFormatError 
23      LatticeError 
24      SymmetryError 
25  """ 
26   
27  __id__ = "$Id: __init__.py 2825 2009-03-09 04:33:12Z juhas $" 
28   
29  ############################################################################## 
30  # interface definitions 
31  ############################################################################## 
32   
33  from diffpy.Structure.StructureErrors import * 
34  from diffpy.Structure.atom import Atom 
35  from diffpy.Structure.lattice import Lattice 
36  from diffpy.Structure.structure import Structure 
37  from diffpy.Structure.pdffitstructure import PDFFitStructure 
38   
39  # obtain version information 
40  from diffpy.Structure.version import __version__ 
41   
42  # End of file 
43