Skip to content

Commit

Permalink
MNT #126 other modules
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian committed Apr 21, 2021
1 parent 81b04c8 commit 55696af
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 1 deletion.
22 changes: 22 additions & 0 deletions hkl/calc.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,28 @@
from .util import libhkl
from .context import UsingEngine

__all__ = """
A_KEV
CalcE4CH
CalcE4CV
CalcE6C
CalcK4CV
CalcK6C
CalcMed2p3
CalcPetra3_p09_eh2
CalcRecip
CalcSoleilMars
CalcSoleilSiriusKappa
CalcSoleilSiriusTurret
CalcSoleilSixs
CalcSoleilSixsMed1p2
CalcSoleilSixsMed2p2
CalcTwoC
CalcZaxis
default_decision_function
NM_KEV
UnreachableError
""".split()
logger = logging.getLogger(__name__)

A_KEV = 12.39842 # 1 Angstrom = 12.39842 keV
Expand Down
4 changes: 4 additions & 0 deletions hkl/diffract.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@
from . import calc


__all__ = """
Constraint
Diffractometer
""".split()
logger = logging.getLogger(__name__)


Expand Down
6 changes: 6 additions & 0 deletions hkl/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
from .util import GLib
from . import util

__all__ = """
CalcParameter
Engine
Parameter
Solution
""".split()
logger = logging.getLogger(__name__)


Expand Down
4 changes: 4 additions & 0 deletions hkl/sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
from .context import TemporaryGeometry


__all__ = """
check_lattice
HklSample
""".split()
logger = logging.getLogger(__name__)


Expand Down
7 changes: 6 additions & 1 deletion hkl/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@
# fmt: on
)


__all__ = """
diffractometer_types
get_position_tuple
Lattice
new_detector
""".split()
logger = logging.getLogger(__name__)


Expand Down

0 comments on commit 55696af

Please sign in to comment.