ncrystal-python 3.9.87__py3-none-any.whl → 4.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. NCrystal/__init__.py +3 -3
  2. NCrystal/__main__.py +1 -1
  3. NCrystal/_chooks.py +1 -1
  4. NCrystal/_cli_cif2ncmat.py +1 -1
  5. NCrystal/_cli_endf2ncmat.py +2 -2
  6. NCrystal/_cli_hfg2ncmat.py +1 -1
  7. NCrystal/_cli_mcstasunion.py +1 -1
  8. NCrystal/_cli_ncmat2cpp.py +1 -1
  9. NCrystal/_cli_ncmat2hkl.py +1 -1
  10. NCrystal/_cli_nctool.py +1 -1
  11. NCrystal/_cli_vdos2ncmat.py +1 -1
  12. NCrystal/_cli_verifyatompos.py +1 -1
  13. NCrystal/_cliimpl.py +1 -1
  14. NCrystal/_cliwrap_config.py +1 -1
  15. NCrystal/_common.py +1 -1
  16. NCrystal/_coreimpl.py +1 -1
  17. NCrystal/_hfgdata.py +1 -1
  18. NCrystal/_hklobjects.py +1 -1
  19. NCrystal/_locatelib.py +1 -1
  20. NCrystal/_miscimpl.py +1 -1
  21. NCrystal/_mmc.py +1 -1
  22. NCrystal/_msg.py +1 -1
  23. NCrystal/_ncmat2cpp_impl.py +1 -1
  24. NCrystal/_ncmatimpl.py +1 -1
  25. NCrystal/_numpy.py +1 -1
  26. NCrystal/_testimpl.py +2 -2
  27. NCrystal/api.py +1 -1
  28. NCrystal/atomdata.py +1 -1
  29. NCrystal/cfgstr.py +1 -1
  30. NCrystal/cifutils.py +1 -1
  31. NCrystal/cli.py +1 -1
  32. NCrystal/constants.py +1 -1
  33. NCrystal/core.py +1 -1
  34. NCrystal/datasrc.py +1 -1
  35. NCrystal/exceptions.py +1 -1
  36. NCrystal/hfg2ncmat.py +1 -1
  37. NCrystal/mcstasutils.py +1 -1
  38. NCrystal/misc.py +1 -1
  39. NCrystal/mmc.py +1 -1
  40. NCrystal/ncmat.py +1 -1
  41. NCrystal/ncmat2cpp.py +1 -1
  42. NCrystal/obsolete.py +1 -1
  43. NCrystal/plot.py +1 -1
  44. NCrystal/plugins.py +1 -1
  45. NCrystal/test.py +1 -1
  46. NCrystal/vdos.py +1 -1
  47. {ncrystal_python-3.9.87.dist-info → ncrystal_python-4.0.0.dist-info}/METADATA +31 -36
  48. ncrystal_python-4.0.0.dist-info/RECORD +53 -0
  49. ncrystal_python-3.9.87.dist-info/RECORD +0 -53
  50. {ncrystal_python-3.9.87.dist-info → ncrystal_python-4.0.0.dist-info}/LICENSE +0 -0
  51. {ncrystal_python-3.9.87.dist-info → ncrystal_python-4.0.0.dist-info}/WHEEL +0 -0
  52. {ncrystal_python-3.9.87.dist-info → ncrystal_python-4.0.0.dist-info}/entry_points.txt +0 -0
  53. {ncrystal_python-3.9.87.dist-info → ncrystal_python-4.0.0.dist-info}/top_level.txt +0 -0
NCrystal/__init__.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
@@ -30,7 +30,7 @@ Please find more information about NCrystal at the website:
30
30
 
31
31
  In particular, a small example using the NCrystal python module can be found at:
32
32
 
33
- https://github.com/mctools/ncrystal/blob/master/examples/ncrystal_example_py
33
+ https://github.com/mctools/ncrystal/blob/HEAD/examples/ncrystal_example_py
34
34
 
35
35
  A substantial effort went into developing NCrystal. If you use it for your work,
36
36
  we would appreciate it if you would use the following reference in your work:
