tomwer 1.6.22__tar.gz → 2.0.0.dev0__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.dev0/PKG-INFO +200 -0
- tomwer-2.0.0.dev0/README.rst +93 -0
- tomwer-2.0.0.dev0/pyproject.toml +198 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/__init__.py +10 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/orange/ewoks_compatibility.py +9 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/orange/managedprocess.py +79 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/orange/task_widgets/TomwerWidgetNoThread.py +8 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/orange/task_widgets/TomwerWidgetOneThreadPerRun.py +22 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/orange/task_widgets/TomwerWidgetWithStack.py +20 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/state_summary.py +50 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tests/TestAcquisition.py +197 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/EBS_tomo_listener.ows +49 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/append_raw_darks_and_flats_frames_to_NXtomos.ows +44 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/cast_volume.ows +34 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/copy_reduced_darks_and_flats_meth1.ows +49 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/default_cor_search.ows +45 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/drac_publication.ows +48 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/id16b/ID16b_full_volume.ows +29 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/id16b/ID16b_insitu.ows +287 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/id16b/ID16b_normalization.ows +218 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/multipag_example.ows +45 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/simple_slice_reconstruction.ows +44 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/simple_slice_reconstruction_on_slurm.ows +55 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/simple_volume_local_reconstruction.ows +50 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows +63 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/using_multicor_to_find_cor.ows +47 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/volume_casting_on_slurm.ows +55 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/cluster/MonitorOW.py +211 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py +78 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/BlissDataListenerOW.py +281 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py +231 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/DataSelectorOW.py +126 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/DataValidatorOW.py +159 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +244 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/FilterOW.py +98 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +89 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/NXTomomillOW.py +335 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/NXtomoConcatenate.py +200 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +111 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/TomoObjSeriesOW.py +58 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/VolumeSelector.py +118 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/_BlissDataListenerQThread.py +158 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/_datalistener.py +109 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/dataportal/PublishProcessedDataOW.py +160 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/deprecated/VolumeviewerOW.py +55 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py +153 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py +100 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py +105 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py +123 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/other/PythonScriptOW.py +851 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/BaseNabuRecOW.py +39 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +195 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/CoROW.py +464 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/ComputeReduceDarkAndFlatOW.py +80 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/CopyReducedDarkAndFlatOW.py +203 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/MultiCoROW.py +437 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/MultiPagOW.py +252 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/MultiPagWindow.py +153 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/NabuOW.py +291 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/NabuSettingsOW.py +68 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py +296 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/compute_darkflat.png +0 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/compute_darkflat.svg +53 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/copy_darkflat.png +0 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/copy_darkflat.svg +33 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_slices.png +0 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_slices.svg +149 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/stitching/StitcherOW.py +80 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +121 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +53 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/visualization/RadioStackOW.py +70 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py +87 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py +63 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/visualization/SliceStackOW.py +85 -0
- tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py +108 -0
- tomwer-2.0.0.dev0/src/tomwer/__init__.py +19 -0
- tomwer-2.0.0.dev0/src/tomwer/__main__.py +196 -0
- tomwer-2.0.0.dev0/src/tomwer/app/__init__.py +1 -0
- tomwer-2.0.0.dev0/src/tomwer/app/canvas_launcher/config.py +97 -0
- tomwer-2.0.0.dev0/src/tomwer/app/canvas_launcher/mainwindow.py +683 -0
- tomwer-2.0.0.dev0/src/tomwer/app/canvas_launcher/schemeedit.py +23 -0
- tomwer-2.0.0.dev0/src/tomwer/app/canvas_launcher/utils.py +49 -0
- tomwer-2.0.0.dev0/src/tomwer/app/canvas_launcher/widgetsscheme.py +95 -0
- tomwer-2.0.0.dev0/src/tomwer/app/cor.py +194 -0
- tomwer-2.0.0.dev0/src/tomwer/app/estimate_motion.py +112 -0
- tomwer-2.0.0.dev0/src/tomwer/app/imagekeyeditor.py +99 -0
- tomwer-2.0.0.dev0/src/tomwer/app/imagekeyupgrader.py +109 -0
- tomwer-2.0.0.dev0/src/tomwer/app/multicor.py +177 -0
- tomwer-2.0.0.dev0/src/tomwer/app/multipag.py +356 -0
- tomwer-2.0.0.dev0/src/tomwer/app/nabuapp.py +259 -0
- tomwer-2.0.0.dev0/src/tomwer/app/nxtomoeditor.py +113 -0
- tomwer-2.0.0.dev0/src/tomwer/app/patchrawdarkflat.py +129 -0
- tomwer-2.0.0.dev0/src/tomwer/app/stitching/common.py +612 -0
- tomwer-2.0.0.dev0/src/tomwer/app/volume_viewer.py +163 -0
- tomwer-2.0.0.dev0/src/tomwer/core/__init__.py +1 -0
- tomwer-2.0.0.dev0/src/tomwer/core/cluster/cluster.py +216 -0
- tomwer-2.0.0.dev0/src/tomwer/core/control/_DataListener.py +233 -0
- tomwer-2.0.0.dev0/src/tomwer/core/control/datawatcher/datawatcherobserver.py +560 -0
- tomwer-2.0.0.dev0/src/tomwer/core/control/datawatcher/datawatcherprocess.py +152 -0
- tomwer-2.0.0.dev0/src/tomwer/core/control/datawatcher/edfdwprocess.py +105 -0
- tomwer-2.0.0.dev0/src/tomwer/core/control/datawatcher/hdf5dwprocess.py +59 -0
- tomwer-2.0.0.dev0/src/tomwer/core/control/scanvalidator.py +184 -0
- tomwer-2.0.0.dev0/src/tomwer/core/drac/__init__.py +1 -0
- tomwer-2.0.0.dev0/src/tomwer/core/drac/dracbase.py +171 -0
- tomwer-2.0.0.dev0/src/tomwer/core/drac/processeddataset.py +157 -0
- tomwer-2.0.0.dev0/src/tomwer/core/drac/rawdataset.py +142 -0
- tomwer-2.0.0.dev0/src/tomwer/core/drac/tests/test_gallery.py +71 -0
- tomwer-2.0.0.dev0/src/tomwer/core/drac/tests/test_icat_processed_dataset.py +80 -0
- tomwer-2.0.0.dev0/src/tomwer/core/drac/tests/test_icat_raw_dataset.py +90 -0
- tomwer-2.0.0.dev0/src/tomwer/core/output.py +8 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/cor/anglemode.py +71 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/cor/cor_resource.py +131 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/cor/exception.py +4 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/cor/mode.py +261 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/cor/params.py +687 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/MultiBaseParams.py +162 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/__init__.py +1 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/multicor/__init__.py +3 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/multicor/multicor.py +166 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/multicor/params.py +134 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/multipag/__init__.py +3 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/multipag/multipag.py +134 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/multipag/params.py +78 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/reconstructions.py +715 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/scores/ComputedScore.py +56 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/scores/ScoreMethod.py +9 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/scores/__init__.py +1 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/scores/compute.py +144 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/scores/utils.py +52 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/NabuBaseReconstructor.py +552 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/filter.py +14 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/method.py +10 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/mode.py +31 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/nabucommon.py +134 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/nabuvolume.py +214 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/padding.py +8 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/phase.py +28 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/plane.py +20 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/ringcorrection.py +11 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/settings.py +21 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/slice/NabuSliceMode.py +39 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/slice/SingleSliceRunner.py +282 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/slice/SliceInterpreter.py +127 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/slice/slices.py +258 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/stages.py +87 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/test/test_nabu_utils.py +327 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/test/test_slice_interpreter.py +246 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/utils.py +350 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/normalization/__init__.py +1 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/normalization/params.py +137 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/output.py +58 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/params_cache.py +36 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/tests/test_anglemode.py +121 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/tests/test_axis_params.py +60 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/tests/test_cor.py +47 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/tests/test_params_cache.py +37 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/tests/test_paramsbase.py +20 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/tests/test_scores.py +26 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/tests/test_utils.py +29 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/utils/LastReceivedScansDict.py +27 -0
- tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/utils/cor.py +58 -0
- tomwer-2.0.0.dev0/src/tomwer/core/scan/blissscan.py +231 -0
- tomwer-2.0.0.dev0/src/tomwer/core/scan/edfscan.py +578 -0
- tomwer-2.0.0.dev0/src/tomwer/core/scan/nxtomoscan.py +506 -0
- tomwer-2.0.0.dev0/src/tomwer/core/scan/scanbase.py +640 -0
- tomwer-2.0.0.dev0/src/tomwer/core/scan/scanfactory.py +218 -0
- tomwer-2.0.0.dev0/src/tomwer/core/scan/tests/test_future_scan.py +38 -0
- tomwer-2.0.0.dev0/src/tomwer/core/scan/tests/test_nxtomoscan.py +143 -0
- tomwer-2.0.0.dev0/src/tomwer/core/scan/tests/test_scan.py +363 -0
- tomwer-2.0.0.dev0/src/tomwer/core/settings.py +143 -0
- tomwer-2.0.0.dev0/src/tomwer/core/tests/test_scanutils.py +20 -0
- tomwer-2.0.0.dev0/src/tomwer/core/tests/test_utils.py +272 -0
- tomwer-2.0.0.dev0/src/tomwer/core/tomwer_object.py +55 -0
- tomwer-2.0.0.dev0/src/tomwer/core/utils/_Launcher.py +187 -0
- tomwer-2.0.0.dev0/src/tomwer/core/utils/ewoks.py +10 -0
- tomwer-2.0.0.dev0/src/tomwer/core/utils/nxtomoutils.py +35 -0
- tomwer-2.0.0.dev0/src/tomwer/core/utils/scanutils.py +536 -0
- tomwer-2.0.0.dev0/src/tomwer/core/utils/spec.py +257 -0
- tomwer-2.0.0.dev0/src/tomwer/core/volume/hdf5volume.py +168 -0
- tomwer-2.0.0.dev0/src/tomwer/core/volume/volumefactory.py +157 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/_image_from_file.py +175 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/cluster/slurm.py +952 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/cluster/supervisor.py +389 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/cluster/tests/test_cluster.py +109 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/cluster/tests/test_supervisor.py +46 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/conditions/filter.py +125 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/control/data_discovery/DataDiscoveryWindow.py +73 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/control/data_discovery/_ControlWidget.py +119 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/control/data_discovery/_DataDiscoveryConfigWidget.py +56 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/control/data_discovery/_MainWidget.py +57 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/control/data_discovery/__init__.py +3 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/control/data_discovery/_observer.py +256 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/control/datalist.py +1146 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/control/datalistener.py +578 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/control/datavalidator.py +341 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/control/observations.py +226 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/control/singletomoobj.py +179 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/control/tests/test_datadiscovery.py +27 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/control/tests/test_datalistener.py +29 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/dataportal/gallery.py +132 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/debugtools/datasetgenerator.py +252 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/edit/dkrfpatch.py +442 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/edit/imagekeyeditor.py +784 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/edit/nxtomoeditor.py +843 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/edit/tests/test_dkrf_patch.py +186 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/edit/tests/test_nx_editor.py +474 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/icons.py +348 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/qlefilesystem.py +37 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/CalculationWidget.py +217 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/CoRMainWindow.py +273 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/CoROptionsWidget.py +310 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/CoRSettingsWidget.py +799 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/CoRWidget.py +534 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/ControlWidget.py +286 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/EstimatedCORWidget.py +408 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/EstimatedCorComboBox.py +130 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/InputWidget.py +347 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/ManualFramesSelection.py +169 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/QCoRParams.py +28 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/__init__.py +2 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/darkflat/darkflatcopywidget.py +160 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/darkflat/darkflatwidget.py +307 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multicor/CoRScorePlot.py +38 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multicor/MultiCoRTabWidget.py +246 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multicor/MultiCoRWindow.py +263 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multicor/NabuAutoCorDiag.py +52 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multicor/QMultiCoRParams.py +29 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multicor/__init__.py +1 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multicor/corrangeselector.py +785 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multicor/dimensionwidget.py +234 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multicor/sliceselector.py +310 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multipag/DBScorePlot.py +33 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multipag/MultiPagSelectionWidget.py +158 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multipag/MultiPagTabWidget.py +162 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multipag/MultiPagWindowBase.py +153 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multipag/QMultiPagParams.py +29 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multipag/__init__.py +1 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/castvolume.py +317 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/dialog.py +35 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/estimate_motion/estimator/method.py +10 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/estimate_motion/estimator/model.py +9 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/estimate_motion/mainwindow.py +159 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/estimate_motion/motion_plot_config.py +56 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/estimate_motion/motion_plot_utils.py +76 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/estimate_motion/motion_plots_widget.py +115 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/estimate_motion/nabu_config_widget.py +178 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/NabuSettingsWidget.py +153 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/NabuSettingsWindow.py +235 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/base.py +68 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py +346 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py +224 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/output.py +116 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/paddingmode.py +11 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +413 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +791 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +938 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/stages.py +48 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/tests/test_NabuSettingsWidget.py +37 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuflow.py +427 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/platform.py +99 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/slices/NabuSlicesWidget.py +142 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/slices/NabuSlicesWindow.py +57 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/slices/SliceGroupBox.py +109 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/slices/tests/test_NabuSlicesWidget.py +29 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/test/test_cast_volume.py +102 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/test/test_ctf.py +44 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/test/test_delta_beta_selector.py +15 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/test/test_volume.py +52 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/volume/DeltaBetaSelector.py +42 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/volume/DeltaBetaSelectorDialog.py +38 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/volume/NabuVolumeWidget.py +169 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/volume/NabuVolumeWindow.py +54 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/volume/SliceSelector.py +68 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/scores/scoreplot.py +877 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/tests/test_axis.py +203 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/tests/test_multicor.py +145 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/tests/test_multipag.py +95 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/tests/test_nabu.py +350 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/samplemoved/__init__.py +223 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/samplemoved/selectiontable.py +228 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/settings.py +13 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/stacks.py +368 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/stitching/SingleAxisStitchingWidget.py +357 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/stitching/axisorderedlist.py +457 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/stitching/config/tomoobjdetails.py +369 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/stitching/metadataholder.py +32 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/stitching/normalization.py +118 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/stitching/stitching_preview.py +273 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/stitching/z_stitching/tests/test_fine_estimation.py +20 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/stitching/z_stitching/tests/test_raw_estimation.py +191 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/stitching/z_stitching/tests/test_stitching_window.py +36 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/tests/test_cor_gui.py +43 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/tests/utils.py +17 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/utils/HDF5DatasetSelector.py +78 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/utils/RangeWidget.py +45 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/utils/_outputdir.py +62 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/utils/buttons.py +207 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/utils/flow.py +319 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/utils/gpu.py +76 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/utils/illustrations.py +102 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/utils/inputwidget.py +609 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/utils/loadingmode.py +82 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/utils/locale.py +26 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/utils/sandboxes.py +154 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/utils/tests/test_vignettes.py +69 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/utils/unitsystem.py +196 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/utils/utils.py +122 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/utils/vignettes.py +523 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/visualization/dataviewer.py +374 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/visualization/diffviewer/diffviewer.py +538 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/visualization/diffviewer/frametype.py +9 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/visualization/diffviewer/shiftwidget.py +531 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/visualization/displaymode.py +10 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/visualization/fullscreenplot.py +122 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/visualization/imagestack.py +416 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/visualization/radiomode.py +6 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/visualization/scanoverview.py +311 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/visualization/sinogramviewer.py +350 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/visualization/slicemode.py +6 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/visualization/test/test_dataviewer.py +15 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/visualization/test/test_sinogramviewer.py +76 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/visualization/test/test_stacks.py +203 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/visualization/volume_viewer/VolumeViewerWidget.py +304 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/visualization/volume_viewer/actions/_OpenGLAction.py +35 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/visualization/volume_viewer/toolbar.py +122 -0
- tomwer-2.0.0.dev0/src/tomwer/gui/visualization/volumeviewer.py +475 -0
- tomwer-2.0.0.dev0/src/tomwer/io/processlog.py +78 -0
- tomwer-2.0.0.dev0/src/tomwer/model/__init__.py +1 -0
- tomwer-2.0.0.dev0/src/tomwer/model/_common/data.py +36 -0
- tomwer-2.0.0.dev0/src/tomwer/model/_common/process.py +12 -0
- tomwer-2.0.0.dev0/src/tomwer/model/_common/tomoobj.py +45 -0
- tomwer-2.0.0.dev0/src/tomwer/model/_common/volume.py +26 -0
- tomwer-2.0.0.dev0/src/tomwer/model/cluster/future_supervisor.py +23 -0
- tomwer-2.0.0.dev0/src/tomwer/model/conditions/filters.py +26 -0
- tomwer-2.0.0.dev0/src/tomwer/model/control/datadiscovery.py +13 -0
- tomwer-2.0.0.dev0/src/tomwer/model/control/scanselector.py +13 -0
- tomwer-2.0.0.dev0/src/tomwer/model/control/singletomoobj.py +16 -0
- tomwer-2.0.0.dev0/src/tomwer/model/control/volumeselector.py +13 -0
- tomwer-2.0.0.dev0/src/tomwer/model/dataportal/publish.py +24 -0
- tomwer-2.0.0.dev0/src/tomwer/model/edit/__init__.py +1 -0
- tomwer-2.0.0.dev0/src/tomwer/model/edit/dark_flat_patch.py +13 -0
- tomwer-2.0.0.dev0/src/tomwer/model/edit/imagekey_editor.py +13 -0
- tomwer-2.0.0.dev0/src/tomwer/model/edit/imagekey_upgrader.py +13 -0
- tomwer-2.0.0.dev0/src/tomwer/model/reconstruction/cast_volume.py +145 -0
- tomwer-2.0.0.dev0/src/tomwer/model/reconstruction/compute_dark_flat.py +56 -0
- tomwer-2.0.0.dev0/src/tomwer/model/reconstruction/copy_reduced_frames.py +140 -0
- tomwer-2.0.0.dev0/src/tomwer/model/reconstruction/cor.py +58 -0
- tomwer-2.0.0.dev0/src/tomwer/model/reconstruction/estimate_motion_io.py +44 -0
- tomwer-2.0.0.dev0/src/tomwer/model/reconstruction/multicor.py +73 -0
- tomwer-2.0.0.dev0/src/tomwer/model/reconstruction/nabu_settings.py +20 -0
- tomwer-2.0.0.dev0/src/tomwer/model/reconstruction/nabu_slices.py +78 -0
- tomwer-2.0.0.dev0/src/tomwer/model/reconstruction/nabu_volume.py +62 -0
- tomwer-2.0.0.dev0/src/tomwer/model/reconstruction/reduced_frames.py +46 -0
- tomwer-2.0.0.dev0/src/tomwer/model/visualization/dataviewer.py +8 -0
- tomwer-2.0.0.dev0/src/tomwer/model/visualization/volume_viewer.py +23 -0
- tomwer-2.0.0.dev0/src/tomwer/resources/__init__.py +130 -0
- tomwer-2.0.0.dev0/src/tomwer/resources/gui/illustrations/modelization_sample_stage.png +0 -0
- tomwer-2.0.0.dev0/src/tomwer/synctools/stacks/processingstack.py +187 -0
- tomwer-2.0.0.dev0/src/tomwer/synctools/stacks/reconstruction/cor.py +128 -0
- tomwer-2.0.0.dev0/src/tomwer/synctools/stacks/reconstruction/multipag.py +172 -0
- tomwer-2.0.0.dev0/src/tomwer/synctools/stacks/reconstruction/nabu.py +185 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/__init__.py +1 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/cluster/supervisor.py +117 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/conditions/filters.py +152 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/control/datadiscovery.py +16 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/control/datalistener.py +10 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/control/datawatcher.py +388 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/control/emailnotifier.py +136 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/control/nxtomoconcatenate.py +123 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/control/nxtomomill.py +191 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/control/scanlist.py +24 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/control/scanselector.py +14 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/control/scanvalidator.py +14 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/control/singletomoobj.py +26 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/control/tests/test_concatenate_nxtomos.py +80 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/control/tests/test_conditions.py +59 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/control/tests/test_email.py +52 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/control/tests/test_h52nx_process.py +151 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/control/volumeselector.py +16 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/dataportal/__init__.py +1 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/dataportal/publish.py +167 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/edit/__init__.py +1 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/edit/darkflatpatch.py +70 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/edit/imagekey_upgrader.py +65 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/edit/imagekeyeditor.py +104 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/edit/nxtomoeditor.py +355 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/edit/tests/test_darkflatpatch.py +239 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/edit/tests/test_imagekey_editor.py +95 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/__init__.py +1 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/copydarkflat.py +126 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/cor.py +340 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/nabu/__init__.py +1 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/nabu/castvolume.py +329 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/nabu/config.py +14 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/nabu/estimate_motion.py +54 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/nabu/multicor.py +612 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/nabu/multipag.py +648 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/nabu/nabuvolume.py +214 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/nabu/slices.py +198 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/normalization.py +293 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/reducedarkflat.py +317 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/tests/test_castvolume.py +96 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/tests/test_dark_and_flat.py +321 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/tests/test_darkflat_copy.py +168 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/tests/test_multidb.py +45 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/tests/test_nabu.py +146 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/tests/test_nabu_estimate_motion.py +33 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/tests/test_nabu_multicor.py +73 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/tests/test_nabu_normalization.py +252 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/script/python.py +46 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/stitching/nabustitcher.py +182 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/stitching/tests/test_metadataholder.py +17 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/task.py +69 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/visualization/dataviewer.py +14 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/visualization/tests/test_diff_viewer.py +12 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/visualization/tests/test_image_stack_viewer.py +14 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/visualization/tests/test_radio_stack.py +12 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/visualization/tests/test_sample_moved.py +14 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/visualization/tests/test_sinogram_viewer.py +13 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/visualization/tests/test_slice_stack.py +13 -0
- tomwer-2.0.0.dev0/src/tomwer/tasks/visualization/volume_viewer.py +55 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/conftest.py +85 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/cluster/tests/test_monitor.py +49 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/cluster/tests/test_slurm_clusterow.py +40 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_data_validator.py +36 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_datadiscovery.py +124 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_dataselector.py +69 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_nxtomomill.py +100 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_singletomoobj.py +40 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_volume_selector.py +69 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_dark_flat_patch.py +50 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_nxtomo_editor.py +145 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/other/tests/test_pythonscript.py +16 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_cast_volumeow.py +54 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_copy_reduced_dark_flat_widget.py +98 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_cor.py +131 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_multicor.py +129 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_multipag.py +209 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_nabu_slices.py +89 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_nabu_volume.py +65 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/stitching/tests/test_zstitching.py +290 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/test_darkflat.py +171 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_dataviewerow.py +43 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_diffviewerow.py +23 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_nxtomo_metadata_viewer.py +12 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_radio_stackow.py +14 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_sample_movedow.py +28 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_sinogram_viewerow.py +14 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_slice_stackow.py +14 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_volume_viewerow.py +51 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/test_ewoks/test_conversion.py +98 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/test_ewoks/test_single_node_execution.py +92 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/test_ewoks/test_workflows.py +558 -0
- tomwer-2.0.0.dev0/src/tomwer/tests/test_scripts.py +143 -0
- tomwer-2.0.0.dev0/src/tomwer/version.py +134 -0
- tomwer-2.0.0.dev0/src/tomwer.egg-info/PKG-INFO +200 -0
- tomwer-2.0.0.dev0/src/tomwer.egg-info/SOURCES.txt +1021 -0
- tomwer-2.0.0.dev0/src/tomwer.egg-info/requires.txt +90 -0
- tomwer-1.6.22/MANIFEST.in +0 -0
- tomwer-1.6.22/PKG-INFO +0 -202
- tomwer-1.6.22/README.rst +0 -103
- tomwer-1.6.22/pyproject.toml +0 -189
- tomwer-1.6.22/src/orangecontrib/tomwer/__init__.py +0 -10
- tomwer-1.6.22/src/orangecontrib/tomwer/orange/managedprocess.py +0 -105
- tomwer-1.6.22/src/orangecontrib/tomwer/state_summary.py +0 -50
- tomwer-1.6.22/src/orangecontrib/tomwer/tests/TestAcquisition.py +0 -218
- tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/EBS_tomo_listener.ows +0 -39
- tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/append_raw_darks_and_flats_frames_to_NXtomos.ows +0 -44
- tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/cast_volume.ows +0 -34
- tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/copy_reduced_darks_and_flats_meth1.ows +0 -55
- tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/copy_reduced_darks_and_flats_meth2.ows +0 -48
- tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/default_cor_search.ows +0 -40
- tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/drac_publication.ows +0 -44
- tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/id16b/ID16b_full_volume.ows +0 -22
- tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/id16b/ID16b_insitu.ows +0 -302
- tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/id16b/ID16b_normalization.ows +0 -218
- tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/simple_slice_reconstruction.ows +0 -39
- tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/simple_slice_reconstruction_on_slurm.ows +0 -50
- tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/simple_volume_local_reconstruction.ows +0 -52
- tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows +0 -67
- tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/untitled.ows +0 -15
- tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/using_saaxis_to_find_cor.ows +0 -44
- tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/volume_casting_on_slurm.ows +0 -54
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py +0 -275
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py +0 -82
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/BlissDataListenerOW.py +0 -72
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py +0 -231
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/DataSelectorOW.py +0 -126
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/DataTransfertOW.py +0 -196
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/DataValidatorOW.py +0 -167
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/DataWatcherOW.py +0 -178
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +0 -250
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/EmailOW.py +0 -92
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/FilterOW.py +0 -101
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +0 -99
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/NXTomomillOW.py +0 -337
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/NXtomoConcatenate.py +0 -202
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/NotifierOW.py +0 -108
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/ReduceDarkFlatSelectorOW.py +0 -94
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +0 -142
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/TimerOW.py +0 -110
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/TomoObjSeriesOW.py +0 -58
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/VolumeSelector.py +0 -120
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/_DataListenerBaseClass.py +0 -234
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/icons/datawatcher.svg +0 -50
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/icons/folder-transfert.svg +0 -24
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/dataportal/PublishProcessedDataOW.py +0 -173
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/deprecated/DataListenerOW.py +0 -116
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/deprecated/VolumeViewerOW.py +0 -62
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/deprecated/icons/datalistener.svg +0 -30
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py +0 -157
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py +0 -106
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py +0 -109
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py +0 -127
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/other/PythonScriptOW.py +0 -843
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/AxisOW.py +0 -530
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +0 -228
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py +0 -243
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/NabuHelicalPrepareWeightsDoubleOW.py +0 -186
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/NabuOW.py +0 -272
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py +0 -458
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py +0 -478
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py +0 -386
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py +0 -262
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.png +0 -0
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/stitching/StitcherOW.py +0 -81
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/utils.py +0 -37
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +0 -121
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +0 -53
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/visualization/RadioStackOW.py +0 -70
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py +0 -89
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py +0 -65
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/visualization/SliceStackOW.py +0 -85
- tomwer-1.6.22/src/orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py +0 -104
- tomwer-1.6.22/src/tomwer/__init__.py +0 -19
- tomwer-1.6.22/src/tomwer/__main__.py +0 -264
- tomwer-1.6.22/src/tomwer/app/__init__.py +0 -1
- tomwer-1.6.22/src/tomwer/app/axis.py +0 -196
- tomwer-1.6.22/src/tomwer/app/canvas_launcher/config.py +0 -124
- tomwer-1.6.22/src/tomwer/app/canvas_launcher/mainwindow.py +0 -676
- tomwer-1.6.22/src/tomwer/app/canvas_launcher/utils.py +0 -55
- tomwer-1.6.22/src/tomwer/app/canvas_launcher/widgetsscheme.py +0 -89
- tomwer-1.6.22/src/tomwer/app/darkref.py +0 -10
- tomwer-1.6.22/src/tomwer/app/darkrefpatch.py +0 -10
- tomwer-1.6.22/src/tomwer/app/imagekeyeditor.py +0 -99
- tomwer-1.6.22/src/tomwer/app/imagekeyupgrader.py +0 -109
- tomwer-1.6.22/src/tomwer/app/intensitynormalization.py +0 -195
- tomwer-1.6.22/src/tomwer/app/multicor.py +0 -280
- tomwer-1.6.22/src/tomwer/app/multipag.py +0 -357
- tomwer-1.6.22/src/tomwer/app/nabuapp.py +0 -248
- tomwer-1.6.22/src/tomwer/app/nxtomoeditor.py +0 -110
- tomwer-1.6.22/src/tomwer/app/patchrawdarkflat.py +0 -129
- tomwer-1.6.22/src/tomwer/app/reducedarkflat.py +0 -206
- tomwer-1.6.22/src/tomwer/app/rsync.py +0 -120
- tomwer-1.6.22/src/tomwer/app/stitching/common.py +0 -653
- tomwer-1.6.22/src/tomwer/app/stopdatalistener.py +0 -40
- tomwer-1.6.22/src/tomwer/app/volume_viewer.py +0 -163
- tomwer-1.6.22/src/tomwer/core/__init__.py +0 -1
- tomwer-1.6.22/src/tomwer/core/cluster/cluster.py +0 -157
- tomwer-1.6.22/src/tomwer/core/log/__init__.py +0 -1
- tomwer-1.6.22/src/tomwer/core/log/processlog.py +0 -78
- tomwer-1.6.22/src/tomwer/core/process/cluster/supervisor.py +0 -67
- tomwer-1.6.22/src/tomwer/core/process/conditions/filters.py +0 -215
- tomwer-1.6.22/src/tomwer/core/process/control/datadiscovery.py +0 -11
- tomwer-1.6.22/src/tomwer/core/process/control/datalistener/__init__.py +0 -1
- tomwer-1.6.22/src/tomwer/core/process/control/datalistener/datalistener.py +0 -293
- tomwer-1.6.22/src/tomwer/core/process/control/datalistener/rpcserver.py +0 -224
- tomwer-1.6.22/src/tomwer/core/process/control/datawatcher/__init__.py +0 -1
- tomwer-1.6.22/src/tomwer/core/process/control/datawatcher/datawatcher.py +0 -432
- tomwer-1.6.22/src/tomwer/core/process/control/datawatcher/datawatcherobserver.py +0 -648
- tomwer-1.6.22/src/tomwer/core/process/control/datawatcher/datawatcherprocess.py +0 -229
- tomwer-1.6.22/src/tomwer/core/process/control/datawatcher/edfdwprocess.py +0 -174
- tomwer-1.6.22/src/tomwer/core/process/control/datawatcher/hdf5dwprocess.py +0 -59
- tomwer-1.6.22/src/tomwer/core/process/control/emailnotifier.py +0 -136
- tomwer-1.6.22/src/tomwer/core/process/control/nxtomoconcatenate.py +0 -129
- tomwer-1.6.22/src/tomwer/core/process/control/nxtomomill.py +0 -199
- tomwer-1.6.22/src/tomwer/core/process/control/scanlist.py +0 -24
- tomwer-1.6.22/src/tomwer/core/process/control/scanselector.py +0 -12
- tomwer-1.6.22/src/tomwer/core/process/control/scantransfer.py +0 -641
- tomwer-1.6.22/src/tomwer/core/process/control/scanvalidator.py +0 -263
- tomwer-1.6.22/src/tomwer/core/process/control/singletomoobj.py +0 -14
- tomwer-1.6.22/src/tomwer/core/process/control/tests/test_concatenate_nxtomos.py +0 -81
- tomwer-1.6.22/src/tomwer/core/process/control/tests/test_email.py +0 -52
- tomwer-1.6.22/src/tomwer/core/process/control/tests/test_h52nx_process.py +0 -146
- tomwer-1.6.22/src/tomwer/core/process/control/timer.py +0 -79
- tomwer-1.6.22/src/tomwer/core/process/control/volumeselector.py +0 -14
- tomwer-1.6.22/src/tomwer/core/process/drac/dracbase.py +0 -171
- tomwer-1.6.22/src/tomwer/core/process/drac/processeddataset.py +0 -160
- tomwer-1.6.22/src/tomwer/core/process/drac/publish.py +0 -118
- tomwer-1.6.22/src/tomwer/core/process/drac/rawdataset.py +0 -142
- tomwer-1.6.22/src/tomwer/core/process/drac/tests/test_gallery.py +0 -71
- tomwer-1.6.22/src/tomwer/core/process/drac/tests/test_icat_processed_dataset.py +0 -80
- tomwer-1.6.22/src/tomwer/core/process/drac/tests/test_icat_raw_dataset.py +0 -90
- tomwer-1.6.22/src/tomwer/core/process/edit/darkflatpatch.py +0 -121
- tomwer-1.6.22/src/tomwer/core/process/edit/imagekeyeditor.py +0 -236
- tomwer-1.6.22/src/tomwer/core/process/edit/nxtomoeditor.py +0 -340
- tomwer-1.6.22/src/tomwer/core/process/edit/tests/test_darkflatpatch.py +0 -243
- tomwer-1.6.22/src/tomwer/core/process/edit/tests/test_imagekey_editor.py +0 -99
- tomwer-1.6.22/src/tomwer/core/process/output.py +0 -61
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/axis/__init__.py +0 -2
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/axis/anglemode.py +0 -21
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/axis/axis.py +0 -461
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/axis/mode.py +0 -274
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/axis/params.py +0 -806
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/darkref/darkrefs.py +0 -476
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/darkref/darkrefscopy.py +0 -361
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/darkref/params.py +0 -272
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/castvolume.py +0 -291
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/helical.py +0 -59
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/nabucommon.py +0 -695
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/nabuscores.py +0 -722
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/nabuslices.py +0 -906
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/nabuvolume.py +0 -582
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/plane.py +0 -19
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/settings.py +0 -35
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/test/test_castvolume.py +0 -118
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/test/test_nabu_utils.py +0 -354
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/test/test_nabunormalization.py +0 -199
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/utils.py +0 -629
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/normalization/__init__.py +0 -2
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/normalization/normalization.py +0 -335
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/normalization/params.py +0 -135
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/output.py +0 -74
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/params_cache.py +0 -36
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/saaxis/__init__.py +0 -3
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/saaxis/params.py +0 -134
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/saaxis/saaxis.py +0 -854
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/sadeltabeta/__init__.py +0 -3
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/sadeltabeta/params.py +0 -78
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +0 -835
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/scores/__init__.py +0 -6
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/scores/params.py +0 -184
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/scores/scores.py +0 -198
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/tests/test_axis.py +0 -46
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/tests/test_axis_params.py +0 -61
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/tests/test_darkref.py +0 -33
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/tests/test_darkref_copy.py +0 -208
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/tests/test_params_cache.py +0 -37
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/tests/test_paramsbase.py +0 -54
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/tests/test_saaxis.py +0 -84
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/tests/test_sadeltabeta.py +0 -48
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/tests/test_utils.py +0 -29
- tomwer-1.6.22/src/tomwer/core/process/reconstruction/utils/cor.py +0 -16
- tomwer-1.6.22/src/tomwer/core/process/script/python.py +0 -61
- tomwer-1.6.22/src/tomwer/core/process/script/tests/test_script.py +0 -41
- tomwer-1.6.22/src/tomwer/core/process/stitching/nabustitcher.py +0 -184
- tomwer-1.6.22/src/tomwer/core/process/stitching/tests/test_metadataholder.py +0 -17
- tomwer-1.6.22/src/tomwer/core/process/task.py +0 -129
- tomwer-1.6.22/src/tomwer/core/process/tests/test_conditions.py +0 -65
- tomwer-1.6.22/src/tomwer/core/process/tests/test_dark_and_flat.py +0 -359
- tomwer-1.6.22/src/tomwer/core/process/tests/test_data_listener.py +0 -88
- tomwer-1.6.22/src/tomwer/core/process/tests/test_data_transfer.py +0 -354
- tomwer-1.6.22/src/tomwer/core/process/tests/test_data_watcher.py +0 -39
- tomwer-1.6.22/src/tomwer/core/process/tests/test_nabu.py +0 -460
- tomwer-1.6.22/src/tomwer/core/process/tests/test_normalization.py +0 -80
- tomwer-1.6.22/src/tomwer/core/process/tests/test_timer.py +0 -51
- tomwer-1.6.22/src/tomwer/core/process/utils.py +0 -85
- tomwer-1.6.22/src/tomwer/core/process/visualization/dataviewer.py +0 -14
- tomwer-1.6.22/src/tomwer/core/process/visualization/tests/test_data_viewer.py +0 -12
- tomwer-1.6.22/src/tomwer/core/process/visualization/tests/test_diff_viewer.py +0 -12
- tomwer-1.6.22/src/tomwer/core/process/visualization/tests/test_image_stack_viewer.py +0 -14
- tomwer-1.6.22/src/tomwer/core/process/visualization/tests/test_radio_stack.py +0 -12
- tomwer-1.6.22/src/tomwer/core/process/visualization/tests/test_sample_moved.py +0 -14
- tomwer-1.6.22/src/tomwer/core/process/visualization/tests/test_sinogram_viewer.py +0 -13
- tomwer-1.6.22/src/tomwer/core/process/visualization/tests/test_slice_stack.py +0 -13
- tomwer-1.6.22/src/tomwer/core/scan/blissscan.py +0 -230
- tomwer-1.6.22/src/tomwer/core/scan/edfscan.py +0 -586
- tomwer-1.6.22/src/tomwer/core/scan/futurescan.py +0 -8
- tomwer-1.6.22/src/tomwer/core/scan/hdf5scan.py +0 -26
- tomwer-1.6.22/src/tomwer/core/scan/helicalmetadata.py +0 -15
- tomwer-1.6.22/src/tomwer/core/scan/nxtomoscan.py +0 -521
- tomwer-1.6.22/src/tomwer/core/scan/scanbase.py +0 -737
- tomwer-1.6.22/src/tomwer/core/scan/scanfactory.py +0 -226
- tomwer-1.6.22/src/tomwer/core/scan/tests/test_future_scan.py +0 -36
- tomwer-1.6.22/src/tomwer/core/scan/tests/test_nxtomoscan.py +0 -143
- tomwer-1.6.22/src/tomwer/core/scan/tests/test_scan.py +0 -373
- tomwer-1.6.22/src/tomwer/core/settings.py +0 -170
- tomwer-1.6.22/src/tomwer/core/tests/test_scanutils.py +0 -26
- tomwer-1.6.22/src/tomwer/core/tests/test_utils.py +0 -272
- tomwer-1.6.22/src/tomwer/core/tomwer_object.py +0 -55
- tomwer-1.6.22/src/tomwer/core/utils/lbsram.py +0 -35
- tomwer-1.6.22/src/tomwer/core/utils/logconfig.py +0 -6
- tomwer-1.6.22/src/tomwer/core/utils/nxtomoutils.py +0 -35
- tomwer-1.6.22/src/tomwer/core/utils/process.py +0 -50
- tomwer-1.6.22/src/tomwer/core/utils/scanutils.py +0 -445
- tomwer-1.6.22/src/tomwer/core/utils/spec.py +0 -265
- tomwer-1.6.22/src/tomwer/core/volume/hdf5volume.py +0 -168
- tomwer-1.6.22/src/tomwer/core/volume/volumefactory.py +0 -157
- tomwer-1.6.22/src/tomwer/gui/cluster/slurm.py +0 -888
- tomwer-1.6.22/src/tomwer/gui/cluster/supervisor.py +0 -420
- tomwer-1.6.22/src/tomwer/gui/cluster/tests/test_cluster.py +0 -106
- tomwer-1.6.22/src/tomwer/gui/cluster/tests/test_supervisor.py +0 -65
- tomwer-1.6.22/src/tomwer/gui/conditions/filter.py +0 -119
- tomwer-1.6.22/src/tomwer/gui/control/datadiscovery.py +0 -169
- tomwer-1.6.22/src/tomwer/gui/control/datalist.py +0 -1146
- tomwer-1.6.22/src/tomwer/gui/control/datalistener.py +0 -644
- tomwer-1.6.22/src/tomwer/gui/control/datatransfert.py +0 -124
- tomwer-1.6.22/src/tomwer/gui/control/datavalidator.py +0 -396
- tomwer-1.6.22/src/tomwer/gui/control/datawatcher/__init__.py +0 -3
- tomwer-1.6.22/src/tomwer/gui/control/datawatcher/configuration.py +0 -223
- tomwer-1.6.22/src/tomwer/gui/control/datawatcher/controlwidget.py +0 -114
- tomwer-1.6.22/src/tomwer/gui/control/datawatcher/datawatcher.py +0 -551
- tomwer-1.6.22/src/tomwer/gui/control/datawatcher/datawatcherobserver.py +0 -268
- tomwer-1.6.22/src/tomwer/gui/control/observations.py +0 -226
- tomwer-1.6.22/src/tomwer/gui/control/reducedarkflatselector.py +0 -549
- tomwer-1.6.22/src/tomwer/gui/control/series/test/test_nxtomo_concatenate.py +0 -21
- tomwer-1.6.22/src/tomwer/gui/control/singletomoobj.py +0 -179
- tomwer-1.6.22/src/tomwer/gui/control/tests/test_datadiscovery.py +0 -27
- tomwer-1.6.22/src/tomwer/gui/control/tests/test_datalistener.py +0 -29
- tomwer-1.6.22/src/tomwer/gui/control/tests/test_reducedarkflat_selector.py +0 -280
- tomwer-1.6.22/src/tomwer/gui/control/tests/test_scanvalidator.py +0 -90
- tomwer-1.6.22/src/tomwer/gui/dataportal/gallery.py +0 -133
- tomwer-1.6.22/src/tomwer/gui/debugtools/datasetgenerator.py +0 -251
- tomwer-1.6.22/src/tomwer/gui/dialog/_PortOccupyDialog.py +0 -73
- tomwer-1.6.22/src/tomwer/gui/edit/dkrfpatch.py +0 -442
- tomwer-1.6.22/src/tomwer/gui/edit/imagekeyeditor.py +0 -784
- tomwer-1.6.22/src/tomwer/gui/edit/nxtomoeditor.py +0 -817
- tomwer-1.6.22/src/tomwer/gui/edit/tests/test_dkrf_patch.py +0 -186
- tomwer-1.6.22/src/tomwer/gui/edit/tests/test_nx_editor.py +0 -473
- tomwer-1.6.22/src/tomwer/gui/icons.py +0 -365
- tomwer-1.6.22/src/tomwer/gui/imagefromfile.py +0 -131
- tomwer-1.6.22/src/tomwer/gui/qlefilesystem.py +0 -37
- tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/AxisMainWindow.py +0 -275
- tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/AxisOptionsWidget.py +0 -313
- tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/AxisSettingsWidget.py +0 -796
- tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/AxisWidget.py +0 -534
- tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/CalculationWidget.py +0 -216
- tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/ControlWidget.py +0 -285
- tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/EstimatedCORWidget.py +0 -408
- tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/EstimatedCorComboBox.py +0 -118
- tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/InputWidget.py +0 -347
- tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/ManualFramesSelection.py +0 -168
- tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/__init__.py +0 -2
- tomwer-1.6.22/src/tomwer/gui/reconstruction/darkref/darkrefcopywidget.py +0 -284
- tomwer-1.6.22/src/tomwer/gui/reconstruction/darkref/darkrefwidget.py +0 -419
- tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/__init__.py +0 -1
- tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/castvolume.py +0 -334
- tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/helical.py +0 -78
- tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/nabuconfig/base.py +0 -67
- tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py +0 -346
- tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py +0 -238
- tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/nabuconfig/output.py +0 -306
- tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +0 -406
- tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +0 -788
- tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +0 -1096
- tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/nabuconfig/tests/test_NabuConfiguration.py +0 -42
- tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/nabuflow.py +0 -427
- tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/platform.py +0 -94
- tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/slices.py +0 -660
- tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/test/test_cast_volume.py +0 -101
- tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/test/test_ctf.py +0 -44
- tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/test/test_helical.py +0 -21
- tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/volume.py +0 -466
- tomwer-1.6.22/src/tomwer/gui/reconstruction/normalization/intensity.py +0 -861
- tomwer-1.6.22/src/tomwer/gui/reconstruction/normalization/test/test_intensity.py +0 -89
- tomwer-1.6.22/src/tomwer/gui/reconstruction/saaxis/corrangeselector.py +0 -791
- tomwer-1.6.22/src/tomwer/gui/reconstruction/saaxis/dimensionwidget.py +0 -224
- tomwer-1.6.22/src/tomwer/gui/reconstruction/saaxis/saaxis.py +0 -551
- tomwer-1.6.22/src/tomwer/gui/reconstruction/saaxis/sliceselector.py +0 -307
- tomwer-1.6.22/src/tomwer/gui/reconstruction/sacommon.py +0 -151
- tomwer-1.6.22/src/tomwer/gui/reconstruction/sadeltabeta/__init__.py +0 -1
- tomwer-1.6.22/src/tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py +0 -515
- tomwer-1.6.22/src/tomwer/gui/reconstruction/scores/scoreplot.py +0 -870
- tomwer-1.6.22/src/tomwer/gui/reconstruction/tests/test_axis.py +0 -203
- tomwer-1.6.22/src/tomwer/gui/reconstruction/tests/test_nabu.py +0 -364
- tomwer-1.6.22/src/tomwer/gui/reconstruction/tests/test_saaxis.py +0 -188
- tomwer-1.6.22/src/tomwer/gui/reconstruction/tests/test_sadeltabeta.py +0 -126
- tomwer-1.6.22/src/tomwer/gui/samplemoved/__init__.py +0 -225
- tomwer-1.6.22/src/tomwer/gui/samplemoved/selectiontable.py +0 -232
- tomwer-1.6.22/src/tomwer/gui/settings.py +0 -13
- tomwer-1.6.22/src/tomwer/gui/stacks.py +0 -368
- tomwer-1.6.22/src/tomwer/gui/stitching/SingleAxisStitchingWidget.py +0 -357
- tomwer-1.6.22/src/tomwer/gui/stitching/axisorderedlist.py +0 -460
- tomwer-1.6.22/src/tomwer/gui/stitching/config/tomoobjdetails.py +0 -369
- tomwer-1.6.22/src/tomwer/gui/stitching/metadataholder.py +0 -32
- tomwer-1.6.22/src/tomwer/gui/stitching/normalization.py +0 -118
- tomwer-1.6.22/src/tomwer/gui/stitching/stitching_preview.py +0 -253
- tomwer-1.6.22/src/tomwer/gui/stitching/z_stitching/tests/test_fine_estimation.py +0 -35
- tomwer-1.6.22/src/tomwer/gui/stitching/z_stitching/tests/test_raw_estimation.py +0 -226
- tomwer-1.6.22/src/tomwer/gui/stitching/z_stitching/tests/test_stitching_window.py +0 -55
- tomwer-1.6.22/src/tomwer/gui/tests/test_axis_gui.py +0 -43
- tomwer-1.6.22/src/tomwer/gui/utils/RangeWidget.py +0 -45
- tomwer-1.6.22/src/tomwer/gui/utils/buttons.py +0 -206
- tomwer-1.6.22/src/tomwer/gui/utils/flow.py +0 -319
- tomwer-1.6.22/src/tomwer/gui/utils/gpu.py +0 -76
- tomwer-1.6.22/src/tomwer/gui/utils/illustrations.py +0 -98
- tomwer-1.6.22/src/tomwer/gui/utils/inputwidget.py +0 -604
- tomwer-1.6.22/src/tomwer/gui/utils/loadingmode.py +0 -81
- tomwer-1.6.22/src/tomwer/gui/utils/sandboxes.py +0 -154
- tomwer-1.6.22/src/tomwer/gui/utils/tests/test_vignettes.py +0 -68
- tomwer-1.6.22/src/tomwer/gui/utils/unitsystem.py +0 -194
- tomwer-1.6.22/src/tomwer/gui/utils/utils.py +0 -111
- tomwer-1.6.22/src/tomwer/gui/utils/vignettes.py +0 -522
- tomwer-1.6.22/src/tomwer/gui/visualization/dataviewer.py +0 -370
- tomwer-1.6.22/src/tomwer/gui/visualization/diffviewer/diffviewer.py +0 -544
- tomwer-1.6.22/src/tomwer/gui/visualization/diffviewer/shiftwidget.py +0 -535
- tomwer-1.6.22/src/tomwer/gui/visualization/fullscreenplot.py +0 -106
- tomwer-1.6.22/src/tomwer/gui/visualization/imagestack.py +0 -407
- tomwer-1.6.22/src/tomwer/gui/visualization/scanoverview.py +0 -278
- tomwer-1.6.22/src/tomwer/gui/visualization/sinogramviewer.py +0 -262
- tomwer-1.6.22/src/tomwer/gui/visualization/test/test_dataviewer.py +0 -45
- tomwer-1.6.22/src/tomwer/gui/visualization/test/test_sinogramviewer.py +0 -58
- tomwer-1.6.22/src/tomwer/gui/visualization/test/test_stacks.py +0 -203
- tomwer-1.6.22/src/tomwer/gui/visualization/volume_viewer/VolumeViewerWidget.py +0 -303
- tomwer-1.6.22/src/tomwer/gui/visualization/volume_viewer/toolbar.py +0 -118
- tomwer-1.6.22/src/tomwer/model/volume_viewer.py +0 -18
- tomwer-1.6.22/src/tomwer/resources/__init__.py +0 -130
- tomwer-1.6.22/src/tomwer/resources/gui/icons/high_speed.png +0 -0
- tomwer-1.6.22/src/tomwer/resources/gui/icons/high_speed.svg +0 -33
- tomwer-1.6.22/src/tomwer/resources/gui/icons/low_speed.png +0 -0
- tomwer-1.6.22/src/tomwer/resources/gui/icons/low_speed.svg +0 -33
- tomwer-1.6.22/src/tomwer/resources/gui/icons/medium_low_speed.png +0 -0
- tomwer-1.6.22/src/tomwer/resources/gui/icons/medium_low_speed.svg +0 -33
- tomwer-1.6.22/src/tomwer/synctools/axis.py +0 -28
- tomwer-1.6.22/src/tomwer/synctools/bliss_sync/_QThreadListenerBase.py +0 -36
- tomwer-1.6.22/src/tomwer/synctools/bliss_sync/blissdata_listener.py +0 -125
- tomwer-1.6.22/src/tomwer/synctools/bliss_sync/datalistener.py +0 -227
- tomwer-1.6.22/src/tomwer/synctools/darkref.py +0 -23
- tomwer-1.6.22/src/tomwer/synctools/datatransfert.py +0 -19
- tomwer-1.6.22/src/tomwer/synctools/imageloaderthread.py +0 -52
- tomwer-1.6.22/src/tomwer/synctools/rsyncmanager.py +0 -169
- tomwer-1.6.22/src/tomwer/synctools/saaxis.py +0 -29
- tomwer-1.6.22/src/tomwer/synctools/sadeltabeta.py +0 -29
- tomwer-1.6.22/src/tomwer/synctools/stacks/control/datalistener.py +0 -106
- tomwer-1.6.22/src/tomwer/synctools/stacks/processingstack.py +0 -184
- tomwer-1.6.22/src/tomwer/synctools/stacks/reconstruction/axis.py +0 -153
- tomwer-1.6.22/src/tomwer/synctools/stacks/reconstruction/castvolume.py +0 -185
- tomwer-1.6.22/src/tomwer/synctools/stacks/reconstruction/dkrefcopy.py +0 -169
- tomwer-1.6.22/src/tomwer/synctools/stacks/reconstruction/nabu.py +0 -185
- tomwer-1.6.22/src/tomwer/synctools/stacks/reconstruction/normalization.py +0 -111
- tomwer-1.6.22/src/tomwer/synctools/stacks/reconstruction/saaxis.py +0 -157
- tomwer-1.6.22/src/tomwer/synctools/stacks/reconstruction/sadeltabeta.py +0 -158
- tomwer-1.6.22/src/tomwer/synctools/tests/test_darkRefs.py +0 -399
- tomwer-1.6.22/src/tomwer/synctools/tests/test_foldertransfer.py +0 -359
- tomwer-1.6.22/src/tomwer/synctools/utils/scanstages.py +0 -178
- tomwer-1.6.22/src/tomwer/tasks/script/python.py +0 -50
- tomwer-1.6.22/src/tomwer/tasks/visualization/volume_viewer.py +0 -55
- tomwer-1.6.22/src/tomwer/tests/conftest.py +0 -85
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/cluster/tests/test_future_supervisorow.py +0 -48
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/cluster/tests/test_slurm_clusterow.py +0 -40
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_data_validator.py +0 -55
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_datadiscovery.py +0 -129
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_datalistener.py +0 -28
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_dataselector.py +0 -69
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_datawatcher.py +0 -411
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_emailow.py +0 -29
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_notifier.py +0 -24
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_nxtomo_concatenate_ow.py +0 -64
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_nxtomomill.py +0 -133
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_reduce_dark_flat_selector.py +0 -40
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_singletomoobj.py +0 -40
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_timerow.py +0 -25
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_volume_selector.py +0 -69
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_dark_flat_patch.py +0 -50
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_nxtomo_editor.py +0 -155
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/other/tests/test_pythonscript.py +0 -31
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_axis.py +0 -199
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_cast_volumeow.py +0 -58
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_dark_refs_widget.py +0 -136
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_delta_beta_selector.py +0 -15
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_i_norm.py +0 -157
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_nabu_helical_prepare_weights_double.py +0 -20
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_nabu_volume.py +0 -74
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_nabu_widget.py +0 -107
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_sa_delta_beta.py +0 -144
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_saaxis.py +0 -159
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/stitching/tests/test_zstitching.py +0 -313
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/test_darkref.py +0 -216
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/test_foldertransfert.py +0 -105
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_dataviewerow.py +0 -57
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_diffviewerow.py +0 -39
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_nxtomo_metadata_viewer.py +0 -29
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_radio_stackow.py +0 -31
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_sample_movedow.py +0 -46
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_sinogram_viewerow.py +0 -31
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_slice_stackow.py +0 -31
- tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_volume_viewerow.py +0 -51
- tomwer-1.6.22/src/tomwer/tests/test_ewoks/test_conversion.py +0 -103
- tomwer-1.6.22/src/tomwer/tests/test_ewoks/test_single_node_execution.py +0 -87
- tomwer-1.6.22/src/tomwer/tests/test_ewoks/test_workflows.py +0 -134
- tomwer-1.6.22/src/tomwer/tests/test_scripts.py +0 -161
- tomwer-1.6.22/src/tomwer/tests/test_utils.py +0 -49
- tomwer-1.6.22/src/tomwer/utils.py +0 -222
- tomwer-1.6.22/src/tomwer/version.py +0 -134
- tomwer-1.6.22/src/tomwer.egg-info/PKG-INFO +0 -202
- tomwer-1.6.22/src/tomwer.egg-info/SOURCES.txt +0 -994
- tomwer-1.6.22/src/tomwer.egg-info/pkg_info +0 -205
- tomwer-1.6.22/src/tomwer.egg-info/requires.txt +0 -81
- tomwer-1.6.22/src/tomwer.egg-info/sources.txt +0 -1030
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/LICENSE +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/setup.cfg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/orange/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/orange/settings.py +0 -0
- {tomwer-1.6.22/src/orangecontrib/tomwer/tests → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/orange/task_widgets}/__init__.py +0 -0
- {tomwer-1.6.22/src/orangecontrib/tomwer/tutorials → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tests}/__init__.py +0 -0
- {tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/id16b → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials}/__init__.py +0 -0
- /tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/darks and flats copy - method 2.ows → /tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/copy_reduced_darks_and_flats_meth2.ows +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/tutorials/hello_world_python_script.ows +0 -0
- {tomwer-1.6.22/src/orangecontrib/tomwer/widgets/cluster/tests → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/id16b}/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/cluster/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/cluster/icons/slurm.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/cluster/icons/slurm.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.svg +0 -0
- {tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/cluster}/tests/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/AdvancementOW.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/advancement.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/advancement.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/blissdata_listener.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/blissdata_listener.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/concatenate_nxtomos.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/concatenate_nxtomos.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/datadiscover.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/datadiscover.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/datalistener.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/edf2nx.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/edf2nx.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/email.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/email.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/esrf.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/image_key_upgrader.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/namefilter.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/namefilter.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/notification.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/notification.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/nxtomomill.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/nxtomomill.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/progress.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/reduced_darkflat_selector.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/reduced_darkflat_selector.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/scanlist.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/scanselector.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/scanselector.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/single_tomo_obj.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/single_tomo_obj.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/time.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/tomoobjseries.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/tomoobjseries.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/tomwer.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/validator.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/validatorcrack.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/volumeselector.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/volumeselector.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/volumesymlink.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/volumesymlink.svg +0 -0
- {tomwer-1.6.22/src/orangecontrib/tomwer/widgets/debugtools → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control}/tests/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/dataportal/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/dataportal/icons/publish_processed_data.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/dataportal/icons/publish_processed_data.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/debugtools/ObjectInspectorOW.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/debugtools/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/debugtools/icons/hammer.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/debugtools/icons/hammer.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/debugtools/icons/inspector.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/debugtools/icons/inspector.svg +0 -0
- {tomwer-1.6.22/src/orangecontrib/tomwer/widgets/edit → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/debugtools}/tests/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/deprecated/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/deprecated/_volume_viewer.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/deprecated/icons/deprecated_volume_viewer.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/deprecated/icons/deprecated_volume_viewer.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/edit/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/edit/icons/image_key_editor.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/edit/icons/image_key_editor.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.svg +0 -0
- {tomwer-1.6.22/src/orangecontrib/tomwer/widgets/other → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/edit}/tests/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/deprecated.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_build.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_build.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_cluster.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_cluster.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_control.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_control.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_data_portal.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_data_portal.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_debug_tools.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_debug_tools.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_edit.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_edit.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_other.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_other.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_stitching.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_stitching.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_visu.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_visu.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/other/TomoObjsHub.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/other/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/other/icons/PythonScript.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/other/icons/hub.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/other/icons/hub.svg +0 -0
- {tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/other}/tests/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/axis.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/axis.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/bricks.png +0 -0
- /tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/icons/darkref.png → /tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/darkflat.png +0 -0
- /tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/icons/darkref.svg → /tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/darkflat.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/esrf.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_cast.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_cast.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_prepare_weights_double.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_prepare_weights_double.svg +0 -0
- /tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.svg → /tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_settings.svg +0 -0
- /tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_3d.png → /tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_volume.png +0 -0
- /tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_3d.svg → /tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_volume.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/norm_I.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/norm_I.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/refCopy.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/refCopy.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/saaxis.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/saaxis.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/tomogui.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/tomwer.png +0 -0
- {tomwer-1.6.22/src/orangecontrib/tomwer/widgets/stitching → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction}/tests/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/stitching/ZStitchingConfigOW.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/stitching/__init__.py +0 -0
- {tomwer-1.6.22/src/orangecontrib/tomwer/widgets → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/stitching}/tests/__init__.py +0 -0
- {tomwer-1.6.22/src/orangecontrib/tomwer/widgets/visualization → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets}/tests/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/diff.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/diff.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/esrf.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/eye.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/eyecrack.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/radiosstack.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/radiosstack.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/sampleMoved.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/sampleMoved.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/sinogramviewer.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/slicesstack.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/slicesstack.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/tomwer.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.svg +0 -0
- {tomwer-1.6.22/src/tomwer/app/canvas_launcher → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/visualization/tests}/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/canvas.py +0 -0
- {tomwer-1.6.22/src/tomwer/app/stitching → tomwer-2.0.0.dev0/src/tomwer/app/canvas_launcher}/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/canvas_launcher/environ.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/canvas_launcher/splash.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/diffframe.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/radiostack.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/samplemoved.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/scanviewer.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/sinogramviewer.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/slicestack.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/app/stitching}/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/ystitching.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/zstitching.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/cluster/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process/cluster → tomwer-2.0.0.dev0/src/tomwer/core/control}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process/conditions → tomwer-2.0.0.dev0/src/tomwer/core/control/datawatcher}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/core}/control/datawatcher/status.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/core}/drac/binning.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/core}/drac/gallery.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/core}/drac/output.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/futureobject.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/core}/reconstruction/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process/control → tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/cor}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process/reconstruction/axis → tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/cor}/projectiontype.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process/reconstruction/axis → tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/cor}/side.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process/control/tests → tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/darkflat}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process/reconstruction/darkref → tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/darkflat}/settings.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process/drac → tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process/edit → tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/slice}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/core}/reconstruction/nabu/target.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/core}/reconstruction/paramsbase.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process/reconstruction/darkref → tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/tests}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu → tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/utils}/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/resourcemanager.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/scan/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/scan/scantype.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process/reconstruction → tomwer-2.0.0.dev0/src/tomwer/core/scan}/tests/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/scan/tests/test_edf.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/signal.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process/reconstruction/utils → tomwer-2.0.0.dev0/src/tomwer/core/tests}/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/char.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/deprecation.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/dictutils.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/ftseriesutils.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/gpu.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/image.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/normalization.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/resource.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/slurm.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process/script → tomwer-2.0.0.dev0/src/tomwer/core/utils/tests}/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/tests/test_image.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/tests/test_nxtomo.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/tests/test_scan_utils.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/tests/test_time.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/threads.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/time.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/volumeutils.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/volume/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/volume/edfvolume.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/volume/jp2kvolume.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/volume/rawvolume.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/volume/tests/test_volumes.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/volume/tiffvolume.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/volume/volumebase.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/cluster/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process/stitching → tomwer-2.0.0.dev0/src/tomwer/gui/cluster/tests}/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/conditions/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/configuration/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/configuration/action.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/configuration/level.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/_host.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/actions.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/datareacheractions.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/history.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/nxtomomill.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/scanselectorwidget.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/selectorwidgetbase.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process/tests → tomwer-2.0.0.dev0/src/tomwer/gui/control/series}/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/series/nxtomoconcatenate.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/series/seriescreator.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/series/serieswaiter.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/series/test/test_creator.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process/visualization → tomwer-2.0.0.dev0/src/tomwer/gui/control/tests}/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/tests/test_datalist.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/tests/test_datavalidator.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/tests/test_inputwidget.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/tests/test_scan_observations.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/tests/test_scanselector.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/tests/test_single_tomo_obj.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/tests/test_volume_dialog.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/tests/test_volumeselector.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/tomoobjdisplaymode.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/volumeselectorwidget.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/dataportal/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/dataportal/createscreenshots.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/dataportal/outputformat.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/dataportal/publish.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/dataportal/tests/test_create_screenshots_gui.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/dataportal/tests/test_gallery_gui.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/debugtools/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/debugtools/objectinspector.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/dialog/QDataDialog.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/dialog/QVolumeDialog.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/dialog/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/edit/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/edit/nxtomowarmer.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/scan → tomwer-2.0.0.dev0/src/tomwer/gui/edit}/tests/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/edit/tests/test_image_key_editor.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/fonts.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/illustrations.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/metadataloader.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/qconfigfile.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/reconstruction/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/gui/reconstruction/axis → tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor}/CompareImages.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/tests → tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/darkflat}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/utils/tests → tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu}/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/reconstruction/nabu/check.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/reconstruction/nabu/nabuconfig/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/gui/cluster → tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig}/tests/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/reconstruction/nabu/slurm.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/reconstruction/nabu/test/test_check.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/reconstruction/nabu/test/test_nabu_preprocessing.py +0 -0
- {tomwer-1.6.22/src/tomwer/gui/control/series → tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/volume}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/gui/control/tests → tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/scores}/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/reconstruction/scores/control.py +0 -0
- {tomwer-1.6.22/src/tomwer/gui/edit → tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction}/tests/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stackplot.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/StitchingOptionsWidget.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/StitchingWindow.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/action.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/alignment.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/config/_QSpinBox.py +0 -0
- {tomwer-1.6.22/src/tomwer/gui/reconstruction/darkref → tomwer-2.0.0.dev0/src/tomwer/gui/stitching/config}/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/config/_linkInfo.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/config/axisparams.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/config/output.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/config/positionoveraxis.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/config/stitchingstrategies.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/config/tests/test_axisparams.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/preview.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/singleaxis.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/stitchandbackground.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/stitching_raw.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/tests/test_ZStitchingWindow.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/tests/test_axis_ordered_list.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/tests/test_normalization.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/tests/test_preview.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/tests/test_stitching_raw.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/tests/utils.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/utils.py +0 -0
- {tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/nabuconfig/tests → tomwer-2.0.0.dev0/src/tomwer/gui/stitching/z_stitching}/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/z_stitching/fineestimation.py +0 -0
- {tomwer-1.6.22/src/tomwer/gui/reconstruction/normalization → tomwer-2.0.0.dev0/src/tomwer/gui/tests}/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/tests/test_qfolder_dialog.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/completer.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/host_editor.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/lineselector/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/lineselector/lineselector.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/qt_utils.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/scandescription.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/scrollarea.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/slider.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/splashscreen.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/step.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/tests/test_completer.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/tests/test_host_editor.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/tests/test_line_selector.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/tests/test_splashscreen.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/waiterthread.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/TomoPlot2D.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/diffviewer/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/nxtomometadata.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/reconstructionparameters.py +0 -0
- {tomwer-1.6.22/src/tomwer/gui/reconstruction/saaxis → tomwer-2.0.0.dev0/src/tomwer/gui/visualization/test}/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/test/test_diffviewer.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/test/test_reconstruction_parameters.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/tomoobjoverview.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/CoordinateSystemOverlay.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/GeometryOrMetadataWidget.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/VolumeViewerWindow.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/_CrossHairs.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/_HorizontalSliderWithBrowser.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/_ProcessingOverlay.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/_ReconstructionParameters.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/_SliceLoader.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/_TomoPlot2DSlices.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/actions/_ColorBarAction.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/actions/_ShowAxesAction.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/actions/_ShowCoordinateSystemAction.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/actions/_ShowCoordinateSystemLabelAction.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/actions/_ShowCrosshairsAction.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/actions/_ShowPlotToolBarAction.py +0 -0
- {tomwer-1.6.22/src/tomwer/gui/reconstruction/scores → tomwer-2.0.0.dev0/src/tomwer/gui/visualization/volume_viewer/actions}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/gui/reconstruction → tomwer-2.0.0.dev0/src/tomwer/gui/visualization/volume_viewer}/tests/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/tests/test_VolumeViewer.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volumeoverview.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/io/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/io/utils/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/io/utils/h5pyutils.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/io/utils/raw_and_processed_data.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/io/utils/test/test_raw_and_processed_data.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/io/utils/test/test_utils.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/io/utils/tomoobj.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/io/utils/utils.py +0 -0
- {tomwer-1.6.22/src/tomwer/gui/stitching/config → tomwer-2.0.0.dev0/src/tomwer/model/_common}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/gui/stitching/z_stitching → tomwer-2.0.0.dev0/src/tomwer/model/cluster}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/gui/tests → tomwer-2.0.0.dev0/src/tomwer/model/conditions}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/gui/visualization/test → tomwer-2.0.0.dev0/src/tomwer/model/control}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/gui/visualization/volume_viewer/actions → tomwer-2.0.0.dev0/src/tomwer/model/dataportal}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/gui/visualization/volume_viewer/tests → tomwer-2.0.0.dev0/src/tomwer/model/reconstruction}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/synctools/bliss_sync → tomwer-2.0.0.dev0/src/tomwer/model/visualization}/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/3D_coordinate_system_XY.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/3D_coordinate_system_XZ.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/3D_coordinate_system_YZ.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/Imagej_icon.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/a.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/a.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/add.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/add.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/advanced_user.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/advanced_user.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/axis.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/axis.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/background.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/background.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/basic_user.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/basic_user.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/cfg_file_active.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/cfg_file_active.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/cfg_file_inactive.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/cfg_file_inactive.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/compare_mode_a_minus_b.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/compare_mode_a_minus_b.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/compose.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/compose.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/crosshairs.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/crosshairs.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/datalistener_activate.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/datalistener_activate.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/datalistener_deactivate.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/datalistener_deactivate.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/delta_beta.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/delta_beta.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/edit_downstream.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/edit_upstream.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/exit.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/exit.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/extend_3D_coordinate_system_XY.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/extend_3D_coordinate_system_XZ.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/extend_3D_coordinate_system_YZ.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/free_edition.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/full_screen.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/full_screen.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/hammer.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/hammer.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/health.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/health.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/hide_3D_coordinate_system.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/history.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/hourglass.npy +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/icat_gallery_opts.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/icat_gallery_opts.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/imageNotFound.npy +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/information.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/information.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/input.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/input.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/invisible.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/invisible.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/lineselection.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/lineselection.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/link-slash.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/link.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/list_selection.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/list_selection.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/locked.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/locked.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/log.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/log.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/loop.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/lr_mirroring.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/lr_mirroring.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/minimalistic_user.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/minimalistic_user.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/multi-document-save.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/multi-document-save.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/nabu.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/nabu.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/output.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/output.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/parameters.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/parameters.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/plot-xleft.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/plot-xleft.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/plot-xright.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/plot-xright.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/range_selection.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/range_selection.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/red_dot.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/reset_3D_coordinate_system.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/results.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/results.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/rm.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/rm.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/roman_four.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/roman_four.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/roman_one.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/roman_one.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/roman_three.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/roman_three.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/roman_two.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/roman_two.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/ruler.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/ruler.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/search.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/search.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/short_description.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/short_description.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/show_3D_coordinate_system.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/show_coordinate_system_label.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/show_plot_toolbars.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/single_selection.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/single_selection.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/sinogram.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/slurm.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/slurm_active.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/slurm_active.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/slurm_deactive.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/slurm_deactive.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/stitching_modeRaw.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/stitching_modeRaw.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/stitching_modeRefine.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/stitching_modeRefine.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/switch.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/tomwer.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/tomwer_large.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/ud_mirroring.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/ud_mirroring.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/unlocked.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/unlocked.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/unsharp_mask.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/update_stitching_preview.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/url.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/url.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/vignettes.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/vignettes.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/visible.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/visible.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/warning.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/warning.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/illustrations/3D_coordinate_system.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/illustrations/3D_coordinate_system.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/illustrations/ctf_z1.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/illustrations/ctf_z1.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/illustrations/flow_down.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/illustrations/flow_down.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/illustrations/flow_right.png +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/illustrations/flow_right.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/illustrations/no_rot.svg +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/video.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/synctools/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/synctools/stacks/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/synctools/stacks/control → tomwer-2.0.0.dev0/src/tomwer/synctools/stacks/reconstruction}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/synctools/stacks/reconstruction → tomwer-2.0.0.dev0/src/tomwer/tasks/cluster}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/synctools/tests → tomwer-2.0.0.dev0/src/tomwer/tasks/conditions}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/synctools/utils → tomwer-2.0.0.dev0/src/tomwer/tasks/control/tests}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/tasks}/control/tomoobjseries.py +0 -0
- {tomwer-1.6.22/src/tomwer/tasks → tomwer-2.0.0.dev0/src/tomwer/tasks/script}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/tasks → tomwer-2.0.0.dev0/src/tomwer/tasks/script}/tests/test_script.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/tasks}/stitching/metadataholder.py +0 -0
- {tomwer-1.6.22/src/tomwer/tasks/script → tomwer-2.0.0.dev0/src/tomwer/tasks/visualization}/__init__.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/tasks}/visualization/diffviewer.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/tasks}/visualization/imagestackviewer.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/tasks}/visualization/radiostack.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/tasks}/visualization/samplemoved.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/tasks}/visualization/sinogramviewer.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/tasks}/visualization/slicestack.py +0 -0
- {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/tasks}/visualization/volumeviewer.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/__init__.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/app/test_stitching.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/datasets.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_advancement.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_tomoobj_series.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/orangecontrib/tomwer/widgets/debugtools/tests/test_dataset_generator.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/orangecontrib/tomwer/widgets/debugtools/tests/test_object_inspector.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_image_key_editor.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_image_key_upgrader.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/orangecontrib/tomwer/widgets/test_conditions.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/tasks/visualization/test_volume_viewer.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/utils.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/third_part/FrameBrowser.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/third_part/OverlayMixIn.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/third_part/qitem_model_resetter.py +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer.egg-info/dependency_links.txt +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer.egg-info/entry_points.txt +0 -0
- {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tomwer
|
|
3
|
+
Version: 2.0.0.dev0
|
|
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>, Alessandro Mirone <mirone@esrf.fr>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://gitlab.esrf.fr/tomotools/tomwer
|
|
8
|
+
Project-URL: Documentation, https://tomotools.gitlab-pages.esrf.fr/tomwer/
|
|
9
|
+
Project-URL: Repository, https://gitlab.esrf.fr/tomotools/tomwer
|
|
10
|
+
Project-URL: Issues, https://gitlab.esrf.fr/tomotools/tomwer/-/issues
|
|
11
|
+
Project-URL: Changelog, https://gitlab.esrf.fr/tomotools/tomwer/-/blob/main/CHANGELOG.rst?ref_type=heads
|
|
12
|
+
Keywords: orange3 add-on,ewoks
|
|
13
|
+
Classifier: Intended Audience :: Education
|
|
14
|
+
Classifier: Intended Audience :: Science/Research
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Environment :: Console
|
|
18
|
+
Classifier: Environment :: X11 Applications :: Qt
|
|
19
|
+
Classifier: Operating System :: POSIX
|
|
20
|
+
Classifier: Natural Language :: English
|
|
21
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
22
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
23
|
+
Requires-Python: >=3.10
|
|
24
|
+
Description-Content-Type: text/x-rst
|
|
25
|
+
License-File: LICENSE
|
|
26
|
+
Requires-Dist: numpy
|
|
27
|
+
Requires-Dist: setuptools
|
|
28
|
+
Requires-Dist: psutil
|
|
29
|
+
Requires-Dist: silx[full_no_qt]>=3
|
|
30
|
+
Requires-Dist: tomoscan>=2.4.0dev0
|
|
31
|
+
Requires-Dist: nxtomo>2.0.0dev2
|
|
32
|
+
Requires-Dist: nxtomomill>=2.0.0dev0
|
|
33
|
+
Requires-Dist: processview>=1.5.2
|
|
34
|
+
Requires-Dist: ewokscore
|
|
35
|
+
Requires-Dist: sluurp>=0.4.1
|
|
36
|
+
Requires-Dist: packaging
|
|
37
|
+
Requires-Dist: pint
|
|
38
|
+
Requires-Dist: tqdm
|
|
39
|
+
Requires-Dist: eval_type_backport; python_version < "3.10"
|
|
40
|
+
Requires-Dist: platformdirs
|
|
41
|
+
Requires-Dist: esrf-pathlib
|
|
42
|
+
Provides-Extra: full-base
|
|
43
|
+
Requires-Dist: orange-canvas-core; extra == "full-base"
|
|
44
|
+
Requires-Dist: orange-widget-base; extra == "full-base"
|
|
45
|
+
Requires-Dist: ewokscore; extra == "full-base"
|
|
46
|
+
Requires-Dist: ewoksorange>=3.3.0; extra == "full-base"
|
|
47
|
+
Requires-Dist: fabio; extra == "full-base"
|
|
48
|
+
Requires-Dist: h5py>=3; extra == "full-base"
|
|
49
|
+
Requires-Dist: lxml; extra == "full-base"
|
|
50
|
+
Requires-Dist: scipy; extra == "full-base"
|
|
51
|
+
Requires-Dist: Pillow; extra == "full-base"
|
|
52
|
+
Requires-Dist: glymur<0.14; extra == "full-base"
|
|
53
|
+
Requires-Dist: resource; extra == "full-base"
|
|
54
|
+
Requires-Dist: tifffile; extra == "full-base"
|
|
55
|
+
Requires-Dist: hdf5plugin; extra == "full-base"
|
|
56
|
+
Requires-Dist: pyicat_plus; extra == "full-base"
|
|
57
|
+
Requires-Dist: ewoksnotify[base]; extra == "full-base"
|
|
58
|
+
Requires-Dist: ewoksnotify[icat]; extra == "full-base"
|
|
59
|
+
Requires-Dist: chime; extra == "full-base"
|
|
60
|
+
Requires-Dist: pyicat_plus; extra == "full-base"
|
|
61
|
+
Requires-Dist: blissdata; extra == "full-base"
|
|
62
|
+
Provides-Extra: full-no-cuda
|
|
63
|
+
Requires-Dist: tomwer[full_base]; extra == "full-no-cuda"
|
|
64
|
+
Requires-Dist: nabu>=2024.2.0; extra == "full-no-cuda"
|
|
65
|
+
Requires-Dist: PyQt6; extra == "full-no-cuda"
|
|
66
|
+
Requires-Dist: qtawesome; extra == "full-no-cuda"
|
|
67
|
+
Provides-Extra: full-no-qt
|
|
68
|
+
Requires-Dist: tomwer[full_base]; extra == "full-no-qt"
|
|
69
|
+
Requires-Dist: nabu[full]>=2024.2.0; extra == "full-no-qt"
|
|
70
|
+
Requires-Dist: pycuda<2024.1.1; extra == "full-no-qt"
|
|
71
|
+
Requires-Dist: scikit-cuda; extra == "full-no-qt"
|
|
72
|
+
Requires-Dist: PyQt6; extra == "full-no-qt"
|
|
73
|
+
Requires-Dist: qtawesome; extra == "full-no-qt"
|
|
74
|
+
Provides-Extra: full
|
|
75
|
+
Requires-Dist: tomwer[full_no_qt]; extra == "full"
|
|
76
|
+
Requires-Dist: PyQt6; extra == "full"
|
|
77
|
+
Provides-Extra: doc
|
|
78
|
+
Requires-Dist: tomwer[full_no_cuda]; extra == "doc"
|
|
79
|
+
Requires-Dist: Sphinx>=4.0.0; extra == "doc"
|
|
80
|
+
Requires-Dist: nbsphinx; extra == "doc"
|
|
81
|
+
Requires-Dist: pandoc; extra == "doc"
|
|
82
|
+
Requires-Dist: jupyterlab; extra == "doc"
|
|
83
|
+
Requires-Dist: pydata_sphinx_theme; extra == "doc"
|
|
84
|
+
Requires-Dist: sphinx-design; extra == "doc"
|
|
85
|
+
Requires-Dist: sphinx-autodoc-typehints; extra == "doc"
|
|
86
|
+
Requires-Dist: sphinxcontrib-programoutput; extra == "doc"
|
|
87
|
+
Requires-Dist: sphinxcontrib-youtube; extra == "doc"
|
|
88
|
+
Requires-Dist: myst-parser; extra == "doc"
|
|
89
|
+
Requires-Dist: nb_extension_tagstyler; extra == "doc"
|
|
90
|
+
Requires-Dist: ewokssphinx; extra == "doc"
|
|
91
|
+
Provides-Extra: dev-spec
|
|
92
|
+
Requires-Dist: black; extra == "dev-spec"
|
|
93
|
+
Requires-Dist: flake8; extra == "dev-spec"
|
|
94
|
+
Requires-Dist: timeout-decorator; extra == "dev-spec"
|
|
95
|
+
Requires-Dist: pyopencl; extra == "dev-spec"
|
|
96
|
+
Provides-Extra: dev
|
|
97
|
+
Requires-Dist: tomwer[full]; extra == "dev"
|
|
98
|
+
Requires-Dist: tomwer[dev_spec]; extra == "dev"
|
|
99
|
+
Provides-Extra: dev-no-cuda
|
|
100
|
+
Requires-Dist: tomwer[full_no_cuda]; extra == "dev-no-cuda"
|
|
101
|
+
Requires-Dist: tomwer[dev_spec]; extra == "dev-no-cuda"
|
|
102
|
+
Provides-Extra: test
|
|
103
|
+
Requires-Dist: tomwer[full_no_cuda]; extra == "test"
|
|
104
|
+
Requires-Dist: pytest-asyncio; extra == "test"
|
|
105
|
+
Requires-Dist: tomoscan[test]>=2.4.0dev0; extra == "test"
|
|
106
|
+
Dynamic: license-file
|
|
107
|
+
|
|
108
|
+
.. image:: doc/img/tomwer.png
|
|
109
|
+
:alt: Tomwer Logo
|
|
110
|
+
:align: left
|
|
111
|
+
:width: 400px
|
|
112
|
+
|
|
113
|
+
Introduction
|
|
114
|
+
------------
|
|
115
|
+
|
|
116
|
+
**Tomwer** provides tools to automate acquisition and reconstruction processes for tomography. The package includes:
|
|
117
|
+
|
|
118
|
+
- A library to individually access each acquisition process.
|
|
119
|
+
- Graphical User Interface (GUI) applications to control key processes such as reconstruction and data transfer, which can be executed as standalone applications.
|
|
120
|
+
- An Orange add-on to help users define custom workflows (`Orange3 <http://orange.biolab.si>`_).
|
|
121
|
+
|
|
122
|
+
Tomwer relies on `Nabu <https://gitlab.esrf.fr/tomotools/nabu>`_ for tomographic reconstruction.
|
|
123
|
+
|
|
124
|
+
**Note**: Currently, the software is only compatible with Linux.
|
|
125
|
+
|
|
126
|
+
Documentation
|
|
127
|
+
-------------
|
|
128
|
+
|
|
129
|
+
The documentation is available here:
|
|
130
|
+
|
|
131
|
+
`Stable Version <https://tomwer.readthedocs.io/en/stable/>`_
|
|
132
|
+
|
|
133
|
+
`Latest Version <https://tomotools.gitlab-pages.esrf.fr/tomwer/>`_
|
|
134
|
+
|
|
135
|
+
Installation
|
|
136
|
+
------------
|
|
137
|
+
|
|
138
|
+
To install Tomwer with all features:
|
|
139
|
+
|
|
140
|
+
.. code-block:: bash
|
|
141
|
+
|
|
142
|
+
pip install tomwer[full]
|
|
143
|
+
|
|
144
|
+
Alternatively, you can install the latest development branch from the repository:
|
|
145
|
+
|
|
146
|
+
.. code-block:: bash
|
|
147
|
+
|
|
148
|
+
pip install git+https://gitlab.esrf.fr/tomotools/tomwer/#egg=tomwer[full]
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
Launching Applications
|
|
152
|
+
-----------------------
|
|
153
|
+
|
|
154
|
+
After installation, Tomwer includes several applications. You can launch an application by running:
|
|
155
|
+
|
|
156
|
+
.. code-block:: bash
|
|
157
|
+
|
|
158
|
+
tomwer <appName> [options]
|
|
159
|
+
|
|
160
|
+
- If you run `tomwer` without arguments, a manual page will be displayed.
|
|
161
|
+
- For application-specific help, run:
|
|
162
|
+
|
|
163
|
+
.. code-block:: bash
|
|
164
|
+
|
|
165
|
+
tomwer <appName> --help
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
Tomwer Canvas - Orange Canvas
|
|
169
|
+
-----------------------------
|
|
170
|
+
|
|
171
|
+
You can launch the Orange canvas to create workflows using the available building blocks:
|
|
172
|
+
|
|
173
|
+
.. code-block:: bash
|
|
174
|
+
|
|
175
|
+
tomwer canvas
|
|
176
|
+
|
|
177
|
+
- Alternatively, you can use `orange-canvas`.
|
|
178
|
+
- If you're using a virtual environment, remember to activate it:
|
|
179
|
+
|
|
180
|
+
.. code-block:: bash
|
|
181
|
+
|
|
182
|
+
source myvirtualenv/bin/activate
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
Building Documentation
|
|
186
|
+
-----------------------
|
|
187
|
+
|
|
188
|
+
To build the documentation:
|
|
189
|
+
|
|
190
|
+
.. code-block:: bash
|
|
191
|
+
|
|
192
|
+
sphinx-build doc build/html
|
|
193
|
+
|
|
194
|
+
The documentation will be generated in `doc/build/html`, and the entry point is `index.html`. To view the documentation in a browser:
|
|
195
|
+
|
|
196
|
+
.. code-block:: bash
|
|
197
|
+
|
|
198
|
+
firefox build/html/index.html
|
|
199
|
+
|
|
200
|
+
**Note**: Building the documentation requires `sphinx` to be installed, which is not a hard dependency of Tomwer. If needed, install it separately.
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
.. image:: doc/img/tomwer.png
|
|
2
|
+
:alt: Tomwer Logo
|
|
3
|
+
:align: left
|
|
4
|
+
:width: 400px
|
|
5
|
+
|
|
6
|
+
Introduction
|
|
7
|
+
------------
|
|
8
|
+
|
|
9
|
+
**Tomwer** provides tools to automate acquisition and reconstruction processes for tomography. The package includes:
|
|
10
|
+
|
|
11
|
+
- A library to individually access each acquisition process.
|
|
12
|
+
- Graphical User Interface (GUI) applications to control key processes such as reconstruction and data transfer, which can be executed as standalone applications.
|
|
13
|
+
- An Orange add-on to help users define custom workflows (`Orange3 <http://orange.biolab.si>`_).
|
|
14
|
+
|
|
15
|
+
Tomwer relies on `Nabu <https://gitlab.esrf.fr/tomotools/nabu>`_ for tomographic reconstruction.
|
|
16
|
+
|
|
17
|
+
**Note**: Currently, the software is only compatible with Linux.
|
|
18
|
+
|
|
19
|
+
Documentation
|
|
20
|
+
-------------
|
|
21
|
+
|
|
22
|
+
The documentation is available here:
|
|
23
|
+
|
|
24
|
+
`Stable Version <https://tomwer.readthedocs.io/en/stable/>`_
|
|
25
|
+
|
|
26
|
+
`Latest Version <https://tomotools.gitlab-pages.esrf.fr/tomwer/>`_
|
|
27
|
+
|
|
28
|
+
Installation
|
|
29
|
+
------------
|
|
30
|
+
|
|
31
|
+
To install Tomwer with all features:
|
|
32
|
+
|
|
33
|
+
.. code-block:: bash
|
|
34
|
+
|
|
35
|
+
pip install tomwer[full]
|
|
36
|
+
|
|
37
|
+
Alternatively, you can install the latest development branch from the repository:
|
|
38
|
+
|
|
39
|
+
.. code-block:: bash
|
|
40
|
+
|
|
41
|
+
pip install git+https://gitlab.esrf.fr/tomotools/tomwer/#egg=tomwer[full]
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
Launching Applications
|
|
45
|
+
-----------------------
|
|
46
|
+
|
|
47
|
+
After installation, Tomwer includes several applications. You can launch an application by running:
|
|
48
|
+
|
|
49
|
+
.. code-block:: bash
|
|
50
|
+
|
|
51
|
+
tomwer <appName> [options]
|
|
52
|
+
|
|
53
|
+
- If you run `tomwer` without arguments, a manual page will be displayed.
|
|
54
|
+
- For application-specific help, run:
|
|
55
|
+
|
|
56
|
+
.. code-block:: bash
|
|
57
|
+
|
|
58
|
+
tomwer <appName> --help
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
Tomwer Canvas - Orange Canvas
|
|
62
|
+
-----------------------------
|
|
63
|
+
|
|
64
|
+
You can launch the Orange canvas to create workflows using the available building blocks:
|
|
65
|
+
|
|
66
|
+
.. code-block:: bash
|
|
67
|
+
|
|
68
|
+
tomwer canvas
|
|
69
|
+
|
|
70
|
+
- Alternatively, you can use `orange-canvas`.
|
|
71
|
+
- If you're using a virtual environment, remember to activate it:
|
|
72
|
+
|
|
73
|
+
.. code-block:: bash
|
|
74
|
+
|
|
75
|
+
source myvirtualenv/bin/activate
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
Building Documentation
|
|
79
|
+
-----------------------
|
|
80
|
+
|
|
81
|
+
To build the documentation:
|
|
82
|
+
|
|
83
|
+
.. code-block:: bash
|
|
84
|
+
|
|
85
|
+
sphinx-build doc build/html
|
|
86
|
+
|
|
87
|
+
The documentation will be generated in `doc/build/html`, and the entry point is `index.html`. To view the documentation in a browser:
|
|
88
|
+
|
|
89
|
+
.. code-block:: bash
|
|
90
|
+
|
|
91
|
+
firefox build/html/index.html
|
|
92
|
+
|
|
93
|
+
**Note**: Building the documentation requires `sphinx` to be installed, which is not a hard dependency of Tomwer. If needed, install it separately.
|
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "tomwer"
|
|
3
|
+
dynamic = ["version"]
|
|
4
|
+
authors = [
|
|
5
|
+
{ name = "Henri Payno", email = "henri.payno@esrf.fr" },
|
|
6
|
+
{ name = "Pierre Paleo", email = "pierre.paleo@esrf.fr" },
|
|
7
|
+
{ name = "Pierre-Olivier Autran", email = "pierre-olivier.autran@esrf.fr" },
|
|
8
|
+
{ name = "Jérôme Lesaint", email = "jerome.lesaint@esrf.fr" },
|
|
9
|
+
{ name = "Alessandro Mirone", email = "mirone@esrf.fr" }
|
|
10
|
+
]
|
|
11
|
+
description = "Tomography workflow tools"
|
|
12
|
+
readme = { file = "README.rst", content-type = "text/x-rst" }
|
|
13
|
+
license = { text = "MIT" }
|
|
14
|
+
requires-python = ">=3.10"
|
|
15
|
+
keywords = ["orange3 add-on", "ewoks"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Intended Audience :: Education",
|
|
18
|
+
"Intended Audience :: Science/Research",
|
|
19
|
+
"License :: OSI Approved :: MIT License",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Environment :: Console",
|
|
22
|
+
"Environment :: X11 Applications :: Qt",
|
|
23
|
+
"Operating System :: POSIX",
|
|
24
|
+
"Natural Language :: English",
|
|
25
|
+
"Topic :: Scientific/Engineering :: Physics",
|
|
26
|
+
"Topic :: Software Development :: Libraries :: Python Modules"
|
|
27
|
+
]
|
|
28
|
+
dependencies = [
|
|
29
|
+
"numpy",
|
|
30
|
+
"setuptools",
|
|
31
|
+
"psutil",
|
|
32
|
+
"silx[full_no_qt]>=3",
|
|
33
|
+
"tomoscan>=2.4.0dev0",
|
|
34
|
+
"nxtomo>2.0.0dev2",
|
|
35
|
+
"nxtomomill>=2.0.0dev0",
|
|
36
|
+
"processview>=1.5.2",
|
|
37
|
+
"ewokscore",
|
|
38
|
+
"sluurp>=0.4.1",
|
|
39
|
+
"packaging",
|
|
40
|
+
"pint",
|
|
41
|
+
"tqdm",
|
|
42
|
+
"eval_type_backport; python_version < '3.10'",
|
|
43
|
+
"platformdirs",
|
|
44
|
+
"esrf-pathlib",
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
[project.optional-dependencies]
|
|
48
|
+
full_base = [
|
|
49
|
+
"orange-canvas-core",
|
|
50
|
+
"orange-widget-base",
|
|
51
|
+
"ewokscore",
|
|
52
|
+
"ewoksorange>=3.3.0",
|
|
53
|
+
"fabio",
|
|
54
|
+
"h5py>=3",
|
|
55
|
+
"lxml",
|
|
56
|
+
"scipy",
|
|
57
|
+
"Pillow",
|
|
58
|
+
"glymur<0.14", # for python3.9 until https://github.com/quintusdias/glymur/issues/688 is fixed
|
|
59
|
+
"resource",
|
|
60
|
+
"tifffile",
|
|
61
|
+
"hdf5plugin",
|
|
62
|
+
"pyicat_plus",
|
|
63
|
+
"ewoksnotify[base]", # note: avoid full to let silx determine which Qt binding to use.
|
|
64
|
+
"ewoksnotify[icat]",
|
|
65
|
+
"chime", # to complete ewoksnotify
|
|
66
|
+
"pyicat_plus",
|
|
67
|
+
"blissdata",
|
|
68
|
+
]
|
|
69
|
+
full_no_cuda = [
|
|
70
|
+
"tomwer[full_base]",
|
|
71
|
+
"nabu>=2024.2.0",
|
|
72
|
+
"PyQt6",
|
|
73
|
+
'qtawesome', # For icons
|
|
74
|
+
]
|
|
75
|
+
full_no_qt = [
|
|
76
|
+
"tomwer[full_base]",
|
|
77
|
+
"nabu[full]>=2024.2.0",
|
|
78
|
+
"pycuda<2024.1.1",
|
|
79
|
+
"scikit-cuda",
|
|
80
|
+
"PyQt6",
|
|
81
|
+
'qtawesome', # For icons
|
|
82
|
+
]
|
|
83
|
+
full = [
|
|
84
|
+
"tomwer[full_no_qt]",
|
|
85
|
+
"PyQt6",
|
|
86
|
+
]
|
|
87
|
+
doc = [
|
|
88
|
+
"tomwer[full_no_cuda]",
|
|
89
|
+
"Sphinx>=4.0.0",
|
|
90
|
+
"nbsphinx",
|
|
91
|
+
"pandoc",
|
|
92
|
+
"jupyterlab",
|
|
93
|
+
"pydata_sphinx_theme",
|
|
94
|
+
"sphinx-design",
|
|
95
|
+
"sphinx-autodoc-typehints",
|
|
96
|
+
"sphinxcontrib-programoutput",
|
|
97
|
+
"sphinxcontrib-youtube",
|
|
98
|
+
"myst-parser",
|
|
99
|
+
"nb_extension_tagstyler",
|
|
100
|
+
"ewokssphinx",
|
|
101
|
+
]
|
|
102
|
+
dev_spec = [
|
|
103
|
+
"black",
|
|
104
|
+
"flake8",
|
|
105
|
+
"timeout-decorator",
|
|
106
|
+
"pyopencl",
|
|
107
|
+
]
|
|
108
|
+
dev = [
|
|
109
|
+
"tomwer[full]",
|
|
110
|
+
"tomwer[dev_spec]"
|
|
111
|
+
]
|
|
112
|
+
dev_no_cuda = [
|
|
113
|
+
"tomwer[full_no_cuda]",
|
|
114
|
+
"tomwer[dev_spec]"
|
|
115
|
+
]
|
|
116
|
+
test = [
|
|
117
|
+
"tomwer[full_no_cuda]",
|
|
118
|
+
"pytest-asyncio",
|
|
119
|
+
"tomoscan[test]>=2.4.0dev0",
|
|
120
|
+
]
|
|
121
|
+
|
|
122
|
+
[project.urls]
|
|
123
|
+
Homepage = "https://gitlab.esrf.fr/tomotools/tomwer"
|
|
124
|
+
Documentation = "https://tomotools.gitlab-pages.esrf.fr/tomwer/"
|
|
125
|
+
Repository = "https://gitlab.esrf.fr/tomotools/tomwer"
|
|
126
|
+
Issues = "https://gitlab.esrf.fr/tomotools/tomwer/-/issues"
|
|
127
|
+
Changelog = "https://gitlab.esrf.fr/tomotools/tomwer/-/blob/main/CHANGELOG.rst?ref_type=heads"
|
|
128
|
+
|
|
129
|
+
[build-system]
|
|
130
|
+
requires = ["setuptools>=61.0", "wheel", "numpy>=1.12"]
|
|
131
|
+
build-backend = "setuptools.build_meta"
|
|
132
|
+
|
|
133
|
+
[tool.setuptools.dynamic]
|
|
134
|
+
version = { attr = "tomwer.__version__" }
|
|
135
|
+
|
|
136
|
+
[tool.setuptools.packages.find]
|
|
137
|
+
where = ["src"]
|
|
138
|
+
|
|
139
|
+
[project.scripts]
|
|
140
|
+
tomwer = "tomwer.__main__:main"
|
|
141
|
+
|
|
142
|
+
[project.entry-points."orange3.addon"]
|
|
143
|
+
tomwer-add-on = "orangecontrib.tomwer:addon"
|
|
144
|
+
|
|
145
|
+
[project.entry-points."orange.widgets"]
|
|
146
|
+
tomwer = "orangecontrib.tomwer.widgets"
|
|
147
|
+
|
|
148
|
+
[project.entry-points."orangecanvas.examples"]
|
|
149
|
+
tomo_examples = "orangecontrib.tomwer.examples"
|
|
150
|
+
|
|
151
|
+
[project.entry-points."orange.widgets.tutorials"]
|
|
152
|
+
tomo_tutorials = "orangecontrib.tomwer.tutorials"
|
|
153
|
+
tomo_tutorials_id16b = "orangecontrib.tomwer.tutorials.id16b"
|
|
154
|
+
|
|
155
|
+
[project.entry-points."orange.canvas.help"]
|
|
156
|
+
html-index = "orangecontrib.tomwer.widgets:WIDGET_HELP_PATH"
|
|
157
|
+
|
|
158
|
+
[project.entry-points."ewoks.tasks.class"]
|
|
159
|
+
"tomwer.tasks.*.*" = "tomwer"
|
|
160
|
+
|
|
161
|
+
[tool.setuptools.package-data]
|
|
162
|
+
"tomwer.resources" = [
|
|
163
|
+
"gui/icons/*.png",
|
|
164
|
+
"gui/icons/*.svg",
|
|
165
|
+
"gui/icons/*.npy",
|
|
166
|
+
"gui/illustrations/*.svg",
|
|
167
|
+
"gui/illustrations/*.png"
|
|
168
|
+
]
|
|
169
|
+
"orangecontrib.tomwer" = [
|
|
170
|
+
"tutorials/*.ows",
|
|
171
|
+
"tutorials/id16b/*.ows",
|
|
172
|
+
"widgets/icons/*.png",
|
|
173
|
+
"widgets/icons/*.svg",
|
|
174
|
+
"widgets/cluster/icons/*.png",
|
|
175
|
+
"widgets/cluster/icons/*.svg",
|
|
176
|
+
"widgets/control/icons/*.png",
|
|
177
|
+
"widgets/control/icons/*.svg",
|
|
178
|
+
"widgets/debugtools/icons/*.png",
|
|
179
|
+
"widgets/debugtools/icons/*.svg",
|
|
180
|
+
"widgets/deprecated/icons/*.png",
|
|
181
|
+
"widgets/deprecated/icons/*.svg",
|
|
182
|
+
"widgets/edit/icons/*.png",
|
|
183
|
+
"widgets/edit/icons/*.svg",
|
|
184
|
+
"widgets/dataportal/icons/*.png",
|
|
185
|
+
"widgets/dataportal/icons/*.svg",
|
|
186
|
+
"widgets/reconstruction/icons/*.png",
|
|
187
|
+
"widgets/reconstruction/icons/*.svg",
|
|
188
|
+
"widgets/visualization/icons/*.png",
|
|
189
|
+
"widgets/visualization/icons/*.svg",
|
|
190
|
+
"widgets/other/icons/*.png",
|
|
191
|
+
"widgets/other/icons/*.svg"
|
|
192
|
+
]
|
|
193
|
+
|
|
194
|
+
[tool.sphinx]
|
|
195
|
+
source-dir = "./doc"
|
|
196
|
+
|
|
197
|
+
[tool.coverage.run]
|
|
198
|
+
omit = ["setup.py", "*/test/*"]
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import functools
|
|
4
|
+
import logging
|
|
5
|
+
|
|
6
|
+
from orangewidget.widget import OWBaseWidget
|
|
7
|
+
from processview.core.manager import DatasetState, ProcessManager
|
|
8
|
+
from processview.core.superviseprocess import SuperviseProcess
|
|
9
|
+
|
|
10
|
+
_logger = logging.getLogger(__name__)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class _SuperviseBase(SuperviseProcess):
|
|
14
|
+
"""
|
|
15
|
+
MIxIn class for orange widgets that are doing some processing.
|
|
16
|
+
It provides API to:
|
|
17
|
+
* notify the ProcessManager a modification of a dataset / processing state.
|
|
18
|
+
* signal start and stop of a processing.
|
|
19
|
+
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
def __init__(self, process_id=None):
|
|
23
|
+
super().__init__(process_id=process_id)
|
|
24
|
+
self.destroyed.connect(functools.partial(ProcessManager().unregister, self))
|
|
25
|
+
|
|
26
|
+
def setCaption(self, caption):
|
|
27
|
+
self.name = caption
|
|
28
|
+
try:
|
|
29
|
+
ProcessManager().process_renamed(process=self)
|
|
30
|
+
except Exception as e:
|
|
31
|
+
_logger.warning(f"Fail to update process name. Error is {e}")
|
|
32
|
+
|
|
33
|
+
def notify_skip(self, scan, details=None):
|
|
34
|
+
ProcessManager().notify_dataset_state(
|
|
35
|
+
dataset=scan, process=self, state=DatasetState.SKIPPED, details=details
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
def notify_pending(self, scan, details=None):
|
|
39
|
+
ProcessManager().notify_dataset_state(
|
|
40
|
+
dataset=scan, process=self, state=DatasetState.PENDING, details=details
|
|
41
|
+
)
|
|
42
|
+
|
|
43
|
+
def notify_succeed(self, scan, details=None):
|
|
44
|
+
ProcessManager().notify_dataset_state(
|
|
45
|
+
dataset=scan, process=self, state=DatasetState.SUCCEED, details=details
|
|
46
|
+
)
|
|
47
|
+
|
|
48
|
+
def notify_failed(self, scan, details=None):
|
|
49
|
+
ProcessManager().notify_dataset_state(
|
|
50
|
+
dataset=scan, process=self, state=DatasetState.FAILED, details=details
|
|
51
|
+
)
|
|
52
|
+
|
|
53
|
+
def notify_on_going(self, scan, details=None):
|
|
54
|
+
ProcessManager().notify_dataset_state(
|
|
55
|
+
dataset=scan, process=self, state=DatasetState.ON_GOING, details=details
|
|
56
|
+
)
|
|
57
|
+
|
|
58
|
+
def _startProcessing(self, *args, **kwargs):
|
|
59
|
+
self.progressBarInit()
|
|
60
|
+
self.progressBarSet(-1)
|
|
61
|
+
|
|
62
|
+
def _endProcessing(self, *args, **kwargs):
|
|
63
|
+
self.progressBarFinished()
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
class SuperviseOW(OWBaseWidget, _SuperviseBase, openclass=True):
|
|
67
|
+
"""
|
|
68
|
+
A basic OWWidget but registered on the process manager and that can notify processing state to the orange-canvas
|
|
69
|
+
"""
|
|
70
|
+
|
|
71
|
+
want_control_area = False
|
|
72
|
+
|
|
73
|
+
def __init__(self, parent, process_id=None):
|
|
74
|
+
OWBaseWidget.__init__(self, parent, process_id=process_id)
|
|
75
|
+
_SuperviseBase.__init__(self, process_id=process_id)
|
|
76
|
+
|
|
77
|
+
def setCaption(self, caption):
|
|
78
|
+
OWBaseWidget.setCaption(self, caption)
|
|
79
|
+
_SuperviseBase.setCaption(self, caption=caption)
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
from ewoksorange.gui.owwidgets.nothread import OWEwoksWidgetNoThread
|
|
2
|
+
from ...orange.managedprocess import _SuperviseBase
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class TomwerWidgetNoThread(OWEwoksWidgetNoThread, _SuperviseBase, openclass=True):
|
|
6
|
+
want_main_area = True
|
|
7
|
+
want_control_area = False
|
|
8
|
+
resizing_enabled = True
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
from ewoksorange.gui.owwidgets.threaded import OWEwoksWidgetOneThreadPerRun
|
|
2
|
+
from ...orange.managedprocess import _SuperviseBase
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class TomwerWidgetOneThreadPerRun(
|
|
6
|
+
OWEwoksWidgetOneThreadPerRun, _SuperviseBase, openclass=True
|
|
7
|
+
):
|
|
8
|
+
"""
|
|
9
|
+
This widget make sure all input on "data" are triggering the workflow.
|
|
10
|
+
|
|
11
|
+
This is a work around for https://gitlab.esrf.fr/workflow/ewoks/ewoksorange/-/issues/60
|
|
12
|
+
|
|
13
|
+
Task are expected to have "data" as input and define the outputs from the pydantic model.
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
want_main_area = True
|
|
17
|
+
want_control_area = False
|
|
18
|
+
resizing_enabled = True
|
|
19
|
+
|
|
20
|
+
def __init__(self, *args, **kwargs):
|
|
21
|
+
OWEwoksWidgetOneThreadPerRun.__init__(self, *args, **kwargs)
|
|
22
|
+
_SuperviseBase.__init__(self)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from ewoksorange.gui.owwidgets.threaded import OWEwoksWidgetWithTaskStack
|
|
2
|
+
from ...orange.managedprocess import _SuperviseBase
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class TomwerWidgetWithStack(OWEwoksWidgetWithTaskStack, _SuperviseBase, openclass=True):
|
|
6
|
+
|
|
7
|
+
want_main_area = True
|
|
8
|
+
want_control_area = False
|
|
9
|
+
resizing_enabled = True
|
|
10
|
+
|
|
11
|
+
def __init__(self, parent, process_id=None, *args, **kwargs):
|
|
12
|
+
OWEwoksWidgetWithTaskStack.__init__(self, parent, args, kwargs)
|
|
13
|
+
_SuperviseBase.__init__(self, process_id=process_id)
|
|
14
|
+
|
|
15
|
+
self.task_executor_queue.sigComputationStarted.connect(self._startProcessing)
|
|
16
|
+
self.task_executor_queue.sigComputationEnded.connect(self._endProcessing)
|
|
17
|
+
|
|
18
|
+
def setCaption(self, caption):
|
|
19
|
+
OWEwoksWidgetWithTaskStack.setCaption(self, caption)
|
|
20
|
+
_SuperviseBase.setCaption(self, caption=caption)
|