-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
github-actions
committed
Dec 23, 2024
1 parent
37842eb
commit c5cb329
Showing
75 changed files
with
27,322 additions
and
1 deletion.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
866 changes: 866 additions & 0 deletions
866
specsanalyzer/latest/_modules/specsanalyzer/config.html
Large diffs are not rendered by default.
Oops, something went wrong.
1,185 changes: 1,185 additions & 0 deletions
1,185
specsanalyzer/latest/_modules/specsanalyzer/convert.html
Large diffs are not rendered by default.
Oops, something went wrong.
1,466 changes: 1,466 additions & 0 deletions
1,466
specsanalyzer/latest/_modules/specsanalyzer/core.html
Large diffs are not rendered by default.
Oops, something went wrong.
765 changes: 765 additions & 0 deletions
765
specsanalyzer/latest/_modules/specsanalyzer/img_tools.html
Large diffs are not rendered by default.
Oops, something went wrong.
1,231 changes: 1,231 additions & 0 deletions
1,231
specsanalyzer/latest/_modules/specsanalyzer/io.html
Large diffs are not rendered by default.
Oops, something went wrong.
1,301 changes: 1,301 additions & 0 deletions
1,301
specsanalyzer/latest/_modules/specsscan/core.html
Large diffs are not rendered by default.
Oops, something went wrong.
1,227 changes: 1,227 additions & 0 deletions
1,227
specsanalyzer/latest/_modules/specsscan/helpers.html
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.. include:: ../README.md | ||
:parser: myst_parser.sphinx_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
.. specsanalyzer documentation master file, created by | ||
sphinx-quickstart on Wed Jul 27 16:11:48 2022. | ||
You can adapt this file completely to your liking, but it should at least | ||
contain the root `toctree` directive. | ||
Welcome to specsanalyzer's documentation! | ||
========================================= | ||
Concept description. TODO | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:caption: Getting Started | ||
|
||
getting_started | ||
specsanalyzer/config | ||
tutorial/1_specsanalyzer_conversion_examples | ||
tutorial/2_specsscan_example | ||
tutorial/3_specsscan_conversion_to_NeXus | ||
tutorial/4_specsscan_load_sweep_scan | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:numbered: | ||
:caption: SpecsAnalyzer Core Modules | ||
|
||
specsanalyzer/core | ||
specsanalyzer/convert | ||
specsanalyzer/img_tools | ||
specsanalyzer/io | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:numbered: | ||
:caption: SpecsScan Core Modules | ||
|
||
specsscan/core | ||
specsscan/helpers | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:numbered: | ||
:caption: Contributing | ||
|
||
misc/maintain | ||
|
||
Indices and tables | ||
================== | ||
|
||
* :ref:`genindex` | ||
* :ref:`modindex` | ||
* :ref:`search` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
How to maintain | ||
=================================================== | ||
|
||
refer to github wiki as well |
39 changes: 39 additions & 0 deletions
39
specsanalyzer/latest/_sources/specsanalyzer/config.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
Config | ||
=================================================== | ||
The config module contains a mechanics to collect configuration parameters from various sources and configuration files, and to combine them in a hierarchical manner into a single, consistent configuration dictionary. | ||
It will load an (optional) provided config file, or alternatively use a passed python dictionary as initial config dictionary, and subsequently look for the following additional config files to load: | ||
|
||
* ``folder_config``: A config file of name :file:`specs_config.yaml` in the current working directory. This is mostly intended to pass calibration parameters of the workflow between different notebook instances. | ||
* ``user_config``: A config file provided by the user, stored as :file:`.specsanalyzer/config.yaml` in the current user's home directly. This is intended to give a user the option for individual configuration modifications of system settings. | ||
* ``system_config``: A config file provided by the system administrator, stored as :file:`/etc/specsanalyzer/config.yaml` on Linux-based systems, and :file:`%ALLUSERSPROFILE%/specsanalyzer/config.yaml` on Windows. This should provide all necessary default parameters for using the specsanalyzer processor with a given setup. For an example for the setup at the Fritz Haber Institute setup, see :ref:`example_config` | ||
* ``default_config``: The default configuration shipped with the package. Typically, all parameters here should be overwritten by any of the other configuration files. | ||
|
||
The config mechanism returns the combined dictionary, and reports the loaded configuration files. In order to disable or overwrite any of the configuration files, they can be also given as optional parameters (path to a file, or python dictionary). | ||
|
||
|
||
API | ||
*************************************************** | ||
.. automodule:: specsanalyzer.config | ||
:members: | ||
:undoc-members: | ||
|
||
|
||
.. _example_config: | ||
|
||
Default specsanalyzer configuration settings | ||
*************************************************** | ||
|
||
.. literalinclude:: ../../src/specsanalyzer/config/default.yaml | ||
:language: yaml | ||
|
||
Default specsscan configuration settings | ||
*************************************************** | ||
|
||
.. literalinclude:: ../../src/specsscan/config/default.yaml | ||
:language: yaml | ||
|
||
Example configuration file for the trARPES setup at FHI-Berlin | ||
********************************************************************************* | ||
|
||
.. literalinclude:: ../../src/specsscan/config/example_config_FHI.yaml | ||
:language: yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
convert functions ``(specsanalyzer.convert)`` | ||
============================================= | ||
convert functions for the specsanalyzer package | ||
|
||
.. automodule:: specsanalyzer.convert | ||
:members: | ||
:private-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Core functions ``(specsanalyzer.core)`` | ||
======================================== | ||
Core class functions for the specsanalyzer package | ||
|
||
.. automodule:: specsanalyzer.core | ||
:members: | ||
:private-members: |
7 changes: 7 additions & 0 deletions
7
specsanalyzer/latest/_sources/specsanalyzer/img_tools.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
image tool functions ``(specsanalyzer.img_tools)`` | ||
=================================================== | ||
image tool functions for the specsanalyzer package | ||
|
||
.. automodule:: specsanalyzer.img_tools | ||
:members: | ||
:private-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
io functions ``(specsanalyzer.io)`` | ||
===================================== | ||
io functions for the specsanalyzer package | ||
|
||
.. automodule:: specsanalyzer.io | ||
:members: | ||
:private-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Core functions ``(specsscan.core)`` | ||
======================================== | ||
Core class functions for the specsscan package | ||
|
||
.. automodule:: specsscan.core | ||
:members: | ||
:private-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Helpers | ||
=================================================== | ||
.. automodule:: specsscan.helpers | ||
:members: | ||
:undoc-members: |
Oops, something went wrong.