@@ -55,7 +55,7 @@ For detailed usage conditions and licensing of this open source project, see:
55
55
 
56
56
  #NB: Synchronize meta-data below with fields in setup.py+template_setup.py.in meta data:
57
57
  __license__ = "Apache 2.0, http://www.apache.org/licenses/LICENSE-2.0"
58
- __version__ = '3.9.87'
58
+ __version__ = '4.0.0'
59
59
  __status__ = "Production"
60
60
  __author__ = "NCrystal developers (Thomas Kittelmann, Xiao Xiao Cai)"
61
61
  __copyright__ = "Copyright 2015-2024 %s"%__author__
NCrystal/__main__.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/_chooks.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
@@ -305,7 +305,7 @@ Note that this script exists for the benefit of experts only. Most users are
305
305
  recommended to simply download and use one of the pre-converted files shipped
306
306
  with NCrystal or found at:
307
307
 
308
- https://github.com/mctools/ncrystal-extra/tree/master/data
308
+ https://github.com/mctools/ncrystal-extra/tree/HEAD/data
309
309
 
310
310
  Only information for NCMAT @DYNINFO sections are extracted from ENDF files, so
311
311
  it is recommended to provide the initial parts of the target NCMAT file in a
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/_cli_nctool.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/_cliimpl.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/_common.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/_coreimpl.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/_hfgdata.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/_hklobjects.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/_locatelib.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/_miscimpl.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/_mmc.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/_msg.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/_ncmatimpl.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/_numpy.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/_testimpl.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
@@ -138,7 +138,7 @@ def _actualtest( verbose ):
138
138
  #and to avoid consuming random numbers from other streams.
139
139
  alpc = NC.createScatterIndependentRNG(_cfgstr2)
140
140
  prfct('Verifying loaded Scatter object')
141
- require( alpc.name == 'PCBragg' )
141
+ require( alpc.name == 'PowderBragg' )
142
142
  require( isinstance(alpc.name,str) )
143
143
  require( alpc.refCount() in (1,2) )
144
144
  require( type(alpc.refCount()) == int ) # noqa E721
NCrystal/api.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/atomdata.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/cfgstr.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/cifutils.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/cli.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/constants.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/core.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/datasrc.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/exceptions.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/hfg2ncmat.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/mcstasutils.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/misc.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/mmc.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/ncmat.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/ncmat2cpp.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/obsolete.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/plot.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/plugins.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/test.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
NCrystal/vdos.py CHANGED
@@ -3,7 +3,7 @@
3
3
  ## ##
4
4
  ## This file is part of NCrystal (see https://mctools.github.io/ncrystal/) ##
5
5
  ## ##
6
- ## Copyright 2015-2024 NCrystal developers ##
6
+ ## Copyright 2015-2025 NCrystal developers ##
7
7
  ## ##
8
8
  ## Licensed under the Apache License, Version 2.0 (the "License"); ##
9
9
  ## you may not use this file except in compliance with the License. ##
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: ncrystal-python
3
- Version: 3.9.87
3
+ Version: 4.0.0
4
4
  Summary: Library for thermal neutron transport in crystals and other materials.
5
5
  Author: NCrystal developers (Thomas Kittelmann, Xiao Xiao Cai)
6
6
  License: The Apache 2.0 license is reproduced in the following. See the NOTICE file for
@@ -236,8 +236,8 @@ facilitate integration into existing simulation frameworks such as OpenMC
236
236
  code or via command-line tools. While the C++ library is designed with a high
237
237
  degree of flexibility in mind for developers, typical end-user configuration is
238
238
  deliberately kept simple and uniform across various applications and APIs - this
239
- for instance allows tuning and validation of a particular crystal setup to be
240
- performed in one tool before it is then deployed in another.
239
+ for instance allows tuning and validation of a particular material configuration
240
+ to be performed in one tool before it is then deployed in another.
241
241
 
242
242
  In addition to code and tools, the NCrystal distribution also includes a set of
243
243
  validated data files, covering many crystals important at neutron scattering
@@ -309,16 +309,17 @@ $> nctool 'Al_sg225.ncmat;temp=10C'
309
309
 
