tomwer 2.0.0.dev6__tar.gz → 2.0.0.dev7__tar.gz
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.
- {tomwer-2.0.0.dev6/src/tomwer.egg-info → tomwer-2.0.0.dev7}/PKG-INFO +3 -3
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/pyproject.toml +1 -2
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +75 -16
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/NabuSlicesOW.py +1 -1
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py +1 -1
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/__main__.py +5 -0
- tomwer-2.0.0.dev7/src/tomwer/app/cast_volume.py +173 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/control/datawatcher/datawatcherprocess.py +2 -2
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/common/test/test_nabu_utils.py +44 -16
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/common/utils.py +111 -59
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/output.py +18 -18
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/slice/SingleSliceRunner.py +6 -1
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/volume.py +6 -1
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/scan/edfscan.py +11 -1
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/scan/nxtomoscan.py +8 -2
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/cluster/slurm.py +0 -33
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/data_discovery/_observer.py +0 -60
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/datalist.py +0 -62
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/dataportal/gallery.py +0 -45
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/edit/dkrfpatch.py +1 -1
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/edit/nxtomoeditor.py +19 -8
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/icons.py +31 -26
- tomwer-2.0.0.dev7/src/tomwer/gui/illustrations.py +44 -0
- tomwer-2.0.0.dev7/src/tomwer/gui/reconstruction/cor/CompareImages.py +117 -0
- tomwer-2.0.0.dev7/src/tomwer/gui/reconstruction/nabu/castvolume/CastVolumeWidget.py +257 -0
- tomwer-2.0.0.dev7/src/tomwer/gui/reconstruction/nabu/castvolume/_HistogramLoader.py +40 -0
- tomwer-2.0.0.dev7/src/tomwer/gui/reconstruction/nabu/castvolume/_HistogramWidget.py +147 -0
- tomwer-2.0.0.dev6/src/tomwer/gui/reconstruction/nabu/castvolume.py → tomwer-2.0.0.dev7/src/tomwer/gui/reconstruction/nabu/castvolume/_SettingsWidget.py +136 -92
- tomwer-2.0.0.dev7/src/tomwer/gui/reconstruction/nabu/castvolume/_SlicePreviewWidget.py +156 -0
- tomwer-2.0.0.dev7/src/tomwer/gui/reconstruction/nabu/castvolume/__init__.py +3 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/estimate_motion/motion_plot_utils.py +2 -6
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py +2 -3
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/nabuconfig/output.py +1 -1
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +86 -28
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +74 -4
- tomwer-2.0.0.dev7/src/tomwer/gui/reconstruction/nabu/test/test_cast_volume.py +410 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/tests/test_nabu.py +0 -1
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stacks.py +16 -3
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/SingleAxisStitchingWidget.py +0 -1
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/StitchingOptionsWidget.py +3 -4
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/StitchingWindow.py +1 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/axisorderedlist.py +7 -11
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/config/positionoveraxis.py +2 -5
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/singleaxis.py +2 -2
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/stitching_preview.py +30 -5
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/stitching_raw.py +26 -14
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/z_stitching/fineestimation.py +5 -30
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/buttons.py +51 -23
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/flow.py +3 -3
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/illustrations.py +0 -19
- tomwer-2.0.0.dev7/src/tomwer/gui/utils/slice_selector.py +49 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/unitsystem.py +3 -7
- tomwer-2.0.0.dev7/src/tomwer/gui/utils/validators.py +15 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/scanoverview.py +9 -1
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/reconstruction/cast_volume.py +1 -1
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/reconstruction/multicor.py +17 -30
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/reconstruction/multipag.py +6 -5
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/reconstruction/__init__.py +0 -1
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/reconstruction/castvolume.py +17 -11
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/reconstruction/multicor.py +2 -1
- tomwer-2.0.0.dev7/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_cast_volumeow.py +118 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/version.py +1 -1
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7/src/tomwer.egg-info}/PKG-INFO +3 -3
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer.egg-info/SOURCES.txt +9 -7
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer.egg-info/requires.txt +1 -1
- tomwer-2.0.0.dev6/src/tomwer/gui/illustrations.py +0 -129
- tomwer-2.0.0.dev6/src/tomwer/gui/reconstruction/cor/CompareImages.py +0 -295
- tomwer-2.0.0.dev6/src/tomwer/gui/reconstruction/nabu/slurm.py +0 -41
- tomwer-2.0.0.dev6/src/tomwer/gui/reconstruction/nabu/test/test_cast_volume.py +0 -102
- tomwer-2.0.0.dev6/src/tomwer/gui/utils/waiterthread.py +0 -22
- tomwer-2.0.0.dev6/src/tomwer/resources/gui/icons/locked.png +0 -0
- tomwer-2.0.0.dev6/src/tomwer/resources/gui/icons/locked.svg +0 -80
- tomwer-2.0.0.dev6/src/tomwer/resources/gui/icons/unlocked.png +0 -0
- tomwer-2.0.0.dev6/src/tomwer/resources/gui/icons/unlocked.svg +0 -55
- tomwer-2.0.0.dev6/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_cast_volumeow.py +0 -54
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/LICENSE +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/README.rst +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/setup.cfg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/orange/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/orange/ewoks_compatibility.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/orange/managedprocess.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/orange/settings.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/orange/task_widgets/TomwerWidgetNoThread.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/orange/task_widgets/TomwerWidgetOneThreadPerRun.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/orange/task_widgets/TomwerWidgetWithStack.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/orange/task_widgets/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/state_summary.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tests/TestAcquisition.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/EBS_tomo_listener.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/append_raw_darks_and_flats_frames_to_NXtomos.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/cast_volume.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/complete_on_the_fly.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/copy_reduced_darks_and_flats_meth1.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/copy_reduced_darks_and_flats_meth2.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/darks and flats copy - method 2.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/default_cor_search.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/drac_publication.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/hello_world_python_script.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/id16b/ID16b_full_volume.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/id16b/ID16b_insitu.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/id16b/ID16b_normalization.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/id16b/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/multipag_example.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/simple_slice_reconstruction.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/simple_slice_reconstruction_on_slurm.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/simple_volume_local_reconstruction.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/untitled.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/using_multicor_to_find_cor.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/tutorials/volume_casting_on_slurm.ows +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/cluster/MonitorOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/cluster/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/cluster/icons/slurm.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/cluster/icons/slurm.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/cluster/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/AdvancementOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/BlissDataListenerOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/DataSelectorOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/DataValidatorOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/FilterOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/NXTomomillOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/NXtomoConcatenate.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/TomoObjSeriesOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/VolumeSelector.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/_BlissDataListenerQThread.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/_datalistener.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/advancement.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/advancement.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/blissdata_listener.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/blissdata_listener.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/concatenate_nxtomos.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/concatenate_nxtomos.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/datadiscover.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/datadiscover.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/datalistener.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/edf2nx.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/edf2nx.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/email.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/email.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/esrf.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/image_key_upgrader.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/namefilter.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/namefilter.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/notification.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/notification.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/nxtomomill.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/nxtomomill.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/progress.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/reduced_darkflat_selector.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/reduced_darkflat_selector.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/scanlist.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/scanselector.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/scanselector.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/single_tomo_obj.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/single_tomo_obj.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/time.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/tomoobjseries.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/tomoobjseries.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/tomwer.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/validator.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/validatorcrack.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/volumeselector.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/volumeselector.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/volumesymlink.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/icons/volumesymlink.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/control/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/dataportal/PublishProcessedDataOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/dataportal/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/dataportal/icons/publish_processed_data.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/dataportal/icons/publish_processed_data.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/debugtools/ObjectInspectorOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/debugtools/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/debugtools/icons/hammer.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/debugtools/icons/hammer.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/debugtools/icons/inspector.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/debugtools/icons/inspector.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/debugtools/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/deprecated/VolumeviewerOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/deprecated/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/deprecated/_volume_viewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/deprecated/icons/deprecated_volume_viewer.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/deprecated/icons/deprecated_volume_viewer.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/edit/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/edit/icons/image_key_editor.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/edit/icons/image_key_editor.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/edit/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/icons/deprecated.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/icons/tomwer.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/icons/tomwer_build.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/icons/tomwer_build.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/icons/tomwer_cluster.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/icons/tomwer_cluster.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/icons/tomwer_control.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/icons/tomwer_control.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/icons/tomwer_data_portal.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/icons/tomwer_data_portal.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/icons/tomwer_debug_tools.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/icons/tomwer_debug_tools.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/icons/tomwer_edit.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/icons/tomwer_edit.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/icons/tomwer_other.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/icons/tomwer_other.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/icons/tomwer_stitching.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/icons/tomwer_stitching.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/icons/tomwer_visu.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/icons/tomwer_visu.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/other/PythonScriptOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/other/TomoObjsHub.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/other/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/other/icons/PythonScript.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/other/icons/hub.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/other/icons/hub.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/other/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/BaseNabuRecOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/CoROW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/ComputeReduceDarkAndFlatOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/CopyReducedDarkAndFlatOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/MultiCoROW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/MultiPagOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/NabuSettingsOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/axis.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/axis.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/bricks.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/compute_darkflat.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/compute_darkflat.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/copy_darkflat.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/copy_darkflat.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/darkflat.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/darkflat.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/esrf.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_cast.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_cast.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_prepare_weights_double.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_prepare_weights_double.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_settings.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_slices.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_slices.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_volume.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_volume.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/norm_I.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/norm_I.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/refCopy.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/refCopy.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/saaxis.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/saaxis.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/tomogui.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/icons/tomwer.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/reconstruction/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/stitching/StitcherOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/stitching/ZStitchingConfigOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/stitching/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/stitching/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/RadioStackOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/SliceStackOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/icons/diff.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/icons/diff.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/icons/esrf.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/icons/eye.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/icons/eyecrack.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/icons/radiosstack.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/icons/radiosstack.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/icons/sampleMoved.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/icons/sampleMoved.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/icons/sinogramviewer.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/icons/slicesstack.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/icons/slicesstack.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/icons/tomwer.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/orangecontrib/tomwer/widgets/visualization/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/canvas.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/canvas_launcher/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/canvas_launcher/config.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/canvas_launcher/environ.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/canvas_launcher/mainwindow.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/canvas_launcher/splash.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/canvas_launcher/utils.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/canvas_launcher/widgetsscheme.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/cor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/diffframe.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/estimate_motion.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/imagekeyeditor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/imagekeyupgrader.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/multicor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/multipag.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/nabuapp.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/nxtomoeditor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/patchrawdarkflat.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/radiostack.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/samplemoved.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/scanviewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/sinogramviewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/slicestack.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/stitching/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/stitching/common.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/volume_viewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/ystitching.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/app/zstitching.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/cluster/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/control/_DataListener.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/control/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/control/datawatcher/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/control/datawatcher/datawatcherobserver.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/control/datawatcher/edfdwprocess.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/control/datawatcher/hdf5dwprocess.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/control/datawatcher/status.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/control/scanvalidator.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/drac/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/drac/binning.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/drac/dracbase.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/drac/gallery.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/drac/output.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/drac/processeddataset.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/drac/rawdataset.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/drac/tests/test_gallery.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/drac/tests/test_icat_processed_dataset.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/drac/tests/test_icat_raw_dataset.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/futureobject.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/output.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/common/NabuBaseReconstructor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/common/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/common/filter.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/common/method.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/common/mode.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/common/nabucommon.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/common/padding.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/common/phase.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/common/plane.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/common/ringcorrection.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/common/settings.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/common/stages.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/common/target.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/common/test/test_NabuBaseReconstructor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/common/test/test_slice_interpreter.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/cor/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/cor/anglemode.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/cor/cor_resource.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/cor/exception.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/cor/mode.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/cor/projectiontype.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/cor/side.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/darkflat/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/darkflat/settings.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/multi/MultiBaseParams.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/multi/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/multi/multicor/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/multi/multicor/multicor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/multi/multicor/params.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/multi/multipag/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/multi/multipag/multipag.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/multi/multipag/params.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/multi/reconstructions.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/multi/scores/ComputedScore.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/multi/scores/ScoreMethod.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/multi/scores/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/multi/scores/compute.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/multi/scores/utils.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/params_cache.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/paramsbase.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/slice/NabuSliceMode.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/slice/SliceInterpreter.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/slice/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/slice/slices.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/tests/test_anglemode.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/tests/test_axis_params.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/tests/test_cor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/tests/test_params_cache.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/tests/test_paramsbase.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/tests/test_scores.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/tests/test_utils.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/utils/LastReceivedScansDict.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/utils/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/reconstruction/utils/cor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/resourcemanager.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/scan/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/scan/blissscan.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/scan/scanbase.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/scan/scanfactory.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/scan/scantype.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/scan/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/scan/tests/test_edf.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/scan/tests/test_future_scan.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/scan/tests/test_nxtomoscan.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/scan/tests/test_scan.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/settings.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/signal.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/tests/test_scanutils.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/tests/test_utils.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/tomwer_object.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/_Launcher.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/char.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/deprecation.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/dictutils.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/ewoks.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/ftseriesutils.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/gpu.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/image.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/normalization.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/nxtomoutils.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/resource.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/scanutils.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/slurm.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/spec.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/tests/test_image.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/tests/test_nxtomo.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/tests/test_scan_utils.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/tests/test_time.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/threads.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/time.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/utils/volumeutils.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/volume/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/volume/edfvolume.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/volume/hdf5volume.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/volume/jp2kvolume.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/volume/rawvolume.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/volume/tests/test_volumes.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/volume/tiffvolume.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/volume/volumebase.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/volume/volumefactory.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/_image_from_file.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/cluster/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/cluster/supervisor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/cluster/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/cluster/tests/test_cluster.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/cluster/tests/test_supervisor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/conditions/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/conditions/filter.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/configuration/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/configuration/action.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/configuration/level.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/_host.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/actions.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/data_discovery/DataDiscoveryWindow.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/data_discovery/_ControlWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/data_discovery/_DataDiscoveryConfigWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/data_discovery/_MainWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/data_discovery/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/datalistener.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/datareacheractions.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/datavalidator.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/history.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/nxtomomill.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/observations.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/scanselectorwidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/selectorwidgetbase.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/series/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/series/nxtomoconcatenate.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/series/seriescreator.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/series/serieswaiter.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/series/test/test_creator.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/singletomoobj.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/tests/test_datadiscovery.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/tests/test_datalist.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/tests/test_datalistener.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/tests/test_datavalidator.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/tests/test_inputwidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/tests/test_scan_observations.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/tests/test_scanselector.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/tests/test_single_tomo_obj.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/tests/test_volume_dialog.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/tests/test_volumeselector.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/tomoobjdisplaymode.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/control/volumeselectorwidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/dataportal/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/dataportal/createscreenshots.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/dataportal/outputformat.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/dataportal/publish.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/dataportal/tests/test_create_screenshots_gui.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/dataportal/tests/test_gallery_gui.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/debugtools/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/debugtools/datasetgenerator.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/debugtools/objectinspector.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/dialog/QDataDialog.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/dialog/QVolumeDialog.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/dialog/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/edit/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/edit/imagekeyeditor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/edit/nxtomowarmer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/edit/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/edit/tests/test_dkrf_patch.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/edit/tests/test_image_key_editor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/edit/tests/test_nx_editor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/fonts.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/metadataloader.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/qconfigfile.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/qlefilesystem.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/cor/CalculationWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/cor/CoRMainWindow.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/cor/CoROptionsWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/cor/CoRSettingsWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/cor/CoRWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/cor/ControlWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/cor/EstimatedCoRWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/cor/EstimatedCorComboBox.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/cor/InputWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/cor/ManualFramesSelection.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/cor/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/darkflat/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/darkflat/darkflatcopywidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/darkflat/darkflatwidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/multicor/CoRScorePlot.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/multicor/MultiCoRTabWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/multicor/MultiCoRWindow.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/multicor/NabuAutoCorDiag.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/multicor/QMultiCoRParams.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/multicor/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/multicor/corrangeselector.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/multicor/dimensionwidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/multicor/sliceselector.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/multipag/DBScorePlot.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/multipag/MultiPagSelectionWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/multipag/MultiPagTabWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/multipag/MultiPagWindow.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/multipag/QMultiPagParams.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/multipag/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/check.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/dialog.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/estimate_motion/estimator/method.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/estimate_motion/estimator/model.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/estimate_motion/mainwindow.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/estimate_motion/motion_plot_config.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/estimate_motion/motion_plots_widget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/estimate_motion/nabu_config_widget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/nabuconfig/NabuSettingsWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/nabuconfig/NabuSettingsWindow.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/nabuconfig/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/nabuconfig/base.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/nabuconfig/paddingmode.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/nabuconfig/stages.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/nabuconfig/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/nabuconfig/tests/test_NabuSettingsWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/nabuflow.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/platform.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/slices/NabuSlicesWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/slices/NabuSlicesWindow.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/slices/SliceGroupBox.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/slices/tests/test_NabuSlicesWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/test/test_check.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/test/test_ctf.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/test/test_delta_beta_selector.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/test/test_nabu_preprocessing.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/test/test_volume.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/volume/DeltaBetaSelector.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/volume/DeltaBetaSelectorDialog.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/volume/NabuVolumeWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/volume/NabuVolumeWindow.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/volume/SliceSelector.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/nabu/volume/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/scores/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/scores/actions/_ScoresPlotAction.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/scores/actions/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/scores/control.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/scores/scoreplot.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/tests/test_axis.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/tests/test_multicor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/reconstruction/tests/test_multipag.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/samplemoved/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/samplemoved/selectiontable.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/settings.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stackplot.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/action.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/alignment.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/config/_QSpinBox.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/config/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/config/_linkInfo.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/config/axisparams.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/config/output.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/config/stitchingstrategies.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/config/tests/test_axisparams.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/config/tomoobjdetails.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/metadataholder.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/normalization.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/preview.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/stitchandbackground.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/tests/test_ZStitchingWindow.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/tests/test_axis_ordered_list.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/tests/test_normalization.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/tests/test_preview.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/tests/test_stitching_raw.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/tests/utils.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/utils.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/z_stitching/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/z_stitching/tests/test_fine_estimation.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/z_stitching/tests/test_raw_estimation.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/stitching/z_stitching/tests/test_stitching_window.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/tests/test_cor_gui.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/tests/test_qfolder_dialog.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/tests/utils.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/HDF5DatasetSelector.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/RangeWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/_outputdir.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/completer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/gpu.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/host_editor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/inputwidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/lineselector/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/lineselector/lineselector.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/loadingmode.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/locale.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/qt_utils.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/reconstruction.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/sandboxes.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/scandescription.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/scrollarea.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/slider.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/splashscreen.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/step.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/tests/test_completer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/tests/test_host_editor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/tests/test_line_selector.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/tests/test_splashscreen.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/tests/test_vignettes.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/utils.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/utils/vignettes.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/TomoPlot2D.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/dataviewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/diffviewer/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/diffviewer/diffviewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/diffviewer/frametype.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/diffviewer/shiftwidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/displaymode.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/fullscreenplot.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/imagestack.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/nxtomometadata.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/radiomode.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/reconstructionparameters.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/sinogramviewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/slicemode.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/test/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/test/test_dataviewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/test/test_diffviewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/test/test_reconstruction_parameters.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/test/test_sinogramviewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/test/test_stacks.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/tomoobjoverview.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/CoordinateSystemOverlay.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/GeometryOrMetadataWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/VolumeViewerWidget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/VolumeViewerWindow.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/_CrossHairs.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/_HorizontalSliderWithBrowser.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/_ProcessingOverlay.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/_ReconstructionParameters.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/_SliceLoader.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/_TomoPlot2DSlices.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/actions/_ColorBarAction.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/actions/_OpenGLAction.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/actions/_ShowAxesAction.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/actions/_ShowCoordinateSystemAction.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/actions/_ShowCoordinateSystemLabelAction.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/actions/_ShowCrosshairsAction.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/actions/_ShowPlotToolBarAction.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/actions/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/tests/test_VolumeViewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volume_viewer/toolbar.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volumeoverview.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/gui/visualization/volumeviewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/io/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/io/processlog.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/io/utils/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/io/utils/h5pyutils.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/io/utils/raw_and_processed_data.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/io/utils/test/test_raw_and_processed_data.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/io/utils/test/test_utils.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/io/utils/tomoobj.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/io/utils/utils.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/_common/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/_common/data.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/_common/process.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/_common/tomoobj.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/_common/volume.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/cluster/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/cluster/future_supervisor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/cluster/slurm_cluster.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/conditions/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/conditions/filters.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/control/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/control/datadiscovery.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/control/scanselector.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/control/singletomoobj.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/control/volumeselector.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/dataportal/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/dataportal/publish.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/edit/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/edit/dark_flat_patch.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/edit/imagekey_editor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/edit/imagekey_upgrader.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/field_validators/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/field_validators/cluster_config.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/reconstruction/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/reconstruction/compute_dark_flat.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/reconstruction/copy_reduced_frames.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/reconstruction/cor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/reconstruction/estimate_motion_io.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/reconstruction/nabu_settings.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/reconstruction/nabu_slices.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/reconstruction/nabu_volume.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/reconstruction/reduced_frames.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/visualization/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/visualization/dataviewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/models/visualization/volume_viewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/3D_coordinate_system_XY.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/3D_coordinate_system_XZ.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/3D_coordinate_system_YZ.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/Imagej_icon.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/a.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/a.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/add.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/add.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/advanced_user.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/advanced_user.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/axis.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/axis.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/background.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/background.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/basic_user.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/basic_user.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/cfg_file_active.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/cfg_file_active.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/cfg_file_inactive.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/cfg_file_inactive.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/compare_mode_a_minus_b.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/compare_mode_a_minus_b.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/compose.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/compose.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/crosshairs.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/crosshairs.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/datalistener_activate.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/datalistener_activate.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/datalistener_deactivate.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/datalistener_deactivate.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/delta_beta.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/delta_beta.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/edit_downstream.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/edit_upstream.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/exit.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/exit.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/extend_3D_coordinate_system_XY.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/extend_3D_coordinate_system_XZ.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/extend_3D_coordinate_system_YZ.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/free_edition.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/full_screen.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/full_screen.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/hammer.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/hammer.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/health.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/health.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/hide_3D_coordinate_system.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/history.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/hourglass.npy +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/icat_gallery_opts.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/icat_gallery_opts.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/imageNotFound.npy +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/information.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/information.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/input.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/input.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/invisible.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/invisible.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/lineselection.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/lineselection.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/link-slash.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/link.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/list_selection.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/list_selection.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/log.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/log.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/loop.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/lr_mirroring.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/lr_mirroring.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/minimalistic_user.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/minimalistic_user.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/multi-document-save.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/multi-document-save.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/nabu.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/nabu.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/output.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/output.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/parameters.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/parameters.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/plot-xleft.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/plot-xleft.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/plot-xright.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/plot-xright.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/range_selection.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/range_selection.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/red_dot.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/reset_3D_coordinate_system.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/results.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/results.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/rm.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/rm.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/ruler.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/ruler.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/search.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/search.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/short_description.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/short_description.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/show_3D_coordinate_system.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/show_coordinate_system_label.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/show_plot_toolbars.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/single_selection.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/single_selection.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/sinogram.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/slurm.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/slurm_active.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/slurm_active.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/slurm_deactive.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/slurm_deactive.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/stitching_modeRaw.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/stitching_modeRaw.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/stitching_modeRefine.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/stitching_modeRefine.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/switch.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/tomwer.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/tomwer_large.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/ud_mirroring.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/ud_mirroring.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/unsharp_mask.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/update_stitching_preview.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/url.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/url.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/vignettes.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/vignettes.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/visible.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/visible.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/warning.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/icons/warning.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/illustrations/3D_coordinate_system.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/illustrations/3D_coordinate_system.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/illustrations/ctf_z1.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/illustrations/ctf_z1.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/illustrations/flow_down.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/illustrations/flow_down.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/illustrations/flow_right.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/illustrations/flow_right.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/illustrations/modelization_sample_stage.png +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/gui/illustrations/no_rot.svg +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/resources/video.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/synctools/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/synctools/stacks/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/synctools/stacks/processingstack.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/synctools/stacks/reconstruction/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/synctools/stacks/reconstruction/cor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/synctools/stacks/reconstruction/nabu.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/cluster/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/cluster/supervisor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/conditions/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/conditions/filters.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/control/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/control/datadiscovery.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/control/datawatcher.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/control/emailnotifier.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/control/nxtomoconcatenate.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/control/nxtomomill.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/control/scanlist.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/control/scanselector.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/control/scanvalidator.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/control/singletomoobj.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/control/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/control/tests/test_concatenate_nxtomos.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/control/tests/test_conditions.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/control/tests/test_email.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/control/tests/test_h52nx_process.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/control/tomoobjseries.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/control/volumeselector.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/dataportal/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/dataportal/publish.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/edit/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/edit/darkflatpatch.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/edit/imagekey_upgrader.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/edit/imagekeyeditor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/edit/nxtomoeditor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/edit/tests/test_darkflatpatch.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/edit/tests/test_imagekey_editor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/reconstruction/config.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/reconstruction/copydarkflat.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/reconstruction/cor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/reconstruction/estimate_motion.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/reconstruction/multipag.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/reconstruction/nabuvolume.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/reconstruction/reducedarkflat.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/reconstruction/slices.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/reconstruction/tests/test_castvolume.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/reconstruction/tests/test_dark_and_flat.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/reconstruction/tests/test_darkflat_copy.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/reconstruction/tests/test_multipag.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/reconstruction/tests/test_nabu.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/reconstruction/tests/test_nabu_estimate_motion.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/reconstruction/tests/test_nabu_multicor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/script/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/script/python.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/script/tests/test_script.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/stitching/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/stitching/metadataholder.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/stitching/nabustitcher.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/stitching/tests/test_metadataholder.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/task.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/visualization/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/visualization/dataviewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/visualization/diffviewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/visualization/imagestackviewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/visualization/radiostack.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/visualization/samplemoved.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/visualization/sinogramviewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/visualization/slicestack.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/visualization/tests/test_diff_viewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/visualization/tests/test_image_stack_viewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/visualization/tests/test_radio_stack.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/visualization/tests/test_sample_moved.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/visualization/tests/test_sinogram_viewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/visualization/tests/test_slice_stack.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/visualization/volume_viewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tasks/visualization/volumeviewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/__init__.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/app/test_stitching.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/conftest.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/datasets.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/cluster/tests/test_slurm_clusterow.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_advancement.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_data_validator.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_datadiscovery.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_dataselector.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_nxtomomill.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_singletomoobj.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_tomoobj_series.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_volume_selector.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/debugtools/tests/test_dataset_generator.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/debugtools/tests/test_object_inspector.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_dark_flat_patch.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_image_key_editor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_image_key_upgrader.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_nxtomo_editor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/other/tests/test_pythonscript.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_copy_reduced_dark_flat_widget.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_cor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_multicor.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_multipag.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_nabu_slices.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_nabu_volume.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/stitching/tests/test_zstitching.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/test_conditions.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/test_darkflat.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_dataviewerow.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_diffviewerow.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_nxtomo_metadata_viewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_radio_stackow.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_sample_movedow.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_sinogram_viewerow.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_slice_stackow.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_volume_viewerow.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/tasks/visualization/test_volume_viewer.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/test_ewoks/test_conversion.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/test_ewoks/test_single_node_execution.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/test_ewoks/test_workflows.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/test_scripts.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/tests/utils.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/third_part/FrameBrowser.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/third_part/OverlayMixIn.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/third_part/qitem_model_resetter.py +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer.egg-info/dependency_links.txt +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer.egg-info/entry_points.txt +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer.egg-info/pkg_info +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer.egg-info/sources.txt +0 -0
- {tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer.egg-info/top_level.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tomwer
|
|
3
|
-
Version: 2.0.0.
|
|
3
|
+
Version: 2.0.0.dev7
|
|
4
4
|
Summary: Tomography workflow tools
|
|
5
|
-
Author-email: Henri Payno <henri.payno@esrf.fr>, Pierre Paleo <pierre.paleo@esrf.fr>, Pierre-Olivier Autran <pierre-olivier.autran@esrf.fr>, Jérôme Lesaint <jerome.lesaint@esrf.fr
|
|
5
|
+
Author-email: Henri Payno <henri.payno@esrf.fr>, Pierre Paleo <pierre.paleo@esrf.fr>, Pierre-Olivier Autran <pierre-olivier.autran@esrf.fr>, Jérôme Lesaint <jerome.lesaint@esrf.fr>
|
|
6
6
|
License: MIT
|
|
7
7
|
Project-URL: Homepage, https://gitlab.esrf.fr/tomotools/tomwer
|
|
8
8
|
Project-URL: Documentation, https://tomotools.gitlab-pages.esrf.fr/tomwer/
|
|
@@ -43,7 +43,7 @@ Provides-Extra: full-base
|
|
|
43
43
|
Requires-Dist: orange-canvas-core; extra == "full-base"
|
|
44
44
|
Requires-Dist: orange-widget-base; extra == "full-base"
|
|
45
45
|
Requires-Dist: ewokscore; extra == "full-base"
|
|
46
|
-
Requires-Dist: ewoksorange
|
|
46
|
+
Requires-Dist: ewoksorange<5.0,>=3.3.0; extra == "full-base"
|
|
47
47
|
Requires-Dist: fabio; extra == "full-base"
|
|
48
48
|
Requires-Dist: h5py>=3; extra == "full-base"
|
|
49
49
|
Requires-Dist: lxml; extra == "full-base"
|
|
@@ -6,7 +6,6 @@ authors = [
|
|
|
6
6
|
{ name = "Pierre Paleo", email = "pierre.paleo@esrf.fr" },
|
|
7
7
|
{ name = "Pierre-Olivier Autran", email = "pierre-olivier.autran@esrf.fr" },
|
|
8
8
|
{ name = "Jérôme Lesaint", email = "jerome.lesaint@esrf.fr" },
|
|
9
|
-
{ name = "Alessandro Mirone", email = "mirone@esrf.fr" }
|
|
10
9
|
]
|
|
11
10
|
description = "Tomography workflow tools"
|
|
12
11
|
readme = { file = "README.rst", content-type = "text/x-rst" }
|
|
@@ -49,7 +48,7 @@ full_base = [
|
|
|
49
48
|
"orange-canvas-core",
|
|
50
49
|
"orange-widget-base",
|
|
51
50
|
"ewokscore",
|
|
52
|
-
"ewoksorange>=3.3.0",
|
|
51
|
+
"ewoksorange>=3.3.0,<5.0",
|
|
53
52
|
"fabio",
|
|
54
53
|
"h5py>=3",
|
|
55
54
|
"lxml",
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
|
+
import logging
|
|
4
|
+
|
|
3
5
|
from orangewidget import gui
|
|
6
|
+
from orangewidget.settings import Setting
|
|
4
7
|
from orangewidget.widget import Input
|
|
5
8
|
|
|
6
9
|
from tomwer.models.cluster.slurm_cluster import SlurmClusterConfiguration
|
|
@@ -17,6 +20,8 @@ from orangecontrib.tomwer.orange.task_widgets.TomwerWidgetWithStack import (
|
|
|
17
20
|
from orangecontrib.tomwer.orange.ewoks_compatibility import unpack_variable
|
|
18
21
|
from processview.core.manager import DatasetState, ProcessManager
|
|
19
22
|
|
|
23
|
+
_logger = logging.getLogger(__name__)
|
|
24
|
+
|
|
20
25
|
|
|
21
26
|
class CastNabuVolumeOW(
|
|
22
27
|
TomwerWidgetWithStack,
|
|
@@ -69,6 +74,8 @@ class CastNabuVolumeOW(
|
|
|
69
74
|
)
|
|
70
75
|
# Hide input defined by the GUI
|
|
71
76
|
|
|
77
|
+
_interactive_mode = Setting(False)
|
|
78
|
+
|
|
72
79
|
class Inputs:
|
|
73
80
|
data = Input(
|
|
74
81
|
name="data",
|
|
@@ -103,16 +110,27 @@ class CastNabuVolumeOW(
|
|
|
103
110
|
self._layout.addWidget(self._window)
|
|
104
111
|
|
|
105
112
|
# load default configuration saved
|
|
106
|
-
self.setConfiguration(
|
|
107
|
-
filter_missing_data(
|
|
108
|
-
self.get_default_input_values("cast_volume_params") or {}
|
|
109
|
-
)
|
|
110
|
-
)
|
|
113
|
+
self.setConfiguration(filter_missing_data(self.get_default_input_values()))
|
|
111
114
|
# Store process id to provide task / dataset state
|
|
112
115
|
self.set_dynamic_input("process_id", self.process_id)
|
|
113
116
|
|
|
117
|
+
self._pending_data = None
|
|
118
|
+
"""Store a scan arriving"""
|
|
119
|
+
self._pending_volume = None
|
|
120
|
+
"""Store a volume arriving"""
|
|
121
|
+
|
|
122
|
+
self._last_data = None
|
|
123
|
+
"""dataset currently processed"""
|
|
124
|
+
self._last_volume = None
|
|
125
|
+
"""volume currently processed"""
|
|
126
|
+
|
|
127
|
+
# apply saved interactive mode
|
|
128
|
+
self._window.setInteractive(self._interactive_mode)
|
|
129
|
+
|
|
114
130
|
# connect signal / slot
|
|
115
131
|
self._window.sigConfigChanged.connect(self._updateConfig)
|
|
132
|
+
self._window.sigInteractiveModeChanged.connect(self._onInteractiveModeChanged)
|
|
133
|
+
self._window.sigProcessRequested.connect(self._onProcessRequested)
|
|
116
134
|
|
|
117
135
|
@Inputs.data
|
|
118
136
|
def process_data(self, data: TomwerScanBase | None, signal_id=None):
|
|
@@ -142,6 +160,8 @@ class CastNabuVolumeOW(
|
|
|
142
160
|
def _process(self, data: TomwerScanBase | None, volume: TomwerVolumeBase | None):
|
|
143
161
|
if data is None and volume is None:
|
|
144
162
|
return
|
|
163
|
+
self._last_data = data
|
|
164
|
+
self._last_volume = volume
|
|
145
165
|
# check types
|
|
146
166
|
if data is not None and not isinstance(data, TomwerScanBase):
|
|
147
167
|
raise TypeError(
|
|
@@ -153,15 +173,28 @@ class CastNabuVolumeOW(
|
|
|
153
173
|
)
|
|
154
174
|
if data is None and volume is None:
|
|
155
175
|
raise ValueError("The scan of the volume should be given. Not both")
|
|
156
|
-
self.set_dynamic_input("volume", volume)
|
|
157
|
-
self.set_dynamic_input("data", data)
|
|
158
176
|
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
177
|
+
if self._window.isInteractive():
|
|
178
|
+
# handling when in interactive mode
|
|
179
|
+
self._pending_data = data
|
|
180
|
+
self._pending_volume = volume
|
|
181
|
+
if volume is not None:
|
|
182
|
+
self._window.setVolume(volume)
|
|
183
|
+
ProcessManager().notify_dataset_state(
|
|
184
|
+
dataset=data or volume,
|
|
185
|
+
process=self,
|
|
186
|
+
state=DatasetState.PENDING,
|
|
187
|
+
)
|
|
188
|
+
else:
|
|
189
|
+
# handling when in automatic mode
|
|
190
|
+
self.set_dynamic_input("volume", volume)
|
|
191
|
+
self.set_dynamic_input("data", data)
|
|
192
|
+
ProcessManager().notify_dataset_state(
|
|
193
|
+
dataset=data or volume,
|
|
194
|
+
process=self,
|
|
195
|
+
state=DatasetState.PENDING,
|
|
196
|
+
)
|
|
197
|
+
self.execute_ewoks_task()
|
|
165
198
|
|
|
166
199
|
def reprocess(self, dataset):
|
|
167
200
|
if isinstance(dataset, TomwerScanBase):
|
|
@@ -171,6 +204,27 @@ class CastNabuVolumeOW(
|
|
|
171
204
|
else:
|
|
172
205
|
raise TypeError("dataset is expected to be an instance of ''")
|
|
173
206
|
|
|
207
|
+
def _onInteractiveModeChanged(self, interactive: bool) -> None:
|
|
208
|
+
self._interactive_mode = interactive
|
|
209
|
+
if interactive and self._last_volume is not None:
|
|
210
|
+
# switching from auto → interactive: load histogram and preview for
|
|
211
|
+
# the volume that was last processed in auto mode
|
|
212
|
+
self._pending_data = self._last_data
|
|
213
|
+
self._pending_volume = self._last_volume
|
|
214
|
+
self._window.setVolume(self._last_volume)
|
|
215
|
+
|
|
216
|
+
def _onProcessRequested(self) -> None:
|
|
217
|
+
if self._pending_data is None and self._pending_volume is None:
|
|
218
|
+
return
|
|
219
|
+
self.set_dynamic_input("volume", self._pending_volume)
|
|
220
|
+
self.set_dynamic_input("data", self._pending_data)
|
|
221
|
+
ProcessManager().notify_dataset_state(
|
|
222
|
+
dataset=self._pending_data or self._pending_volume,
|
|
223
|
+
process=self,
|
|
224
|
+
state=DatasetState.PENDING,
|
|
225
|
+
)
|
|
226
|
+
self.execute_ewoks_task()
|
|
227
|
+
|
|
174
228
|
def getConfiguration(self) -> dict:
|
|
175
229
|
return self._window.getConfiguration()
|
|
176
230
|
|
|
@@ -180,9 +234,14 @@ class CastNabuVolumeOW(
|
|
|
180
234
|
|
|
181
235
|
def _updateConfig(self):
|
|
182
236
|
configuration = self.getConfiguration()
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
237
|
+
valid_keys = CastVolumeTask.input_model().model_fields.keys()
|
|
238
|
+
for key, value in configuration.items():
|
|
239
|
+
if key not in valid_keys:
|
|
240
|
+
_logger.warning(
|
|
241
|
+
"cast-volume: ignoring unknown configuration key %r", key
|
|
242
|
+
)
|
|
243
|
+
continue
|
|
244
|
+
self.set_default_input(key, value)
|
|
186
245
|
|
|
187
246
|
def handleNewSignals(self) -> None:
|
|
188
247
|
"""
|
|
@@ -238,7 +238,7 @@ class NabuSlicesOW(SuperviseOW, BaseNabuRecOW):
|
|
|
238
238
|
def getConfiguration(self, allow_no_nabu_config_defined: bool = False):
|
|
239
239
|
"""
|
|
240
240
|
:param allow_no_nabu_config_defined: when we save the settings we don't want to raise an error when saving the configuration.
|
|
241
|
-
|
|
241
|
+
But when getting it for reconstructing we want to
|
|
242
242
|
"""
|
|
243
243
|
slices_config = self._nabuWidget.getConfiguration()
|
|
244
244
|
nabu_param_and_cluster_config = super().getConfiguration()
|
|
@@ -258,7 +258,7 @@ class NabuVolumeOW(SuperviseOW, BaseNabuRecOW):
|
|
|
258
258
|
def getConfiguration(self, allow_no_nabu_config_defined: bool = False):
|
|
259
259
|
"""
|
|
260
260
|
:param allow_no_nabu_config_defined: when we save the settings we don't want to raise an error when saving the configuration.
|
|
261
|
-
|
|
261
|
+
But when getting it for reconstructing we want to
|
|
262
262
|
"""
|
|
263
263
|
nabu_params_and_slurm_config = super().getConfiguration()
|
|
264
264
|
assert ParametersKeys.SLURM_CLUSTER_KEY in nabu_params_and_slurm_config
|
|
@@ -89,6 +89,11 @@ def main():
|
|
|
89
89
|
description="Compute center of rotation of a scan or "
|
|
90
90
|
"between two projections",
|
|
91
91
|
)
|
|
92
|
+
launcher.add_command(
|
|
93
|
+
"cast-volume",
|
|
94
|
+
module_name="tomwer.app.cast_volume",
|
|
95
|
+
description="Cast a nabu volume to a different data type / file format",
|
|
96
|
+
)
|
|
92
97
|
launcher.add_command(
|
|
93
98
|
"canvas", module_name="tomwer.app.canvas", description="open the orange-canvas"
|
|
94
99
|
)
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
"""Application to cast a nabu volume to a different data type / file format"""
|
|
4
|
+
|
|
5
|
+
import argparse
|
|
6
|
+
import logging
|
|
7
|
+
import signal
|
|
8
|
+
import sys
|
|
9
|
+
|
|
10
|
+
import silx
|
|
11
|
+
from silx.gui import qt
|
|
12
|
+
|
|
13
|
+
from tomwer.core.utils.resource import increase_max_number_file
|
|
14
|
+
from tomwer.core.volume.volumefactory import VolumeFactory
|
|
15
|
+
from tomwer.gui import icons
|
|
16
|
+
from tomwer.gui.reconstruction.nabu.castvolume import CastVolumeWidget
|
|
17
|
+
from tomwer.gui.utils.splashscreen import getMainSplashScreen
|
|
18
|
+
from tomwer.tasks.reconstruction.castvolume import CastVolumeTask
|
|
19
|
+
from tomoscan.esrf.volume.utils import guess_volumes
|
|
20
|
+
|
|
21
|
+
logging.basicConfig(level=logging.WARNING)
|
|
22
|
+
_logger = logging.getLogger(__name__)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class _CastVolumeMainWindow(qt.QMainWindow):
|
|
26
|
+
"""Standalone window wrapping CastVolumeWidget.
|
|
27
|
+
|
|
28
|
+
The widget is always put in interactive mode so the histogram and slice
|
|
29
|
+
preview are visible from the start. A toolbar provides Cast / Quit buttons.
|
|
30
|
+
"""
|
|
31
|
+
|
|
32
|
+
def __init__(self, volume, parent=None):
|
|
33
|
+
super().__init__(parent=parent)
|
|
34
|
+
self._volume = volume
|
|
35
|
+
|
|
36
|
+
central = qt.QWidget(self)
|
|
37
|
+
self.setCentralWidget(central)
|
|
38
|
+
central.setLayout(qt.QVBoxLayout())
|
|
39
|
+
central.layout().setContentsMargins(4, 4, 4, 4)
|
|
40
|
+
|
|
41
|
+
self._castWidget = CastVolumeWidget(parent=central)
|
|
42
|
+
central.layout().addWidget(self._castWidget)
|
|
43
|
+
|
|
44
|
+
# button row
|
|
45
|
+
buttonBar = qt.QWidget(central)
|
|
46
|
+
buttonBar.setLayout(qt.QHBoxLayout())
|
|
47
|
+
buttonBar.layout().setContentsMargins(0, 4, 0, 0)
|
|
48
|
+
buttonBar.layout().addStretch()
|
|
49
|
+
self._castBut = qt.QPushButton("Cast", buttonBar)
|
|
50
|
+
self._castBut.setToolTip("Run the cast operation with the current settings")
|
|
51
|
+
buttonBar.layout().addWidget(self._castBut)
|
|
52
|
+
quitBut = qt.QPushButton("Quit", buttonBar)
|
|
53
|
+
quitBut.clicked.connect(qt.QApplication.quit)
|
|
54
|
+
buttonBar.layout().addWidget(quitBut)
|
|
55
|
+
central.layout().addWidget(buttonBar)
|
|
56
|
+
|
|
57
|
+
self._statusBar = self.statusBar()
|
|
58
|
+
|
|
59
|
+
# always interactive in the standalone app; hide the toggle controls
|
|
60
|
+
self._castWidget.setInteractive(True)
|
|
61
|
+
self._castWidget.setInteractiveControlsVisible(False)
|
|
62
|
+
|
|
63
|
+
# load histogram and preview; setVolume starts the background loader
|
|
64
|
+
self._castWidget.setVolume(volume)
|
|
65
|
+
|
|
66
|
+
self._castBut.clicked.connect(self._runCast)
|
|
67
|
+
self.setWindowIcon(icons.getQIcon("tomwer"))
|
|
68
|
+
|
|
69
|
+
def _runCast(self):
|
|
70
|
+
cfg = self._castWidget.getConfiguration()
|
|
71
|
+
self._castBut.setEnabled(False)
|
|
72
|
+
self._statusBar.showMessage("Casting volume – please wait…")
|
|
73
|
+
qt.QApplication.processEvents()
|
|
74
|
+
try:
|
|
75
|
+
task = CastVolumeTask(
|
|
76
|
+
inputs={
|
|
77
|
+
"volume": self._volume,
|
|
78
|
+
**cfg,
|
|
79
|
+
}
|
|
80
|
+
)
|
|
81
|
+
task.execute()
|
|
82
|
+
except Exception as exc:
|
|
83
|
+
_logger.error("Cast failed: %s", exc, exc_info=True)
|
|
84
|
+
self._statusBar.showMessage(f"Cast failed: {exc}", 8000)
|
|
85
|
+
else:
|
|
86
|
+
self._statusBar.showMessage("Cast completed successfully.", 6000)
|
|
87
|
+
finally:
|
|
88
|
+
self._castBut.setEnabled(True)
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
def main(argv):
|
|
92
|
+
parser = argparse.ArgumentParser(description=__doc__)
|
|
93
|
+
parser.add_argument(
|
|
94
|
+
"volume",
|
|
95
|
+
help="Volume identifier or path (HDF5, TIFF folder, EDF folder, …).",
|
|
96
|
+
)
|
|
97
|
+
parser.add_argument(
|
|
98
|
+
"--debug",
|
|
99
|
+
action="store_true",
|
|
100
|
+
default=False,
|
|
101
|
+
help="Set logging system in debug mode",
|
|
102
|
+
)
|
|
103
|
+
parser.add_argument(
|
|
104
|
+
"--use-opengl-plot",
|
|
105
|
+
"--opengl-backend",
|
|
106
|
+
action="store_true",
|
|
107
|
+
default=False,
|
|
108
|
+
help="Use OpenGL for plots (instead of matplotlib)",
|
|
109
|
+
)
|
|
110
|
+
options = parser.parse_args(argv[1:])
|
|
111
|
+
|
|
112
|
+
if options.debug:
|
|
113
|
+
logging.root.setLevel(logging.DEBUG)
|
|
114
|
+
|
|
115
|
+
if options.use_opengl_plot:
|
|
116
|
+
silx.config.DEFAULT_PLOT_BACKEND = "gl"
|
|
117
|
+
else:
|
|
118
|
+
silx.config.DEFAULT_PLOT_BACKEND = "matplotlib"
|
|
119
|
+
|
|
120
|
+
increase_max_number_file()
|
|
121
|
+
|
|
122
|
+
global app # QApplication must be global to avoid seg fault on quit
|
|
123
|
+
app = qt.QApplication.instance() or qt.QApplication(["tomwer"])
|
|
124
|
+
splash = getMainSplashScreen()
|
|
125
|
+
qt.QApplication.setOverrideCursor(qt.Qt.WaitCursor)
|
|
126
|
+
qt.QApplication.processEvents()
|
|
127
|
+
|
|
128
|
+
qt.QLocale.setDefault(qt.QLocale(qt.QLocale.English))
|
|
129
|
+
qt.QLocale.setDefault(qt.QLocale.c())
|
|
130
|
+
signal.signal(signal.SIGINT, sigintHandler)
|
|
131
|
+
sys.excepthook = qt.exceptionHandler
|
|
132
|
+
|
|
133
|
+
timer = qt.QTimer()
|
|
134
|
+
timer.start(500)
|
|
135
|
+
timer.timeout.connect(lambda: None)
|
|
136
|
+
|
|
137
|
+
try:
|
|
138
|
+
volumes = VolumeFactory.create_tomo_object_from_identifier(options.volume)
|
|
139
|
+
except Exception:
|
|
140
|
+
volumes = tuple()
|
|
141
|
+
|
|
142
|
+
if not volumes:
|
|
143
|
+
volumes = guess_volumes(options.volume)
|
|
144
|
+
|
|
145
|
+
if not volumes:
|
|
146
|
+
parser.error(f"No volume found at '{options.volume}'")
|
|
147
|
+
|
|
148
|
+
# cast back to tomwer volume in case we get only a tomoscan volume.
|
|
149
|
+
volume = VolumeFactory.create_tomo_object_from_identifier(
|
|
150
|
+
volumes[0].get_identifier()
|
|
151
|
+
)
|
|
152
|
+
|
|
153
|
+
window = _CastVolumeMainWindow(volume=volume, parent=None)
|
|
154
|
+
window.setWindowTitle("tomwer: cast-volume")
|
|
155
|
+
splash.finish(window)
|
|
156
|
+
window.show()
|
|
157
|
+
qt.QApplication.restoreOverrideCursor()
|
|
158
|
+
|
|
159
|
+
app.aboutToQuit.connect(window.close)
|
|
160
|
+
sys.exit(app.exec())
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
def getinputinfo():
|
|
164
|
+
return "tomwer cast-volume [volume_path]"
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
def sigintHandler(*args):
|
|
168
|
+
"""Handler for the SIGINT signal."""
|
|
169
|
+
qt.QApplication.quit()
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
if __name__ == "__main__":
|
|
173
|
+
main(sys.argv)
|
{tomwer-2.0.0.dev6 → tomwer-2.0.0.dev7}/src/tomwer/core/control/datawatcher/datawatcherprocess.py
RENAMED
|
@@ -28,8 +28,8 @@ class _DataWatcherProcess:
|
|
|
28
28
|
DataWatcherProcess is the process managing the observation of acquisition.
|
|
29
29
|
Since we want to loop infinitly on a root folder we have to ignore the
|
|
30
30
|
folder we previously detected. Otherwise if those folders are not removed
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
we will loop infinitly. That is why we now have the ignoredFolders
|
|
32
|
+
parameter.
|
|
33
33
|
|
|
34
34
|
:param dataDir: Root directory containing data
|
|
35
35
|
:param waitXML: if True then we will be waiting for the XML of
|
|
@@ -10,6 +10,12 @@ from tomwer.core.reconstruction.common.utils import (
|
|
|
10
10
|
from tomwer.core.scan.edfscan import EDFTomoScan
|
|
11
11
|
from tomwer.core.scan.nxtomoscan import NXtomoScan
|
|
12
12
|
|
|
13
|
+
from tomwer.core.volume.edfvolume import EDFVolume
|
|
14
|
+
from tomwer.core.volume.hdf5volume import HDF5Volume
|
|
15
|
+
from tomwer.core.reconstruction.common.utils import (
|
|
16
|
+
get_default_output_volume_for_tiff_3d,
|
|
17
|
+
)
|
|
18
|
+
|
|
13
19
|
_scans = (
|
|
14
20
|
NXtomoScan(
|
|
15
21
|
scan="/my_scan_file.nx",
|
|
@@ -21,7 +27,7 @@ _scans = (
|
|
|
21
27
|
|
|
22
28
|
@pytest.mark.parametrize("scan", _scans)
|
|
23
29
|
@pytest.mark.parametrize("axis", ("YZ", "XZ", "XY"))
|
|
24
|
-
def test_get_recons_volume_identifier(scan, axis):
|
|
30
|
+
def test_get_recons_volume_identifier(scan, axis, tmp_path):
|
|
25
31
|
"""
|
|
26
32
|
test get_recons_volume_identifier behavior
|
|
27
33
|
"""
|
|
@@ -31,7 +37,7 @@ def test_get_recons_volume_identifier(scan, axis):
|
|
|
31
37
|
with pytest.raises(ValueError):
|
|
32
38
|
get_recons_volume_identifier(
|
|
33
39
|
file_prefix="volume_rec",
|
|
34
|
-
location=
|
|
40
|
+
location=tmp_path,
|
|
35
41
|
file_format="toto",
|
|
36
42
|
slice_index=1080,
|
|
37
43
|
scan=scan,
|
|
@@ -41,7 +47,7 @@ def test_get_recons_volume_identifier(scan, axis):
|
|
|
41
47
|
# check hdf5 reconstructions
|
|
42
48
|
id_rec_vols = get_recons_volume_identifier(
|
|
43
49
|
file_prefix="volume_rec",
|
|
44
|
-
location=
|
|
50
|
+
location=tmp_path,
|
|
45
51
|
file_format="hdf5",
|
|
46
52
|
slice_index="1080",
|
|
47
53
|
scan=scan,
|
|
@@ -50,36 +56,32 @@ def test_get_recons_volume_identifier(scan, axis):
|
|
|
50
56
|
assert len(id_rec_vols) == 1
|
|
51
57
|
assert (
|
|
52
58
|
id_rec_vols[0].to_str()
|
|
53
|
-
== f"hdf5:volume
|
|
59
|
+
== f"hdf5:volume:{tmp_path}/volume_rec_plane_{axis}_001080.hdf5?path={entry}/reconstruction"
|
|
54
60
|
)
|
|
55
61
|
|
|
56
62
|
# check edf and jp2k slice reconstructions (are expected to have the same behavior)
|
|
57
63
|
id_rec_vols = get_recons_volume_identifier(
|
|
58
64
|
file_prefix="volume_rec",
|
|
59
|
-
location=
|
|
65
|
+
location=tmp_path,
|
|
60
66
|
file_format="edf",
|
|
61
67
|
slice_index="1080",
|
|
62
68
|
scan=scan,
|
|
63
69
|
axis=axis,
|
|
64
70
|
)
|
|
65
71
|
assert len(id_rec_vols) == 1
|
|
66
|
-
assert (
|
|
67
|
-
id_rec_vols[0].to_str() == "edf:volume:/this/is/a/test?file_prefix=volume_rec"
|
|
68
|
-
)
|
|
72
|
+
assert id_rec_vols[0].to_str() == f"edf:volume:{tmp_path}?file_prefix=volume_rec"
|
|
69
73
|
|
|
70
74
|
# check tiff slice reconstructions
|
|
71
75
|
id_rec_vols = get_recons_volume_identifier(
|
|
72
|
-
file_prefix="
|
|
73
|
-
location=
|
|
76
|
+
file_prefix="volume_rec2",
|
|
77
|
+
location=tmp_path,
|
|
74
78
|
file_format="tiff",
|
|
75
79
|
slice_index="1080",
|
|
76
80
|
scan=scan,
|
|
77
81
|
axis=axis,
|
|
78
82
|
)
|
|
79
83
|
assert len(id_rec_vols) == 1
|
|
80
|
-
assert (
|
|
81
|
-
id_rec_vols[0].to_str() == "tiff:volume:/this/is/a/test?file_prefix=volume_rec"
|
|
82
|
-
)
|
|
84
|
+
assert id_rec_vols[0].to_str() == f"tiff:volume:{tmp_path}?file_prefix=volume_rec2"
|
|
83
85
|
|
|
84
86
|
# check jp2k
|
|
85
87
|
if not has_minimal_openjpeg:
|
|
@@ -87,7 +89,7 @@ def test_get_recons_volume_identifier(scan, axis):
|
|
|
87
89
|
|
|
88
90
|
id_rec_vols = get_recons_volume_identifier(
|
|
89
91
|
file_prefix="volume_recslice",
|
|
90
|
-
location=
|
|
92
|
+
location=tmp_path,
|
|
91
93
|
file_format="jp2k",
|
|
92
94
|
slice_index="1080",
|
|
93
95
|
scan=scan,
|
|
@@ -95,8 +97,7 @@ def test_get_recons_volume_identifier(scan, axis):
|
|
|
95
97
|
)
|
|
96
98
|
assert len(id_rec_vols) == 1
|
|
97
99
|
assert (
|
|
98
|
-
id_rec_vols[0].to_str()
|
|
99
|
-
== "jp2k:volume:/this/is/a/test?file_prefix=volume_recslice"
|
|
100
|
+
id_rec_vols[0].to_str() == f"jp2k:volume:{tmp_path}?file_prefix=volume_recslice"
|
|
100
101
|
)
|
|
101
102
|
|
|
102
103
|
|
|
@@ -325,3 +326,30 @@ def test_nabu_std_err_has_error():
|
|
|
325
326
|
)
|
|
326
327
|
is False
|
|
327
328
|
)
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
def test_get_default_output_volume_for_tiff_3d():
|
|
332
|
+
"""test 'get_default_output_volume_for_tiff_3d' function"""
|
|
333
|
+
# test from EDF
|
|
334
|
+
input_edf_volume = EDFVolume(
|
|
335
|
+
folder="/path/to/my_folder",
|
|
336
|
+
)
|
|
337
|
+
assert (
|
|
338
|
+
get_default_output_volume_for_tiff_3d(
|
|
339
|
+
input_volume=input_edf_volume,
|
|
340
|
+
output_dir="/path/to/my_folder",
|
|
341
|
+
).data_url.file_path()
|
|
342
|
+
== "/path/to/my_folder/my_folder.tiff"
|
|
343
|
+
)
|
|
344
|
+
# test from hdf5
|
|
345
|
+
input_hdf5_volume = HDF5Volume(
|
|
346
|
+
file_path="/path/to/my_file.hdf5",
|
|
347
|
+
data_path="entry0012",
|
|
348
|
+
)
|
|
349
|
+
assert (
|
|
350
|
+
get_default_output_volume_for_tiff_3d(
|
|
351
|
+
input_volume=input_hdf5_volume,
|
|
352
|
+
output_dir="/cast_volume",
|
|
353
|
+
).data_url.file_path()
|
|
354
|
+
== "/cast_volume/my_file.tiff"
|
|
355
|
+
)
|