2019-09-20 00:14:15 +05:30
|
|
|
"""Main aggregator."""
|
2017-11-21 16:11:02 +05:30
|
|
|
import os
|
2017-02-17 23:06:01 +05:30
|
|
|
|
2019-04-25 23:32:48 +05:30
|
|
|
with open(os.path.join(os.path.dirname(__file__),'VERSION')) as f:
|
|
|
|
version = f.readline()[1:-1]
|
2016-01-27 22:18:27 +05:30
|
|
|
|
2018-07-11 08:42:49 +05:30
|
|
|
name = 'damask'
|
|
|
|
|
2016-03-04 23:20:13 +05:30
|
|
|
from .environment import Environment # noqa
|
|
|
|
from .asciitable import ASCIItable # noqa
|
2017-02-17 23:06:01 +05:30
|
|
|
|
2016-03-04 23:20:13 +05:30
|
|
|
from .config import Material # noqa
|
|
|
|
from .colormaps import Colormap, Color # noqa
|
2019-02-24 12:38:14 +05:30
|
|
|
from .orientation import Symmetry, Lattice, Rotation, Orientation # noqa
|
2019-04-13 14:41:32 +05:30
|
|
|
from .dadf5 import DADF5 # noqa
|
2016-07-14 19:40:59 +05:30
|
|
|
|
2013-01-09 00:17:44 +05:30
|
|
|
#from .block import Block # only one class
|
2019-05-25 02:00:25 +05:30
|
|
|
from .geom import Geom # noqa
|
2016-03-04 23:20:13 +05:30
|
|
|
from .solver import Solver # noqa
|
|
|
|
from .test import Test # noqa
|
|
|
|
from .util import extendableOption # noqa
|