310
310
 
311
311
 
312
- Using the NCrystal installation from C++ (including Geant4), C or Python code
312
+ Using the NCrystal installation from C++, C or Python code
313
313
  -----------------------------------------------------------------------------
314
314
 
315
- If you wish to use NCrystal from Python code, there is no special setup
316
- needed. If you on the other hand wish to use NCrystal from your compiled C++ or
317
- C code, you must put appropriate build flags. The recommended way is using CMake
318
- to do this (see next section), but otherwise you must ensure that the NCrystal
319
- header files are in your compiler's include path, and that the NCrystal library
320
- is linked correctly. Here are some examples of how this could for instance be
321
- done, with a C and a C++ app respectively:
315
+ If you wish to use NCrystal from Python code, there is no special setup needed,
316
+ assuming NCrystal was installed correctly (cf. INSTALL.md). If you on the other
317
+ hand wish to use NCrystal from your compiled C++ or C code, you must put
318
+ appropriate build flags. The recommended way is using CMake to do this (see next
319
+ section), but otherwise you must ensure that the NCrystal header files are in
320
+ your compiler's include path, and that the NCrystal library is linked
321
+ correctly. Here are some examples of how this could for instance be done, with a
322
+ C and a C++ app respectively:
322
323
 
323
324
  export LDFLAGS="${LDFLAGS:-} -Wl,-rpath,$(ncrystal-config --show libdir) $(ncrystal-config --show libpath)"
324
325
  export CFLAGS="${CFLAGS:-} -I$(ncrystal-config --show includedir)"
@@ -326,22 +327,17 @@ done, with a C and a C++ app respectively:
326
327
  cc -std=c11 ${LDFLAGS} ${CFLAGS} my_c_code.c -o my_c_app
327
328
  c++ -std=c++17 ${LDFLAGS} ${CXXFLAGS} my_cpp_code.cpp -o my_cpp_app
328
329
 
329
- If using the NCrystal-Geant4 interfaces, you should also add "-lG4NCrystal" to
330
- the link flags.
331
-
332
330
  Then, in your code you can access the relevant APIs with with statements like:
333
331
 
334
332
  #include "NCrystal/NCrystal.hh" // C++ code, core NCrystal
335
- #include "G4NCrystal/G4NCrystal.hh" // C++ code, for Geant4 users
336
333
  #include "NCrystal/ncrystal.h" // C code
337
334
  import NCrystal ## Python code
338
335
 
339
336
  In the ./examples/ directory of your NCrystal distribution that you got after
340
337
  downloading and unpacking the NCrystal source tar-ball, you will find small
341
- examples of code using NCrystal. For C++/C and Geant4, there is currently no
342
- documentation beyond the header files and examples. In the case of Python, there
343
- is integrated documentation available via the usual "help" function, accessed
344
- with:
338
+ examples of code using NCrystal. For C++/C, there is currently no documentation
339
+ beyond the header files and examples. In the case of Python, there is integrated
340
+ documentation available via the usual "help" function, accessed with:
345
341
 
346
342
  import NCrystal
347
343
  help(NCrystal)
@@ -369,10 +365,10 @@ CMake code for a small project using NCrystal might look like the following
369
365
 
370
366
  cmake_minimum_required(VERSION 3.10...3.26)
371
367
  project(MyExampleProject LANGUAGES CXX)
