forked from diffpy/diffpy.morph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
47 lines (43 loc) · 1.52 KB
/
__init__.py
File metadata and controls
47 lines (43 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
##############################################################################
#
# diffpy.morph by DANSE Diffraction group
# Simon J. L. Billinge
# (c) 2010 Trustees of the Columbia University
# in the City of New York. All rights reserved.
#
# File coded by: Chris Farrow
#
# See AUTHORS.txt for a list of people who contributed.
# See LICENSE.txt for license information.
#
##############################################################################
"""Definition of morphs."""
from diffpy.morph.morphs.morph import Morph # noqa: F401
from diffpy.morph.morphs.morphchain import MorphChain # noqa: F401
from diffpy.morph.morphs.morphfuncy import MorphFuncy
from diffpy.morph.morphs.morphishape import MorphISphere, MorphISpheroid
from diffpy.morph.morphs.morphresolution import MorphResolutionDamping
from diffpy.morph.morphs.morphrgrid import MorphRGrid
from diffpy.morph.morphs.morphscale import MorphScale
from diffpy.morph.morphs.morphshape import MorphSphere, MorphSpheroid
from diffpy.morph.morphs.morphshift import MorphShift
from diffpy.morph.morphs.morphsmear import MorphSmear
from diffpy.morph.morphs.morphsqueeze import MorphSqueeze
from diffpy.morph.morphs.morphstretch import MorphStretch
# List of morphs
morphs = [
MorphRGrid,
MorphScale,
MorphStretch,
MorphSmear,
MorphSphere,
MorphSpheroid,
MorphISphere,
MorphISpheroid,
MorphResolutionDamping,
MorphShift,
MorphSqueeze,
MorphFuncy,
]
# End of file