tomwer 1.1.1__tar.gz → 1.2.0a0__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-1.2.0a0/PKG-INFO +177 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/__init__.py +6 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/orange/managedprocess.py +114 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/state_summary.py +50 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/__init__.py +62 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py +244 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py +99 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/AdvancementOW.py +66 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py +235 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/DataListOW.py +128 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/DataListenerOW.py +409 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/DataSelectorOW.py +135 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/DataTransfertOW.py +223 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/DataValidatorOW.py +195 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/DataWatcherOW.py +208 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +234 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/FilterOW.py +128 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +92 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/NXTomomillOW.py +312 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/NotifierOW.py +127 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +144 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/TimerOW.py +130 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/TomoObjSerieOW.py +87 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/VolumeSelector.py +140 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/VolumeSymLinkOW.py +188 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/icons/datadiscover.png +0 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/icons/datadiscover.svg +137 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/icons/nxtomomill.png +0 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/icons/nxtomomill.svg +168 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py +177 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/debugtools/ObjectInspectorOW.py +66 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py +183 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py +134 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py +127 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py +103 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/edit/test/test_dark_flat_patch.py +76 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/edit/test/test_image_key_editor.py +56 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/edit/test/test_image_key_upgrader.py +56 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/edit/test/test_nxtomo_editor.py +27 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/other/PythonScriptOW.py +787 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/AxisOW.py +559 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +235 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py +256 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/NabuOW.py +285 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py +454 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py +469 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py +393 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py +307 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/TofuOW.py +196 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +141 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +79 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/visualization/LivesliceOW.py +88 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py +70 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/visualization/RadioStackOW.py +94 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py +115 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py +95 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/visualization/SliceStackOW.py +109 -0
- tomwer-1.2.0a0/orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py +88 -0
- tomwer-1.2.0a0/setup.cfg +150 -0
- tomwer-1.2.0a0/setup.py +35 -0
- tomwer-1.2.0a0/tomwer/__init__.py +43 -0
- tomwer-1.2.0a0/tomwer/__main__.py +173 -0
- tomwer-1.2.0a0/tomwer/app/axis.py +210 -0
- tomwer-1.2.0a0/tomwer/app/canvas.py +55 -0
- tomwer-1.2.0a0/tomwer/app/canvas_launcher/config.py +206 -0
- tomwer-1.2.0a0/tomwer/app/canvas_launcher/environ.py +92 -0
- tomwer-1.2.0a0/tomwer/app/canvas_launcher/mainwindow.py +381 -0
- tomwer-1.2.0a0/tomwer/app/canvas_launcher/splash.py +26 -0
- tomwer-1.2.0a0/tomwer/app/canvas_launcher/widgetsscheme.py +96 -0
- tomwer-1.2.0a0/tomwer/app/darkref.py +181 -0
- tomwer-1.2.0a0/tomwer/app/darkrefpatch.py +131 -0
- tomwer-1.2.0a0/tomwer/app/diffframe.py +93 -0
- tomwer-1.2.0a0/tomwer/app/imagekeyeditor.py +104 -0
- tomwer-1.2.0a0/tomwer/app/imagekeyupgrader.py +106 -0
- tomwer-1.2.0a0/tomwer/app/intensitynormalization.py +207 -0
- tomwer-1.2.0a0/tomwer/app/lamino.py +138 -0
- tomwer-1.2.0a0/tomwer/app/nabuapp.py +257 -0
- tomwer-1.2.0a0/tomwer/app/nxtomoeditor.py +104 -0
- tomwer-1.2.0a0/tomwer/app/radiostack.py +83 -0
- tomwer-1.2.0a0/tomwer/app/rsync.py +120 -0
- tomwer-1.2.0a0/tomwer/app/saaxis.py +286 -0
- tomwer-1.2.0a0/tomwer/app/sadeltabeta.py +348 -0
- tomwer-1.2.0a0/tomwer/app/samplemoved.py +80 -0
- tomwer-1.2.0a0/tomwer/app/scanviewer.py +83 -0
- tomwer-1.2.0a0/tomwer/app/sinogramviewer.py +111 -0
- tomwer-1.2.0a0/tomwer/app/slicestack.py +80 -0
- tomwer-1.2.0a0/tomwer/app/stopdatalistener.py +39 -0
- tomwer-1.2.0a0/tomwer/core/futureobject.py +183 -0
- tomwer-1.2.0a0/tomwer/core/log/logger.py +128 -0
- tomwer-1.2.0a0/tomwer/core/log/processlog.py +106 -0
- tomwer-1.2.0a0/tomwer/core/process/conditions/filters.py +217 -0
- tomwer-1.2.0a0/tomwer/core/process/control/datadiscovery.py +7 -0
- tomwer-1.2.0a0/tomwer/core/process/control/datalistener/datalistener.py +587 -0
- tomwer-1.2.0a0/tomwer/core/process/control/datalistener/rpcserver.py +306 -0
- tomwer-1.2.0a0/tomwer/core/process/control/datawatcher/datawatcher.py +462 -0
- tomwer-1.2.0a0/tomwer/core/process/control/datawatcher/datawatcherobserver.py +682 -0
- tomwer-1.2.0a0/tomwer/core/process/control/datawatcher/datawatcherprocess.py +249 -0
- tomwer-1.2.0a0/tomwer/core/process/control/datawatcher/edfdwprocess.py +208 -0
- tomwer-1.2.0a0/tomwer/core/process/control/datawatcher/hdf5dwprocess.py +83 -0
- tomwer-1.2.0a0/tomwer/core/process/control/datawatcher/status.py +77 -0
- tomwer-1.2.0a0/tomwer/core/process/control/nxtomomill.py +134 -0
- tomwer-1.2.0a0/tomwer/core/process/control/scanlist.py +51 -0
- tomwer-1.2.0a0/tomwer/core/process/control/scanselector.py +8 -0
- tomwer-1.2.0a0/tomwer/core/process/control/scantransfer.py +690 -0
- tomwer-1.2.0a0/tomwer/core/process/control/scanvalidator.py +285 -0
- tomwer-1.2.0a0/tomwer/core/process/control/test/test_volume_link.py +73 -0
- tomwer-1.2.0a0/tomwer/core/process/control/timer.py +84 -0
- tomwer-1.2.0a0/tomwer/core/process/control/volumeselector.py +10 -0
- tomwer-1.2.0a0/tomwer/core/process/control/volumesymlink.py +161 -0
- tomwer-1.2.0a0/tomwer/core/process/edit/darkflatpatch.py +116 -0
- tomwer-1.2.0a0/tomwer/core/process/edit/imagekeyeditor.py +231 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/axis/axis.py +995 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/axis/mode.py +95 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/axis/params.py +916 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/darkref/darkrefs.py +609 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/darkref/darkrefscopy.py +354 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/darkref/params.py +285 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/lamino/tofu.py +980 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/nabu/castvolume.py +251 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/nabu/nabucommon.py +617 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/nabu/nabuscores.py +309 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/nabu/nabuslices.py +795 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/nabu/nabuvolume.py +459 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/nabu/utils.py +461 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/normalization/__init__.py +2 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/normalization/normalization.py +357 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/normalization/params.py +166 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/saaxis/__init__.py +2 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/saaxis/params.py +162 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/saaxis/saaxis.py +702 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/sadeltabeta/__init__.py +2 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/sadeltabeta/params.py +107 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +594 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/scores/__init__.py +6 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/scores/params.py +198 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/scores/scores.py +217 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/test/test_axis_params.py +61 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/test/test_darkref.py +60 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/test/test_darkref_copy.py +202 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/test/test_paramsbase.py +34 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/test/test_saaxis.py +105 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/test/test_sadeltabeta.py +71 -0
- tomwer-1.2.0a0/tomwer/core/process/reconstruction/test/test_utils.py +29 -0
- tomwer-1.2.0a0/tomwer/core/process/script/python.py +101 -0
- tomwer-1.2.0a0/tomwer/core/process/task.py +506 -0
- tomwer-1.2.0a0/tomwer/core/process/test/test_axis.py +298 -0
- tomwer-1.2.0a0/tomwer/core/process/test/test_conditions.py +92 -0
- tomwer-1.2.0a0/tomwer/core/process/test/test_dark_and_flat.py +383 -0
- tomwer-1.2.0a0/tomwer/core/process/test/test_data_listener.py +114 -0
- tomwer-1.2.0a0/tomwer/core/process/test/test_data_transfer.py +379 -0
- tomwer-1.2.0a0/tomwer/core/process/test/test_data_watcher.py +82 -0
- tomwer-1.2.0a0/tomwer/core/process/test/test_lamino.py +76 -0
- tomwer-1.2.0a0/tomwer/core/process/test/test_nabu.py +478 -0
- tomwer-1.2.0a0/tomwer/core/process/test/test_normalization.py +103 -0
- tomwer-1.2.0a0/tomwer/core/process/test/test_timer.py +77 -0
- tomwer-1.2.0a0/tomwer/core/process/utils.py +114 -0
- tomwer-1.2.0a0/tomwer/core/progress.py +100 -0
- tomwer-1.2.0a0/tomwer/core/scan/blissscan.py +262 -0
- tomwer-1.2.0a0/tomwer/core/scan/edfscan.py +605 -0
- tomwer-1.2.0a0/tomwer/core/scan/futurescan.py +8 -0
- tomwer-1.2.0a0/tomwer/core/scan/hdf5scan.py +509 -0
- tomwer-1.2.0a0/tomwer/core/scan/scanbase.py +864 -0
- tomwer-1.2.0a0/tomwer/core/scan/scanfactory.py +254 -0
- tomwer-1.2.0a0/tomwer/core/scan/scantype.py +7 -0
- tomwer-1.2.0a0/tomwer/core/scan/test/test_edf.py +53 -0
- tomwer-1.2.0a0/tomwer/core/scan/test/test_future_scan.py +61 -0
- tomwer-1.2.0a0/tomwer/core/scan/test/test_h5.py +116 -0
- tomwer-1.2.0a0/tomwer/core/scan/test/test_process_registration.py +145 -0
- tomwer-1.2.0a0/tomwer/core/scan/test/test_scan.py +446 -0
- tomwer-1.2.0a0/tomwer/core/settings.py +112 -0
- tomwer-1.2.0a0/tomwer/core/test/test_lamino.py +91 -0
- tomwer-1.2.0a0/tomwer/core/test/test_scanutils.py +52 -0
- tomwer-1.2.0a0/tomwer/core/test/test_utils.py +292 -0
- tomwer-1.2.0a0/tomwer/core/utils/__init__.py +450 -0
- tomwer-1.2.0a0/tomwer/core/utils/deprecation.py +135 -0
- tomwer-1.2.0a0/tomwer/core/utils/image.py +157 -0
- tomwer-1.2.0a0/tomwer/core/utils/locker.py +66 -0
- tomwer-1.2.0a0/tomwer/core/utils/normalization.py +85 -0
- tomwer-1.2.0a0/tomwer/core/utils/nxtomoutils.py +65 -0
- tomwer-1.2.0a0/tomwer/core/utils/scanutils.py +446 -0
- tomwer-1.2.0a0/tomwer/core/utils/slurm.py +51 -0
- tomwer-1.2.0a0/tomwer/core/utils/time.py +48 -0
- tomwer-1.2.0a0/tomwer/core/utils/volumeutils.py +14 -0
- tomwer-1.2.0a0/tomwer/core/volume/__init__.py +5 -0
- tomwer-1.2.0a0/tomwer/core/volume/edfvolume.py +76 -0
- tomwer-1.2.0a0/tomwer/core/volume/hdf5volume.py +93 -0
- tomwer-1.2.0a0/tomwer/core/volume/jp2kvolume.py +78 -0
- tomwer-1.2.0a0/tomwer/core/volume/rawvolume.py +90 -0
- tomwer-1.2.0a0/tomwer/core/volume/tiffvolume.py +124 -0
- tomwer-1.2.0a0/tomwer/core/volume/volumebase.py +50 -0
- tomwer-1.2.0a0/tomwer/core/volume/volumefactory.py +183 -0
- tomwer-1.2.0a0/tomwer/gui/cluster/slurm.py +363 -0
- tomwer-1.2.0a0/tomwer/gui/cluster/supervisor.py +424 -0
- tomwer-1.2.0a0/tomwer/gui/cluster/test/test_cluster.py +78 -0
- tomwer-1.2.0a0/tomwer/gui/cluster/test/test_supervisor.py +91 -0
- tomwer-1.2.0a0/tomwer/gui/conditions/filter.py +143 -0
- tomwer-1.2.0a0/tomwer/gui/control/actions.py +70 -0
- tomwer-1.2.0a0/tomwer/gui/control/datadiscovery.py +168 -0
- tomwer-1.2.0a0/tomwer/gui/control/datalist.py +1017 -0
- tomwer-1.2.0a0/tomwer/gui/control/datalistener.py +489 -0
- tomwer-1.2.0a0/tomwer/gui/control/datareacheractions.py +77 -0
- tomwer-1.2.0a0/tomwer/gui/control/datatransfert.py +151 -0
- tomwer-1.2.0a0/tomwer/gui/control/datavalidator.py +400 -0
- tomwer-1.2.0a0/tomwer/gui/control/datawatcher/configuration.py +250 -0
- tomwer-1.2.0a0/tomwer/gui/control/datawatcher/controlwidget.py +116 -0
- tomwer-1.2.0a0/tomwer/gui/control/datawatcher/datawatcher.py +603 -0
- tomwer-1.2.0a0/tomwer/gui/control/datawatcher/datawatcherobserver.py +294 -0
- tomwer-1.2.0a0/tomwer/gui/control/history.py +133 -0
- tomwer-1.2.0a0/tomwer/gui/control/observations.py +219 -0
- tomwer-1.2.0a0/tomwer/gui/control/scanselectorwidget.py +66 -0
- tomwer-1.2.0a0/tomwer/gui/control/selectorwidgetbase.py +138 -0
- tomwer-1.2.0a0/tomwer/gui/control/serie/seriecreator.py +966 -0
- tomwer-1.2.0a0/tomwer/gui/control/singletomoobj.py +157 -0
- tomwer-1.2.0a0/tomwer/gui/control/test/test_datadiscovery.py +27 -0
- tomwer-1.2.0a0/tomwer/gui/control/test/test_datalist.py +96 -0
- tomwer-1.2.0a0/tomwer/gui/control/test/test_datalistener.py +78 -0
- tomwer-1.2.0a0/tomwer/gui/control/test/test_datavalidator.py +54 -0
- tomwer-1.2.0a0/tomwer/gui/control/test/test_inputwidget.py +79 -0
- tomwer-1.2.0a0/tomwer/gui/control/test/test_process_manager.py +65 -0
- tomwer-1.2.0a0/tomwer/gui/control/test/test_scanselector.py +67 -0
- tomwer-1.2.0a0/tomwer/gui/control/test/test_scanvalidator.py +115 -0
- tomwer-1.2.0a0/tomwer/gui/control/test/test_single_tomo_obj.py +71 -0
- tomwer-1.2.0a0/tomwer/gui/control/test/test_volume_dialog.py +216 -0
- tomwer-1.2.0a0/tomwer/gui/control/test/test_volumeselector.py +94 -0
- tomwer-1.2.0a0/tomwer/gui/control/volumeselectorwidget.py +60 -0
- tomwer-1.2.0a0/tomwer/gui/debugtools/datasetgenerator.py +280 -0
- tomwer-1.2.0a0/tomwer/gui/debugtools/objectinspector.py +71 -0
- tomwer-1.2.0a0/tomwer/gui/edit/dkrfpatch.py +483 -0
- tomwer-1.2.0a0/tomwer/gui/edit/imagekeyeditor.py +823 -0
- tomwer-1.2.0a0/tomwer/gui/edit/nxtomoeditor.py +476 -0
- tomwer-1.2.0a0/tomwer/gui/edit/test/test_dkrf_patch.py +212 -0
- tomwer-1.2.0a0/tomwer/gui/edit/test/test_image_key_editor.py +170 -0
- tomwer-1.2.0a0/tomwer/gui/edit/test/test_nx_editor.py +157 -0
- tomwer-1.2.0a0/tomwer/gui/icons.py +404 -0
- tomwer-1.2.0a0/tomwer/gui/illustrations.py +159 -0
- tomwer-1.2.0a0/tomwer/gui/imagefromfile.py +157 -0
- tomwer-1.2.0a0/tomwer/gui/qfolderdialog.py +570 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/axis/CompareImages.py +409 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/axis/__init__.py +2 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/axis/axis.py +612 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/axis/radioaxis.py +2590 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/darkref/darkrefcopywidget.py +299 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/darkref/darkrefwidget.py +444 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/lamino/tofu/misc.py +148 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/lamino/tofu/projections.py +896 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/lamino/tofu/tofu.py +432 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/lamino/tofu/tofuexpert.py +567 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/lamino/tofu/tofuoutput.py +760 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/action.py +120 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/castvolume.py +283 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/check.py +115 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/nabuconfig/base.py +98 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py +355 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py +296 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/nabuconfig/output.py +257 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +378 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +536 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +988 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/nabuflow.py +475 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/slices.py +625 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/slurm.py +204 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/volume.py +475 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/normalization/intensity.py +922 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/saaxis/corrangeselector.py +830 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/saaxis/dimensionwidget.py +260 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/saaxis/saaxis.py +525 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/saaxis/sliceselector.py +338 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py +500 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/scores/scoreplot.py +884 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/test/test_axis.py +204 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/test/test_lamino.py +189 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/test/test_nabu.py +359 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/test/test_saaxis.py +214 -0
- tomwer-1.2.0a0/tomwer/gui/reconstruction/test/test_sadeltabeta.py +141 -0
- tomwer-1.2.0a0/tomwer/gui/samplemoved/__init__.py +253 -0
- tomwer-1.2.0a0/tomwer/gui/samplemoved/selectiontable.py +262 -0
- tomwer-1.2.0a0/tomwer/gui/stackplot.py +724 -0
- tomwer-1.2.0a0/tomwer/gui/stacks.py +236 -0
- tomwer-1.2.0a0/tomwer/gui/test/test_axis_gui.py +27 -0
- tomwer-1.2.0a0/tomwer/gui/test/test_qfolder_dialog.py +13 -0
- tomwer-1.2.0a0/tomwer/gui/utils/__init__.py +85 -0
- tomwer-1.2.0a0/tomwer/gui/utils/buttons.py +102 -0
- tomwer-1.2.0a0/tomwer/gui/utils/completer.py +141 -0
- tomwer-1.2.0a0/tomwer/gui/utils/flow.py +348 -0
- tomwer-1.2.0a0/tomwer/gui/utils/illustrations.py +123 -0
- tomwer-1.2.0a0/tomwer/gui/utils/inputwidget.py +428 -0
- tomwer-1.2.0a0/tomwer/gui/utils/lineselector/lineselector.py +232 -0
- tomwer-1.2.0a0/tomwer/gui/utils/qt_utils.py +12 -0
- tomwer-1.2.0a0/tomwer/gui/utils/scandescription.py +79 -0
- tomwer-1.2.0a0/tomwer/gui/utils/splashscreen.py +47 -0
- tomwer-1.2.0a0/tomwer/gui/utils/unitsystem.py +184 -0
- tomwer-1.2.0a0/tomwer/gui/utils/vignettes.py +392 -0
- tomwer-1.2.0a0/tomwer/gui/utils/waiterthread.py +49 -0
- tomwer-1.2.0a0/tomwer/gui/visualization/dataviewer.py +650 -0
- tomwer-1.2.0a0/tomwer/gui/visualization/diffviewer/diffviewer.py +557 -0
- tomwer-1.2.0a0/tomwer/gui/visualization/diffviewer/shiftwidget.py +562 -0
- tomwer-1.2.0a0/tomwer/gui/visualization/nxtomometadata.py +22 -0
- tomwer-1.2.0a0/tomwer/gui/visualization/reconstructionparameters.py +373 -0
- tomwer-1.2.0a0/tomwer/gui/visualization/scanoverview.py +249 -0
- tomwer-1.2.0a0/tomwer/gui/visualization/sinogramviewer.py +291 -0
- tomwer-1.2.0a0/tomwer/gui/visualization/test/test_dataviewer.py +72 -0
- tomwer-1.2.0a0/tomwer/gui/visualization/test/test_diffviewer.py +99 -0
- tomwer-1.2.0a0/tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py +74 -0
- tomwer-1.2.0a0/tomwer/gui/visualization/test/test_reconstruction_parameters.py +68 -0
- tomwer-1.2.0a0/tomwer/gui/visualization/test/test_sinogramviewer.py +85 -0
- tomwer-1.2.0a0/tomwer/gui/visualization/test/test_stacks.py +134 -0
- tomwer-1.2.0a0/tomwer/gui/visualization/test/test_volumeviewer.py +84 -0
- tomwer-1.2.0a0/tomwer/gui/visualization/tomoobjoverview.py +52 -0
- tomwer-1.2.0a0/tomwer/gui/visualization/volumeoverview.py +66 -0
- tomwer-1.2.0a0/tomwer/gui/visualization/volumeviewer.py +432 -0
- tomwer-1.2.0a0/tomwer/io/utils/__init__.py +5 -0
- tomwer-1.2.0a0/tomwer/io/utils/h5pyutils.py +78 -0
- tomwer-1.2.0a0/tomwer/io/utils/utils.py +272 -0
- tomwer-1.2.0a0/tomwer/resources/__init__.py +144 -0
- tomwer-1.2.0a0/tomwer/resources/gui/icons/nabu.png +0 -0
- tomwer-1.2.0a0/tomwer/resources/gui/icons/nabu.svg +105 -0
- tomwer-1.2.0a0/tomwer/synctools/axis.py +54 -0
- tomwer-1.2.0a0/tomwer/synctools/darkref.py +48 -0
- tomwer-1.2.0a0/tomwer/synctools/datalistener.py +270 -0
- tomwer-1.2.0a0/tomwer/synctools/datatransfert.py +42 -0
- tomwer-1.2.0a0/tomwer/synctools/imageloaderthread.py +79 -0
- tomwer-1.2.0a0/tomwer/synctools/rsyncmanager.py +193 -0
- tomwer-1.2.0a0/tomwer/synctools/saaxis.py +54 -0
- tomwer-1.2.0a0/tomwer/synctools/sadeltabeta.py +54 -0
- tomwer-1.2.0a0/tomwer/synctools/stacks/control/datalistener.py +136 -0
- tomwer-1.2.0a0/tomwer/synctools/stacks/edit/darkflatpatch.py +159 -0
- tomwer-1.2.0a0/tomwer/synctools/stacks/edit/imagekeyeditor.py +154 -0
- tomwer-1.2.0a0/tomwer/synctools/stacks/processingstack.py +161 -0
- tomwer-1.2.0a0/tomwer/synctools/stacks/reconstruction/axis.py +217 -0
- tomwer-1.2.0a0/tomwer/synctools/stacks/reconstruction/castvolume.py +197 -0
- tomwer-1.2.0a0/tomwer/synctools/stacks/reconstruction/dkrefcopy.py +176 -0
- tomwer-1.2.0a0/tomwer/synctools/stacks/reconstruction/lamino.py +233 -0
- tomwer-1.2.0a0/tomwer/synctools/stacks/reconstruction/nabu.py +296 -0
- tomwer-1.2.0a0/tomwer/synctools/stacks/reconstruction/normalization.py +135 -0
- tomwer-1.2.0a0/tomwer/synctools/stacks/reconstruction/saaxis.py +196 -0
- tomwer-1.2.0a0/tomwer/synctools/stacks/reconstruction/sadeltabeta.py +199 -0
- tomwer-1.2.0a0/tomwer/synctools/test/test_darkRefs.py +465 -0
- tomwer-1.2.0a0/tomwer/synctools/test/test_foldertransfer.py +407 -0
- tomwer-1.2.0a0/tomwer/synctools/test/test_scanstages.py +162 -0
- tomwer-1.2.0a0/tomwer/synctools/utils/scanstages.py +207 -0
- tomwer-1.2.0a0/tomwer/tests/conftest.py +51 -0
- tomwer-1.2.0a0/tomwer/tests/test_scripts.py +111 -0
- tomwer-1.2.0a0/tomwer/tests/utils/__init__.py +247 -0
- tomwer-1.2.0a0/tomwer/tests/utils/utilstest.py +220 -0
- tomwer-1.2.0a0/tomwer/third_party/nabu/preproc/phase.py +389 -0
- tomwer-1.2.0a0/tomwer/third_party/nabu/utils.py +202 -0
- tomwer-1.2.0a0/tomwer/utils.py +254 -0
- tomwer-1.2.0a0/tomwer/version.py +134 -0
- tomwer-1.2.0a0/tomwer.egg-info/PKG-INFO +177 -0
- tomwer-1.2.0a0/tomwer.egg-info/SOURCES.txt +712 -0
- tomwer-1.2.0a0/tomwer.egg-info/requires.txt +167 -0
- tomwer-1.1.1/PKG-INFO +0 -177
- tomwer-1.1.1/orangecontrib/tomwer/__init__.py +0 -5
- tomwer-1.1.1/orangecontrib/tomwer/orange/managedprocess.py +0 -112
- tomwer-1.1.1/orangecontrib/tomwer/state_summary.py +0 -49
- tomwer-1.1.1/orangecontrib/tomwer/widgets/__init__.py +0 -62
- tomwer-1.1.1/orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py +0 -242
- tomwer-1.1.1/orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py +0 -98
- tomwer-1.1.1/orangecontrib/tomwer/widgets/control/AdvancementOW.py +0 -65
- tomwer-1.1.1/orangecontrib/tomwer/widgets/control/DataListOW.py +0 -126
- tomwer-1.1.1/orangecontrib/tomwer/widgets/control/DataListenerOW.py +0 -410
- tomwer-1.1.1/orangecontrib/tomwer/widgets/control/DataSelectorOW.py +0 -133
- tomwer-1.1.1/orangecontrib/tomwer/widgets/control/DataTransfertOW.py +0 -223
- tomwer-1.1.1/orangecontrib/tomwer/widgets/control/DataValidatorOW.py +0 -196
- tomwer-1.1.1/orangecontrib/tomwer/widgets/control/DataWatcherOW.py +0 -200
- tomwer-1.1.1/orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +0 -234
- tomwer-1.1.1/orangecontrib/tomwer/widgets/control/FilterOW.py +0 -127
- tomwer-1.1.1/orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +0 -93
- tomwer-1.1.1/orangecontrib/tomwer/widgets/control/NXTomomillOW.py +0 -313
- tomwer-1.1.1/orangecontrib/tomwer/widgets/control/NotifierOW.py +0 -128
- tomwer-1.1.1/orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +0 -142
- tomwer-1.1.1/orangecontrib/tomwer/widgets/control/TimerOW.py +0 -129
- tomwer-1.1.1/orangecontrib/tomwer/widgets/control/TomoObjSerieOW.py +0 -85
- tomwer-1.1.1/orangecontrib/tomwer/widgets/control/VolumeSelector.py +0 -138
- tomwer-1.1.1/orangecontrib/tomwer/widgets/control/VolumeSymLinkOW.py +0 -187
- tomwer-1.1.1/orangecontrib/tomwer/widgets/control/icons/nxtomomill.png +0 -0
- tomwer-1.1.1/orangecontrib/tomwer/widgets/control/icons/nxtomomill.svg +0 -171
- tomwer-1.1.1/orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py +0 -179
- tomwer-1.1.1/orangecontrib/tomwer/widgets/debugtools/ObjectInspectorOW.py +0 -65
- tomwer-1.1.1/orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py +0 -180
- tomwer-1.1.1/orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py +0 -131
- tomwer-1.1.1/orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py +0 -124
- tomwer-1.1.1/orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py +0 -100
- tomwer-1.1.1/orangecontrib/tomwer/widgets/edit/test/test_dark_flat_patch.py +0 -74
- tomwer-1.1.1/orangecontrib/tomwer/widgets/edit/test/test_image_key_editor.py +0 -54
- tomwer-1.1.1/orangecontrib/tomwer/widgets/edit/test/test_image_key_upgrader.py +0 -54
- tomwer-1.1.1/orangecontrib/tomwer/widgets/edit/test/test_nxtomo_editor.py +0 -25
- tomwer-1.1.1/orangecontrib/tomwer/widgets/other/PythonScriptOW.py +0 -787
- tomwer-1.1.1/orangecontrib/tomwer/widgets/reconstruction/AxisOW.py +0 -564
- tomwer-1.1.1/orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +0 -233
- tomwer-1.1.1/orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py +0 -254
- tomwer-1.1.1/orangecontrib/tomwer/widgets/reconstruction/NabuOW.py +0 -283
- tomwer-1.1.1/orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py +0 -459
- tomwer-1.1.1/orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py +0 -476
- tomwer-1.1.1/orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py +0 -395
- tomwer-1.1.1/orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py +0 -309
- tomwer-1.1.1/orangecontrib/tomwer/widgets/reconstruction/TofuOW.py +0 -194
- tomwer-1.1.1/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.png +0 -0
- tomwer-1.1.1/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.svg +0 -108
- tomwer-1.1.1/orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +0 -141
- tomwer-1.1.1/orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +0 -77
- tomwer-1.1.1/orangecontrib/tomwer/widgets/visualization/LivesliceOW.py +0 -87
- tomwer-1.1.1/orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py +0 -69
- tomwer-1.1.1/orangecontrib/tomwer/widgets/visualization/RadioStackOW.py +0 -92
- tomwer-1.1.1/orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py +0 -113
- tomwer-1.1.1/orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py +0 -92
- tomwer-1.1.1/orangecontrib/tomwer/widgets/visualization/SliceStackOW.py +0 -107
- tomwer-1.1.1/orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py +0 -87
- tomwer-1.1.1/setup.cfg +0 -150
- tomwer-1.1.1/setup.py +0 -36
- tomwer-1.1.1/tomwer/__init__.py +0 -43
- tomwer-1.1.1/tomwer/__main__.py +0 -172
- tomwer-1.1.1/tomwer/app/axis.py +0 -206
- tomwer-1.1.1/tomwer/app/canvas.py +0 -53
- tomwer-1.1.1/tomwer/app/canvas_launcher/config.py +0 -204
- tomwer-1.1.1/tomwer/app/canvas_launcher/environ.py +0 -93
- tomwer-1.1.1/tomwer/app/canvas_launcher/mainwindow.py +0 -380
- tomwer-1.1.1/tomwer/app/canvas_launcher/splash.py +0 -25
- tomwer-1.1.1/tomwer/app/canvas_launcher/widgetsscheme.py +0 -96
- tomwer-1.1.1/tomwer/app/darkref.py +0 -180
- tomwer-1.1.1/tomwer/app/darkrefpatch.py +0 -129
- tomwer-1.1.1/tomwer/app/diffframe.py +0 -91
- tomwer-1.1.1/tomwer/app/imagekeyeditor.py +0 -104
- tomwer-1.1.1/tomwer/app/imagekeyupgrader.py +0 -104
- tomwer-1.1.1/tomwer/app/intensitynormalization.py +0 -207
- tomwer-1.1.1/tomwer/app/lamino.py +0 -136
- tomwer-1.1.1/tomwer/app/nabuapp.py +0 -255
- tomwer-1.1.1/tomwer/app/nxtomoeditor.py +0 -103
- tomwer-1.1.1/tomwer/app/radiostack.py +0 -81
- tomwer-1.1.1/tomwer/app/rsync.py +0 -120
- tomwer-1.1.1/tomwer/app/saaxis.py +0 -287
- tomwer-1.1.1/tomwer/app/sadeltabeta.py +0 -348
- tomwer-1.1.1/tomwer/app/samplemoved.py +0 -78
- tomwer-1.1.1/tomwer/app/scanviewer.py +0 -82
- tomwer-1.1.1/tomwer/app/sinogramviewer.py +0 -110
- tomwer-1.1.1/tomwer/app/slicestack.py +0 -78
- tomwer-1.1.1/tomwer/app/stopdatalistener.py +0 -38
- tomwer-1.1.1/tomwer/core/futureobject.py +0 -174
- tomwer-1.1.1/tomwer/core/log/logger.py +0 -127
- tomwer-1.1.1/tomwer/core/log/processlog.py +0 -107
- tomwer-1.1.1/tomwer/core/process/conditions/filters.py +0 -217
- tomwer-1.1.1/tomwer/core/process/control/datalistener/datalistener.py +0 -586
- tomwer-1.1.1/tomwer/core/process/control/datalistener/rpcserver.py +0 -316
- tomwer-1.1.1/tomwer/core/process/control/datawatcher/datawatcher.py +0 -459
- tomwer-1.1.1/tomwer/core/process/control/datawatcher/datawatcherobserver.py +0 -679
- tomwer-1.1.1/tomwer/core/process/control/datawatcher/datawatcherprocess.py +0 -247
- tomwer-1.1.1/tomwer/core/process/control/datawatcher/edfdwprocess.py +0 -218
- tomwer-1.1.1/tomwer/core/process/control/datawatcher/hdf5dwprocess.py +0 -81
- tomwer-1.1.1/tomwer/core/process/control/datawatcher/status.py +0 -75
- tomwer-1.1.1/tomwer/core/process/control/nxtomomill.py +0 -133
- tomwer-1.1.1/tomwer/core/process/control/scanlist.py +0 -50
- tomwer-1.1.1/tomwer/core/process/control/scanselector.py +0 -7
- tomwer-1.1.1/tomwer/core/process/control/scantransfer.py +0 -690
- tomwer-1.1.1/tomwer/core/process/control/scanvalidator.py +0 -284
- tomwer-1.1.1/tomwer/core/process/control/test/test_volume_link.py +0 -72
- tomwer-1.1.1/tomwer/core/process/control/timer.py +0 -84
- tomwer-1.1.1/tomwer/core/process/control/volumeselector.py +0 -9
- tomwer-1.1.1/tomwer/core/process/control/volumesymlink.py +0 -162
- tomwer-1.1.1/tomwer/core/process/edit/darkflatpatch.py +0 -119
- tomwer-1.1.1/tomwer/core/process/edit/imagekeyeditor.py +0 -233
- tomwer-1.1.1/tomwer/core/process/reconstruction/axis/axis.py +0 -997
- tomwer-1.1.1/tomwer/core/process/reconstruction/axis/mode.py +0 -94
- tomwer-1.1.1/tomwer/core/process/reconstruction/axis/params.py +0 -921
- tomwer-1.1.1/tomwer/core/process/reconstruction/darkref/darkrefs.py +0 -613
- tomwer-1.1.1/tomwer/core/process/reconstruction/darkref/darkrefscopy.py +0 -358
- tomwer-1.1.1/tomwer/core/process/reconstruction/darkref/params.py +0 -283
- tomwer-1.1.1/tomwer/core/process/reconstruction/lamino/tofu.py +0 -984
- tomwer-1.1.1/tomwer/core/process/reconstruction/nabu/castvolume.py +0 -254
- tomwer-1.1.1/tomwer/core/process/reconstruction/nabu/nabucommon.py +0 -618
- tomwer-1.1.1/tomwer/core/process/reconstruction/nabu/nabuscores.py +0 -307
- tomwer-1.1.1/tomwer/core/process/reconstruction/nabu/nabuslices.py +0 -790
- tomwer-1.1.1/tomwer/core/process/reconstruction/nabu/nabuvolume.py +0 -461
- tomwer-1.1.1/tomwer/core/process/reconstruction/nabu/utils.py +0 -459
- tomwer-1.1.1/tomwer/core/process/reconstruction/normalization/__init__.py +0 -4
- tomwer-1.1.1/tomwer/core/process/reconstruction/normalization/normalization.py +0 -362
- tomwer-1.1.1/tomwer/core/process/reconstruction/normalization/params.py +0 -166
- tomwer-1.1.1/tomwer/core/process/reconstruction/saaxis/__init__.py +0 -2
- tomwer-1.1.1/tomwer/core/process/reconstruction/saaxis/params.py +0 -163
- tomwer-1.1.1/tomwer/core/process/reconstruction/saaxis/saaxis.py +0 -713
- tomwer-1.1.1/tomwer/core/process/reconstruction/sadeltabeta/__init__.py +0 -2
- tomwer-1.1.1/tomwer/core/process/reconstruction/sadeltabeta/params.py +0 -111
- tomwer-1.1.1/tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +0 -600
- tomwer-1.1.1/tomwer/core/process/reconstruction/scores/__init__.py +0 -6
- tomwer-1.1.1/tomwer/core/process/reconstruction/scores/params.py +0 -201
- tomwer-1.1.1/tomwer/core/process/reconstruction/scores/scores.py +0 -220
- tomwer-1.1.1/tomwer/core/process/reconstruction/test/test_axis_params.py +0 -59
- tomwer-1.1.1/tomwer/core/process/reconstruction/test/test_darkref.py +0 -61
- tomwer-1.1.1/tomwer/core/process/reconstruction/test/test_darkref_copy.py +0 -200
- tomwer-1.1.1/tomwer/core/process/reconstruction/test/test_paramsbase.py +0 -34
- tomwer-1.1.1/tomwer/core/process/reconstruction/test/test_saaxis.py +0 -101
- tomwer-1.1.1/tomwer/core/process/reconstruction/test/test_sadeltabeta.py +0 -70
- tomwer-1.1.1/tomwer/core/process/reconstruction/test/test_utils.py +0 -28
- tomwer-1.1.1/tomwer/core/process/script/python.py +0 -103
- tomwer-1.1.1/tomwer/core/process/task.py +0 -507
- tomwer-1.1.1/tomwer/core/process/test/test_axis.py +0 -295
- tomwer-1.1.1/tomwer/core/process/test/test_conditions.py +0 -92
- tomwer-1.1.1/tomwer/core/process/test/test_dark_and_flat.py +0 -382
- tomwer-1.1.1/tomwer/core/process/test/test_data_listener.py +0 -112
- tomwer-1.1.1/tomwer/core/process/test/test_data_transfer.py +0 -377
- tomwer-1.1.1/tomwer/core/process/test/test_data_watcher.py +0 -80
- tomwer-1.1.1/tomwer/core/process/test/test_lamino.py +0 -74
- tomwer-1.1.1/tomwer/core/process/test/test_nabu.py +0 -477
- tomwer-1.1.1/tomwer/core/process/test/test_normalization.py +0 -101
- tomwer-1.1.1/tomwer/core/process/test/test_timer.py +0 -76
- tomwer-1.1.1/tomwer/core/process/utils.py +0 -114
- tomwer-1.1.1/tomwer/core/progress.py +0 -101
- tomwer-1.1.1/tomwer/core/scan/blissscan.py +0 -260
- tomwer-1.1.1/tomwer/core/scan/edfscan.py +0 -608
- tomwer-1.1.1/tomwer/core/scan/futurescan.py +0 -7
- tomwer-1.1.1/tomwer/core/scan/hdf5scan.py +0 -516
- tomwer-1.1.1/tomwer/core/scan/scanbase.py +0 -864
- tomwer-1.1.1/tomwer/core/scan/scanfactory.py +0 -255
- tomwer-1.1.1/tomwer/core/scan/test/test_edf.py +0 -52
- tomwer-1.1.1/tomwer/core/scan/test/test_future_scan.py +0 -60
- tomwer-1.1.1/tomwer/core/scan/test/test_h5.py +0 -115
- tomwer-1.1.1/tomwer/core/scan/test/test_process_registration.py +0 -143
- tomwer-1.1.1/tomwer/core/scan/test/test_scan.py +0 -444
- tomwer-1.1.1/tomwer/core/settings.py +0 -113
- tomwer-1.1.1/tomwer/core/test/test_lamino.py +0 -90
- tomwer-1.1.1/tomwer/core/test/test_scanutils.py +0 -51
- tomwer-1.1.1/tomwer/core/test/test_utils.py +0 -290
- tomwer-1.1.1/tomwer/core/utils/__init__.py +0 -448
- tomwer-1.1.1/tomwer/core/utils/deprecation.py +0 -135
- tomwer-1.1.1/tomwer/core/utils/image.py +0 -156
- tomwer-1.1.1/tomwer/core/utils/locker.py +0 -66
- tomwer-1.1.1/tomwer/core/utils/normalization.py +0 -84
- tomwer-1.1.1/tomwer/core/utils/nxtomoutils.py +0 -64
- tomwer-1.1.1/tomwer/core/utils/scanutils.py +0 -443
- tomwer-1.1.1/tomwer/core/utils/slurm.py +0 -50
- tomwer-1.1.1/tomwer/core/utils/time.py +0 -50
- tomwer-1.1.1/tomwer/core/utils/volumeutils.py +0 -13
- tomwer-1.1.1/tomwer/core/volume/__init__.py +0 -5
- tomwer-1.1.1/tomwer/core/volume/edfvolume.py +0 -75
- tomwer-1.1.1/tomwer/core/volume/hdf5volume.py +0 -95
- tomwer-1.1.1/tomwer/core/volume/jp2kvolume.py +0 -77
- tomwer-1.1.1/tomwer/core/volume/rawvolume.py +0 -90
- tomwer-1.1.1/tomwer/core/volume/tiffvolume.py +0 -122
- tomwer-1.1.1/tomwer/core/volume/volumebase.py +0 -49
- tomwer-1.1.1/tomwer/core/volume/volumefactory.py +0 -183
- tomwer-1.1.1/tomwer/gui/cluster/slurm.py +0 -361
- tomwer-1.1.1/tomwer/gui/cluster/supervisor.py +0 -422
- tomwer-1.1.1/tomwer/gui/cluster/test/test_cluster.py +0 -77
- tomwer-1.1.1/tomwer/gui/cluster/test/test_supervisor.py +0 -89
- tomwer-1.1.1/tomwer/gui/conditions/filter.py +0 -142
- tomwer-1.1.1/tomwer/gui/control/actions.py +0 -69
- tomwer-1.1.1/tomwer/gui/control/datalist.py +0 -1016
- tomwer-1.1.1/tomwer/gui/control/datalistener.py +0 -485
- tomwer-1.1.1/tomwer/gui/control/datareacheractions.py +0 -76
- tomwer-1.1.1/tomwer/gui/control/datatransfert.py +0 -149
- tomwer-1.1.1/tomwer/gui/control/datavalidator.py +0 -401
- tomwer-1.1.1/tomwer/gui/control/datawatcher/configuration.py +0 -239
- tomwer-1.1.1/tomwer/gui/control/datawatcher/datawatcher.py +0 -661
- tomwer-1.1.1/tomwer/gui/control/datawatcher/datawatcherobserver.py +0 -296
- tomwer-1.1.1/tomwer/gui/control/history.py +0 -131
- tomwer-1.1.1/tomwer/gui/control/observations.py +0 -219
- tomwer-1.1.1/tomwer/gui/control/scanselectorwidget.py +0 -64
- tomwer-1.1.1/tomwer/gui/control/selectorwidgetbase.py +0 -136
- tomwer-1.1.1/tomwer/gui/control/serie/seriecreator.py +0 -967
- tomwer-1.1.1/tomwer/gui/control/singletomoobj.py +0 -157
- tomwer-1.1.1/tomwer/gui/control/test/test_datalist.py +0 -95
- tomwer-1.1.1/tomwer/gui/control/test/test_datalistener.py +0 -78
- tomwer-1.1.1/tomwer/gui/control/test/test_datavalidator.py +0 -52
- tomwer-1.1.1/tomwer/gui/control/test/test_inputwidget.py +0 -78
- tomwer-1.1.1/tomwer/gui/control/test/test_process_manager.py +0 -65
- tomwer-1.1.1/tomwer/gui/control/test/test_scanselector.py +0 -65
- tomwer-1.1.1/tomwer/gui/control/test/test_scanvalidator.py +0 -114
- tomwer-1.1.1/tomwer/gui/control/test/test_single_tomo_obj.py +0 -69
- tomwer-1.1.1/tomwer/gui/control/test/test_volume_dialog.py +0 -214
- tomwer-1.1.1/tomwer/gui/control/test/test_volumeselector.py +0 -92
- tomwer-1.1.1/tomwer/gui/control/volumeselectorwidget.py +0 -59
- tomwer-1.1.1/tomwer/gui/debugtools/datasetgenerator.py +0 -279
- tomwer-1.1.1/tomwer/gui/debugtools/objectinspector.py +0 -72
- tomwer-1.1.1/tomwer/gui/edit/dkrfpatch.py +0 -482
- tomwer-1.1.1/tomwer/gui/edit/imagekeyeditor.py +0 -823
- tomwer-1.1.1/tomwer/gui/edit/nxtomoeditor.py +0 -475
- tomwer-1.1.1/tomwer/gui/edit/test/test_dkrf_patch.py +0 -211
- tomwer-1.1.1/tomwer/gui/edit/test/test_image_key_editor.py +0 -168
- tomwer-1.1.1/tomwer/gui/edit/test/test_nx_editor.py +0 -155
- tomwer-1.1.1/tomwer/gui/icons.py +0 -403
- tomwer-1.1.1/tomwer/gui/illustrations.py +0 -158
- tomwer-1.1.1/tomwer/gui/imagefromfile.py +0 -155
- tomwer-1.1.1/tomwer/gui/qfolderdialog.py +0 -568
- tomwer-1.1.1/tomwer/gui/reconstruction/axis/CompareImages.py +0 -408
- tomwer-1.1.1/tomwer/gui/reconstruction/axis/__init__.py +0 -2
- tomwer-1.1.1/tomwer/gui/reconstruction/axis/axis.py +0 -610
- tomwer-1.1.1/tomwer/gui/reconstruction/axis/radioaxis.py +0 -2592
- tomwer-1.1.1/tomwer/gui/reconstruction/darkref/darkrefcopywidget.py +0 -298
- tomwer-1.1.1/tomwer/gui/reconstruction/darkref/darkrefwidget.py +0 -442
- tomwer-1.1.1/tomwer/gui/reconstruction/lamino/tofu/misc.py +0 -146
- tomwer-1.1.1/tomwer/gui/reconstruction/lamino/tofu/projections.py +0 -888
- tomwer-1.1.1/tomwer/gui/reconstruction/lamino/tofu/tofu.py +0 -429
- tomwer-1.1.1/tomwer/gui/reconstruction/lamino/tofu/tofuexpert.py +0 -564
- tomwer-1.1.1/tomwer/gui/reconstruction/lamino/tofu/tofuoutput.py +0 -757
- tomwer-1.1.1/tomwer/gui/reconstruction/nabu/action.py +0 -119
- tomwer-1.1.1/tomwer/gui/reconstruction/nabu/castvolume.py +0 -281
- tomwer-1.1.1/tomwer/gui/reconstruction/nabu/check.py +0 -114
- tomwer-1.1.1/tomwer/gui/reconstruction/nabu/nabuconfig/base.py +0 -95
- tomwer-1.1.1/tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py +0 -352
- tomwer-1.1.1/tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py +0 -295
- tomwer-1.1.1/tomwer/gui/reconstruction/nabu/nabuconfig/output.py +0 -255
- tomwer-1.1.1/tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +0 -376
- tomwer-1.1.1/tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +0 -536
- tomwer-1.1.1/tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +0 -981
- tomwer-1.1.1/tomwer/gui/reconstruction/nabu/nabuflow.py +0 -472
- tomwer-1.1.1/tomwer/gui/reconstruction/nabu/slices.py +0 -621
- tomwer-1.1.1/tomwer/gui/reconstruction/nabu/slurm.py +0 -203
- tomwer-1.1.1/tomwer/gui/reconstruction/nabu/volume.py +0 -473
- tomwer-1.1.1/tomwer/gui/reconstruction/normalization/intensity.py +0 -921
- tomwer-1.1.1/tomwer/gui/reconstruction/saaxis/corrangeselector.py +0 -829
- tomwer-1.1.1/tomwer/gui/reconstruction/saaxis/dimensionwidget.py +0 -259
- tomwer-1.1.1/tomwer/gui/reconstruction/saaxis/saaxis.py +0 -525
- tomwer-1.1.1/tomwer/gui/reconstruction/saaxis/sliceselector.py +0 -338
- tomwer-1.1.1/tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py +0 -503
- tomwer-1.1.1/tomwer/gui/reconstruction/scores/scoreplot.py +0 -883
- tomwer-1.1.1/tomwer/gui/reconstruction/test/test_axis.py +0 -203
- tomwer-1.1.1/tomwer/gui/reconstruction/test/test_lamino.py +0 -188
- tomwer-1.1.1/tomwer/gui/reconstruction/test/test_nabu.py +0 -357
- tomwer-1.1.1/tomwer/gui/reconstruction/test/test_saaxis.py +0 -212
- tomwer-1.1.1/tomwer/gui/reconstruction/test/test_sadeltabeta.py +0 -139
- tomwer-1.1.1/tomwer/gui/samplemoved/__init__.py +0 -252
- tomwer-1.1.1/tomwer/gui/samplemoved/selectiontable.py +0 -260
- tomwer-1.1.1/tomwer/gui/stackplot.py +0 -723
- tomwer-1.1.1/tomwer/gui/stacks.py +0 -234
- tomwer-1.1.1/tomwer/gui/test/test_axis_gui.py +0 -26
- tomwer-1.1.1/tomwer/gui/test/test_qfolder_dialog.py +0 -12
- tomwer-1.1.1/tomwer/gui/utils/__init__.py +0 -85
- tomwer-1.1.1/tomwer/gui/utils/buttons.py +0 -101
- tomwer-1.1.1/tomwer/gui/utils/completer.py +0 -140
- tomwer-1.1.1/tomwer/gui/utils/flow.py +0 -346
- tomwer-1.1.1/tomwer/gui/utils/illustrations.py +0 -122
- tomwer-1.1.1/tomwer/gui/utils/inputwidget.py +0 -434
- tomwer-1.1.1/tomwer/gui/utils/lineselector/lineselector.py +0 -234
- tomwer-1.1.1/tomwer/gui/utils/qt_utils.py +0 -11
- tomwer-1.1.1/tomwer/gui/utils/scandescription.py +0 -77
- tomwer-1.1.1/tomwer/gui/utils/splashscreen.py +0 -47
- tomwer-1.1.1/tomwer/gui/utils/unitsystem.py +0 -182
- tomwer-1.1.1/tomwer/gui/utils/vignettes.py +0 -392
- tomwer-1.1.1/tomwer/gui/utils/waiterthread.py +0 -48
- tomwer-1.1.1/tomwer/gui/visualization/dataviewer.py +0 -658
- tomwer-1.1.1/tomwer/gui/visualization/diffviewer/diffviewer.py +0 -560
- tomwer-1.1.1/tomwer/gui/visualization/diffviewer/shiftwidget.py +0 -560
- tomwer-1.1.1/tomwer/gui/visualization/nxtomometadata.py +0 -21
- tomwer-1.1.1/tomwer/gui/visualization/reconstructionparameters.py +0 -372
- tomwer-1.1.1/tomwer/gui/visualization/scanoverview.py +0 -247
- tomwer-1.1.1/tomwer/gui/visualization/sinogramviewer.py +0 -290
- tomwer-1.1.1/tomwer/gui/visualization/test/test_dataviewer.py +0 -70
- tomwer-1.1.1/tomwer/gui/visualization/test/test_diffviewer.py +0 -97
- tomwer-1.1.1/tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py +0 -72
- tomwer-1.1.1/tomwer/gui/visualization/test/test_reconstruction_parameters.py +0 -66
- tomwer-1.1.1/tomwer/gui/visualization/test/test_sinogramviewer.py +0 -84
- tomwer-1.1.1/tomwer/gui/visualization/test/test_stacks.py +0 -132
- tomwer-1.1.1/tomwer/gui/visualization/test/test_volumeviewer.py +0 -82
- tomwer-1.1.1/tomwer/gui/visualization/tomoobjoverview.py +0 -49
- tomwer-1.1.1/tomwer/gui/visualization/volumeoverview.py +0 -64
- tomwer-1.1.1/tomwer/gui/visualization/volumeviewer.py +0 -431
- tomwer-1.1.1/tomwer/io/utils/__init__.py +0 -5
- tomwer-1.1.1/tomwer/io/utils/h5pyutils.py +0 -77
- tomwer-1.1.1/tomwer/io/utils/utils.py +0 -276
- tomwer-1.1.1/tomwer/resources/__init__.py +0 -144
- tomwer-1.1.1/tomwer/synctools/axis.py +0 -52
- tomwer-1.1.1/tomwer/synctools/darkref.py +0 -47
- tomwer-1.1.1/tomwer/synctools/datalistener.py +0 -266
- tomwer-1.1.1/tomwer/synctools/datatransfert.py +0 -43
- tomwer-1.1.1/tomwer/synctools/imageloaderthread.py +0 -77
- tomwer-1.1.1/tomwer/synctools/rsyncmanager.py +0 -192
- tomwer-1.1.1/tomwer/synctools/saaxis.py +0 -52
- tomwer-1.1.1/tomwer/synctools/sadeltabeta.py +0 -52
- tomwer-1.1.1/tomwer/synctools/stacks/control/datalistener.py +0 -139
- tomwer-1.1.1/tomwer/synctools/stacks/edit/darkflatpatch.py +0 -158
- tomwer-1.1.1/tomwer/synctools/stacks/edit/imagekeyeditor.py +0 -153
- tomwer-1.1.1/tomwer/synctools/stacks/processingstack.py +0 -160
- tomwer-1.1.1/tomwer/synctools/stacks/reconstruction/axis.py +0 -217
- tomwer-1.1.1/tomwer/synctools/stacks/reconstruction/castvolume.py +0 -194
- tomwer-1.1.1/tomwer/synctools/stacks/reconstruction/dkrefcopy.py +0 -175
- tomwer-1.1.1/tomwer/synctools/stacks/reconstruction/lamino.py +0 -231
- tomwer-1.1.1/tomwer/synctools/stacks/reconstruction/nabu.py +0 -295
- tomwer-1.1.1/tomwer/synctools/stacks/reconstruction/normalization.py +0 -139
- tomwer-1.1.1/tomwer/synctools/stacks/reconstruction/saaxis.py +0 -194
- tomwer-1.1.1/tomwer/synctools/stacks/reconstruction/sadeltabeta.py +0 -197
- tomwer-1.1.1/tomwer/synctools/test/test_darkRefs.py +0 -464
- tomwer-1.1.1/tomwer/synctools/test/test_foldertransfer.py +0 -405
- tomwer-1.1.1/tomwer/synctools/test/test_scanstages.py +0 -161
- tomwer-1.1.1/tomwer/synctools/utils/scanstages.py +0 -205
- tomwer-1.1.1/tomwer/tests/conftest.py +0 -51
- tomwer-1.1.1/tomwer/tests/test_scripts.py +0 -110
- tomwer-1.1.1/tomwer/tests/utils/__init__.py +0 -246
- tomwer-1.1.1/tomwer/tests/utils/utilstest.py +0 -221
- tomwer-1.1.1/tomwer/third_party/nabu/preproc/phase.py +0 -387
- tomwer-1.1.1/tomwer/third_party/nabu/utils.py +0 -201
- tomwer-1.1.1/tomwer/utils.py +0 -254
- tomwer-1.1.1/tomwer/version.py +0 -134
- tomwer-1.1.1/tomwer.egg-info/PKG-INFO +0 -177
- tomwer-1.1.1/tomwer.egg-info/SOURCES.txt +0 -704
- tomwer-1.1.1/tomwer.egg-info/requires.txt +0 -167
- {tomwer-1.1.1 → tomwer-1.2.0a0}/LICENSE +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/MANIFEST.in +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/README.rst +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/orange/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/orange/settings.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/tutorials/EBS_tomo_listener.ows +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/tutorials/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/tutorials/cast_volume.ows +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/tutorials/simple_slice_reconstruction.ows +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/tutorials/simple_volume_local_reconstruction.ows +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/tutorials/using_saaxis_to_find_cor.ows +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/cluster/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/cluster/icons/slurm.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/cluster/icons/slurm.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/advancement.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/advancement.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/datalistener.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/datalistener.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/datawatcher.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/edf2nx.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/edf2nx.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/esrf.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/folder-transfert.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/image_key_upgrader.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/namefilter.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/namefilter.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/notification.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/notification.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/progress.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/scanlist.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/scanselector.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/scanselector.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/single_tomo_obj.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/single_tomo_obj.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/time.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/tomoobjserie.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/tomoobjserie.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/tomwer.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/validator.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/validatorcrack.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/volumeselector.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/volumeselector.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/volumesymlink.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/volumesymlink.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/debugtools/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/debugtools/icons/hammer.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/debugtools/icons/hammer.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/debugtools/icons/inspector.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/debugtools/icons/inspector.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/edit/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/edit/icons/image_key_editor.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/edit/icons/image_key_editor.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/edit/test/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_build.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_build.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_cluster.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_cluster.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_control.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_control.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_debug_tools.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_debug_tools.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_edit.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_edit.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_other.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_other.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_visu.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_visu.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/other/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/other/icons/PythonScript.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/XY_lamino.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/XZ_lamino.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/YZ_lamino.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/axis.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/axis.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/bricks.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/darkref.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/darkref.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/esrf.png +0 -0
- /tomwer-1.1.1/tomwer/resources/gui/icons/nabu.png → /tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.png +0 -0
- /tomwer-1.1.1/tomwer/resources/gui/icons/nabu.svg → /tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_3d.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_3d.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_cast.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_cast.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/norm_I.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/norm_I.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/refCopy.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/refCopy.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/saaxis.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/saaxis.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/tomogui.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/tomwer.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/utils.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/diff.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/diff.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/esrf.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/eye.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/eyecrack.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/liveslice.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/liveslice.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/radiosstack.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/radiosstack.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/sampleMoved.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/sampleMoved.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/sinogramviewer.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/slicesstack.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/slicesstack.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/tomwer.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/app/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/app/canvas_launcher/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/cluster/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/cluster/cluster.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/log/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/cluster/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/cluster/supervisor.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/conditions/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/control/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/control/datalistener/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/control/datawatcher/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/control/singletomoobj.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/control/test/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/control/tomoobjserie.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/edit/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/axis/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/axis/anglemode.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/axis/projectiontype.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/darkref/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/darkref/settings.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/lamino/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/nabu/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/nabu/settings.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/nabu/target.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/paramsbase.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/test/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/utils/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/utils/cor.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/script/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/test/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/visualization/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/visualization/dataviewer.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/visualization/diffviewer.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/visualization/imagestackviewer.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/visualization/liveslice.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/visualization/radiostack.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/visualization/samplemoved.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/visualization/sinogramviewer.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/visualization/slicestack.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/process/visualization/volumeviewer.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/scan/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/scan/test/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/signal.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/test/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/tomwer_object.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/utils/Singleton.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/utils/char.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/utils/ftseriesutils.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/utils/gpu.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/utils/logconfig.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/utils/resource.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/core/utils/threads.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/cluster/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/cluster/test/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/conditions/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/control/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/control/datawatcher/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/control/nxtomomill.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/control/serie/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/control/serie/seriewaiter.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/control/test/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/debugtools/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/edit/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/edit/test/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/qlefilesystem.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/darkref/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/lamino/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/lamino/tofu/TofuOptionLoader.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/lamino/tofu/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/lamino/tofu/settings.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/nabu/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/nabu/nabuconfig/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/normalization/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/saaxis/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/sadeltabeta/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/scores/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/scores/control.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/test/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/settings.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/test/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/utils/lineselector/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/utils/sandboxes.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/utils/scrollarea.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/utils/slider.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/visualization/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/visualization/diffviewer/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/gui/visualization/test/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/io/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/Imagej_icon.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/a.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/a.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/add.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/add.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/advanced_user.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/advanced_user.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/axis.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/axis.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/basic_user.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/basic_user.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/cfg_file_active.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/cfg_file_active.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/cfg_file_inactive.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/cfg_file_inactive.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/compare_mode_a_minus_b.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/compare_mode_a_minus_b.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/datalistener_activate.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/datalistener_activate.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/datalistener_deactivate.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/datalistener_deactivate.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/delta_beta.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/delta_beta.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/hammer.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/hammer.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/health.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/health.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/high_speed.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/high_speed.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/history.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/hourglass.npy +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/imageNotFound.npy +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/information.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/information.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/input.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/input.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/lamino_parameters.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/lineselection.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/lineselection.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/list_selection.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/list_selection.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/locked.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/locked.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/log.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/log.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/loop.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/low_speed.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/low_speed.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/medium_low_speed.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/medium_low_speed.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/minimalistic_user.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/minimalistic_user.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/multi-document-save.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/multi-document-save.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/output.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/output.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/parameters.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/parameters.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/plot-xleft.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/plot-xleft.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/plot-xright.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/plot-xright.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/range_selection.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/range_selection.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/results.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/results.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/rm.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/rm.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/roman_four.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/roman_four.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/roman_one.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/roman_one.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/roman_three.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/roman_three.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/roman_two.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/roman_two.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/single_selection.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/single_selection.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/sinogram.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/slurm.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/slurm_active.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/slurm_active.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/slurm_deactive.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/slurm_deactive.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/switch.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/tomwer.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/tomwer_large.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/unlocked.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/unlocked.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/unsharp_mask.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/vignettes.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/vignettes.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/warning.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/warning.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/ctf_z1.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/ctf_z1.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/flow_down.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/flow_down.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/flow_right.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/flow_right.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/lamino_angle.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/lamino_angle.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/lamino_beta_angle.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/lamino_beta_angle.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/lamino_theta_angle.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/lamino_theta_angle.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/manual_slice.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/manual_slice.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/no_rot.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/psi_angle.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/psi_angle.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/rotation_center.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/rotation_center.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/slice_stack.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/slice_stack.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/xy_slice.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/xy_slice.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/xz_slice.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/xz_slice.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/yz_slice.png +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/yz_slice.svg +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/synctools/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/synctools/stacks/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/synctools/stacks/control/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/synctools/stacks/edit/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/synctools/stacks/reconstruction/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/synctools/test/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/synctools/utils/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/tests/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/tests/test_utils.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/third_party/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/third_party/nabu/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/third_party/nabu/preproc/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/third_party/tango/__init__.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer/third_party/tango/device.py +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer.egg-info/dependency_links.txt +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer.egg-info/entry_points.txt +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer.egg-info/namespace_packages.txt +0 -0
- {tomwer-1.1.1 → tomwer-1.2.0a0}/tomwer.egg-info/top_level.txt +0 -0
tomwer-1.2.0a0/PKG-INFO
ADDED
@@ -0,0 +1,177 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: tomwer
|
3
|
+
Version: 1.2.0a0
|
4
|
+
Summary: "tomography workflow tools"
|
5
|
+
Home-page: https://gitlab.esrf.fr/tomotools/tomwer
|
6
|
+
Author: data analysis unit
|
7
|
+
Author-email: henri.payno@esrf.fr
|
8
|
+
License: MIT
|
9
|
+
Project-URL: Bug Tracker, https://gitlab.esrf.fr/tomotools/tomwer/-/issues
|
10
|
+
Classifier: Intended Audience :: Education
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
14
|
+
Classifier: Environment :: Console
|
15
|
+
Classifier: Environment :: X11 Applications :: Qt
|
16
|
+
Classifier: Operating System :: POSIX
|
17
|
+
Classifier: Natural Language :: English
|
18
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
19
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
20
|
+
Requires-Python: >=3.6
|
21
|
+
Description-Content-Type: text/markdown
|
22
|
+
Provides-Extra: doc
|
23
|
+
Provides-Extra: _full_base
|
24
|
+
Provides-Extra: full_no_cuda
|
25
|
+
Provides-Extra: full
|
26
|
+
Provides-Extra: _dev_spec
|
27
|
+
Provides-Extra: dev
|
28
|
+
Provides-Extra: dev_no_cuda
|
29
|
+
Provides-Extra: setup_requires
|
30
|
+
License-File: LICENSE
|
31
|
+
|
32
|
+
tomwer
|
33
|
+
======
|
34
|
+
|
35
|
+
tomwer is offering tools to automate acquisition and reconstruction processes for Tomography.
|
36
|
+
It contains:
|
37
|
+
|
38
|
+
- a library to access each acquisition process individually
|
39
|
+
- gui and applications to control main processes (reconstruction, data transfert...) and execute them as a stand alone application.
|
40
|
+
- an orange add-on to help users defining their own workflow (http://orange.biolab.si)
|
41
|
+
|
42
|
+
|
43
|
+
|
44
|
+
.. image:: http://www.edna-site.org/pub/doc/tomwer/extra/tomwer_start_short.gif
|
45
|
+
|
46
|
+
|
47
|
+
.. |Gitlab Status| image:: https://gitlab.esrf.fr/tomotools/tomwer/badges/master/pipeline.svg
|
48
|
+
:target: https://gitlab.esrf.fr/tomotools/tomwer/pipelines
|
49
|
+
|
50
|
+
|
51
|
+
Documentation
|
52
|
+
-------------
|
53
|
+
|
54
|
+
Documentation of latest release is available at http://www.edna-site.org/pub/doc/tomwer/latest
|
55
|
+
|
56
|
+
Installation
|
57
|
+
------------
|
58
|
+
|
59
|
+
Step 1 - Create a virtual env (recommended)
|
60
|
+
'''''''''''''''''''''''''''''''''''''''''''
|
61
|
+
|
62
|
+
It is recommended to create a python virtual environment to run the workflow tool.
|
63
|
+
Virtual environment might avoid some conflict between python packages. But you can also install it on your 'current' python environment and move to step 1.
|
64
|
+
|
65
|
+
.. code-block:: bash
|
66
|
+
|
67
|
+
virtualenv --python=python3 --system-site-packages myvirtualenv
|
68
|
+
|
69
|
+
|
70
|
+
Then activate the virtual environment
|
71
|
+
|
72
|
+
.. code-block:: bash
|
73
|
+
|
74
|
+
source myvirtualenv/bin/activate
|
75
|
+
|
76
|
+
First update pip and setuptools to avoid some potential errors
|
77
|
+
|
78
|
+
.. code-block:: bash
|
79
|
+
|
80
|
+
pip install --upgrade pip
|
81
|
+
pip install setuptools --upgrade
|
82
|
+
|
83
|
+
|
84
|
+
.. note:: To quit the virtual environment
|
85
|
+
|
86
|
+
.. code-block:: bash
|
87
|
+
|
88
|
+
deactivate
|
89
|
+
|
90
|
+
Step 2 - tomwer (madatory)
|
91
|
+
''''''''''''''''''''''''''
|
92
|
+
|
93
|
+
To install it with all 'features':
|
94
|
+
|
95
|
+
.. code-block:: bash
|
96
|
+
|
97
|
+
pip install tomwer[full]
|
98
|
+
|
99
|
+
alternatively you can install the master branch from
|
100
|
+
|
101
|
+
.. code-block:: bash
|
102
|
+
|
103
|
+
pip install git+https://gitlab.esrf.fr/tomotools/tomwer/#egg=tomwer[full]
|
104
|
+
|
105
|
+
|
106
|
+
Step 3 - update orange-canvas-core and orange-widget-base (recommended)
|
107
|
+
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
|
108
|
+
|
109
|
+
To access 'processing' wheels you might want to install forks of update orange-canvas-core and orange-widget-base
|
110
|
+
|
111
|
+
.. code-block:: bash
|
112
|
+
|
113
|
+
pip install https://github.com/payno/orange-canvas-core --no-deps --upgrade
|
114
|
+
pip install https://github.com/payno/orange-widget-base --no-deps --upgrade
|
115
|
+
|
116
|
+
|
117
|
+
Launching applications
|
118
|
+
::::::::::::::::::::::
|
119
|
+
|
120
|
+
After the installation tomwer is embedding several applications.
|
121
|
+
|
122
|
+
Those applications can be launched by calling:
|
123
|
+
|
124
|
+
.. code-block:: bash
|
125
|
+
|
126
|
+
tomwer appName {options}
|
127
|
+
|
128
|
+
.. note:: if you only call `tomwer` then the man page will be displayed.
|
129
|
+
|
130
|
+
.. note:: You can access each application help using ``
|
131
|
+
|
132
|
+
.. code-block:: bash
|
133
|
+
|
134
|
+
tomwer appName --help
|
135
|
+
|
136
|
+
|
137
|
+
tomwer canvas - orange canvas
|
138
|
+
'''''''''''''''''''''''''''''
|
139
|
+
|
140
|
+
You can launch the canvas to create workflows from the different 'bricks'
|
141
|
+
|
142
|
+
.. code-block:: bash
|
143
|
+
|
144
|
+
tomwer canvas
|
145
|
+
|
146
|
+
.. note:: you can also use `orange-canvas`
|
147
|
+
|
148
|
+
.. note:: if your installed a virtual environment do not forget to active it :
|
149
|
+
|
150
|
+
.. code-block:: bash
|
151
|
+
|
152
|
+
source myvirtualenv/bin/activate
|
153
|
+
|
154
|
+
|
155
|
+
Documentation
|
156
|
+
:::::::::::::
|
157
|
+
|
158
|
+
.. code-block:: bash
|
159
|
+
|
160
|
+
cd doc
|
161
|
+
make html
|
162
|
+
|
163
|
+
The documentation is build in doc/build/html and the entry point is index.html
|
164
|
+
|
165
|
+
.. code-block:: bash
|
166
|
+
|
167
|
+
firefox build/html/index.html
|
168
|
+
|
169
|
+
.. note:: the build of the documentation need sphinx to be installed. This is not an hard dependacy. So you might need to install it.
|
170
|
+
|
171
|
+
|
172
|
+
You also should generate documentation to be accessible from Orange GUI (pressing the F1 key).
|
173
|
+
|
174
|
+
.. code-block:: bash
|
175
|
+
|
176
|
+
cd doc
|
177
|
+
make htmlhelp
|
@@ -0,0 +1,114 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
# /*##########################################################################
|
3
|
+
#
|
4
|
+
# Copyright (c) 2016-2017 European Synchrotron Radiation Facility
|
5
|
+
#
|
6
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
|
+
# of this software and associated documentation files (the "Software"), to deal
|
8
|
+
# in the Software without restriction, including without limitation the rights
|
9
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
10
|
+
# copies of the Software, and to permit persons to whom the Software is
|
11
|
+
# furnished to do so, subject to the following conditions:
|
12
|
+
#
|
13
|
+
# The above copyright notice and this permission notice shall be included in
|
14
|
+
# all copies or substantial portions of the Software.
|
15
|
+
#
|
16
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
17
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
18
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
19
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
20
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
21
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
22
|
+
# THE SOFTWARE.
|
23
|
+
#
|
24
|
+
# ###########################################################################*/
|
25
|
+
|
26
|
+
__authors__ = ["H. Payno"]
|
27
|
+
__license__ = "MIT"
|
28
|
+
__date__ = "22/20/2020"
|
29
|
+
|
30
|
+
|
31
|
+
import functools
|
32
|
+
|
33
|
+
from ewoksorange.bindings import OWEwoksWidgetWithTaskStack
|
34
|
+
from ewoksorange.bindings.owwidgets import invalid_data
|
35
|
+
from orangewidget.widget import OWBaseWidget
|
36
|
+
from processview.core.manager import DatasetState, ProcessManager
|
37
|
+
from processview.core.superviseprocess import SuperviseProcess
|
38
|
+
|
39
|
+
from orangecontrib.tomwer.widgets.utils import WidgetLongProcessing
|
40
|
+
|
41
|
+
|
42
|
+
class _SuperviseMixIn(SuperviseProcess):
|
43
|
+
def __init__(self, process_id=None):
|
44
|
+
SuperviseProcess.__init__(self, process_id=process_id)
|
45
|
+
self.destroyed.connect(functools.partial(ProcessManager().unregister, self))
|
46
|
+
|
47
|
+
def setCaption(self, caption):
|
48
|
+
self.name = caption
|
49
|
+
|
50
|
+
def notify_skip(self, scan, details=None):
|
51
|
+
ProcessManager().notify_dataset_state(
|
52
|
+
dataset=scan, process=self, state=DatasetState.SKIPPED, details=details
|
53
|
+
)
|
54
|
+
|
55
|
+
def notify_pending(self, scan, details=None):
|
56
|
+
ProcessManager().notify_dataset_state(
|
57
|
+
dataset=scan, process=self, state=DatasetState.PENDING, details=details
|
58
|
+
)
|
59
|
+
|
60
|
+
def notify_succeed(self, scan, details=None):
|
61
|
+
ProcessManager().notify_dataset_state(
|
62
|
+
dataset=scan, process=self, state=DatasetState.SUCCEED, details=details
|
63
|
+
)
|
64
|
+
|
65
|
+
def notify_failed(self, scan, details=None):
|
66
|
+
ProcessManager().notify_dataset_state(
|
67
|
+
dataset=scan, process=self, state=DatasetState.FAILED, details=details
|
68
|
+
)
|
69
|
+
|
70
|
+
def notify_on_going(self, scan, details=None):
|
71
|
+
ProcessManager().notify_dataset_state(
|
72
|
+
dataset=scan, process=self, state=DatasetState.ON_GOING, details=details
|
73
|
+
)
|
74
|
+
|
75
|
+
|
76
|
+
class SuperviseOW(OWBaseWidget, _SuperviseMixIn, openclass=True):
|
77
|
+
"""
|
78
|
+
A basic OWWidget but registered on the process manager
|
79
|
+
"""
|
80
|
+
|
81
|
+
want_control_area = False
|
82
|
+
|
83
|
+
def __init__(self, parent, process_id=None):
|
84
|
+
OWBaseWidget.__init__(self, parent, process_id=process_id)
|
85
|
+
_SuperviseMixIn.__init__(self, process_id=process_id)
|
86
|
+
|
87
|
+
def setCaption(self, caption):
|
88
|
+
OWBaseWidget.setCaption(self, caption)
|
89
|
+
_SuperviseMixIn.setCaption(self, caption=caption)
|
90
|
+
|
91
|
+
|
92
|
+
class TomwerWithStackStack(
|
93
|
+
OWEwoksWidgetWithTaskStack, _SuperviseMixIn, WidgetLongProcessing, openclass=True
|
94
|
+
):
|
95
|
+
def __init__(self, parent, process_id=None, *args, **kwargs):
|
96
|
+
OWEwoksWidgetWithTaskStack.__init__(self, parent, args, kwargs)
|
97
|
+
_SuperviseMixIn.__init__(self, process_id=process_id)
|
98
|
+
|
99
|
+
self.task_executor_queue.sigComputationStarted.connect(self._startProcessing)
|
100
|
+
self.task_executor_queue.sigComputationEnded.connect(self._endProcessing)
|
101
|
+
|
102
|
+
def setCaption(self, caption):
|
103
|
+
OWBaseWidget.setCaption(self, caption)
|
104
|
+
_SuperviseMixIn.setCaption(self, caption=caption)
|
105
|
+
|
106
|
+
def trigger_downstream(self) -> None:
|
107
|
+
# for now ewoksorange send ewoks variable. This will work only if
|
108
|
+
# all task are implemented using ewokwidget which is not the case today
|
109
|
+
for ewoksname, var in self.get_task_outputs().items():
|
110
|
+
channel = self._get_output_signal(ewoksname)
|
111
|
+
if invalid_data.is_invalid_data(var.value):
|
112
|
+
channel.send(None) # or channel.invalidate?
|
113
|
+
else:
|
114
|
+
channel.send(var.value)
|
@@ -0,0 +1,50 @@
|
|
1
|
+
from orangewidget.utils.signals import PartialSummary, summarize
|
2
|
+
|
3
|
+
from tomwer.core.cluster import SlurmClusterConfiguration
|
4
|
+
from tomwer.core.futureobject import FutureTomwerObject
|
5
|
+
from tomwer.core.scan.blissscan import BlissScan
|
6
|
+
from tomwer.core.scan.scanbase import TomwerScanBase
|
7
|
+
|
8
|
+
|
9
|
+
@summarize.register(object) # noqa F811
|
10
|
+
def summarize_(Object: object): # noqa F811
|
11
|
+
return PartialSummary("any object", "an oject of any type")
|
12
|
+
|
13
|
+
|
14
|
+
@summarize.register(dict) # noqa F811
|
15
|
+
def summarize_(configuration: dict): # noqa F811
|
16
|
+
return PartialSummary(
|
17
|
+
"any configuration", "any configuration that can be provided to a process"
|
18
|
+
)
|
19
|
+
|
20
|
+
|
21
|
+
@summarize.register(SlurmClusterConfiguration) # noqa F811
|
22
|
+
def summarize_(cluster_config: SlurmClusterConfiguration): # noqa F811
|
23
|
+
return PartialSummary(
|
24
|
+
"cluster configuration",
|
25
|
+
"cluster configuration to launch some remote processing",
|
26
|
+
)
|
27
|
+
|
28
|
+
|
29
|
+
@summarize.register(TomwerScanBase) # noqa F811
|
30
|
+
def summarize_(data: TomwerScanBase): # noqa F811
|
31
|
+
return PartialSummary(
|
32
|
+
"dataset with processing history",
|
33
|
+
"core object used to ship dataset and history of processing done on this dataset",
|
34
|
+
)
|
35
|
+
|
36
|
+
|
37
|
+
@summarize.register(FutureTomwerObject) # noqa F811
|
38
|
+
def summarize_(future_data: FutureTomwerObject): # noqa F811
|
39
|
+
return PartialSummary(
|
40
|
+
"dataset with pending processing",
|
41
|
+
"object used when there is some pending processing (asyncio.future). Can be convert back to `data`",
|
42
|
+
)
|
43
|
+
|
44
|
+
|
45
|
+
@summarize.register(BlissScan) # noqa F811
|
46
|
+
def summarize_(bliss_scan: BlissScan): # noqa F811
|
47
|
+
return PartialSummary(
|
48
|
+
"raw dataset from bliss",
|
49
|
+
"object used when debug some processing relative to bliss",
|
50
|
+
)
|
@@ -0,0 +1,62 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
###########################################################################
|
3
|
+
# Copyright (C) 2016 European Synchrotron Radiation Facility
|
4
|
+
#
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
10
|
+
# furnished to do so, subject to the following conditions:
|
11
|
+
#
|
12
|
+
# The above copyright notice and this permission notice shall be included in
|
13
|
+
# all copies or substantial portions of the Software.
|
14
|
+
#
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
# THE SOFTWARE.
|
22
|
+
#
|
23
|
+
#############################################################################
|
24
|
+
|
25
|
+
import sysconfig
|
26
|
+
|
27
|
+
import pkg_resources
|
28
|
+
|
29
|
+
ICON = "../widgets/icons/tomwer.png"
|
30
|
+
|
31
|
+
BACKGROUND = "#C0CCFF"
|
32
|
+
|
33
|
+
|
34
|
+
# Entry point for main Orange categories/widgets discovery
|
35
|
+
def widget_discovery(discovery):
|
36
|
+
dist = pkg_resources.get_distribution("tomwer")
|
37
|
+
pkgs = [
|
38
|
+
"orangecontrib.tomwer.widgets.cluster",
|
39
|
+
"orangecontrib.tomwer.widgets.control",
|
40
|
+
"orangecontrib.tomwer.widgets.debugtools",
|
41
|
+
"orangecontrib.tomwer.widgets.edit",
|
42
|
+
"orangecontrib.tomwer.widgets.reconstruction",
|
43
|
+
"orangecontrib.tomwer.widgets.visualization",
|
44
|
+
"orangecontrib.tomwer.widgets.other",
|
45
|
+
]
|
46
|
+
for pkg in pkgs:
|
47
|
+
discovery.process_category_package(pkg, distribution=dist)
|
48
|
+
|
49
|
+
|
50
|
+
WIDGET_HELP_PATH = (
|
51
|
+
# Used for development.
|
52
|
+
# You still need to build help pages using
|
53
|
+
# make htmlhelp
|
54
|
+
# inside doc folder
|
55
|
+
("/build/sphinx/htmlhelp/index.html", None),
|
56
|
+
#
|
57
|
+
# Documentation included in wheel
|
58
|
+
# Correct DATA_FILES entry is needed in setup.py and documentation has to be built
|
59
|
+
# # before the wheel is created.
|
60
|
+
(f"{sysconfig.get_path('data')}/help/tomwer/index.html", None),
|
61
|
+
("http://www.silx.org/pub/doc/tomwer/htmlhelp/0.9/", None),
|
62
|
+
)
|
@@ -0,0 +1,244 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
# /*##########################################################################
|
3
|
+
#
|
4
|
+
# Copyright (c) 2016-2017 European Synchrotron Radiation Facility
|
5
|
+
#
|
6
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
|
+
# of this software and associated documentation files (the "Software"), to deal
|
8
|
+
# in the Software without restriction, including without limitation the rights
|
9
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
10
|
+
# copies of the Software, and to permit persons to whom the Software is
|
11
|
+
# furnished to do so, subject to the following conditions:
|
12
|
+
#
|
13
|
+
# The above copyright notice and this permission notice shall be included in
|
14
|
+
# all copies or substantial portions of the Software.
|
15
|
+
#
|
16
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
17
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
18
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
19
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
20
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
21
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
22
|
+
# THE SOFTWARE.
|
23
|
+
#
|
24
|
+
# ###########################################################################*/
|
25
|
+
|
26
|
+
__authors__ = ["H. Payno"]
|
27
|
+
__license__ = "MIT"
|
28
|
+
__date__ = "14/10/2021"
|
29
|
+
|
30
|
+
|
31
|
+
import time
|
32
|
+
|
33
|
+
from orangewidget import gui
|
34
|
+
from orangewidget.settings import Setting
|
35
|
+
from orangewidget.widget import Input, Output, OWBaseWidget
|
36
|
+
from processview.core.manager import DatasetState, ProcessManager
|
37
|
+
from processview.core.superviseprocess import SuperviseProcess
|
38
|
+
from silx.gui import qt
|
39
|
+
from silx.gui.utils.concurrent import submitToQtMainThread
|
40
|
+
|
41
|
+
from tomwer.core.futureobject import FutureTomwerObject
|
42
|
+
from tomwer.core.scan.scanbase import TomwerScanBase
|
43
|
+
from tomwer.core.volume.volumebase import TomwerVolumeBase
|
44
|
+
from tomwer.gui.cluster.supervisor import (
|
45
|
+
FutureTomwerScanObserverWidget as _FutureTomwerScanObserverWidget,
|
46
|
+
)
|
47
|
+
|
48
|
+
|
49
|
+
class FutureSupervisorOW(OWBaseWidget, openclass=True):
|
50
|
+
"""
|
51
|
+
Orange widget to define a slurm cluster as input of other
|
52
|
+
widgets (based on nabu for now)
|
53
|
+
"""
|
54
|
+
|
55
|
+
name = "future supervisor"
|
56
|
+
id = "orange.widgets.tomwer.cluster.FutureSupervisorOW.FutureSupervisorOW"
|
57
|
+
description = "Observe slurm job registered."
|
58
|
+
icon = "icons/slurmobserver.svg"
|
59
|
+
priority = 22
|
60
|
+
keywords = [
|
61
|
+
"tomography",
|
62
|
+
"tomwer",
|
63
|
+
"slurm",
|
64
|
+
"observer",
|
65
|
+
"cluster",
|
66
|
+
"job",
|
67
|
+
"sbatch",
|
68
|
+
"supervisor",
|
69
|
+
"future",
|
70
|
+
]
|
71
|
+
|
72
|
+
want_main_area = True
|
73
|
+
want_control_area = False
|
74
|
+
resizing_enabled = True
|
75
|
+
compress_signal = False
|
76
|
+
|
77
|
+
_ewoks_default_inputs = Setting(dict())
|
78
|
+
|
79
|
+
class Inputs:
|
80
|
+
future_in = Input(
|
81
|
+
name="future_tomo_obj",
|
82
|
+
type=FutureTomwerObject,
|
83
|
+
doc="data with some remote processing",
|
84
|
+
multiple=True,
|
85
|
+
default=True,
|
86
|
+
)
|
87
|
+
|
88
|
+
class Outputs:
|
89
|
+
data = Output(name="data", type=TomwerScanBase)
|
90
|
+
volume = Output(name="volume", type=TomwerVolumeBase)
|
91
|
+
|
92
|
+
def __init__(self, parent=None):
|
93
|
+
super().__init__(parent)
|
94
|
+
# gui
|
95
|
+
layout = gui.vBox(self.mainArea, self.name).layout()
|
96
|
+
self._widget = FutureTomwerObjectObserverWidget(
|
97
|
+
parent=self, name=self.windowTitle()
|
98
|
+
)
|
99
|
+
layout.addWidget(self._widget)
|
100
|
+
|
101
|
+
# connect signal / slot
|
102
|
+
self._widget.observationTable.model().sigStatusUpdated.connect(
|
103
|
+
self._convertBackAutomatically
|
104
|
+
)
|
105
|
+
self._widget.sigConversionRequested.connect(self._convertBack)
|
106
|
+
|
107
|
+
def convertWhenFinished(self):
|
108
|
+
return self._widget.convertWhenFinished()
|
109
|
+
|
110
|
+
def _convertBackAutomatically(self, future_tomo_obj, status):
|
111
|
+
if not isinstance(future_tomo_obj, FutureTomwerObject):
|
112
|
+
raise TypeError(
|
113
|
+
f"future_tomo_obj is expected to be an instance of {FutureTomwerObject} and not {type(future_tomo_obj)}"
|
114
|
+
)
|
115
|
+
if status in ("finished", "completed") and self.convertWhenFinished():
|
116
|
+
self._convertBack(future_tomo_obj)
|
117
|
+
|
118
|
+
def _convertBack(self, future_tomo_obj):
|
119
|
+
if not isinstance(future_tomo_obj, FutureTomwerObject):
|
120
|
+
raise TypeError(
|
121
|
+
f"future_tomo_obj is expected to be an instance of {FutureTomwerObject} and not {type(future_tomo_obj)}"
|
122
|
+
)
|
123
|
+
self._futureHasBeenConverted(future_tomo_obj, future_tomo_obj.tomo_obj)
|
124
|
+
|
125
|
+
@Inputs.future_in
|
126
|
+
def add(self, future_tomo_obj, signal_id=None):
|
127
|
+
if future_tomo_obj is not None:
|
128
|
+
self._widget.addFutureTomoObj(future_tomo_obj=future_tomo_obj)
|
129
|
+
|
130
|
+
def _futureHasBeenConverted(self, future_tomo_obj, tomo_obj):
|
131
|
+
# clean client to free resources
|
132
|
+
self._widget.removeFutureTomoObj(future_tomo_obj=future_tomo_obj)
|
133
|
+
if tomo_obj is not None:
|
134
|
+
if isinstance(tomo_obj, TomwerScanBase):
|
135
|
+
self.Outputs.data.send(tomo_obj)
|
136
|
+
elif isinstance(tomo_obj, TomwerVolumeBase):
|
137
|
+
self.Outputs.volume.send(tomo_obj)
|
138
|
+
|
139
|
+
|
140
|
+
class FutureTomwerObjectObserverWidget(
|
141
|
+
_FutureTomwerScanObserverWidget, SuperviseProcess
|
142
|
+
):
|
143
|
+
"""add dataset state notification (ProcessManager) to the original FutureTomwerScanObserverWidget"""
|
144
|
+
|
145
|
+
REFRESH_FREQUENCE = 10
|
146
|
+
"""time between call to updateView"""
|
147
|
+
|
148
|
+
def __init__(self, name, parent=None):
|
149
|
+
super().__init__(parent=parent)
|
150
|
+
self.name = name
|
151
|
+
self._updateThread = _RefreshThread(
|
152
|
+
callback=self.updateView, refresh_frequence=self.REFRESH_FREQUENCE
|
153
|
+
)
|
154
|
+
self.destroyed.connect(self.stopRefresh)
|
155
|
+
self._updateThread.start()
|
156
|
+
|
157
|
+
def stopRefresh(self):
|
158
|
+
if self._updateThread is not None:
|
159
|
+
self._updateThread.stop()
|
160
|
+
self._updateThread.wait(self.REFRESH_FREQUENCE + 1)
|
161
|
+
self._updateThread = None
|
162
|
+
|
163
|
+
def close(self):
|
164
|
+
self.stopRefresh()
|
165
|
+
super().close()
|
166
|
+
|
167
|
+
def addFutureTomoObj(self, future_tomo_obj: FutureTomwerObject):
|
168
|
+
super().addFutureTomoObj(future_tomo_obj)
|
169
|
+
self._updateTomoObjSupervisor(future_tomo_obj)
|
170
|
+
|
171
|
+
def removeFutureTomoObj(self, future_tomo_obj: FutureTomwerObject):
|
172
|
+
self._updateTomoObjSupervisor(future_tomo_obj)
|
173
|
+
super().removeFutureTomoObj(future_tomo_obj)
|
174
|
+
|
175
|
+
def _updateTomoObjSupervisor(self, future_tomo_obj):
|
176
|
+
r_id = future_tomo_obj.process_requester_id
|
177
|
+
if r_id is not None:
|
178
|
+
requester_name = ProcessManager().get_process(r_id).name
|
179
|
+
else:
|
180
|
+
requester_name = "unknow"
|
181
|
+
details = f"job spawn by {requester_name}"
|
182
|
+
if future_tomo_obj is None:
|
183
|
+
return
|
184
|
+
elif future_tomo_obj.status == "error":
|
185
|
+
state = DatasetState.FAILED
|
186
|
+
elif future_tomo_obj.status == "pending":
|
187
|
+
details = "\n".join([details, "pending"])
|
188
|
+
state = DatasetState.PENDING
|
189
|
+
elif future_tomo_obj.status in ("finished", "completed"):
|
190
|
+
details = future_tomo_obj.logs or "no log found"
|
191
|
+
state = DatasetState.SUCCEED
|
192
|
+
elif future_tomo_obj.status == "running":
|
193
|
+
details = "\n".join([details, "running"])
|
194
|
+
state = DatasetState.ON_GOING
|
195
|
+
elif future_tomo_obj.status == "cancelled":
|
196
|
+
details = "\n".join([details, "job cancelled"])
|
197
|
+
state = DatasetState.SKIPPED
|
198
|
+
elif future_tomo_obj.status is None:
|
199
|
+
return
|
200
|
+
else:
|
201
|
+
raise ValueError(
|
202
|
+
f"future scan status '{future_tomo_obj.status}' is not managed, {type(future_tomo_obj.status)}"
|
203
|
+
)
|
204
|
+
ProcessManager().notify_dataset_state(
|
205
|
+
dataset=future_tomo_obj.tomo_obj,
|
206
|
+
process=self,
|
207
|
+
state=state,
|
208
|
+
details=details,
|
209
|
+
)
|
210
|
+
|
211
|
+
def _updateStatus(self, future_tomo_obj):
|
212
|
+
self._updateTomoObjSupervisor(future_tomo_obj)
|
213
|
+
super()._updateStatus(future_tomo_obj)
|
214
|
+
|
215
|
+
|
216
|
+
class _RefreshThread(qt.QThread):
|
217
|
+
"""Simple thread to call a refresh callback each refresh_frequence (seconds)"""
|
218
|
+
|
219
|
+
TIME_BETWEEN_LOOP = 1.0
|
220
|
+
|
221
|
+
def __init__(self, callback, refresh_frequence) -> None:
|
222
|
+
super().__init__()
|
223
|
+
self._callback = callback
|
224
|
+
self._refresh_frequence = refresh_frequence
|
225
|
+
self._stop = False
|
226
|
+
|
227
|
+
def stop(self):
|
228
|
+
self._stop = True
|
229
|
+
self._callback = None
|
230
|
+
|
231
|
+
def run(self):
|
232
|
+
w_t = self._refresh_frequence + self.TIME_BETWEEN_LOOP
|
233
|
+
|
234
|
+
while not self._stop:
|
235
|
+
if w_t <= 0:
|
236
|
+
if self._callback is not None:
|
237
|
+
try:
|
238
|
+
submitToQtMainThread(self._callback)
|
239
|
+
except AttributeError:
|
240
|
+
# can happen when closing
|
241
|
+
pass
|
242
|
+
w_t = self._refresh_frequence + self.TIME_BETWEEN_LOOP
|
243
|
+
w_t -= self.TIME_BETWEEN_LOOP
|
244
|
+
time.sleep(self.TIME_BETWEEN_LOOP)
|