Skip to content

Commit a4bfd6c

Browse files
committed
changed maicos to scatterkit
1 parent 6c22943 commit a4bfd6c

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/scatterkit/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def get_config() -> VersioneerConfig:
5353
cfg.style = "pep440"
5454
cfg.tag_prefix = "v"
5555
cfg.parentdir_prefix = "None"
56-
cfg.versionfile_source = "src/maicos/_version.py"
56+
cfg.versionfile_source = "src/scatterkit/_version.py"
5757
cfg.verbose = False
5858
return cfg
5959

src/scatterkit/lib/math.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def atomic_form_factor(q: float, element: str) -> float:
2929
The atomic form factor should not be confused with the atomic scattering factor
3030
or intensity (often anonymously called form factor). The scattering intensity
3131
depends strongly on the distribution of atoms and can be computed using
32-
:class:`maicos.Saxs`.
32+
:class:`scatterkit.Saxs`.
3333
3434
Here, :math:`f(q)` is computed in terms of the scattering vector as
3535
@@ -41,15 +41,15 @@ def atomic_form_factor(q: float, element: str) -> float:
4141
:footcite:t:`princeInternationalTablesCrystallography2004` and taken from the `TU
4242
Graz
4343
<https://lampz.tugraz.at/~hadley/ss1/crystaldiffraction/atomicformfactors/formfactors.php>`_
44-
and stored in :obj:`maicos.lib.tables.CM_parameters`.
44+
and stored in :obj:`scatterkit.lib.tables.CM_parameters`.
4545
4646
Parameters
4747
----------
4848
q : float
4949
The magnitude of the scattering vector in reciprocal angstroms (1/Å).
5050
element : str
5151
The element for which the atomic form factor is calculated. Known elements are
52-
listed in the :attr:`maicos.lib.tables.elements` set. United-atom models such as
52+
listed in the :attr:`scatterkit.lib.tables.elements` set. United-atom models such as
5353
``"CH1"``, ``"CH2"``, ``"CH3"``, ``"CH4"``, ``"NH1"``, ``"NH2"``, and ``"NH3"``
5454
are also supported.
5555

src/scatterkit/lib/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def _render_docs(func: Callable, doc_dict: dict = DOC_DICT) -> Callable:
120120
def render_docs(func: Callable) -> Callable:
121121
"""Replace all template phrases in the functions docstring.
122122
123-
Keys for the replacement are taken from in :attr:`maicos.lib.util.DOC_DICT`.
123+
Keys for the replacement are taken from in :attr:`scatterkit.lib.util.DOC_DICT`.
124124
125125
Parameters
126126
----------

0 commit comments

Comments
 (0)