372
- execute_process( COMMAND ncrystal-config --show cmakedir
368
+ execute_process( COMMAND "ncrystal-config" "--show" "cmakedir"
373
369
  OUTPUT_VARIABLE NCrystal_DIR
374
370
  OUTPUT_STRIP_TRAILING_WHITESPACE )
375
- find_package(NCrystal REQUIRED)
371
+ find_package(NCrystal 4.0.0 REQUIRED)
376
372
  add_executable(exampleapp "${PROJECT_SOURCE_DIR}/exampleapp.cc")
377
373
  target_link_libraries( exampleapp NCrystal::NCrystal )
378
374
  install( TARGETS exampleapp DESTINATION bin )
@@ -382,22 +378,21 @@ required before the code can work in an environment where the NCrystal CMake
382
378
  modules are not automatically injected into the CMake package search path (this
383
379
  notably includes NCrystal installed via "pip install ncrystal").
384
380
 
385
- If the NCrystal-Geant4 bindings are needed, they must be explicitly requested,
386
- and the NCrystal::G4NCrystal target added as a dependency for downstream code:
387
381
 
388
- find_package(NCrystal REQUIRED COMPONENTS GEANT4BINDINGS )
389
- target_link_libraries( exampleapp NCrystal::G4NCrystal )
390
382
 
391
- This will of course fail if NCrystal was not build with Geant4 support
392
- (i.e. configured with -DNCRYSTAL_ENABLE_GEANT4=ON). Note: currently (August
393
- 2024), NCrystal conda and pip packages are built *without* Geant4 support.
383
+ Using the NCrystal with Geant4
384
+ ------------------------------
394
385
 
386
+ The instructions for the NCrystal-Geant4 bindings are currently being
387
+ updated. Once complete, they will appear on
388
+ https://github.com/mctools/ncrystal-geant4
395
389
 
396
390
 
397
- Using the NCrystal installation from OpenMC
398
- -----------------------------------------------------------------------------
399
391
 
400
- Using NCrystal materials in openmc is supported since OpenMC release 13.3, and
392
+ Using NCrystal with OpenMC
393
+ --------------------------
394
+
395
+ Using NCrystal materials in OpenMc is supported since OpenMC release 13.3, and
401
396
  uses a nice simple syntax in the Python API:
402
397
 
403
398
  ```
@@ -454,8 +449,8 @@ the sections:
454
449
 
455
450
 
456
451
 
457
- Using the NCrystal installation from McStas
458
- -----------------------------------------------------------------------------
452
+ Using NCrystal with McStas
453
+ --------------------------
459
454
 
460
455
  NOTE: The following discussion concerns the modern McStas 3 branch, and might in
461
456
  particular not be 100% accurate for releases earlier than McStas 3.3 (probably
@@ -471,9 +466,8 @@ the correct settings for doing so. Thus, you can always invoke "ncrystal-config
471
466
  active. Depending on how you installed McStas, NCrystal is most likely already
472
467
  available. If not, you can try one of the following ways of enabling it:
473
468
 
474
- $> conda install -c conda-forge ncrystal [if you are in a conda-forge env]
469
+ $> conda install conda-forge::ncrystal [if you are in a conda-forge env]
475
470
  $> python3 -mpip install ncrystal [for non-conda users]
476
- $> . $MCSTAS/setup.sh [obsolete way]
477
471
 
478
472
  It is beyond the scope for this README to provide a full documentation of
479
473
  McStas, or the Union sub-system, but if you are using McStasScript to compose
@@ -511,4 +505,5 @@ For more documentation about the NCrystal_sample component, run:
511
505
 
512
506
  $> mcdoc NCrystal_sample
513
507
 
514
- Or consult the documentation online at https://www.mcstas.org/download/components/
508
+ Or consult the documentation online at
509
+ https://www.mcstas.org/download/components/
@@ -0,0 +1,53 @@
1
+ NCrystal/__init__.py,sha256=rnbx8duzCdHkzj9tr3cvr00kFn9SpYnnYFAcHJw_zEc,4155
2
+ NCrystal/__main__.py,sha256=tYOeVhY6joHahgtnBwNgcBDd-WXYQoHFmpslk2TAlTY,3624
3
+ NCrystal/_chooks.py,sha256=GtA8IkVIIJmrT-KtLKRJctgmBYs3pkfi4JNY0jfS7bc,43273
4
+ NCrystal/_cli_cif2ncmat.py,sha256=Hmp8MWV7d3Bzu_5Ekiik9Pdv43yNyZygun8HtqShn78,14626
5
+ NCrystal/_cli_endf2ncmat.py,sha256=1Lcbd-uYRPyDDofY9p37pAtSlEP_ShBkvhiRfV_5KhE,23389
6
+ NCrystal/_cli_hfg2ncmat.py,sha256=PCI62SUsIMfy45fUHz3Kg5LXupDJ6WRRH4uLWJCk_WY,7280
7
+ NCrystal/_cli_mcstasunion.py,sha256=WIEi1PL7d8CxJs8rSv7Wm_kglh32CLY_rCdr-1KxZYA,3960
8
+ NCrystal/_cli_ncmat2cpp.py,sha256=pSrDS0ttDc8wYYrEDs7uNgp4qozhmIJZCE0clFym4fI,1856
9
+ NCrystal/_cli_ncmat2hkl.py,sha256=_AAZmuc0gXGuPi5GRRsoiSkm_Qg88jNPR-dc1mLm5zM,7593
10
+ NCrystal/_cli_nctool.py,sha256=b9L86Vm4Br1_tlKtgK3h5PsjoR5k2i522jIjuQjjNjk,41488
11
+ NCrystal/_cli_vdos2ncmat.py,sha256=SnLHzwc1Vg5V896zc4ou1Eug1tKwZR3qrGcCrMybjAI,20308
12
+ NCrystal/_cli_verifyatompos.py,sha256=cDcbLlaBUo6F9_nhFjNYXrqgAoPdpw_U2IUBFrTM3-g,12348
13
+ NCrystal/_cliimpl.py,sha256=3boTxHnmX3ppqSvOHPauU4LPULr8OqHTF8a9KeBiU4E,13354
14
+ NCrystal/_cliwrap_config.py,sha256=RPawApLbRrZRTkWdAP3JK_eTtU_nfPrARYcnfF1-7sE,2002
15
+ NCrystal/_common.py,sha256=Dy81M0mxPVlv_W54W5uOEALR7wy3Tzx800gDMIwmXBQ,18255
16
+ NCrystal/_coreimpl.py,sha256=dWBPwbdb8l8Bi3wfDaaQVyqSqTQzwDfs1oEIJR9KTiQ,5727
17
+ NCrystal/_hfgdata.py,sha256=uYTB_xHTHVN8Vw91wr7_kXi18ileHJGNyVjnSi-Ss7g,62828
18
+ NCrystal/_hklobjects.py,sha256=wQAUe3tD6UncSW-qfuyAh5jSGnA_2kzvE5-HZ43s3xQ,4974
19
+ NCrystal/_is_std.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
+ NCrystal/_locatelib.py,sha256=xH26jONCgYB7VIRwoyBap6EzviIPKvj2qBdwjA5QIhU,9436
21
+ NCrystal/_miscimpl.py,sha256=Br30Qk2KwZ5e762_hDqx538zyVBh59fX4U9bDkYl908,16549
22
+ NCrystal/_mmc.py,sha256=FiavyAkRDb3MZ222AHXbmQpBQLwqBdzxtDCMunnKfRI,29349
23
+ NCrystal/_msg.py,sha256=wBJk0kGHusm0xXSt8KNYq6iIO_cubnznvnJ5Erl87EU,2624
24
+ NCrystal/_ncmat2cpp_impl.py,sha256=D_knqsv92EnaPJlufE3fJe2fnETnyQ8k9TbMwpXmxZs,18383
25
+ NCrystal/_ncmatimpl.py,sha256=OA1ZCFny7DyJ0Wj6PLuuWUe_n5nTpB6HfL2DC7__sm0,94301
26
+ NCrystal/_numpy.py,sha256=SwFcvrNBDqP647guedRdFeISsC8b4VvGm9McFyF1gJQ,2924
27
+ NCrystal/_testimpl.py,sha256=kvJj-QHFZbJuPeYAT281bKHAIM7Y2XRN3a2m5gNJJlE,27337
28
+ NCrystal/api.py,sha256=VRJLRLQ461OvEHAv5OGxqimAa7l3PY1mcTZMRQjSkkI,2973
29
+ NCrystal/atomdata.py,sha256=gwq92dIQqmr8kg_pyquPAsUrI9TWLVOELuEh2OLgkVw,8072
30
+ NCrystal/cfgstr.py,sha256=IVrMagRTD0TkAhuJkWkGKsJCX4ezG8Tf9uyfkhRjMgY,3741
31
+ NCrystal/cifutils.py,sha256=G8MVx1LQlEHt0oai13Sj5cEwJuRkMdC4VB3-75cffS0,78162
32
+ NCrystal/cli.py,sha256=OMUi3NZEwKwvx1fRzNDwWG9Yb-Vm49kkyiMu9NHHTlM,4395
33
+ NCrystal/constants.py,sha256=ldOyJAAhW0tBNDVexqTw1rxvcmwCnGJOueurXS44Plw,5919
34
+ NCrystal/core.py,sha256=wH7o2JKzvEGyTNsnMtEdMWxI3Nkh3bBlWP3HMwjRWyk,83339
35
+ NCrystal/datasrc.py,sha256=wAmpYjLMB5w8_0J4qRFtKMZ-RoFvyu8DMOouQDB6xac,9978
36
+ NCrystal/exceptions.py,sha256=7L61coTf_Sy8gjrsn7BNCu1cvOyAx0dWrihlV7AqgLM,2679
37
+ NCrystal/hfg2ncmat.py,sha256=10FbQNxYzdSjTMG2F1DCq7LiQ7xvd1gjFkrZFjj-GKg,10189
38
+ NCrystal/mcstasutils.py,sha256=7IRfwefvaXQORBV1Qibn88vb9OKMvIn_qfQoEt8-G3U,18540
39
+ NCrystal/misc.py,sha256=KmbmW2PB2roQReqLtn-RWse30f6w7gOmJPb7cId_-ME,14083
40
+ NCrystal/mmc.py,sha256=LQ0IXMgJexpSPrGYwZZm6bAh5Bo6y2z5CjezFAFy1UE,1948
41
+ NCrystal/ncmat.py,sha256=Tl-lx985tdOVvCg7sTrLtb9gieSfPbuPnksBEAxJkbI,42230
42
+ NCrystal/ncmat2cpp.py,sha256=_gXxXgbPcCmn0XnLx0h_dS_N3s4d18RORDSgSeVTgG4,4398
43
+ NCrystal/obsolete.py,sha256=v2HzQFqdrLaGm6bWNqioGwMdQMAhuWYSbTEF2He_HbY,3451
44
+ NCrystal/plot.py,sha256=Ack-OdgclwIGP-5nOlsoRP5enYaxUeIuT3zDKYtiKT4,19959
45
+ NCrystal/plugins.py,sha256=U4EF25DlYE8aO6uoG5Ptyia5Nj08LCrVl7973BCIkDI,2440
46
+ NCrystal/test.py,sha256=-BdnSN8lqwUallf6Q4UL35Rm_eA3BHG_V3-BdvDbkJQ,3310
47
+ NCrystal/vdos.py,sha256=O6cQy70glPV5D94ssnHW5MuC4WO7OnqqKjDu3-MW4Q4,46763
48
+ ncrystal_python-4.0.0.dist-info/LICENSE,sha256=cSwpZfFyXSC1mBPZgO2TbtGwoH2tR1SomMa5tEUU9o0,11509
49
+ ncrystal_python-4.0.0.dist-info/METADATA,sha256=fZh5q0GX-p0zRyogw02DtzQLvv4Q1imZ0cwuIv2__tA,27357
50
+ ncrystal_python-4.0.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
51
+ ncrystal_python-4.0.0.dist-info/entry_points.txt,sha256=JoeikOrVDenZuTEmdgeGAfHw_CsujEJPIGl3BP_tcKQ,469
52
+ ncrystal_python-4.0.0.dist-info/top_level.txt,sha256=VIJdIQMfLIbKpFXA8xm0fKY5okz8s5IHrZTYDSH18y0,9
53
+ ncrystal_python-4.0.0.dist-info/RECORD,,
@@ -1,53 +0,0 @@
1
- NCrystal/__init__.py,sha256=5YArcjYM7TijyttfL6cSSAr-YRYHKDj7MmXFCF0PTzU,4158
2
- NCrystal/__main__.py,sha256=VktGc2i4pb5AYRnntQ3PVPp48H5q1zKS9ARq2IjJn-s,3624
3
- NCrystal/_chooks.py,sha256=VnE8qlBbcdKZmDs7K4P7VzjDcRJyqvcnsdXYfwfy_uE,43273
4
- NCrystal/_cli_cif2ncmat.py,sha256=6b_M8JHioMI3Mddmye1-FOUSFKemip15t8Lg_bGSs8g,14626
5
- NCrystal/_cli_endf2ncmat.py,sha256=QnDPObYHLQQydyUATLPnTR5FrIw31o0iw3HALJg3GKA,23391
6
- NCrystal/_cli_hfg2ncmat.py,sha256=LA9jvog6aL73i4Ff_UIzhlr_HX_-xzzT8Jp0GOSO3-g,7280
7
- NCrystal/_cli_mcstasunion.py,sha256=gcT2eTt6CcEfkAMd6Pk1SbU5Ot80aj4u0ICA7P-Z6is,3960
8
- NCrystal/_cli_ncmat2cpp.py,sha256=8a9VylKxurEVPXyuz8dcYY0hOtisMZTeb77S9j5503Y,1856
9
- NCrystal/_cli_ncmat2hkl.py,sha256=U6N0hcbj66QIWaTkVNQ4qRu1cN4t7ugEwT8WZwAUkHQ,7593
10
- NCrystal/_cli_nctool.py,sha256=Ul6CZ1xXKY5g5-H7IZ2xmsB4MmX-NoKpSSTONr8JDt4,41488
11
- NCrystal/_cli_vdos2ncmat.py,sha256=al-5X0FkVXJpgsNL5Fz3QRnIjvE5V_4R66zqEnfqPXI,20308
12
- NCrystal/_cli_verifyatompos.py,sha256=39jVoVPxMOLDnoCIqakoLvsmkNu_Hj3xTHlnI6oLW5k,12348
13
- NCrystal/_cliimpl.py,sha256=9XqSmrWjNkWI6cTu4j5gC6qfG1tTms_U-CUwp15kjLg,13354
14
- NCrystal/_cliwrap_config.py,sha256=Pq0rdjd_8g-d41Xobcc9iwhLG2BNYg0auaZuxbiklJM,2002
15
- NCrystal/_common.py,sha256=a155CzrTqszG96QKODuftTjo7WhrNTx_MxCisW-xF9o,18255
16
- NCrystal/_coreimpl.py,sha256=iP5xRnZ1soUjxfVFFI8kRxbRMYrhmUr-j0RxDT3_s38,5727
17
- NCrystal/_hfgdata.py,sha256=V3TEiVrFG_Bs0wMMCiXV-dZk7eoafK113lcXv9LB4JI,62828
18
- NCrystal/_hklobjects.py,sha256=7ciyhmeGxQ0L0vr4EbG5yNfrFAPX9e2ATMVgE8mTPpo,4974
19
- NCrystal/_is_std.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
- NCrystal/_locatelib.py,sha256=_84Zshdt6H3cG2r2ox2I7FZywCDwX2lfhpZWB1WYiiU,9436
21
- NCrystal/_miscimpl.py,sha256=4F-zSVpHz96k1FDycn3yv-u6Klz1NhtpO3fRqjpbHCk,16549
22
- NCrystal/_mmc.py,sha256=8hme-V99GVVRz9nhKuDJYfDVIlBD5ypgnKPmbPD7TwE,29349
23
- NCrystal/_msg.py,sha256=alf2wdgWkiQCyOltSIYZO-K4frWXlLL_CcXpbcmH2cw,2624
24
- NCrystal/_ncmat2cpp_impl.py,sha256=y0vdtjaEz1RhqW2lvP3ZGQd3TGhUbQ7N66ftuf_7HZ0,18383
25
- NCrystal/_ncmatimpl.py,sha256=F3INShPmK5q-afLaOMJWS3Ct9lzVkfDHqHfQCTh86N4,94301
26
- NCrystal/_numpy.py,sha256=_eQz0pXJ9u65a6RAy4YLYRvo2tbWHgkE04Q52DauaZU,2924
27
- NCrystal/_testimpl.py,sha256=Uy8ktgXlDjU01xmQvR06bZypIU9Drerrtwkv4Al7zeQ,27333
28
- NCrystal/api.py,sha256=Yzc8vbThMdZJ2QoCXat_0fYGuKRTGokKp_OJrxkQVQU,2973
29
- NCrystal/atomdata.py,sha256=pjStH5gmNFr-Tcrz68d29AXnffexHF_BVoCqwQYPr1s,8072
30
- NCrystal/cfgstr.py,sha256=uaupapzw3jt5dxXd_nSPvVSfMBdgpp9NAbT08obUhgE,3741
31
- NCrystal/cifutils.py,sha256=9HvzI4o1acKcqUk_8ej_vsUzNraw37OlQQNmGxVB6uA,78162
32
- NCrystal/cli.py,sha256=4JL1KLtahgF0WbRLDSGqUq8n0G_Ya4RoAGmDBHOjPVk,4395
33
- NCrystal/constants.py,sha256=jvJhqjgW7bQALhYrPSb_j02Xw12hr_8sBW7StFIgjUQ,5919
34
- NCrystal/core.py,sha256=UihJfqnI0Z-X21p0Y0wiy6P0ZjXGsMll0iUlrcX2wmQ,83339
35
- NCrystal/datasrc.py,sha256=gC6-RN0NQGX-9ObK1oJv5_IPeAGt6XB80FHCyaKveY0,9978
36
- NCrystal/exceptions.py,sha256=o6M0ZO--68DJdl7_FndePm_9EFEaimeE1yfhOf9mRdI,2679
37
- NCrystal/hfg2ncmat.py,sha256=bIcdAtl9tSx1iJQ5AM9mPS1phvWZqplVSPumT51Cu-A,10189
38
- NCrystal/mcstasutils.py,sha256=q1XGTvQhnMl0ucr5kacBivgI3GHnxJW-QVLC4-e42MM,18540
39
- NCrystal/misc.py,sha256=Ik4qSKjO8qoWhBEjQ-9T0bU7nz-GKhTDBaMU6Klc9i8,14083
40
- NCrystal/mmc.py,sha256=jccBqRmKNgHH4-vZx0hG9s6huQpxmdLnt90MRxuuuOQ,1948
41
- NCrystal/ncmat.py,sha256=cZumVWkQUj0a8jk8spG9QAj8ipTvJi1w5GOl1_bcEoE,42230
42
- NCrystal/ncmat2cpp.py,sha256=rpJLd3n_vNwjr5wAwvdPMG9RPy3usaRSy4Mb5c3541o,4398
43
- NCrystal/obsolete.py,sha256=40M2V67Fqh1yBqqhletJEGbR3l1dQ8jxv9NCSrN93Io,3451
44
- NCrystal/plot.py,sha256=C9L7XBjp_cKSlXlH53nELcOhIYhy20AlV2UyV0aNegU,19959
45
- NCrystal/plugins.py,sha256=QjoXJ9253ff0LaP9cw5Dk9zMm5qZNcdB1jV_rtwDdYU,2440
46
- NCrystal/test.py,sha256=5UohpebPKeABHTkSWNmsqdAHLN2qQmTM81zqw2A4QLw,3310
47
- NCrystal/vdos.py,sha256=9lHF0sTuQYkfdxe0hu7461pJfCkc2HUlVzNkwAdyQ0A,46763
48
- ncrystal_python-3.9.87.dist-info/LICENSE,sha256=cSwpZfFyXSC1mBPZgO2TbtGwoH2tR1SomMa5tEUU9o0,11509
49
- ncrystal_python-3.9.87.dist-info/METADATA,sha256=lGRvf2ZKdLajABZX0BB_hXgdvNhmLWgTReKMkih83tk,27929
50
- ncrystal_python-3.9.87.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
51
- ncrystal_python-3.9.87.dist-info/entry_points.txt,sha256=JoeikOrVDenZuTEmdgeGAfHw_CsujEJPIGl3BP_tcKQ,469
52
- ncrystal_python-3.9.87.dist-info/top_level.txt,sha256=VIJdIQMfLIbKpFXA8xm0fKY5okz8s5IHrZTYDSH18y0,9
53
- ncrystal_python-3.9.87.dist-info/RECORD,,