tomwer 1.1.1__py3-none-any.whl → 1.2.0a0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- orangecontrib/tomwer/__init__.py +1 -0
- orangecontrib/tomwer/orange/managedprocess.py +6 -4
- orangecontrib/tomwer/state_summary.py +3 -2
- orangecontrib/tomwer/widgets/__init__.py +2 -2
- orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py +9 -7
- orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py +6 -5
- orangecontrib/tomwer/widgets/control/AdvancementOW.py +2 -1
- orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py +235 -0
- orangecontrib/tomwer/widgets/control/DataListOW.py +7 -5
- orangecontrib/tomwer/widgets/control/DataListenerOW.py +13 -14
- orangecontrib/tomwer/widgets/control/DataSelectorOW.py +8 -6
- orangecontrib/tomwer/widgets/control/DataTransfertOW.py +9 -9
- orangecontrib/tomwer/widgets/control/DataValidatorOW.py +7 -8
- orangecontrib/tomwer/widgets/control/DataWatcherOW.py +25 -17
- orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +8 -8
- orangecontrib/tomwer/widgets/control/FilterOW.py +9 -8
- orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +3 -4
- orangecontrib/tomwer/widgets/control/NXTomomillOW.py +13 -14
- orangecontrib/tomwer/widgets/control/NotifierOW.py +3 -4
- orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +7 -5
- orangecontrib/tomwer/widgets/control/TimerOW.py +6 -5
- orangecontrib/tomwer/widgets/control/TomoObjSerieOW.py +5 -3
- orangecontrib/tomwer/widgets/control/VolumeSelector.py +8 -6
- orangecontrib/tomwer/widgets/control/VolumeSymLinkOW.py +10 -9
- orangecontrib/tomwer/widgets/control/icons/datadiscover.png +0 -0
- orangecontrib/tomwer/widgets/control/icons/datadiscover.svg +137 -0
- orangecontrib/tomwer/widgets/control/icons/nxtomomill.png +0 -0
- orangecontrib/tomwer/widgets/control/icons/nxtomomill.svg +5 -8
- orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py +13 -15
- orangecontrib/tomwer/widgets/debugtools/ObjectInspectorOW.py +3 -2
- orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py +10 -7
- orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py +8 -5
- orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py +5 -2
- orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py +6 -3
- orangecontrib/tomwer/widgets/edit/test/test_dark_flat_patch.py +8 -6
- orangecontrib/tomwer/widgets/edit/test/test_image_key_editor.py +3 -1
- orangecontrib/tomwer/widgets/edit/test/test_image_key_upgrader.py +3 -1
- orangecontrib/tomwer/widgets/edit/test/test_nxtomo_editor.py +3 -1
- orangecontrib/tomwer/widgets/other/PythonScriptOW.py +11 -11
- orangecontrib/tomwer/widgets/reconstruction/AxisOW.py +22 -27
- orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +13 -11
- orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py +11 -9
- orangecontrib/tomwer/widgets/reconstruction/NabuOW.py +16 -14
- orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py +27 -32
- orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py +27 -34
- orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py +23 -25
- orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py +16 -18
- orangecontrib/tomwer/widgets/reconstruction/TofuOW.py +9 -7
- orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.png +0 -0
- orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.svg +8 -11
- orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +8 -8
- orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +6 -4
- orangecontrib/tomwer/widgets/visualization/LivesliceOW.py +4 -3
- orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py +4 -3
- orangecontrib/tomwer/widgets/visualization/RadioStackOW.py +6 -4
- orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py +8 -6
- orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py +6 -3
- orangecontrib/tomwer/widgets/visualization/SliceStackOW.py +7 -5
- orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py +5 -4
- tomwer/__init__.py +1 -1
- tomwer/__main__.py +2 -1
- tomwer/app/axis.py +18 -14
- tomwer/app/canvas.py +7 -5
- tomwer/app/canvas_launcher/config.py +8 -6
- tomwer/app/canvas_launcher/environ.py +1 -2
- tomwer/app/canvas_launcher/mainwindow.py +23 -22
- tomwer/app/canvas_launcher/splash.py +1 -0
- tomwer/app/canvas_launcher/widgetsscheme.py +3 -3
- tomwer/app/darkref.py +7 -6
- tomwer/app/darkrefpatch.py +8 -6
- tomwer/app/diffframe.py +6 -4
- tomwer/app/imagekeyeditor.py +10 -10
- tomwer/app/imagekeyupgrader.py +8 -6
- tomwer/app/intensitynormalization.py +8 -8
- tomwer/app/lamino.py +5 -3
- tomwer/app/nabuapp.py +8 -6
- tomwer/app/nxtomoeditor.py +6 -5
- tomwer/app/radiostack.py +8 -6
- tomwer/app/rsync.py +3 -3
- tomwer/app/saaxis.py +22 -23
- tomwer/app/sadeltabeta.py +21 -21
- tomwer/app/samplemoved.py +8 -6
- tomwer/app/scanviewer.py +7 -6
- tomwer/app/sinogramviewer.py +8 -7
- tomwer/app/slicestack.py +8 -6
- tomwer/app/stopdatalistener.py +2 -1
- tomwer/core/futureobject.py +15 -6
- tomwer/core/log/logger.py +4 -3
- tomwer/core/log/processlog.py +0 -1
- tomwer/core/process/conditions/filters.py +3 -3
- tomwer/core/process/control/datadiscovery.py +7 -0
- tomwer/core/process/control/datalistener/datalistener.py +22 -21
- tomwer/core/process/control/datalistener/rpcserver.py +18 -28
- tomwer/core/process/control/datawatcher/datawatcher.py +15 -12
- tomwer/core/process/control/datawatcher/datawatcherobserver.py +11 -8
- tomwer/core/process/control/datawatcher/datawatcherprocess.py +7 -5
- tomwer/core/process/control/datawatcher/edfdwprocess.py +5 -15
- tomwer/core/process/control/datawatcher/hdf5dwprocess.py +3 -1
- tomwer/core/process/control/datawatcher/status.py +2 -0
- tomwer/core/process/control/nxtomomill.py +7 -6
- tomwer/core/process/control/scanlist.py +2 -1
- tomwer/core/process/control/scanselector.py +1 -0
- tomwer/core/process/control/scantransfer.py +12 -12
- tomwer/core/process/control/scanvalidator.py +7 -6
- tomwer/core/process/control/test/test_volume_link.py +5 -4
- tomwer/core/process/control/timer.py +4 -4
- tomwer/core/process/control/volumeselector.py +1 -0
- tomwer/core/process/control/volumesymlink.py +8 -9
- tomwer/core/process/edit/darkflatpatch.py +9 -12
- tomwer/core/process/edit/imagekeyeditor.py +11 -13
- tomwer/core/process/reconstruction/axis/axis.py +36 -38
- tomwer/core/process/reconstruction/axis/mode.py +2 -1
- tomwer/core/process/reconstruction/axis/params.py +23 -28
- tomwer/core/process/reconstruction/darkref/darkrefs.py +23 -27
- tomwer/core/process/reconstruction/darkref/darkrefscopy.py +14 -18
- tomwer/core/process/reconstruction/darkref/params.py +3 -1
- tomwer/core/process/reconstruction/lamino/tofu.py +11 -15
- tomwer/core/process/reconstruction/nabu/castvolume.py +15 -18
- tomwer/core/process/reconstruction/nabu/nabucommon.py +19 -20
- tomwer/core/process/reconstruction/nabu/nabuscores.py +16 -14
- tomwer/core/process/reconstruction/nabu/nabuslices.py +27 -22
- tomwer/core/process/reconstruction/nabu/nabuvolume.py +20 -22
- tomwer/core/process/reconstruction/nabu/utils.py +17 -15
- tomwer/core/process/reconstruction/normalization/__init__.py +1 -3
- tomwer/core/process/reconstruction/normalization/normalization.py +16 -21
- tomwer/core/process/reconstruction/normalization/params.py +2 -2
- tomwer/core/process/reconstruction/saaxis/__init__.py +1 -1
- tomwer/core/process/reconstruction/saaxis/params.py +6 -7
- tomwer/core/process/reconstruction/saaxis/saaxis.py +44 -55
- tomwer/core/process/reconstruction/sadeltabeta/__init__.py +1 -1
- tomwer/core/process/reconstruction/sadeltabeta/params.py +9 -13
- tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +40 -46
- tomwer/core/process/reconstruction/scores/__init__.py +2 -2
- tomwer/core/process/reconstruction/scores/params.py +6 -9
- tomwer/core/process/reconstruction/scores/scores.py +10 -13
- tomwer/core/process/reconstruction/test/test_axis_params.py +4 -2
- tomwer/core/process/reconstruction/test/test_darkref.py +1 -2
- tomwer/core/process/reconstruction/test/test_darkref_copy.py +3 -1
- tomwer/core/process/reconstruction/test/test_paramsbase.py +1 -1
- tomwer/core/process/reconstruction/test/test_saaxis.py +11 -7
- tomwer/core/process/reconstruction/test/test_sadeltabeta.py +5 -4
- tomwer/core/process/reconstruction/test/test_utils.py +3 -2
- tomwer/core/process/script/python.py +6 -8
- tomwer/core/process/task.py +11 -12
- tomwer/core/process/test/test_axis.py +12 -9
- tomwer/core/process/test/test_conditions.py +8 -8
- tomwer/core/process/test/test_dark_and_flat.py +9 -8
- tomwer/core/process/test/test_data_listener.py +5 -3
- tomwer/core/process/test/test_data_transfer.py +14 -12
- tomwer/core/process/test/test_data_watcher.py +3 -1
- tomwer/core/process/test/test_lamino.py +3 -1
- tomwer/core/process/test/test_nabu.py +13 -12
- tomwer/core/process/test/test_normalization.py +7 -5
- tomwer/core/process/test/test_timer.py +2 -1
- tomwer/core/process/utils.py +9 -9
- tomwer/core/progress.py +3 -4
- tomwer/core/scan/blissscan.py +4 -2
- tomwer/core/scan/edfscan.py +26 -29
- tomwer/core/scan/futurescan.py +2 -1
- tomwer/core/scan/hdf5scan.py +21 -28
- tomwer/core/scan/scanbase.py +18 -18
- tomwer/core/scan/scanfactory.py +20 -21
- tomwer/core/scan/scantype.py +7 -0
- tomwer/core/scan/test/test_edf.py +2 -1
- tomwer/core/scan/test/test_future_scan.py +2 -1
- tomwer/core/scan/test/test_h5.py +5 -4
- tomwer/core/scan/test/test_process_registration.py +5 -3
- tomwer/core/scan/test/test_scan.py +11 -9
- tomwer/core/settings.py +1 -2
- tomwer/core/test/test_lamino.py +3 -2
- tomwer/core/test/test_scanutils.py +3 -2
- tomwer/core/test/test_utils.py +6 -4
- tomwer/core/utils/__init__.py +8 -6
- tomwer/core/utils/deprecation.py +2 -2
- tomwer/core/utils/image.py +4 -3
- tomwer/core/utils/locker.py +1 -1
- tomwer/core/utils/normalization.py +1 -0
- tomwer/core/utils/nxtomoutils.py +2 -1
- tomwer/core/utils/scanutils.py +9 -6
- tomwer/core/utils/slurm.py +2 -1
- tomwer/core/utils/time.py +2 -4
- tomwer/core/utils/volumeutils.py +2 -1
- tomwer/core/volume/__init__.py +1 -1
- tomwer/core/volume/edfvolume.py +4 -3
- tomwer/core/volume/hdf5volume.py +6 -8
- tomwer/core/volume/jp2kvolume.py +4 -3
- tomwer/core/volume/rawvolume.py +7 -7
- tomwer/core/volume/tiffvolume.py +8 -6
- tomwer/core/volume/volumebase.py +1 -0
- tomwer/core/volume/volumefactory.py +18 -18
- tomwer/gui/cluster/slurm.py +2 -0
- tomwer/gui/cluster/supervisor.py +4 -2
- tomwer/gui/cluster/test/test_cluster.py +5 -4
- tomwer/gui/cluster/test/test_supervisor.py +4 -2
- tomwer/gui/conditions/filter.py +7 -6
- tomwer/gui/control/actions.py +1 -0
- tomwer/gui/control/datadiscovery.py +168 -0
- tomwer/gui/control/datalist.py +29 -28
- tomwer/gui/control/datalistener.py +8 -4
- tomwer/gui/control/datareacheractions.py +2 -1
- tomwer/gui/control/datatransfert.py +3 -1
- tomwer/gui/control/datavalidator.py +11 -12
- tomwer/gui/control/datawatcher/configuration.py +12 -1
- tomwer/gui/control/datawatcher/controlwidget.py +116 -0
- tomwer/gui/control/datawatcher/datawatcher.py +63 -121
- tomwer/gui/control/datawatcher/datawatcherobserver.py +7 -9
- tomwer/gui/control/history.py +3 -1
- tomwer/gui/control/observations.py +7 -7
- tomwer/gui/control/scanselectorwidget.py +4 -2
- tomwer/gui/control/selectorwidgetbase.py +3 -1
- tomwer/gui/control/serie/seriecreator.py +11 -12
- tomwer/gui/control/singletomoobj.py +4 -4
- tomwer/gui/control/test/test_datadiscovery.py +27 -0
- tomwer/gui/control/test/test_datalist.py +7 -6
- tomwer/gui/control/test/test_datalistener.py +4 -4
- tomwer/gui/control/test/test_datavalidator.py +3 -1
- tomwer/gui/control/test/test_inputwidget.py +5 -4
- tomwer/gui/control/test/test_process_manager.py +3 -3
- tomwer/gui/control/test/test_scanselector.py +6 -4
- tomwer/gui/control/test/test_scanvalidator.py +6 -5
- tomwer/gui/control/test/test_single_tomo_obj.py +5 -3
- tomwer/gui/control/test/test_volume_dialog.py +7 -5
- tomwer/gui/control/test/test_volumeselector.py +8 -6
- tomwer/gui/control/volumeselectorwidget.py +2 -1
- tomwer/gui/debugtools/datasetgenerator.py +2 -1
- tomwer/gui/debugtools/objectinspector.py +6 -7
- tomwer/gui/edit/dkrfpatch.py +11 -10
- tomwer/gui/edit/imagekeyeditor.py +12 -12
- tomwer/gui/edit/nxtomoeditor.py +8 -7
- tomwer/gui/edit/test/test_dkrf_patch.py +10 -9
- tomwer/gui/edit/test/test_image_key_editor.py +8 -6
- tomwer/gui/edit/test/test_nx_editor.py +7 -5
- tomwer/gui/icons.py +3 -2
- tomwer/gui/illustrations.py +3 -2
- tomwer/gui/imagefromfile.py +3 -1
- tomwer/gui/qfolderdialog.py +14 -12
- tomwer/gui/reconstruction/axis/CompareImages.py +9 -8
- tomwer/gui/reconstruction/axis/__init__.py +1 -1
- tomwer/gui/reconstruction/axis/axis.py +9 -7
- tomwer/gui/reconstruction/axis/radioaxis.py +30 -32
- tomwer/gui/reconstruction/darkref/darkrefcopywidget.py +6 -5
- tomwer/gui/reconstruction/darkref/darkrefwidget.py +4 -2
- tomwer/gui/reconstruction/lamino/tofu/misc.py +3 -1
- tomwer/gui/reconstruction/lamino/tofu/projections.py +16 -8
- tomwer/gui/reconstruction/lamino/tofu/tofu.py +6 -3
- tomwer/gui/reconstruction/lamino/tofu/tofuexpert.py +5 -2
- tomwer/gui/reconstruction/lamino/tofu/tofuoutput.py +8 -5
- tomwer/gui/reconstruction/nabu/action.py +1 -0
- tomwer/gui/reconstruction/nabu/castvolume.py +6 -4
- tomwer/gui/reconstruction/nabu/check.py +3 -2
- tomwer/gui/reconstruction/nabu/nabuconfig/base.py +5 -2
- tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py +6 -3
- tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py +4 -3
- tomwer/gui/reconstruction/nabu/nabuconfig/output.py +7 -5
- tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +8 -6
- tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +7 -7
- tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +40 -33
- tomwer/gui/reconstruction/nabu/nabuflow.py +7 -4
- tomwer/gui/reconstruction/nabu/slices.py +14 -10
- tomwer/gui/reconstruction/nabu/slurm.py +1 -0
- tomwer/gui/reconstruction/nabu/volume.py +5 -3
- tomwer/gui/reconstruction/normalization/intensity.py +14 -13
- tomwer/gui/reconstruction/saaxis/corrangeselector.py +36 -35
- tomwer/gui/reconstruction/saaxis/dimensionwidget.py +5 -4
- tomwer/gui/reconstruction/saaxis/saaxis.py +17 -17
- tomwer/gui/reconstruction/saaxis/sliceselector.py +5 -5
- tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py +33 -36
- tomwer/gui/reconstruction/scores/scoreplot.py +19 -18
- tomwer/gui/reconstruction/test/test_axis.py +14 -13
- tomwer/gui/reconstruction/test/test_lamino.py +3 -2
- tomwer/gui/reconstruction/test/test_nabu.py +8 -6
- tomwer/gui/reconstruction/test/test_saaxis.py +17 -15
- tomwer/gui/reconstruction/test/test_sadeltabeta.py +15 -13
- tomwer/gui/samplemoved/__init__.py +8 -7
- tomwer/gui/samplemoved/selectiontable.py +4 -2
- tomwer/gui/stackplot.py +14 -13
- tomwer/gui/stacks.py +11 -9
- tomwer/gui/test/test_axis_gui.py +5 -4
- tomwer/gui/test/test_qfolder_dialog.py +2 -1
- tomwer/gui/utils/__init__.py +5 -5
- tomwer/gui/utils/buttons.py +1 -0
- tomwer/gui/utils/completer.py +1 -0
- tomwer/gui/utils/flow.py +4 -2
- tomwer/gui/utils/illustrations.py +1 -0
- tomwer/gui/utils/inputwidget.py +11 -17
- tomwer/gui/utils/lineselector/lineselector.py +6 -8
- tomwer/gui/utils/qt_utils.py +1 -0
- tomwer/gui/utils/scandescription.py +2 -0
- tomwer/gui/utils/splashscreen.py +1 -1
- tomwer/gui/utils/unitsystem.py +3 -1
- tomwer/gui/utils/vignettes.py +8 -8
- tomwer/gui/utils/waiterthread.py +2 -1
- tomwer/gui/visualization/dataviewer.py +20 -28
- tomwer/gui/visualization/diffviewer/diffviewer.py +17 -20
- tomwer/gui/visualization/diffviewer/shiftwidget.py +3 -1
- tomwer/gui/visualization/nxtomometadata.py +1 -0
- tomwer/gui/visualization/reconstructionparameters.py +13 -12
- tomwer/gui/visualization/scanoverview.py +5 -3
- tomwer/gui/visualization/sinogramviewer.py +3 -2
- tomwer/gui/visualization/test/test_dataviewer.py +3 -1
- tomwer/gui/visualization/test/test_diffviewer.py +8 -6
- tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py +5 -3
- tomwer/gui/visualization/test/test_reconstruction_parameters.py +5 -3
- tomwer/gui/visualization/test/test_sinogramviewer.py +10 -9
- tomwer/gui/visualization/test/test_stacks.py +8 -6
- tomwer/gui/visualization/test/test_volumeviewer.py +10 -8
- tomwer/gui/visualization/tomoobjoverview.py +7 -4
- tomwer/gui/visualization/volumeoverview.py +5 -3
- tomwer/gui/visualization/volumeviewer.py +15 -14
- tomwer/io/utils/__init__.py +3 -3
- tomwer/io/utils/h5pyutils.py +2 -1
- tomwer/io/utils/utils.py +17 -21
- tomwer/resources/__init__.py +1 -1
- tomwer/synctools/axis.py +3 -1
- tomwer/synctools/darkref.py +3 -2
- tomwer/synctools/datalistener.py +10 -6
- tomwer/synctools/datatransfert.py +2 -3
- tomwer/synctools/imageloaderthread.py +5 -3
- tomwer/synctools/rsyncmanager.py +3 -2
- tomwer/synctools/saaxis.py +3 -1
- tomwer/synctools/sadeltabeta.py +3 -1
- tomwer/synctools/stacks/control/datalistener.py +9 -12
- tomwer/synctools/stacks/edit/darkflatpatch.py +13 -12
- tomwer/synctools/stacks/edit/imagekeyeditor.py +12 -11
- tomwer/synctools/stacks/processingstack.py +3 -2
- tomwer/synctools/stacks/reconstruction/axis.py +12 -12
- tomwer/synctools/stacks/reconstruction/castvolume.py +8 -5
- tomwer/synctools/stacks/reconstruction/dkrefcopy.py +10 -9
- tomwer/synctools/stacks/reconstruction/lamino.py +9 -7
- tomwer/synctools/stacks/reconstruction/nabu.py +18 -17
- tomwer/synctools/stacks/reconstruction/normalization.py +12 -16
- tomwer/synctools/stacks/reconstruction/saaxis.py +13 -11
- tomwer/synctools/stacks/reconstruction/sadeltabeta.py +16 -14
- tomwer/synctools/test/test_darkRefs.py +4 -3
- tomwer/synctools/test/test_foldertransfer.py +14 -12
- tomwer/synctools/test/test_scanstages.py +8 -7
- tomwer/synctools/utils/scanstages.py +7 -5
- tomwer/tests/conftest.py +4 -4
- tomwer/tests/test_scripts.py +3 -2
- tomwer/tests/utils/__init__.py +5 -4
- tomwer/tests/utils/utilstest.py +5 -6
- tomwer/third_party/nabu/preproc/phase.py +7 -5
- tomwer/third_party/nabu/utils.py +3 -2
- tomwer/utils.py +12 -12
- tomwer/version.py +4 -4
- {tomwer-1.1.1.dist-info → tomwer-1.2.0a0.dist-info}/METADATA +2 -2
- {tomwer-1.1.1.dist-info → tomwer-1.2.0a0.dist-info}/RECORD +353 -345
- /tomwer-1.1.1-py3.8-nspkg.pth → /tomwer-1.2.0a0-py3.8-nspkg.pth +0 -0
- {tomwer-1.1.1.dist-info → tomwer-1.2.0a0.dist-info}/LICENSE +0 -0
- {tomwer-1.1.1.dist-info → tomwer-1.2.0a0.dist-info}/WHEEL +0 -0
- {tomwer-1.1.1.dist-info → tomwer-1.2.0a0.dist-info}/entry_points.txt +0 -0
- {tomwer-1.1.1.dist-info → tomwer-1.2.0a0.dist-info}/namespace_packages.txt +0 -0
- {tomwer-1.1.1.dist-info → tomwer-1.2.0a0.dist-info}/top_level.txt +0 -0
@@ -1,8 +1,8 @@
|
|
1
|
-
tomwer-1.
|
2
|
-
orangecontrib/tomwer/__init__.py,sha256=
|
3
|
-
orangecontrib/tomwer/state_summary.py,sha256=
|
1
|
+
tomwer-1.2.0a0-py3.8-nspkg.pth,sha256=xeeGR3TjdoVxdFeF6T-zSwZWh6Et--EYuPWu67LxL_c,574
|
2
|
+
orangecontrib/tomwer/__init__.py,sha256=B4DXy1gY_wXmNYa2aOfapmJb2mEuCAjoaNEGnpBs70g,148
|
3
|
+
orangecontrib/tomwer/state_summary.py,sha256=5_dPzweL3r0ye4ZfJo6IV2ThJI8fQhWoO2ySdJJajj8,1711
|
4
4
|
orangecontrib/tomwer/orange/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
-
orangecontrib/tomwer/orange/managedprocess.py,sha256=
|
5
|
+
orangecontrib/tomwer/orange/managedprocess.py,sha256=fhI5r1xZde5QyHzu78ymywX7PHNxFRkNdQ7pRgY6rcc,4621
|
6
6
|
orangecontrib/tomwer/orange/settings.py,sha256=0aBTVBVIR441LOb-CoYCwRZ1ArB5Cq17xCiVH7cv_SA,2044
|
7
7
|
orangecontrib/tomwer/tutorials/EBS_tomo_listener.ows,sha256=GLHvcQnR79X2sTDqIq9h4ayb3Tya7S-givzPta63ciQ,4747
|
8
8
|
orangecontrib/tomwer/tutorials/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -11,35 +11,38 @@ orangecontrib/tomwer/tutorials/simple_slice_reconstruction.ows,sha256=O9Bnunjh0Q
|
|
11
11
|
orangecontrib/tomwer/tutorials/simple_volume_local_reconstruction.ows,sha256=BBxkMX98PjDZsgxiVz4i-xPFw4WMdzif2YPnRQfONP4,5945
|
12
12
|
orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows,sha256=-z9o7iaW8B7zEQ2ilP_LDporYDWBuaBUily71moaX94,7408
|
13
13
|
orangecontrib/tomwer/tutorials/using_saaxis_to_find_cor.ows,sha256=TUZNkXEsQyj7Qra1GEb4IhGFDWv3uJzqXbp3P04jwbs,5192
|
14
|
-
orangecontrib/tomwer/widgets/__init__.py,sha256=
|
14
|
+
orangecontrib/tomwer/widgets/__init__.py,sha256=mxBHa1nogy89VPjEMYvWEMdpJqh70vkhJFGHOZu4G1M,2485
|
15
15
|
orangecontrib/tomwer/widgets/utils.py,sha256=zGfY5XfrLdD2awrtItLYJjFRE-FCCwhPs_QJaEA73X0,2339
|
16
|
-
orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py,sha256=
|
17
|
-
orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py,sha256=
|
16
|
+
orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py,sha256=DW9hj0hnCpI9CzoD_AciW9zZOAMiajiGajFW5licnRY,8989
|
17
|
+
orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py,sha256=heuShZgpix6Zc1q_wlKGj1CRPRs0YtE91dwKXExIhpc,3981
|
18
18
|
orangecontrib/tomwer/widgets/cluster/__init__.py,sha256=HyTijuJFHFyl5n94nCWREgTxbE3olYsYLAFshjTMNN4,1614
|
19
19
|
orangecontrib/tomwer/widgets/cluster/icons/slurm.png,sha256=C-YBLwXCnh0oo4nvEt80WxX_jKYGUAFpWMUSlzt6ke0,1995
|
20
20
|
orangecontrib/tomwer/widgets/cluster/icons/slurm.svg,sha256=9LqiU88NH3ACxtZ8A7gTm-C_0ACR8iq0k_N2W1IFf9Q,9790
|
21
21
|
orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.png,sha256=sxH1V20s0JZPTCq82Fizz8Q9RHXwviapdStgZT8GBIM,3212
|
22
22
|
orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.svg,sha256=N22gP4exnQP5zYysfSGXIMTHh0QZmMQXjGOx2gOEpfc,56984
|
23
|
-
orangecontrib/tomwer/widgets/control/AdvancementOW.py,sha256=
|
24
|
-
orangecontrib/tomwer/widgets/control/
|
25
|
-
orangecontrib/tomwer/widgets/control/
|
26
|
-
orangecontrib/tomwer/widgets/control/
|
27
|
-
orangecontrib/tomwer/widgets/control/
|
28
|
-
orangecontrib/tomwer/widgets/control/
|
29
|
-
orangecontrib/tomwer/widgets/control/
|
30
|
-
orangecontrib/tomwer/widgets/control/
|
31
|
-
orangecontrib/tomwer/widgets/control/
|
32
|
-
orangecontrib/tomwer/widgets/control/
|
33
|
-
orangecontrib/tomwer/widgets/control/
|
34
|
-
orangecontrib/tomwer/widgets/control/
|
35
|
-
orangecontrib/tomwer/widgets/control/
|
36
|
-
orangecontrib/tomwer/widgets/control/
|
37
|
-
orangecontrib/tomwer/widgets/control/
|
38
|
-
orangecontrib/tomwer/widgets/control/
|
39
|
-
orangecontrib/tomwer/widgets/control/
|
23
|
+
orangecontrib/tomwer/widgets/control/AdvancementOW.py,sha256=EEaWpGYjyJObcfKIF3Vu7p-Cd7_xhotNgqzYRfrx1Z0,2488
|
24
|
+
orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py,sha256=Hr-gPNNmCT4uxyAWA3tWxWCGNEBi_2oJX1M6IDnwtgU,8123
|
25
|
+
orangecontrib/tomwer/widgets/control/DataListOW.py,sha256=UR-DuzZiSbYF4v5jDHYDZXRrFir5oq23ItUQSIF_ti0,4744
|
26
|
+
orangecontrib/tomwer/widgets/control/DataListenerOW.py,sha256=JD-1aoZB2BG69JDWcnY1pmt6Ho5NM0zcnQSxWBFHuIA,15203
|
27
|
+
orangecontrib/tomwer/widgets/control/DataSelectorOW.py,sha256=_UmMKZD93-Yurv2lYmIlJngvhJmNW8oC25KekXf4EXE,4999
|
28
|
+
orangecontrib/tomwer/widgets/control/DataTransfertOW.py,sha256=pLpJm8ov96LK5L2b_5o2vTNyM9eUtW-dblX4l2yr5Sk,7271
|
29
|
+
orangecontrib/tomwer/widgets/control/DataValidatorOW.py,sha256=LJduzZdfZ0zBKY7_0kYGYBfs2Ogq75vwNkx_a6uDxdk,7137
|
30
|
+
orangecontrib/tomwer/widgets/control/DataWatcherOW.py,sha256=3Dhc9qGb9Al5PO8PxV2Sx4Z1XPM7D78tLuhHd_SNVXQ,7456
|
31
|
+
orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py,sha256=HWYwmHdkXSzBA9gXTtcXvb3AzlSAlSATlpwTe4fG_vM,9092
|
32
|
+
orangecontrib/tomwer/widgets/control/FilterOW.py,sha256=aqNWGMnqMxEQn_sNFYqNOfAkqPS7yxVZgVdGxYTrv3I,4552
|
33
|
+
orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py,sha256=VbFm--V4k28Jx4XgLCpo-ZBM6iOVCw6l1moLLwgOYKM,3269
|
34
|
+
orangecontrib/tomwer/widgets/control/NXTomomillOW.py,sha256=6l4krYCMUzgdRCTPGmjE0TFy3raGv17oP6nVR3tpZik,12134
|
35
|
+
orangecontrib/tomwer/widgets/control/NotifierOW.py,sha256=kgbvnxBbMDCojwT2smiD6XSC1TCUr3iyu23laMXD8xg,4235
|
36
|
+
orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py,sha256=h3Qk5PybxuFyTnCw9k_2-Bu3wtlMzDsach8LF3KfC4Y,5865
|
37
|
+
orangecontrib/tomwer/widgets/control/TimerOW.py,sha256=hCVmGkkLv7s6wv26loPlPZWpjWyq_HrwEerduxMxSX0,4419
|
38
|
+
orangecontrib/tomwer/widgets/control/TomoObjSerieOW.py,sha256=IY5tGu8qjwvasSEtKqVcGO-boVlM0ZJGZgRSofM3bQc,3231
|
39
|
+
orangecontrib/tomwer/widgets/control/VolumeSelector.py,sha256=WomQ9ZgDYG7P5lmEI2Uk2JDwgjR1AtfPcHCSHd7hirc,5109
|
40
|
+
orangecontrib/tomwer/widgets/control/VolumeSymLinkOW.py,sha256=S1KL8QQkR0TfnUnu7YsgQUR1guT7kGOPXEeC5uzAW2I,6520
|
40
41
|
orangecontrib/tomwer/widgets/control/__init__.py,sha256=SaP5K3r1k3BqnHyNEKKApBnfDXucbryi4HexMvokYhQ,1545
|
41
42
|
orangecontrib/tomwer/widgets/control/icons/advancement.png,sha256=Uv_Eb1nzkb6IVj0u4btrz5_DD126aYPZcls7U40jIEw,729
|
42
43
|
orangecontrib/tomwer/widgets/control/icons/advancement.svg,sha256=tNLbRofd2oT1bHov49X3q-YVNwtHEgrW3HfPc5i80js,5781
|
44
|
+
orangecontrib/tomwer/widgets/control/icons/datadiscover.png,sha256=7_4uHGZ27EuXJdnQSfdiNV-AvJnyo04NNBJRAgWInvE,598
|
45
|
+
orangecontrib/tomwer/widgets/control/icons/datadiscover.svg,sha256=EzyWMyQuymGY2lmsTmWkOendBNqopT0y62m_zsCogeY,3772
|
43
46
|
orangecontrib/tomwer/widgets/control/icons/datalistener.png,sha256=K2EOnEJ0hjkC_0HAEy5EqhYv8DeaaZ4fO-Vd8oVhmuM,2100
|
44
47
|
orangecontrib/tomwer/widgets/control/icons/datalistener.svg,sha256=fXWYp6jhgUmDitv-874dUDZFvUMXVlw6rFQ4okVeX5o,3136
|
45
48
|
orangecontrib/tomwer/widgets/control/icons/datawatcher.svg,sha256=pwK6Uc2XvL4iIJHHZkub2C0L761a_LMlqm7wWmx2auc,3351
|
@@ -52,8 +55,8 @@ orangecontrib/tomwer/widgets/control/icons/namefilter.png,sha256=X8bjqAnxP5v1jzl
|
|
52
55
|
orangecontrib/tomwer/widgets/control/icons/namefilter.svg,sha256=z8o4MbAcSmnE-SeqCcgQ0_6wvy6C9QM3UGzyl9RjJGM,3757
|
53
56
|
orangecontrib/tomwer/widgets/control/icons/notification.png,sha256=rmDW0zS9D7FwKadIzEEhAm-KuV6ixK7ViyQIppWWBY8,2600
|
54
57
|
orangecontrib/tomwer/widgets/control/icons/notification.svg,sha256=lDnKnOaOOPYQINZJSuB7gdJzvoG9jvwx8ZDx4i1UfRA,4587
|
55
|
-
orangecontrib/tomwer/widgets/control/icons/nxtomomill.png,sha256=
|
56
|
-
orangecontrib/tomwer/widgets/control/icons/nxtomomill.svg,sha256=
|
58
|
+
orangecontrib/tomwer/widgets/control/icons/nxtomomill.png,sha256=1uFd_yJff6uIatqioLy_3ldW9UZ9tqbb3iQtOkacrYA,66863
|
59
|
+
orangecontrib/tomwer/widgets/control/icons/nxtomomill.svg,sha256=p_H4r7lEETZ6426p9tIlQro5iXgdNSzUyQMTGllSg74,11185
|
57
60
|
orangecontrib/tomwer/widgets/control/icons/progress.svg,sha256=tE8dn1IusSW1GbJKTM7csir9apC-QiaKjbWi4q76c4U,2516
|
58
61
|
orangecontrib/tomwer/widgets/control/icons/scanlist.svg,sha256=YqqUWI5oHlgkHBQP4nD6MJnyzK5VVOTAl1Vs0HtYN3Y,2873
|
59
62
|
orangecontrib/tomwer/widgets/control/icons/scanselector.png,sha256=LDj_eW5U_-t8AxHsd1M8rtN769BN4oW4d_ahOLcRGXY,1463
|
@@ -70,17 +73,17 @@ orangecontrib/tomwer/widgets/control/icons/volumeselector.png,sha256=BIjuKaxxFt3
|
|
70
73
|
orangecontrib/tomwer/widgets/control/icons/volumeselector.svg,sha256=VWlAb73s-eZfF85-e9VjVf18LcYQjb1W7YWH9PPLE4M,10936
|
71
74
|
orangecontrib/tomwer/widgets/control/icons/volumesymlink.png,sha256=Gf9qmYvxpnGMn4BbCCTwHPfME5yfhM6FlOc5l00CGus,1895
|
72
75
|
orangecontrib/tomwer/widgets/control/icons/volumesymlink.svg,sha256=jVIt49I_7VeN9OQF1GeSujP_KwegQD4YFmIqOA-Jv9c,5786
|
73
|
-
orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py,sha256=
|
74
|
-
orangecontrib/tomwer/widgets/debugtools/ObjectInspectorOW.py,sha256=
|
76
|
+
orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py,sha256=8KK9HV0vqUrcQFdR_jaxoJwYVy1AL27mdiuJ6h27s0E,6399
|
77
|
+
orangecontrib/tomwer/widgets/debugtools/ObjectInspectorOW.py,sha256=d2GrbpmSi5mmn8O03fu---l9OFy9hYNzkNEtOAwuQ88,2464
|
75
78
|
orangecontrib/tomwer/widgets/debugtools/__init__.py,sha256=yYF1v2MWP4g1uXZOw3qPPvDnX8KKzauVTRit6fJ9MWM,1553
|
76
79
|
orangecontrib/tomwer/widgets/debugtools/icons/hammer.png,sha256=5z_sXTWfAMCYhKbvLdiOmil8BpSxUICI_Y1BW9NL0Co,2034
|
77
80
|
orangecontrib/tomwer/widgets/debugtools/icons/hammer.svg,sha256=7uovCO-33EP_A6sjGzQMkvF59hdF_Aj1hzr5yIAfDjk,3191
|
78
81
|
orangecontrib/tomwer/widgets/debugtools/icons/inspector.png,sha256=sNTPrEEDGQHwU-O6hXBZfdmXeUWUarZPsL3s6l9opSE,1020
|
79
82
|
orangecontrib/tomwer/widgets/debugtools/icons/inspector.svg,sha256=GPx4Xoo8dZGr0Ea6O_2YXcTh5Vg6Lzrh86uf6iG5opQ,3943
|
80
|
-
orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py,sha256=
|
81
|
-
orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py,sha256=
|
82
|
-
orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py,sha256=
|
83
|
-
orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py,sha256=
|
83
|
+
orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py,sha256=AO4qZaV1oZ8C2Ap2DmGnBs1VbmRU3uZ62A_tint9kJ0,6429
|
84
|
+
orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py,sha256=937ImFQ6VYTgGxSRTDSZgBbwNnt3LpCMxfUHSuWLUQM,4495
|
85
|
+
orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py,sha256=e96n8jPOppzW4WiAMEzCbv7BSX4AnnvCDU-GMqY5c6w,4506
|
86
|
+
orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py,sha256=KN_A6IyPRtk2_zY0fnsRXB6aQZvpNUruHpmee7Ttcb4,2959
|
84
87
|
orangecontrib/tomwer/widgets/edit/__init__.py,sha256=Vi59fYTOMhrLXwQ3OkMIonmHx4rG_UUnutZPiax_rGY,1555
|
85
88
|
orangecontrib/tomwer/widgets/edit/icons/image_key_editor.png,sha256=Fl6PEgzY9Gjs6Sh_vMWHCXVtNJ_wiQ5e9g58rZI64ng,878
|
86
89
|
orangecontrib/tomwer/widgets/edit/icons/image_key_editor.svg,sha256=9viXpjZxrXDx6qgWbRByvvqbBLcleUS1viFpSVDdFgg,7396
|
@@ -91,10 +94,10 @@ orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.svg,sha256=bHPTVeDwLoJXHw
|
|
91
94
|
orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.png,sha256=iYJDtrlegb4i5M8ta8eHbPAIb9hUC-JsMTcLN-0SZX8,1522
|
92
95
|
orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.svg,sha256=cAGJ0qLFdlE-Fp2fA5nCGVLdRITSJ53LsgMzSO1HGWk,29749
|
93
96
|
orangecontrib/tomwer/widgets/edit/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
94
|
-
orangecontrib/tomwer/widgets/edit/test/test_dark_flat_patch.py,sha256=
|
95
|
-
orangecontrib/tomwer/widgets/edit/test/test_image_key_editor.py,sha256=
|
96
|
-
orangecontrib/tomwer/widgets/edit/test/test_image_key_upgrader.py,sha256=
|
97
|
-
orangecontrib/tomwer/widgets/edit/test/test_nxtomo_editor.py,sha256=
|
97
|
+
orangecontrib/tomwer/widgets/edit/test/test_dark_flat_patch.py,sha256=eXGz4ezraxewVYVLfAU1_RWcYfixN6WDQUWmT2ULJfg,2832
|
98
|
+
orangecontrib/tomwer/widgets/edit/test/test_image_key_editor.py,sha256=eQneKPaEyMWt4Yjvos0fA3m0yx1p1XP2FrNP1z7_s-o,2129
|
99
|
+
orangecontrib/tomwer/widgets/edit/test/test_image_key_upgrader.py,sha256=YLtZ4o4FwQfXU0r1DzSXrAxFdgdeJV-EMOkTkmiwvzo,2211
|
100
|
+
orangecontrib/tomwer/widgets/edit/test/test_nxtomo_editor.py,sha256=TEJ6OXjpGy5b853ev0tfOto7K08VjTmBx3pWhg7wNGk,820
|
98
101
|
orangecontrib/tomwer/widgets/icons/tomwer.png,sha256=M9IWm_TDKlSA6PZ-FPblo2k6PH-kkT2d0ASRvZ-pM_8,8992
|
99
102
|
orangecontrib/tomwer/widgets/icons/tomwer_build.png,sha256=NoFulUejQqGshY4POh2g--0I5Ug1aGFoyhkBkTa_Pe4,6731
|
100
103
|
orangecontrib/tomwer/widgets/icons/tomwer_build.svg,sha256=atDII2b2ElqVPXT3Q80bkYJZnmhqSKMluDspT4LDs_g,15969
|
@@ -110,18 +113,18 @@ orangecontrib/tomwer/widgets/icons/tomwer_other.png,sha256=Wkmfwcr4r0BVTr2nnN4JO
|
|
110
113
|
orangecontrib/tomwer/widgets/icons/tomwer_other.svg,sha256=B9yhdFCX6btz63rvRe5he0AIZcy6yyY3Jq07GMyQrkI,16763
|
111
114
|
orangecontrib/tomwer/widgets/icons/tomwer_visu.png,sha256=RuUI1bQwURe8iGkKhN3QzPqciC3fIelD6WcJ4NXGhIY,8760
|
112
115
|
orangecontrib/tomwer/widgets/icons/tomwer_visu.svg,sha256=KGi42uPMqTtLtj5pYc6slvCPN53MOOI8b0iRQx2sSBM,18818
|
113
|
-
orangecontrib/tomwer/widgets/other/PythonScriptOW.py,sha256=
|
116
|
+
orangecontrib/tomwer/widgets/other/PythonScriptOW.py,sha256=b1fjKR5kjAn0-sT0Krohfw0hRq1iPIRqlyujqUaOFgQ,26919
|
114
117
|
orangecontrib/tomwer/widgets/other/__init__.py,sha256=7Ca9kD-HBAYOI72go7FckSGSeBSMmZn17Wt2ZNVbK5o,1512
|
115
118
|
orangecontrib/tomwer/widgets/other/icons/PythonScript.svg,sha256=-8O2mNwRmyVdFvpcJsXLlOPcn50Sbv_qFHet1IF9T6A,5501
|
116
|
-
orangecontrib/tomwer/widgets/reconstruction/AxisOW.py,sha256=
|
117
|
-
orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py,sha256
|
118
|
-
orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py,sha256=
|
119
|
-
orangecontrib/tomwer/widgets/reconstruction/NabuOW.py,sha256=
|
120
|
-
orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py,sha256=
|
121
|
-
orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py,sha256=
|
122
|
-
orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py,sha256=
|
123
|
-
orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py,sha256=
|
124
|
-
orangecontrib/tomwer/widgets/reconstruction/TofuOW.py,sha256=
|
119
|
+
orangecontrib/tomwer/widgets/reconstruction/AxisOW.py,sha256=Oik0aMWyVtTPmA4EI73hN6p4ne0IE0zwyj7UjD66nBM,22090
|
120
|
+
orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py,sha256=-HTzWJ6_Bxcww-sFTU1UL4nZeH80IE5GAg17tojcEd4,9099
|
121
|
+
orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py,sha256=YiS1HUVH4XCLHbfR_4myfhPSnJXvfShMI78I4193y9A,10472
|
122
|
+
orangecontrib/tomwer/widgets/reconstruction/NabuOW.py,sha256=D8CN6fLFd3dnrlexkVbvkrlxY3i8ElivPqh0Ht_qU_M,10837
|
123
|
+
orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py,sha256=8jjUTBAN1qxMYw_bHO0IvFRihJeoE045nIcxRxeHs6E,17417
|
124
|
+
orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py,sha256=7XB3M5Nsrk2Klw04df2JzQ38UKooIpqMCdXAXpZyB8M,17605
|
125
|
+
orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py,sha256=AvkVhclszDZh-h2v0wCwFL3FwvkdEyWWm7bAugD7UUc,14544
|
126
|
+
orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py,sha256=bafXJG2dgRw5vZV9VRpPxy3wHq8GJkvtv_Ez4teFBcI,10743
|
127
|
+
orangecontrib/tomwer/widgets/reconstruction/TofuOW.py,sha256=KwmommGsRYVzLPsoIGqBoIo6Yrc-KsJhab-U-IjLsnU,7799
|
125
128
|
orangecontrib/tomwer/widgets/reconstruction/__init__.py,sha256=lgfP-eyIPCwy2R5FVl7uBcO17ESpLbkB1YSvieFRqq4,1601
|
126
129
|
orangecontrib/tomwer/widgets/reconstruction/icons/XY_lamino.svg,sha256=6fLlBy8R2HJMGdTYgZSQqmLWDp0m63uGRc7ixjC9SHA,8087
|
127
130
|
orangecontrib/tomwer/widgets/reconstruction/icons/XZ_lamino.svg,sha256=kSjhObKm8W_Lz_aSN06SuMNKr9lqkdJ3vxaNbBRp64A,11786
|
@@ -134,8 +137,8 @@ orangecontrib/tomwer/widgets/reconstruction/icons/darkref.svg,sha256=GM7FKmq6hf8
|
|
134
137
|
orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.png,sha256=HbRgOxVfeoIKVCvZxOVR0IkPtwnMGTgOkuLm41IWl6s,5509
|
135
138
|
orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.svg,sha256=NixrD-WzXa5g5D6tC6nQn6SMYhK2QAERC3ut1uFH4Ic,14957
|
136
139
|
orangecontrib/tomwer/widgets/reconstruction/icons/esrf.png,sha256=keM4tfcuTQ3k3IGxx3tOW5sHiyegJgmbvYklo6e2M5U,105862
|
137
|
-
orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.png,sha256=
|
138
|
-
orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.svg,sha256=
|
140
|
+
orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.png,sha256=buqGOZleoXIH_JXxb6SVEe4NIZSHJIsto-uI-nHq7K0,176
|
141
|
+
orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.svg,sha256=sFaNsPIjYr2LLKAKhr3yZkYUMV5szFFGWipZLJCO3XQ,3999
|
139
142
|
orangecontrib/tomwer/widgets/reconstruction/icons/nabu_3d.png,sha256=TNJykS51IZ-k90ajKxJn53A5SxiUvBadk_4H5vn1Df0,2940
|
140
143
|
orangecontrib/tomwer/widgets/reconstruction/icons/nabu_3d.svg,sha256=WH8Ji8md5LxrnMpTKDGYkk47v44aDLdzNsHPirHv01U,6178
|
141
144
|
orangecontrib/tomwer/widgets/reconstruction/icons/nabu_cast.png,sha256=vmQjyptoHkNqcNtsoTl6alfQGjn2bUa-tx3w6VOnlMY,3023
|
@@ -150,15 +153,15 @@ orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.png,sha256=JJYo295
|
|
150
153
|
orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.svg,sha256=gQQFb5Uj2Vr8UPVtRGqNBz-aQWc5DcDvpSMGwv8VANE,14712
|
151
154
|
orangecontrib/tomwer/widgets/reconstruction/icons/tomogui.png,sha256=qg7SZMRY3QjK-tteyoN0ToU5gNs1ZflkwzUK5kVVVQI,6846
|
152
155
|
orangecontrib/tomwer/widgets/reconstruction/icons/tomwer.png,sha256=M9IWm_TDKlSA6PZ-FPblo2k6PH-kkT2d0ASRvZ-pM_8,8992
|
153
|
-
orangecontrib/tomwer/widgets/visualization/DataViewerOW.py,sha256=
|
154
|
-
orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py,sha256=
|
155
|
-
orangecontrib/tomwer/widgets/visualization/LivesliceOW.py,sha256=
|
156
|
-
orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py,sha256=
|
157
|
-
orangecontrib/tomwer/widgets/visualization/RadioStackOW.py,sha256=
|
158
|
-
orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py,sha256=
|
159
|
-
orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py,sha256=
|
160
|
-
orangecontrib/tomwer/widgets/visualization/SliceStackOW.py,sha256=
|
161
|
-
orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py,sha256=
|
156
|
+
orangecontrib/tomwer/widgets/visualization/DataViewerOW.py,sha256=zU5nKzotRaEoUMFff8W_6mF2QzRgogGTMOIzyUJIvGM,5155
|
157
|
+
orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py,sha256=a3cMhih-trdWeI4M-UX1OfV01uqgENs9UPZifOWTHV0,2876
|
158
|
+
orangecontrib/tomwer/widgets/visualization/LivesliceOW.py,sha256=Y4UN7LzsHeLyJrROlSR1kZtEKEfQ4irnIE4wJFW9Ydc,3172
|
159
|
+
orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py,sha256=ULinA2sJ3Vfvzp6cX8WFJ6jBMClbzdkhI5Y8HTiNpz0,1950
|
160
|
+
orangecontrib/tomwer/widgets/visualization/RadioStackOW.py,sha256=Z4OQseI3cdOyAFNQIIspW26GWDHF51dGg0OHKLoHw0w,3394
|
161
|
+
orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py,sha256=rL8xRcTzU1jVXvlJovFXT05WeAS9YuO_aDu9QtGgphk,4120
|
162
|
+
orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py,sha256=lJ74gDESll91UfebP6VfV5HH9pO7wI1BXI5ETIWUXeg,3330
|
163
|
+
orangecontrib/tomwer/widgets/visualization/SliceStackOW.py,sha256=4U1tiiVuEejAUxm4XtTHZlDNGw-dFKCPEFsSyMVUst0,4065
|
164
|
+
orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py,sha256=W8RZtsmYN2FYz1gP0IO4ieobxUEqQo9ZvmY8uukct_8,3165
|
162
165
|
orangecontrib/tomwer/widgets/visualization/__init__.py,sha256=fs52099kHZdY65qClB8xci6YOpTjsWzan6SET4147_M,1604
|
163
166
|
orangecontrib/tomwer/widgets/visualization/icons/diff.png,sha256=2U0kPm-BhgDJsUAmBLCBSkJOkG2s3uSE5egegbwxrOU,378
|
164
167
|
orangecontrib/tomwer/widgets/visualization/icons/diff.svg,sha256=ylAT_OgqRhiC81w06XCaE2lVUOYOW8XtuU3Hb_IV5UI,7693
|
@@ -179,141 +182,142 @@ orangecontrib/tomwer/widgets/visualization/icons/slicesstack.svg,sha256=SukBd6YH
|
|
179
182
|
orangecontrib/tomwer/widgets/visualization/icons/tomwer.png,sha256=M9IWm_TDKlSA6PZ-FPblo2k6PH-kkT2d0ASRvZ-pM_8,8992
|
180
183
|
orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.png,sha256=8XwGE5maqQdjmU7_EWcqiuOG7xsf7ycNUJ_40UvpYeA,4372
|
181
184
|
orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.svg,sha256=2uT9_px6VBxkC6RxD0QrQVzcBusDlNVKwekh551EF0A,8454
|
182
|
-
tomwer/__init__.py,sha256=
|
183
|
-
tomwer/__main__.py,sha256=
|
184
|
-
tomwer/utils.py,sha256=
|
185
|
-
tomwer/version.py,sha256=
|
185
|
+
tomwer/__init__.py,sha256=82Jp1abyG4UWdGuT4nNU7LxaUV6xxkOte5pIz3w69Do,1745
|
186
|
+
tomwer/__main__.py,sha256=3a939M_21RtT3HDgxHUJo_iAtnZMnTTG-zpQ_61f6TE,5963
|
187
|
+
tomwer/utils.py,sha256=ip7hgPg8UbUcS79lzpKPpIvtulNNjFISZD-N4ZfaBtQ,8507
|
188
|
+
tomwer/version.py,sha256=NpM9ipjlSXo0ZMYP6GpyIa2NQbCEIs2TIPHpTzryEn8,4386
|
186
189
|
tomwer/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
187
|
-
tomwer/app/axis.py,sha256=
|
188
|
-
tomwer/app/canvas.py,sha256=
|
189
|
-
tomwer/app/darkref.py,sha256=
|
190
|
-
tomwer/app/darkrefpatch.py,sha256=
|
191
|
-
tomwer/app/diffframe.py,sha256=
|
192
|
-
tomwer/app/imagekeyeditor.py,sha256=
|
193
|
-
tomwer/app/imagekeyupgrader.py,sha256
|
194
|
-
tomwer/app/intensitynormalization.py,sha256=
|
195
|
-
tomwer/app/lamino.py,sha256=
|
196
|
-
tomwer/app/nabuapp.py,sha256=
|
197
|
-
tomwer/app/nxtomoeditor.py,sha256=
|
198
|
-
tomwer/app/radiostack.py,sha256=
|
199
|
-
tomwer/app/rsync.py,sha256=
|
200
|
-
tomwer/app/saaxis.py,sha256=
|
201
|
-
tomwer/app/sadeltabeta.py,sha256=
|
202
|
-
tomwer/app/samplemoved.py,sha256=
|
203
|
-
tomwer/app/scanviewer.py,sha256=
|
204
|
-
tomwer/app/sinogramviewer.py,sha256=
|
205
|
-
tomwer/app/slicestack.py,sha256=
|
206
|
-
tomwer/app/stopdatalistener.py,sha256=
|
190
|
+
tomwer/app/axis.py,sha256=zdOO4HJvlUBVb5CKTxBIy0P1FVjoMpx54oeYJp2iq3s,6424
|
191
|
+
tomwer/app/canvas.py,sha256=Px0oWLny53xe-2OXnepfRH5ZIcuO_e7wSYmE0femhjg,1379
|
192
|
+
tomwer/app/darkref.py,sha256=v3_nSs-DZnptcsDtFaM92oU5-TrDDVljUFfSk3HACRk,5522
|
193
|
+
tomwer/app/darkrefpatch.py,sha256=Qdeb44J1OLq0E-7p-Oe65o6WPzAo4FU7NgnlzkCfxLs,3819
|
194
|
+
tomwer/app/diffframe.py,sha256=Zf2r3Mu4HbBkA4TVbFSf1pMz2pjLjMEc1BVbu7p5npA,2743
|
195
|
+
tomwer/app/imagekeyeditor.py,sha256=LoWUV8pjznz8OZUD87K7TacKA32UndwAzU-DQ2PU9Ko,3309
|
196
|
+
tomwer/app/imagekeyupgrader.py,sha256=-hFw18v1AoAl9AH0KdtwiYlcBUlly_x0GAzsKh0V1xU,3176
|
197
|
+
tomwer/app/intensitynormalization.py,sha256=S_2DGeJHTxFH2y8q5vzfDutsyMecmdC2rDPyhm1CSUs,6511
|
198
|
+
tomwer/app/lamino.py,sha256=tM05FgfQBlWwN9t0jVogFf3NsKu3RzeuBWEMRfR4rSA,4692
|
199
|
+
tomwer/app/nabuapp.py,sha256=Eicq71YIK5iko1O9KbaZAWlKikuwcnZG2BLux446uEg,8019
|
200
|
+
tomwer/app/nxtomoeditor.py,sha256=rbijDaFU72KZ1Wsv7NMrJzicovi4dnx6oYE_S_Iw8tU,2796
|
201
|
+
tomwer/app/radiostack.py,sha256=ifDblQ9_quc3Zxpe-SHKP4jlIheRG7AeOSs6d_8zE8M,2249
|
202
|
+
tomwer/app/rsync.py,sha256=eT8HoSOp56SqbjKKm3DQ0tl5wfGaDhE3O5XzZBlzkx0,4081
|
203
|
+
tomwer/app/saaxis.py,sha256=bUX0NErkI-4EZfWT2xKoZiw3kPm8XeIFrBLlHbRkv2M,9444
|
204
|
+
tomwer/app/sadeltabeta.py,sha256=qzJHvn8RDj8S4biU-jKacL3elq3METIxBU8cxNLhBZ4,12265
|
205
|
+
tomwer/app/samplemoved.py,sha256=6Nghd9oVG3q6s5P07RdvrS32sQefu4SNnnl-wG1akDk,2187
|
206
|
+
tomwer/app/scanviewer.py,sha256=3SVxcan0LV0E7j_1aSEzJ1yJPiX-IrpF9sbv-RhZdrg,2277
|
207
|
+
tomwer/app/sinogramviewer.py,sha256=X4QmeWYIX502NvkFzfmWZ0KoBmUT54_3eMcsbnVZNlw,3253
|
208
|
+
tomwer/app/slicestack.py,sha256=oQ5RSiAIOWaYNpb5zpSwObrsYiEotcj__-8z-O_FEOE,2088
|
209
|
+
tomwer/app/stopdatalistener.py,sha256=p5G6sP2DUXEREZzFf0QGowU9C7hX7nexWZHmC0bTIM4,957
|
207
210
|
tomwer/app/canvas_launcher/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
208
|
-
tomwer/app/canvas_launcher/config.py,sha256=
|
209
|
-
tomwer/app/canvas_launcher/environ.py,sha256=
|
210
|
-
tomwer/app/canvas_launcher/mainwindow.py,sha256=
|
211
|
-
tomwer/app/canvas_launcher/splash.py,sha256=
|
212
|
-
tomwer/app/canvas_launcher/widgetsscheme.py,sha256=
|
211
|
+
tomwer/app/canvas_launcher/config.py,sha256=nhoOVSJrQ0nkEuHp9t6ZmVQrldjma9WS9XcmHpQ-l4g,7253
|
212
|
+
tomwer/app/canvas_launcher/environ.py,sha256=tHIlYXcFWinNLTV7dL2iBOWCp9oe9iouibU9NlzFbCk,2500
|
213
|
+
tomwer/app/canvas_launcher/mainwindow.py,sha256=ZRCqArh66OVFoxZxEo-zLL-XRLVm0XYrM3_unlmfwIM,12292
|
214
|
+
tomwer/app/canvas_launcher/splash.py,sha256=2z3q5QwoQ_ad-a2UI0R8hR3252MWG7DggXPOgDZfgBA,560
|
215
|
+
tomwer/app/canvas_launcher/widgetsscheme.py,sha256=S4x1LO798fOxL3-g2WDuAh0T2Y_Kbg79DbH3siwKPiM,2859
|
213
216
|
tomwer/core/__init__.py,sha256=lLfviCLw9VdT6SQ_9eYhqFe8QtUA-Dv-JDGpgxQ8Yzs,1373
|
214
|
-
tomwer/core/futureobject.py,sha256=
|
215
|
-
tomwer/core/progress.py,sha256=
|
216
|
-
tomwer/core/settings.py,sha256
|
217
|
+
tomwer/core/futureobject.py,sha256=vAcy3RQhel1tnyom2wFRaA2U9aescb80SKW91pR_a2o,6309
|
218
|
+
tomwer/core/progress.py,sha256=eFivQpuXWoRR3y9zwwm1J_dE5wjt-Bs5nHtKecDalhw,3246
|
219
|
+
tomwer/core/settings.py,sha256=-fhjCN8ZfnuRWl41H9qQhEx1aBZHLc4WnCoKY3g1jMg,3223
|
217
220
|
tomwer/core/signal.py,sha256=I5TUcyeBZzrEh1SFGs-ylJSL1aBs41ZFb3IJo3O_55c,6115
|
218
221
|
tomwer/core/tomwer_object.py,sha256=tbqyCcqEuiAzC1Y0EUWPOZ9eYhtYFVYALGfxzIMr3x8,1089
|
219
222
|
tomwer/core/cluster/__init__.py,sha256=vak-tOR_fqqnNqZ8xw2ecos-HAgKpZBbC7yk4JUjDKk,60
|
220
223
|
tomwer/core/cluster/cluster.py,sha256=XMt3oQsTtdfDWYzNVcnk4Ub3EWRNv6ajrTS3CuIh8os,4478
|
221
224
|
tomwer/core/log/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
222
|
-
tomwer/core/log/logger.py,sha256=
|
223
|
-
tomwer/core/log/processlog.py,sha256=
|
225
|
+
tomwer/core/log/logger.py,sha256=3yA_Umoy-GFGiOb1CfF4tFfz3NpFRdd71v8SaoAaN5o,4130
|
226
|
+
tomwer/core/log/processlog.py,sha256=0XmoKVUpHjxvaOFEi56eqF1edHPzCfsCmjdMMZP2sxs,3697
|
224
227
|
tomwer/core/process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
225
|
-
tomwer/core/process/task.py,sha256=
|
226
|
-
tomwer/core/process/utils.py,sha256=
|
228
|
+
tomwer/core/process/task.py,sha256=EVBMHJVO3uHdmm2UlVc2TOcEEE2WRq7GjczFX00jyO4,17274
|
229
|
+
tomwer/core/process/utils.py,sha256=LIzKwucEq6IqQ7L8L70UgDBaE9F29h_gjipQsa1RFo8,4010
|
227
230
|
tomwer/core/process/cluster/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
228
231
|
tomwer/core/process/cluster/supervisor.py,sha256=sStffXsjWEYaAF0yL03igtLflRnmr3zJzHRWGidwHas,1755
|
229
232
|
tomwer/core/process/conditions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
230
|
-
tomwer/core/process/conditions/filters.py,sha256=
|
233
|
+
tomwer/core/process/conditions/filters.py,sha256=7cFFfzgoifbrChqB64Jh9zJXuDEgRG8taUUMWgSmz7c,6422
|
231
234
|
tomwer/core/process/control/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
232
|
-
tomwer/core/process/control/
|
233
|
-
tomwer/core/process/control/
|
234
|
-
tomwer/core/process/control/
|
235
|
-
tomwer/core/process/control/
|
236
|
-
tomwer/core/process/control/
|
235
|
+
tomwer/core/process/control/datadiscovery.py,sha256=9gACQRc8UUFarRW9PVQbyxIbAq3zi8jcWWzyxwx6kk4,289
|
236
|
+
tomwer/core/process/control/nxtomomill.py,sha256=8fOnNgDL_161JX89PLIjkehaJ2zIIUmgozA0J4uXkTw,5198
|
237
|
+
tomwer/core/process/control/scanlist.py,sha256=68B1nLvPj5L89gC51Y-WmBbe_eep-6cPk5PhBWFTaQg,2048
|
238
|
+
tomwer/core/process/control/scanselector.py,sha256=pn8QHJ_uFcOvevgrw-YICscNPJpLSOgx8MBi_wUqlxY,289
|
239
|
+
tomwer/core/process/control/scantransfer.py,sha256=O4_3wPWjP9CQdSD2excUiowXDEYEuEjhGyykOe3adPo,26842
|
240
|
+
tomwer/core/process/control/scanvalidator.py,sha256=tijTbMBa3Zm8h_aJrxVq2bFYdwjCHzadO3xkzpM0PVc,10567
|
237
241
|
tomwer/core/process/control/singletomoobj.py,sha256=lzUH-0_-1U08DuBQggxzGs6zzAyZzwWuNZENQJI91ts,555
|
238
|
-
tomwer/core/process/control/timer.py,sha256=
|
242
|
+
tomwer/core/process/control/timer.py,sha256=UJF4Y-DEvAfDdzcGhkWpO4PXP4Co9ypUvp9e5rNAtJI,2933
|
239
243
|
tomwer/core/process/control/tomoobjserie.py,sha256=4BaujArjbbdROfZ_rrIXXbe_PYwWp8mRQuDLlHTdQjA,209
|
240
|
-
tomwer/core/process/control/volumeselector.py,sha256=
|
241
|
-
tomwer/core/process/control/volumesymlink.py,sha256=
|
244
|
+
tomwer/core/process/control/volumeselector.py,sha256=x-SnqCqrRjqNOqYnfktsOF9uESZIKqO8dCdckeyZzG4,305
|
245
|
+
tomwer/core/process/control/volumesymlink.py,sha256=xkHDSCmFxJMgnhOjSXgAG2rHG_Hh59FDv_22fVmKr3E,5931
|
242
246
|
tomwer/core/process/control/datalistener/__init__.py,sha256=gSEeJEDX8E-8HzY7tmPc32QKfqSZHG4Ad06IxDrzOWo,52
|
243
|
-
tomwer/core/process/control/datalistener/datalistener.py,sha256=
|
244
|
-
tomwer/core/process/control/datalistener/rpcserver.py,sha256=
|
247
|
+
tomwer/core/process/control/datalistener/datalistener.py,sha256=wyfMnmUJsQKAEOPwVmmzbPweaUh5lQx1qfMJKZezGxo,22008
|
248
|
+
tomwer/core/process/control/datalistener/rpcserver.py,sha256=BAIpBqovcxr5R-F144uvAYYUVgqSiXeDRYuw-ZeVgF8,11104
|
245
249
|
tomwer/core/process/control/datawatcher/__init__.py,sha256=F9d_bGOr5iAPEfnKaf5XOEwQSR1wZp_wkzcDYNSuin4,50
|
246
|
-
tomwer/core/process/control/datawatcher/datawatcher.py,sha256=
|
247
|
-
tomwer/core/process/control/datawatcher/datawatcherobserver.py,sha256=
|
248
|
-
tomwer/core/process/control/datawatcher/datawatcherprocess.py,sha256=
|
249
|
-
tomwer/core/process/control/datawatcher/edfdwprocess.py,sha256=
|
250
|
-
tomwer/core/process/control/datawatcher/hdf5dwprocess.py,sha256=
|
251
|
-
tomwer/core/process/control/datawatcher/status.py,sha256=
|
250
|
+
tomwer/core/process/control/datawatcher/datawatcher.py,sha256=Iv8GRCWDJwMgUVJLwY5V4XOs7aiYWDjgNgNcFTDvNEM,16661
|
251
|
+
tomwer/core/process/control/datawatcher/datawatcherobserver.py,sha256=wgmIMpPZv3AX6HxSNkaIGGFPmqYz8DshvLkFeWh9XRM,25752
|
252
|
+
tomwer/core/process/control/datawatcher/datawatcherprocess.py,sha256=7jmHizBYV6NGbT63pQPAS7V5Zk8OydikbdFNMYzFIiE,9450
|
253
|
+
tomwer/core/process/control/datawatcher/edfdwprocess.py,sha256=D1vq45z7rSrlKnnrRIGQ9gm2cRTM45FERKS7OQVJeNs,7209
|
254
|
+
tomwer/core/process/control/datawatcher/hdf5dwprocess.py,sha256=fYcxP3cLtxN_KwiLZuiubBcY0MIYgKuy4t8FSa66b2c,3027
|
255
|
+
tomwer/core/process/control/datawatcher/status.py,sha256=hsrBiaCyxvFK5E2l_jHWnt3Unyf6XKCSlXe0nFFS0wk,3074
|
252
256
|
tomwer/core/process/control/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
253
|
-
tomwer/core/process/control/test/test_volume_link.py,sha256=
|
257
|
+
tomwer/core/process/control/test/test_volume_link.py,sha256=ar1Ywa8hCsHznoRlnHPL_ES3Lz1ldZ3n1UD08bo5oNc,3094
|
254
258
|
tomwer/core/process/edit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
255
|
-
tomwer/core/process/edit/darkflatpatch.py,sha256=
|
256
|
-
tomwer/core/process/edit/imagekeyeditor.py,sha256=
|
259
|
+
tomwer/core/process/edit/darkflatpatch.py,sha256=WAXiR-xq0KDr9bgoyiq8otXFP45gFgzU9uuRkwx66T4,4034
|
260
|
+
tomwer/core/process/edit/imagekeyeditor.py,sha256=crCmLWrMagtezS70O92jvz7vYTVZKZVzjVFrIdCeVsM,8002
|
257
261
|
tomwer/core/process/reconstruction/__init__.py,sha256=EgySFx4vfoPre5NwYZbKoWSMx-3lBYXWlAI-b-ttRu4,1504
|
258
262
|
tomwer/core/process/reconstruction/paramsbase.py,sha256=YhCqZwZCM632WdLlLHJVEwBHnXwbBf7CoLA3jESxOFE,7725
|
259
263
|
tomwer/core/process/reconstruction/axis/__init__.py,sha256=NunQ3qSK_Fo0tPNvMjV7qAGmXU4qKGTTcsF_9mcZofQ,83
|
260
264
|
tomwer/core/process/reconstruction/axis/anglemode.py,sha256=sOkuTqO8sR8xd_tEwZHj-o1TA1z33AmwwZbrPnuYqmI,1896
|
261
|
-
tomwer/core/process/reconstruction/axis/axis.py,sha256=
|
262
|
-
tomwer/core/process/reconstruction/axis/mode.py,sha256=
|
263
|
-
tomwer/core/process/reconstruction/axis/params.py,sha256=
|
265
|
+
tomwer/core/process/reconstruction/axis/axis.py,sha256=phcQm6Tx7ASaiP8z25YIU-vR8AKxHz4H7ZS3107xq9s,34652
|
266
|
+
tomwer/core/process/reconstruction/axis/mode.py,sha256=laPKh-HNd6zZ1xnbDeGX9pJ9peZK4d9VPVcN7hrq154,3544
|
267
|
+
tomwer/core/process/reconstruction/axis/params.py,sha256=EvFYyTQvkWphgXh6z28AOnGFWfjJQ4TRKyqy6m6iDnA,32373
|
264
268
|
tomwer/core/process/reconstruction/axis/projectiontype.py,sha256=0w_NZ0N95iInHuEQCIxJIxt7K-YpCUo2fZ-_vhZ6D7Q,1543
|
265
269
|
tomwer/core/process/reconstruction/darkref/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
266
|
-
tomwer/core/process/reconstruction/darkref/darkrefs.py,sha256=
|
267
|
-
tomwer/core/process/reconstruction/darkref/darkrefscopy.py,sha256=
|
268
|
-
tomwer/core/process/reconstruction/darkref/params.py,sha256=
|
270
|
+
tomwer/core/process/reconstruction/darkref/darkrefs.py,sha256=BdXtWYhg9GwFTbXVlwebnjFPG3p0q0CXCBlZO6t-6ZY,23510
|
271
|
+
tomwer/core/process/reconstruction/darkref/darkrefscopy.py,sha256=oqxpHfk7Im4oznrEMOON9EKED-4TXFAFD6Q_uBvR2L0,12645
|
272
|
+
tomwer/core/process/reconstruction/darkref/params.py,sha256=li6AK5kjB605dTMu6JDQl6uhk7s_TO8ofY1FEmSkigk,9569
|
269
273
|
tomwer/core/process/reconstruction/darkref/settings.py,sha256=35jliuOIjMKTOJjgn4uiotcDEr6RskpLHfRWWLm76dc,188
|
270
274
|
tomwer/core/process/reconstruction/lamino/__init__.py,sha256=EH-YNlONEw1v6UU5ByDh8Y_ltvKVgivRfpAfLBkxKm4,52
|
271
|
-
tomwer/core/process/reconstruction/lamino/tofu.py,sha256=
|
275
|
+
tomwer/core/process/reconstruction/lamino/tofu.py,sha256=zRpslOEgeTcs12DBszYcmZYSwPkZx9YdoAobpgj_PNE,34478
|
272
276
|
tomwer/core/process/reconstruction/nabu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
273
|
-
tomwer/core/process/reconstruction/nabu/castvolume.py,sha256
|
274
|
-
tomwer/core/process/reconstruction/nabu/nabucommon.py,sha256=
|
275
|
-
tomwer/core/process/reconstruction/nabu/nabuscores.py,sha256=
|
276
|
-
tomwer/core/process/reconstruction/nabu/nabuslices.py,sha256=
|
277
|
-
tomwer/core/process/reconstruction/nabu/nabuvolume.py,sha256=
|
277
|
+
tomwer/core/process/reconstruction/nabu/castvolume.py,sha256=-XVUS7bjvWLho53Ojw21zAwV3YDMt70X-1Mg3QaJgOk,10106
|
278
|
+
tomwer/core/process/reconstruction/nabu/nabucommon.py,sha256=rKgw9dIwZmVXX5GI61r04H7PAZSSrk0KxDMLgwFfExU,21644
|
279
|
+
tomwer/core/process/reconstruction/nabu/nabuscores.py,sha256=rKktdDMj5btVaXVTEmwWEblTJb0A0mpfNRnxUUt5Ryc,11276
|
280
|
+
tomwer/core/process/reconstruction/nabu/nabuslices.py,sha256=EqSPZwo6VeWBVk4nKxeHOQfa6vLeHkY0VRgHxh4VnLI,29360
|
281
|
+
tomwer/core/process/reconstruction/nabu/nabuvolume.py,sha256=8e8JB0Du60GkitYpQjTBcIBpSFoamKrznEK14VTLcFQ,16262
|
278
282
|
tomwer/core/process/reconstruction/nabu/settings.py,sha256=bH5bW88tikwGQXIBNVznefXNldlClhKk-LhhU3qOcO0,2264
|
279
283
|
tomwer/core/process/reconstruction/nabu/slurm.py,sha256=MXcQY9z1PZXr0x7Aj8brp1f6wFPV6jzECEQLEjEDBQU,921
|
280
284
|
tomwer/core/process/reconstruction/nabu/target.py,sha256=_Z4gViprjR3Vm4KASqsASStLA9GM1wTyoi3Pg0PUSeg,1481
|
281
|
-
tomwer/core/process/reconstruction/nabu/utils.py,sha256=
|
282
|
-
tomwer/core/process/reconstruction/normalization/__init__.py,sha256=
|
283
|
-
tomwer/core/process/reconstruction/normalization/normalization.py,sha256=
|
284
|
-
tomwer/core/process/reconstruction/normalization/params.py,sha256=
|
285
|
-
tomwer/core/process/reconstruction/saaxis/__init__.py,sha256=
|
286
|
-
tomwer/core/process/reconstruction/saaxis/params.py,sha256=
|
287
|
-
tomwer/core/process/reconstruction/saaxis/saaxis.py,sha256=
|
288
|
-
tomwer/core/process/reconstruction/sadeltabeta/__init__.py,sha256=
|
289
|
-
tomwer/core/process/reconstruction/sadeltabeta/params.py,sha256=
|
290
|
-
tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py,sha256=
|
291
|
-
tomwer/core/process/reconstruction/scores/__init__.py,sha256=
|
292
|
-
tomwer/core/process/reconstruction/scores/params.py,sha256
|
293
|
-
tomwer/core/process/reconstruction/scores/scores.py,sha256=
|
285
|
+
tomwer/core/process/reconstruction/nabu/utils.py,sha256=p-UGqccXSD_BupdVLW4oMyuHzLE-yMD4CdLYEJ-owI0,13939
|
286
|
+
tomwer/core/process/reconstruction/normalization/__init__.py,sha256=TDtATpMVFkEOT93wLXLpW0A_TOeiQDiM7AWAqX4FIB0,119
|
287
|
+
tomwer/core/process/reconstruction/normalization/normalization.py,sha256=PLTgDQ_yXn2vq-eztSPoJ9_iaZNiR6lEzuRJXQrtAwo,12980
|
288
|
+
tomwer/core/process/reconstruction/normalization/params.py,sha256=porWC6G5lQWF-4JB03B56uGmuMxjx3u0ZMums-Bh2p8,4790
|
289
|
+
tomwer/core/process/reconstruction/saaxis/__init__.py,sha256=hIxXSI0-F4B2SzNp_onAr9usUZ6CcoYeL_LqiBDjqpY,93
|
290
|
+
tomwer/core/process/reconstruction/saaxis/params.py,sha256=dvBHxfSs3ffUk22drLAlcmAJJhaC42qV9aW45kC1ITA,5583
|
291
|
+
tomwer/core/process/reconstruction/saaxis/saaxis.py,sha256=46d867M3fyySCiGUx18fV5q43MfA_1GP6b3T0_QWINY,28049
|
292
|
+
tomwer/core/process/reconstruction/sadeltabeta/__init__.py,sha256=jKok6Bw1JJNSRlUGnb6-MQNTyDBkOJllZxwIUFHZxrk,108
|
293
|
+
tomwer/core/process/reconstruction/sadeltabeta/params.py,sha256=4UrLpA-6Wwfof9Jl1fcGTd5wrDzDB86GX4vo_PEgj74,4043
|
294
|
+
tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py,sha256=RGMg4p3vaJrgkqoxDHa_Ba_O634nQERVg2wEdEdE4M0,22494
|
295
|
+
tomwer/core/process/reconstruction/scores/__init__.py,sha256=aTWranL8RRGSMKOSDkkjhaqWisgZdP9Xgx7GoFhLwJo,282
|
296
|
+
tomwer/core/process/reconstruction/scores/params.py,sha256=-vvwuyLjgDSKWztfgOYzBnxZ9hLNL1t3gQ83oCPdJaI,6874
|
297
|
+
tomwer/core/process/reconstruction/scores/scores.py,sha256=W38QCgjZSmbDLR9UugkdzJGj6mgSdeTpsOSQtdw629A,6894
|
294
298
|
tomwer/core/process/reconstruction/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
295
|
-
tomwer/core/process/reconstruction/test/test_axis_params.py,sha256=
|
296
|
-
tomwer/core/process/reconstruction/test/test_darkref.py,sha256=
|
297
|
-
tomwer/core/process/reconstruction/test/test_darkref_copy.py,sha256=
|
298
|
-
tomwer/core/process/reconstruction/test/test_paramsbase.py,sha256=
|
299
|
-
tomwer/core/process/reconstruction/test/test_saaxis.py,sha256=
|
300
|
-
tomwer/core/process/reconstruction/test/test_sadeltabeta.py,sha256=
|
301
|
-
tomwer/core/process/reconstruction/test/test_utils.py,sha256=
|
299
|
+
tomwer/core/process/reconstruction/test/test_axis_params.py,sha256=xE1XM4iwVAthKw4VWbXLaywoumlARR565zL7meEvNak,1610
|
300
|
+
tomwer/core/process/reconstruction/test/test_darkref.py,sha256=7CFAoso-Sknnb5oh8sPqe1NTQPSfu3LvL4XXQwJJr7E,2427
|
301
|
+
tomwer/core/process/reconstruction/test/test_darkref_copy.py,sha256=5JvFkHBVnHd4CKoY9-Mbk4son4n8QBbyZZP0pUIcAOQ,5992
|
302
|
+
tomwer/core/process/reconstruction/test/test_paramsbase.py,sha256=9srC67NLHJ3_LFvxYDY1gZpGR7L51KRzBf7e9lCB-3k,908
|
303
|
+
tomwer/core/process/reconstruction/test/test_saaxis.py,sha256=35wtaP6mXpfSw_pQjq5S1cECgKnw3De4Q_kXFuRBx-Q,4052
|
304
|
+
tomwer/core/process/reconstruction/test/test_sadeltabeta.py,sha256=R9IasFhdmRvrZSMqMcgQ6xxgsesilVOcdPKH_Te2jHc,2517
|
305
|
+
tomwer/core/process/reconstruction/test/test_utils.py,sha256=8tg5XmVdy6xMDnOeqYf3Ze6LdK4LcMm1ow3zdvy_sJc,1006
|
302
306
|
tomwer/core/process/reconstruction/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
303
307
|
tomwer/core/process/reconstruction/utils/cor.py,sha256=HeaZRYXPtfpJJ03HSw6Orb2KIcQtVpWZmSBKvkOojBs,368
|
304
308
|
tomwer/core/process/script/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
305
|
-
tomwer/core/process/script/python.py,sha256=
|
309
|
+
tomwer/core/process/script/python.py,sha256=0RZSvQ09xOAk_ekJl7SNc2c-boW9IL1jsoYriIcqEbM,3836
|
306
310
|
tomwer/core/process/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
307
|
-
tomwer/core/process/test/test_axis.py,sha256=
|
308
|
-
tomwer/core/process/test/test_conditions.py,sha256
|
309
|
-
tomwer/core/process/test/test_dark_and_flat.py,sha256=
|
310
|
-
tomwer/core/process/test/test_data_listener.py,sha256=
|
311
|
-
tomwer/core/process/test/test_data_transfer.py,sha256=
|
312
|
-
tomwer/core/process/test/test_data_watcher.py,sha256=
|
313
|
-
tomwer/core/process/test/test_lamino.py,sha256=
|
314
|
-
tomwer/core/process/test/test_nabu.py,sha256=
|
315
|
-
tomwer/core/process/test/test_normalization.py,sha256=
|
316
|
-
tomwer/core/process/test/test_timer.py,sha256=
|
311
|
+
tomwer/core/process/test/test_axis.py,sha256=4Qw5OAfmEC8BAYmMjopSP1F1DS4cC7ghxJHNCDA9biE,11411
|
312
|
+
tomwer/core/process/test/test_conditions.py,sha256=ZTdo6OX0gjStGgMnfwv930SdF0cLuVLC4WcfHGpb4Z4,3406
|
313
|
+
tomwer/core/process/test/test_dark_and_flat.py,sha256=PFkkbB7Dr5FZa2wQ-bC-PpfR3uUykbaQGhEGY2QkQrQ,14981
|
314
|
+
tomwer/core/process/test/test_data_listener.py,sha256=ab_FZM7f-lXzQ6eMY-4aCFyTUqWuexZKV_tiRaPVfzE,3696
|
315
|
+
tomwer/core/process/test/test_data_transfer.py,sha256=X8IW0fzNVhWkoDmzCr3GM0gwf1wJPhTdAA4cK3j7_ss,15321
|
316
|
+
tomwer/core/process/test/test_data_watcher.py,sha256=kpUzTJQxe5xu--ryOlmf_m1T3dy7T0xgsjtFQwhd3Oc,3129
|
317
|
+
tomwer/core/process/test/test_lamino.py,sha256=sMfOyohen3Q6fHx5bBunmCt2xyq2_f5hB_gVIHHg-I8,2941
|
318
|
+
tomwer/core/process/test/test_nabu.py,sha256=Tqff1i7uoHzAY58ztuKuCcFS5BDshA3gyvJLR7_t2k4,19191
|
319
|
+
tomwer/core/process/test/test_normalization.py,sha256=cV3RFmbll19LKqbCDYIcz6A8dArM1MMq2w_SKCuKFUE,3952
|
320
|
+
tomwer/core/process/test/test_timer.py,sha256=UCc5OEZsgicxpdPaSmjHMKiMvnjlgHjP-sQZ3p6b7LY,2969
|
317
321
|
tomwer/core/process/visualization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
318
322
|
tomwer/core/process/visualization/dataviewer.py,sha256=m13Ticv3iTNgXilZj-HGjRBY4AUihDEmZlTPiDdo8WE,1517
|
319
323
|
tomwer/core/process/visualization/diffviewer.py,sha256=_Iz2VTEshEQZy01r2UjvYs7Xh-3ddaleHAVS2_eN3xU,1517
|
@@ -325,207 +329,211 @@ tomwer/core/process/visualization/sinogramviewer.py,sha256=AEoVIEKK75fLcGjXhX-CI
|
|
325
329
|
tomwer/core/process/visualization/slicestack.py,sha256=wKxjS7oFLbC0PRXtQuBHRjs4H1aVnQB1cRaHAHsmjSA,1518
|
326
330
|
tomwer/core/process/visualization/volumeviewer.py,sha256=9Y3z--FDPm_LBPgbFywGOxqve3vz9UHoV-gXZ6b9-rg,1520
|
327
331
|
tomwer/core/scan/__init__.py,sha256=V1TPi41mS3b6jskdiNqgnKYvRHZg1x1KmEClQ3hUmu8,1392
|
328
|
-
tomwer/core/scan/blissscan.py,sha256=
|
329
|
-
tomwer/core/scan/edfscan.py,sha256=
|
330
|
-
tomwer/core/scan/futurescan.py,sha256=
|
331
|
-
tomwer/core/scan/hdf5scan.py,sha256=
|
332
|
-
tomwer/core/scan/scanbase.py,sha256=
|
333
|
-
tomwer/core/scan/scanfactory.py,sha256=
|
332
|
+
tomwer/core/scan/blissscan.py,sha256=2MvwLDdl6OtoDWDajLbW-DeRrUVb49imhADltFs43EU,8273
|
333
|
+
tomwer/core/scan/edfscan.py,sha256=8wFwCUqLFLFgw3Jd0bgFtYFEYPrPIZnE55dx0y-4ids,22142
|
334
|
+
tomwer/core/scan/futurescan.py,sha256=chXjteQ4_6cSyFBoCil-DeHkHGGzM-xb21xJRYLEfhI,213
|
335
|
+
tomwer/core/scan/hdf5scan.py,sha256=QdoCFY6iNzJopylNbRjpT3ddZfUDhxajZtSXzBrIpVY,18521
|
336
|
+
tomwer/core/scan/scanbase.py,sha256=V1y6lH8dFMooJemZqhLQny_4ZhD8GsYrVmpnTw1zzeY,31380
|
337
|
+
tomwer/core/scan/scanfactory.py,sha256=BYdpjIX8KzJ9hhk0Y65gBLYc-OQx0T9ASRPXGQnu0I0,10483
|
338
|
+
tomwer/core/scan/scantype.py,sha256=pQjWuCy_014uK5cdb8pFAkE_EPHJvPdSo3NM8aWTo58,137
|
334
339
|
tomwer/core/scan/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
335
|
-
tomwer/core/scan/test/test_edf.py,sha256=
|
336
|
-
tomwer/core/scan/test/test_future_scan.py,sha256=
|
337
|
-
tomwer/core/scan/test/test_h5.py,sha256=
|
338
|
-
tomwer/core/scan/test/test_process_registration.py,sha256=
|
339
|
-
tomwer/core/scan/test/test_scan.py,sha256=
|
340
|
+
tomwer/core/scan/test/test_edf.py,sha256=LS_RBc2OSOEQ9oGAIoa0Pe4Y2T7I5fci-xK6G0MlXSI,2212
|
341
|
+
tomwer/core/scan/test/test_future_scan.py,sha256=OBK-sA1M96dAtA3OyLbQkp0CL0iaAO-YPtG727oczpo,2166
|
342
|
+
tomwer/core/scan/test/test_h5.py,sha256=7iS2mwdak5u9-XBSH07NA9AppoqJ7ynyy7VUkiAmL_8,4389
|
343
|
+
tomwer/core/scan/test/test_process_registration.py,sha256=inb8k8_YPdJEIYY_H09psq9vSmgUvpVhiUBR9tAXgrg,5196
|
344
|
+
tomwer/core/scan/test/test_scan.py,sha256=LTSbgDk2maYD6ZsIHmyTtmKuET2iqS9WBGBcaUUlchM,14959
|
340
345
|
tomwer/core/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
341
|
-
tomwer/core/test/test_lamino.py,sha256=
|
342
|
-
tomwer/core/test/test_scanutils.py,sha256=
|
343
|
-
tomwer/core/test/test_utils.py,sha256=
|
346
|
+
tomwer/core/test/test_lamino.py,sha256=cuCw7aV0IblsNA9N_jl1LypAIVK2-JfHGW8nC62T85o,3490
|
347
|
+
tomwer/core/test/test_scanutils.py,sha256=H980lLLdNczTzKy_q0Z1S5HBxRf9_Y-3xg5iGK5BtLE,2152
|
348
|
+
tomwer/core/test/test_utils.py,sha256=DobhJ3kGlJYHXJeMWMROTm_S1XNdqRflLKtjzwFPYpU,10675
|
344
349
|
tomwer/core/utils/Singleton.py,sha256=57g7-B2eqyrneT8DQ2Tzqha0bg-mcdSdaPtOjhsGWVc,1559
|
345
|
-
tomwer/core/utils/__init__.py,sha256=
|
350
|
+
tomwer/core/utils/__init__.py,sha256=Tm2iJQL3ofIxG8sCNP_anqM_I5yJG3M-qp2UOMXnXic,13488
|
346
351
|
tomwer/core/utils/char.py,sha256=VxNJ6Les9hZzVQz-gkPexWjn2h_J-XY3FiikwdgdGd0,1673
|
347
|
-
tomwer/core/utils/deprecation.py,sha256=
|
352
|
+
tomwer/core/utils/deprecation.py,sha256=uWDKWSq4cY45g8lX7Ipo36BCbrD0Lz6X2tAbQB3mqUw,4714
|
348
353
|
tomwer/core/utils/ftseriesutils.py,sha256=urIZfVN0j0PAD3RHVAzBMaMNAN-sFudxFKNZ8cCKWXs,2382
|
349
354
|
tomwer/core/utils/gpu.py,sha256=7s1LpN7e5ZTf1lqx0OLo-R45oE1L0JWmnLe2Hmhph6M,1812
|
350
|
-
tomwer/core/utils/image.py,sha256=
|
355
|
+
tomwer/core/utils/image.py,sha256=qt6XiEktWNwXDEgxqQb3i3YqUm7x3V3k8-TJWnIhoRI,4979
|
351
356
|
tomwer/core/utils/laminoutils.py,sha256=FzZseoKHPss4ZieS2lVuq4MVvM5DrCDDRTz0UWO5aK4,2896
|
352
|
-
tomwer/core/utils/locker.py,sha256=
|
357
|
+
tomwer/core/utils/locker.py,sha256=Sp-3eAuI5tx_Uc-lycYDW-rM8NKrY9AxRYiDhnq4YoI,2271
|
353
358
|
tomwer/core/utils/logconfig.py,sha256=xlMqmecIAfnvs4-xFTvbtmZZ_FrX1fY39jq8NC0Km3w,1434
|
354
|
-
tomwer/core/utils/normalization.py,sha256=
|
355
|
-
tomwer/core/utils/nxtomoutils.py,sha256=
|
359
|
+
tomwer/core/utils/normalization.py,sha256=szgQT_LuYiU7yDQ19wOjIGKcjnz_HqQdOQJKHkaugAY,2900
|
360
|
+
tomwer/core/utils/nxtomoutils.py,sha256=j7aV9NEEmJbaSBPMbBtf8z44EoyGih6yPZeIIwXr9bU,2686
|
356
361
|
tomwer/core/utils/resource.py,sha256=c5GYRVGYReU8AN5TKlexDSUnkp2PWN4JGsJ7dtvTRSY,2140
|
357
|
-
tomwer/core/utils/scanutils.py,sha256=
|
358
|
-
tomwer/core/utils/slurm.py,sha256=
|
362
|
+
tomwer/core/utils/scanutils.py,sha256=JrIEYyyOq9-ZcslUkCKKcVOXbb3BvDjUTRDaMIR-R-c,15515
|
363
|
+
tomwer/core/utils/slurm.py,sha256=ven6uAHywHo4G5vjqGNRVljkH-LBJwFDPz5pBAXFK1U,1923
|
359
364
|
tomwer/core/utils/threads.py,sha256=_JO6WEbdJo74ZhrFpojM2pVgDmenejump7a568fFu2E,3189
|
360
|
-
tomwer/core/utils/time.py,sha256=
|
361
|
-
tomwer/core/utils/volumeutils.py,sha256=
|
362
|
-
tomwer/core/volume/__init__.py,sha256=
|
363
|
-
tomwer/core/volume/edfvolume.py,sha256=
|
364
|
-
tomwer/core/volume/hdf5volume.py,sha256=
|
365
|
-
tomwer/core/volume/jp2kvolume.py,sha256=
|
366
|
-
tomwer/core/volume/rawvolume.py,sha256=
|
367
|
-
tomwer/core/volume/tiffvolume.py,sha256=
|
368
|
-
tomwer/core/volume/volumebase.py,sha256=
|
369
|
-
tomwer/core/volume/volumefactory.py,sha256=
|
365
|
+
tomwer/core/utils/time.py,sha256=7WZUZsLu2nFIdpLBYysuuNIILGzo_UliSbkJ1R67BV0,1845
|
366
|
+
tomwer/core/utils/volumeutils.py,sha256=KE8-zW2brpHov8Ak__nrbUxtuTKi2Hrop3SRfD4bj14,490
|
367
|
+
tomwer/core/volume/__init__.py,sha256=D8bAkLObITdTShXEk6pFt3I56zzccxDQs5KJmTyiXY4,253
|
368
|
+
tomwer/core/volume/edfvolume.py,sha256=l_cX_mEWuAdTly0fBtjEr4UANKKKKpub_u3JztUNwUU,3114
|
369
|
+
tomwer/core/volume/hdf5volume.py,sha256=EbktCwmC0XJ-PX36bA8uztFFwqDf-kdaKLSxnfTS8mc,3820
|
370
|
+
tomwer/core/volume/jp2kvolume.py,sha256=_kRO8hyj9wcBA0B8gx5OnOmGulCx0qQrYfSqITsljNU,3139
|
371
|
+
tomwer/core/volume/rawvolume.py,sha256=qdPA1QIwdMa-yRdLyGGlktFwFRfwbrhdqkDK7gh47m4,3529
|
372
|
+
tomwer/core/volume/tiffvolume.py,sha256=cnsrQQA2LydQvXG8iwjq6IfaTyTftQrsUPtlFNPUzhw,4919
|
373
|
+
tomwer/core/volume/volumebase.py,sha256=TW-zA3GMYe-keZuv-HXEfyYAQKgG1lGlno9_LHYCL3E,1539
|
374
|
+
tomwer/core/volume/volumefactory.py,sha256=vZdmFGt_n5G2yafsgoK9SgRyWf_BB63CoZm0Z3Y93NA,7981
|
370
375
|
tomwer/gui/__init__.py,sha256=GuoK-CFwHqHBiLvvSUOAk6_SaXu7-k3SIYCfPTZFHFk,1474
|
371
|
-
tomwer/gui/icons.py,sha256=
|
372
|
-
tomwer/gui/illustrations.py,sha256=
|
373
|
-
tomwer/gui/imagefromfile.py,sha256=
|
374
|
-
tomwer/gui/qfolderdialog.py,sha256=
|
376
|
+
tomwer/gui/icons.py,sha256=r_UURvOe36k83iw5gQiEKt6fgdvPNbZgrUoeji_s6eE,12917
|
377
|
+
tomwer/gui/illustrations.py,sha256=kKA_Jnj67QwwjHXW1d5x1qOgV2QWlktvEJYIDFTSJ-0,5368
|
378
|
+
tomwer/gui/imagefromfile.py,sha256=88QTNv5zS6d2b8HBcXJdHq-pppGy-iEaChoEP5I8ilU,5510
|
379
|
+
tomwer/gui/qfolderdialog.py,sha256=lxtMTEZsjhOS5gafsqry6WfrA4RdkKlwBHjrz0GT21E,22698
|
375
380
|
tomwer/gui/qlefilesystem.py,sha256=cBqCDwHj74lZeMqIjikVwBBDp1sUzzhiFiA-NROqzgo,408
|
376
381
|
tomwer/gui/settings.py,sha256=Wcz18A-T7tA9RnVuCxkKfJcfMIvCx-7KD4dzZMS8rxo,1399
|
377
|
-
tomwer/gui/stackplot.py,sha256=
|
378
|
-
tomwer/gui/stacks.py,sha256=
|
382
|
+
tomwer/gui/stackplot.py,sha256=LcaTPeisOdLSgiPq8NVxj0UfPIEUU546GhaWCZwLJ6k,25194
|
383
|
+
tomwer/gui/stacks.py,sha256=MI_3Pv1uIzS2dG54w0W8dWPZJ_OPxZj_d6Vo2FNFdJc,8449
|
379
384
|
tomwer/gui/cluster/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
380
|
-
tomwer/gui/cluster/slurm.py,sha256=
|
381
|
-
tomwer/gui/cluster/supervisor.py,sha256=
|
385
|
+
tomwer/gui/cluster/slurm.py,sha256=AMkVER-5_KlVFNndzj-CVDDyJikDUPFswFJ0nqV49Z0,13212
|
386
|
+
tomwer/gui/cluster/supervisor.py,sha256=CEZbo5S34w95EO0RRtfgOJuu9NuiUkpgX3ZKfBufDU4,16569
|
382
387
|
tomwer/gui/cluster/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
383
|
-
tomwer/gui/cluster/test/test_cluster.py,sha256=
|
384
|
-
tomwer/gui/cluster/test/test_supervisor.py,sha256=
|
388
|
+
tomwer/gui/cluster/test/test_cluster.py,sha256=udd3RaGx7-jPr2ZgrxpiTdh1g4Kmx85y5c8SwJpzhc4,3079
|
389
|
+
tomwer/gui/cluster/test/test_supervisor.py,sha256=7FahGOC-PE4q4EEa5FMgWG9FjvXvbZCE03IJ6SXuIkk,3207
|
385
390
|
tomwer/gui/conditions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
386
|
-
tomwer/gui/conditions/filter.py,sha256=
|
391
|
+
tomwer/gui/conditions/filter.py,sha256=_Fzsqp-MYgbcK5pA0QgpWbUa_q0_w9YslFfZw5ODHn4,5537
|
387
392
|
tomwer/gui/control/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
388
|
-
tomwer/gui/control/actions.py,sha256=
|
389
|
-
tomwer/gui/control/
|
390
|
-
tomwer/gui/control/
|
391
|
-
tomwer/gui/control/
|
392
|
-
tomwer/gui/control/
|
393
|
-
tomwer/gui/control/
|
394
|
-
tomwer/gui/control/
|
393
|
+
tomwer/gui/control/actions.py,sha256=bnmj5nHxb-wWx2CvfZQz9MWjG9hfGLD_uAJZuyxcTlI,2668
|
394
|
+
tomwer/gui/control/datadiscovery.py,sha256=WGIkzqkwDSJVPOdS3FfPLTMfPYyFix5Tjzjip60tqtk,6108
|
395
|
+
tomwer/gui/control/datalist.py,sha256=n2yRC0NenBqacgPMOHx4-8PA8i_-Y5LY9ho41pmrGqg,37511
|
396
|
+
tomwer/gui/control/datalistener.py,sha256=012Z0OPugu1hwb3QvJBZUdwMPLbvD2OFl1ZZ87fjNJo,18743
|
397
|
+
tomwer/gui/control/datareacheractions.py,sha256=x378HpCn-6mxlycQqaR7QNTza8sS6gprzGB-MN3J0B0,2572
|
398
|
+
tomwer/gui/control/datatransfert.py,sha256=KgaDCPihqGvUubwspuu2XPfab2ykhjX5jleRhVjRKn0,5702
|
399
|
+
tomwer/gui/control/datavalidator.py,sha256=CRCXz920DttpZZCWfwtYqWjpHyKzDHpv20rlilOg_mE,14463
|
400
|
+
tomwer/gui/control/history.py,sha256=pmOrUYxMEGyrT3MrjsXL3V5GHDW1HPH8u94dXu2RBPg,4828
|
395
401
|
tomwer/gui/control/nxtomomill.py,sha256=DI7DsO98O8h9mFcJ_1y1Kb8nD6w09at8YvJZNHR_EtE,7293
|
396
|
-
tomwer/gui/control/observations.py,sha256=
|
397
|
-
tomwer/gui/control/scanselectorwidget.py,sha256=
|
398
|
-
tomwer/gui/control/selectorwidgetbase.py,sha256=
|
399
|
-
tomwer/gui/control/singletomoobj.py,sha256=
|
400
|
-
tomwer/gui/control/volumeselectorwidget.py,sha256=
|
402
|
+
tomwer/gui/control/observations.py,sha256=xM--tndxPRa0IXAYoku5m3WfbEXVdTpRtIbE8rHuW3E,7737
|
403
|
+
tomwer/gui/control/scanselectorwidget.py,sha256=m3uxkoG4aNPPwamiI14l82PNS8tvIiOXmKhBJiwHgjU,2356
|
404
|
+
tomwer/gui/control/selectorwidgetbase.py,sha256=jhajIP8nQ5-67jcyFa7XbZx80eqI4pPTf756yTOntic,4536
|
405
|
+
tomwer/gui/control/singletomoobj.py,sha256=yeygpDCdmJrwWU9KXJ8WCfEvbzvBnypaaPVnubGjBXk,6022
|
406
|
+
tomwer/gui/control/volumeselectorwidget.py,sha256=mpbofAawBpzdc46IEkucTuiFJRDP18gWGdZjf5wUaTg,2082
|
401
407
|
tomwer/gui/control/datawatcher/__init__.py,sha256=4MnBP53SmxMTRpeM8NApgSsbh6HRKshwLdhpJt078jQ,1444
|
402
|
-
tomwer/gui/control/datawatcher/configuration.py,sha256=
|
403
|
-
tomwer/gui/control/datawatcher/
|
404
|
-
tomwer/gui/control/datawatcher/
|
408
|
+
tomwer/gui/control/datawatcher/configuration.py,sha256=E9RTx2hgF7JJKg8zOq6vFwWZYcKAWyvZkLR5g5TiBsw,10193
|
409
|
+
tomwer/gui/control/datawatcher/controlwidget.py,sha256=Yw6yO82j_4f61Aq0hOOUE6QSHaO4ZPY2Qhn7zC3il8g,3954
|
410
|
+
tomwer/gui/control/datawatcher/datawatcher.py,sha256=tjiSksE3C_bjdf7olOvz6pdSzj6E5MlRg1kq137Jq-c,22592
|
411
|
+
tomwer/gui/control/datawatcher/datawatcherobserver.py,sha256=wm4uuFeBxyUrb_1Wfw4WASWhlKl0DKud5eihIh4Brt0,10543
|
405
412
|
tomwer/gui/control/serie/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
406
|
-
tomwer/gui/control/serie/seriecreator.py,sha256=
|
413
|
+
tomwer/gui/control/serie/seriecreator.py,sha256=nkHeuKyT8--NtrJ9wwlRefGEdeJqXynkiFM-GD4Bw3E,35014
|
407
414
|
tomwer/gui/control/serie/seriewaiter.py,sha256=N8gDWBDDIh17CFlxc1NljmYrVbLMGqZ8RCJUuEdnZt8,1374
|
408
415
|
tomwer/gui/control/test/__init__.py,sha256=OLK9ip_LryBfM_L40MReqjvJS3wdbWP_CpnBeD1NQTA,1368
|
409
|
-
tomwer/gui/control/test/
|
410
|
-
tomwer/gui/control/test/
|
411
|
-
tomwer/gui/control/test/
|
412
|
-
tomwer/gui/control/test/
|
413
|
-
tomwer/gui/control/test/
|
414
|
-
tomwer/gui/control/test/
|
415
|
-
tomwer/gui/control/test/
|
416
|
-
tomwer/gui/control/test/
|
417
|
-
tomwer/gui/control/test/
|
418
|
-
tomwer/gui/control/test/
|
416
|
+
tomwer/gui/control/test/test_datadiscovery.py,sha256=7xI28TRiWdS4R5YE2rskOqZYkWgID80BYEo14TnX8Dk,775
|
417
|
+
tomwer/gui/control/test/test_datalist.py,sha256=04UdTvOTHZt_YYDvwN0z8k6UpvDAddGHCUrl9-CicoA,3508
|
418
|
+
tomwer/gui/control/test/test_datalistener.py,sha256=nAYFAuN5y6h0A5Zoe9GjjertzGbCPvu-ZGa0cFOfawU,3151
|
419
|
+
tomwer/gui/control/test/test_datavalidator.py,sha256=yKlj8c-H5R8-x4N68YpoTX-jASMJnJNlk22k6v5KhLU,2017
|
420
|
+
tomwer/gui/control/test/test_inputwidget.py,sha256=tmheFqga2fXVK-EnpM8fUC5ur8-yDNIkAwvdWtO_MJ0,3135
|
421
|
+
tomwer/gui/control/test/test_process_manager.py,sha256=03MugLzlvwmVYHRx8pYmrS9lhIPannmfBQmYth3o66k,2547
|
422
|
+
tomwer/gui/control/test/test_scanselector.py,sha256=-W3vji6B7-GKuR56LSHukc1viZOQzwdyKOEBVGfPn_w,2581
|
423
|
+
tomwer/gui/control/test/test_scanvalidator.py,sha256=WUVxeUu4PvUBk59Qz0-z3fiRs_GFOttzyrCuAiyLV_M,3855
|
424
|
+
tomwer/gui/control/test/test_single_tomo_obj.py,sha256=QUXASA9BsPYJ8grDT9_K-vlhXBbb-b3Ds9bIaznPlEU,2273
|
425
|
+
tomwer/gui/control/test/test_volume_dialog.py,sha256=i_hFbDdGAomPT3WEiZryCTjXQUie6ZZGNTH9d2eWLII,8164
|
426
|
+
tomwer/gui/control/test/test_volumeselector.py,sha256=DEqsRK4k3s1SPUKVYxwL8Si9yZF80YO8pSkDU83Vlec,3407
|
419
427
|
tomwer/gui/debugtools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
420
|
-
tomwer/gui/debugtools/datasetgenerator.py,sha256=
|
421
|
-
tomwer/gui/debugtools/objectinspector.py,sha256
|
428
|
+
tomwer/gui/debugtools/datasetgenerator.py,sha256=enbdFrGt5IWwlmqAYqMC_PbZTLU2ua1bDv5JRvGQ1b0,10645
|
429
|
+
tomwer/gui/debugtools/objectinspector.py,sha256=Mva9iK4bIxHvs3CcuHboWa4kiUEMoBeuUOULfPNyNOs,2925
|
422
430
|
tomwer/gui/edit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
423
|
-
tomwer/gui/edit/dkrfpatch.py,sha256=
|
424
|
-
tomwer/gui/edit/imagekeyeditor.py,sha256=
|
425
|
-
tomwer/gui/edit/nxtomoeditor.py,sha256=
|
431
|
+
tomwer/gui/edit/dkrfpatch.py,sha256=8YVZkHuade3vBIH7B0J-wqcuoaka-NeTNr3cpSinJr0,17689
|
432
|
+
tomwer/gui/edit/imagekeyeditor.py,sha256=c2j7hRTFpjxchEEsI7hSsSm6lexVDHClsXjSZCM4TSU,29628
|
433
|
+
tomwer/gui/edit/nxtomoeditor.py,sha256=vg1LqxN-5jvk___KoxCLGfyg_6tt86D9PjOw4rjKOsg,17498
|
426
434
|
tomwer/gui/edit/test/__init__.py,sha256=OLK9ip_LryBfM_L40MReqjvJS3wdbWP_CpnBeD1NQTA,1368
|
427
|
-
tomwer/gui/edit/test/test_dkrf_patch.py,sha256=
|
428
|
-
tomwer/gui/edit/test/test_image_key_editor.py,sha256=
|
429
|
-
tomwer/gui/edit/test/test_nx_editor.py,sha256=
|
435
|
+
tomwer/gui/edit/test/test_dkrf_patch.py,sha256=zUOcSwi323XjdNVKNMeuxFU2b_wrdl7pbBV6hZpjnyc,7990
|
436
|
+
tomwer/gui/edit/test/test_image_key_editor.py,sha256=2uyH-JVKUHvyiFGJS9ESXPGqz9Avm23QEMkyjjhxiU8,5962
|
437
|
+
tomwer/gui/edit/test/test_nx_editor.py,sha256=82X3z-CNlHadeFlsX5p-HD_GZLXxt7BH3A7s-amrQcg,6078
|
430
438
|
tomwer/gui/reconstruction/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
431
|
-
tomwer/gui/reconstruction/axis/CompareImages.py,sha256=
|
432
|
-
tomwer/gui/reconstruction/axis/__init__.py,sha256=
|
433
|
-
tomwer/gui/reconstruction/axis/axis.py,sha256=
|
434
|
-
tomwer/gui/reconstruction/axis/radioaxis.py,sha256=
|
439
|
+
tomwer/gui/reconstruction/axis/CompareImages.py,sha256=PlEW8WxsyAaMJtSHdeOTNG01ScbeNxcFkjeRjijUqIQ,16202
|
440
|
+
tomwer/gui/reconstruction/axis/__init__.py,sha256=fUKWiRiG2o4Y-9RN-41VZMMM8L9Srl6QCn942VL5szY,94
|
441
|
+
tomwer/gui/reconstruction/axis/axis.py,sha256=Ffvnuz7r-Nx8ibj2V7Q0YOHAmyl7_jJwfUTYjHL3i5U,22513
|
442
|
+
tomwer/gui/reconstruction/axis/radioaxis.py,sha256=1HB35xso0kRx6UESzU4vkmw7qR7cc1GzVsEqX1b_NL8,97476
|
435
443
|
tomwer/gui/reconstruction/darkref/__init__.py,sha256=g9LASP8OJjxCPEHXO14hN0OLjLkeUve6etaPm1LIz4c,1373
|
436
|
-
tomwer/gui/reconstruction/darkref/darkrefcopywidget.py,sha256=
|
437
|
-
tomwer/gui/reconstruction/darkref/darkrefwidget.py,sha256=
|
444
|
+
tomwer/gui/reconstruction/darkref/darkrefcopywidget.py,sha256=PtxgrfHyPEA2YCSNHKRRAzDVndT_7sEYNoiaCGFQNjw,11366
|
445
|
+
tomwer/gui/reconstruction/darkref/darkrefwidget.py,sha256=pFS-t_6LGk5-TkS9wYOXiU7ZLvse3TpBHPq4bkIghyU,16419
|
438
446
|
tomwer/gui/reconstruction/lamino/__init__.py,sha256=30XyGUjbuN-ysUI2Nsz37HW2mjA4pT-fmsiahjw3p4o,1474
|
439
447
|
tomwer/gui/reconstruction/lamino/tofu/TofuOptionLoader.py,sha256=wgBY68d98J-o_FN3cV3aB7BXepxQUaOz8y_tnRFYgBQ,3664
|
440
448
|
tomwer/gui/reconstruction/lamino/tofu/__init__.py,sha256=qvJg7iThYOWKa3i7PsHL96ogMdAcj4eCjlcVXuhPOU4,54
|
441
|
-
tomwer/gui/reconstruction/lamino/tofu/misc.py,sha256=
|
442
|
-
tomwer/gui/reconstruction/lamino/tofu/projections.py,sha256=
|
449
|
+
tomwer/gui/reconstruction/lamino/tofu/misc.py,sha256=LKNgYqOF4VdSMHkhxtli4sAMYm_tA5O-jRIQ_IL9bjI,5386
|
450
|
+
tomwer/gui/reconstruction/lamino/tofu/projections.py,sha256=SbfsILC6PMA-2ODSxLJioXaCskFtJEqM8F5v8VfB7h0,34724
|
443
451
|
tomwer/gui/reconstruction/lamino/tofu/settings.py,sha256=6qK2DujKHdhtucQ1o5-IvTg8tokqVjLLtdWk46xs7GU,2979
|
444
|
-
tomwer/gui/reconstruction/lamino/tofu/tofu.py,sha256=
|
445
|
-
tomwer/gui/reconstruction/lamino/tofu/tofuexpert.py,sha256=
|
446
|
-
tomwer/gui/reconstruction/lamino/tofu/tofuoutput.py,sha256=
|
452
|
+
tomwer/gui/reconstruction/lamino/tofu/tofu.py,sha256=cu0yWDGAowYLgZ8i1SMZ3giB-9qlfsptxfjltE39OyA,17323
|
453
|
+
tomwer/gui/reconstruction/lamino/tofu/tofuexpert.py,sha256=HvlOLLLRicGeE7SSz1R2xUXaaVScxTyRCSHqaNYcnmg,20497
|
454
|
+
tomwer/gui/reconstruction/lamino/tofu/tofuoutput.py,sha256=YRyuWwaq5uURGDQMiKl8KBNr3cP6g5XoVccwRUFmTAU,29449
|
447
455
|
tomwer/gui/reconstruction/nabu/__init__.py,sha256=v2WxaBpu2zpGu7DEV96zaKAtHgRlcpORuAG2S0iF9O0,44
|
448
|
-
tomwer/gui/reconstruction/nabu/action.py,sha256=
|
449
|
-
tomwer/gui/reconstruction/nabu/castvolume.py,sha256=
|
450
|
-
tomwer/gui/reconstruction/nabu/check.py,sha256=
|
451
|
-
tomwer/gui/reconstruction/nabu/nabuflow.py,sha256=
|
452
|
-
tomwer/gui/reconstruction/nabu/slices.py,sha256=
|
453
|
-
tomwer/gui/reconstruction/nabu/slurm.py,sha256=
|
454
|
-
tomwer/gui/reconstruction/nabu/volume.py,sha256=
|
456
|
+
tomwer/gui/reconstruction/nabu/action.py,sha256=VtQ5OBUjvfPgaXP7GJBwJ-Dygk7CVtW9ZYzFsRTdals,3890
|
457
|
+
tomwer/gui/reconstruction/nabu/castvolume.py,sha256=JE0YC0Q0TU4m9iCQUTqZWzg4ox59mMBzRuAmRbQik8s,12545
|
458
|
+
tomwer/gui/reconstruction/nabu/check.py,sha256=URIvkmmf9ODJoXler6J31Oguu6SDyBhqiMOBzEHQNfM,4732
|
459
|
+
tomwer/gui/reconstruction/nabu/nabuflow.py,sha256=nse-m68QLduHnBBdWYfEWlIGe0UlH4F5qvUFZ793oTU,17197
|
460
|
+
tomwer/gui/reconstruction/nabu/slices.py,sha256=Rh31Dj9bH15ATPUfB0SkGWbLi223Qh_jgoZS5C09tUQ,23447
|
461
|
+
tomwer/gui/reconstruction/nabu/slurm.py,sha256=QhL4koVitwTWz3pH2Y-DQ_fQ-98YpUnHUr3smRaJ1Wc,6985
|
462
|
+
tomwer/gui/reconstruction/nabu/volume.py,sha256=Fd4OXBaGuFmT5mRCu6hYs8rwQGMzVNvzvmrFDDXPHWQ,18555
|
455
463
|
tomwer/gui/reconstruction/nabu/nabuconfig/__init__.py,sha256=WgEFXIrUDhX0vpBNlKiymHEY9p1DMdk4QZkvnXIC8yk,77
|
456
|
-
tomwer/gui/reconstruction/nabu/nabuconfig/base.py,sha256=
|
457
|
-
tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py,sha256=
|
458
|
-
tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py,sha256=
|
459
|
-
tomwer/gui/reconstruction/nabu/nabuconfig/output.py,sha256=
|
460
|
-
tomwer/gui/reconstruction/nabu/nabuconfig/phase.py,sha256=
|
461
|
-
tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py,sha256=
|
462
|
-
tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py,sha256=
|
464
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/base.py,sha256=PJowhL9Uiuv4l9QRMd4e1VNZ2pUTzAstzckOMJNAzfU,3430
|
465
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py,sha256=6WnlS4vNMTdKJ5uj-uLvjeWxrPztKMgL3UpeDUjjnco,13085
|
466
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py,sha256=RCgD1eXTgVUG0O-g3YCqNJ2-t1Y9pUJ3vyjH-506JrY,11491
|
467
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/output.py,sha256=048u1biPMr6Hi94VBvEtDnf39xovrDsz8g2Twx6SaJc,9888
|
468
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/phase.py,sha256=YWW4RIvRRmoMRWxOwlAauKjWQp0GiwAD9hYjfuhqmHg,15255
|
469
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py,sha256=MheEfNvY5jX5iCHo2RAF_ghcsr5VF6WVlFzsoIXoUPo,22742
|
470
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py,sha256=i0LM0VDoMYJISk02yeOmrmHsCZNIg9gC_XQn5ALCig8,37555
|
463
471
|
tomwer/gui/reconstruction/normalization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
464
|
-
tomwer/gui/reconstruction/normalization/intensity.py,sha256
|
472
|
+
tomwer/gui/reconstruction/normalization/intensity.py,sha256=I7nWWblNhFkN0zdvmCXxOa5vYnbpMHmRDbQuJhU5LZE,34599
|
465
473
|
tomwer/gui/reconstruction/saaxis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
466
|
-
tomwer/gui/reconstruction/saaxis/corrangeselector.py,sha256=
|
467
|
-
tomwer/gui/reconstruction/saaxis/dimensionwidget.py,sha256=
|
468
|
-
tomwer/gui/reconstruction/saaxis/saaxis.py,sha256=
|
469
|
-
tomwer/gui/reconstruction/saaxis/sliceselector.py,sha256=
|
474
|
+
tomwer/gui/reconstruction/saaxis/corrangeselector.py,sha256=eQ-6PGeURglU_MLHI2X-OObxpv43OhwTgWlgFfjKbXc,33301
|
475
|
+
tomwer/gui/reconstruction/saaxis/dimensionwidget.py,sha256=G1tEGTFdn56PrSpZ7KNIBSgHNngVLPPgVLMTdBoPqnM,9757
|
476
|
+
tomwer/gui/reconstruction/saaxis/saaxis.py,sha256=krHCyH1Uqsn_a7VfBSGDwZPHnjfgbt8M9ZpZRjTSDNY,21319
|
477
|
+
tomwer/gui/reconstruction/saaxis/sliceselector.py,sha256=PXKShit4GXTEDUoEPjC4SYZeWd8A5rj1BWnAR0uygso,12213
|
470
478
|
tomwer/gui/reconstruction/sadeltabeta/__init__.py,sha256=74VkZ1KfTqXmfQReLkjJenvuEZFkhHDqK6BZJHhOeS4,57
|
471
|
-
tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py,sha256=
|
479
|
+
tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py,sha256=2yvSUTfZC4X9vjj76JcvIJy_92kp4w6L_-LlKGJjT4M,18763
|
472
480
|
tomwer/gui/reconstruction/scores/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
473
481
|
tomwer/gui/reconstruction/scores/control.py,sha256=JkWCjISddVQIpcFfTsJsVAf_0ld2J8fX8fICT10nK7c,3019
|
474
|
-
tomwer/gui/reconstruction/scores/scoreplot.py,sha256=
|
482
|
+
tomwer/gui/reconstruction/scores/scoreplot.py,sha256=bXL0NsNqa_jo4Kd0_yjxQ-Uny_7BWHz8g1KgPrzw4L4,31526
|
475
483
|
tomwer/gui/reconstruction/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
476
|
-
tomwer/gui/reconstruction/test/test_axis.py,sha256=
|
477
|
-
tomwer/gui/reconstruction/test/test_lamino.py,sha256=
|
478
|
-
tomwer/gui/reconstruction/test/test_nabu.py,sha256=
|
479
|
-
tomwer/gui/reconstruction/test/test_saaxis.py,sha256=
|
480
|
-
tomwer/gui/reconstruction/test/test_sadeltabeta.py,sha256=
|
481
|
-
tomwer/gui/samplemoved/__init__.py,sha256=
|
482
|
-
tomwer/gui/samplemoved/selectiontable.py,sha256=
|
484
|
+
tomwer/gui/reconstruction/test/test_axis.py,sha256=OJpMBpsBZRbMARXxkPiJM955Fg31uhjM5Guv79sGUos,8133
|
485
|
+
tomwer/gui/reconstruction/test/test_lamino.py,sha256=1he-if9PM09kvmgHJIC21ycTgFytnQZorhcGU0waYmU,8190
|
486
|
+
tomwer/gui/reconstruction/test/test_nabu.py,sha256=HjwReL91DlsIQfdIJSFBhBTtrM_ZNtdT7XNHaXtrIj8,13752
|
487
|
+
tomwer/gui/reconstruction/test/test_saaxis.py,sha256=A4DbQRHKRPky31_-TucGQ2PDGHrZ_4CuYOdlntdQDOc,8131
|
488
|
+
tomwer/gui/reconstruction/test/test_sadeltabeta.py,sha256=P5NsSPxAkjxF8h7tpVPpyyNi-21i0imUE12-WPizm-Y,5416
|
489
|
+
tomwer/gui/samplemoved/__init__.py,sha256=Ydo9I22crG8vUKjXMhoSvhHRPeJgZJt1ZvhvS5J_IjM,9638
|
490
|
+
tomwer/gui/samplemoved/selectiontable.py,sha256=n1plgKP3z6Wm-D2C0X3NCAXBSELBw1XSJjVKc4pZORw,9401
|
483
491
|
tomwer/gui/test/__init__.py,sha256=ni87cKf-CzKIuVQTqj9VSUG-AcDN7ochWSfH-TC5-20,1368
|
484
|
-
tomwer/gui/test/test_axis_gui.py,sha256=
|
485
|
-
tomwer/gui/test/test_qfolder_dialog.py,sha256=
|
486
|
-
tomwer/gui/utils/__init__.py,sha256=
|
487
|
-
tomwer/gui/utils/buttons.py,sha256=
|
488
|
-
tomwer/gui/utils/completer.py,sha256=
|
489
|
-
tomwer/gui/utils/flow.py,sha256=
|
490
|
-
tomwer/gui/utils/illustrations.py,sha256=
|
491
|
-
tomwer/gui/utils/inputwidget.py,sha256=
|
492
|
-
tomwer/gui/utils/qt_utils.py,sha256=
|
492
|
+
tomwer/gui/test/test_axis_gui.py,sha256=xvVzJKYAvEK1JpTnYI5zSvLt-HiEZOSWMRKK_l7GhoI,1152
|
493
|
+
tomwer/gui/test/test_qfolder_dialog.py,sha256=m81GSra0Vev88fea5UGoU1HWOoFYmgSQxIw-wZpsexk,347
|
494
|
+
tomwer/gui/utils/__init__.py,sha256=ZeFj8WCJ4sCUwrlzLw7JyQVieSl_iM6Pv53unJQb4Pk,2968
|
495
|
+
tomwer/gui/utils/buttons.py,sha256=JkESv4iJ6tWsEuhutBSAQoZmDzCEsGwNnKtfdUSIB6w,3722
|
496
|
+
tomwer/gui/utils/completer.py,sha256=fdqZYxlXPYuIfL1zp3_8cePAnHHbswaI5HO2OiVsVxE,4979
|
497
|
+
tomwer/gui/utils/flow.py,sha256=sC0jAPi9LA7jNltat4xKgRFf6DFOwL9p4osF0bVrSX4,12091
|
498
|
+
tomwer/gui/utils/illustrations.py,sha256=wxY9kr5jeo58btBUkX0Lro6W6cvJDwfWnEBdyvRCyEw,4439
|
499
|
+
tomwer/gui/utils/inputwidget.py,sha256=pQ-8_zjEpea7jySQ2jpf_Dm5YnUUG0LpbYdJf0VYYDQ,16231
|
500
|
+
tomwer/gui/utils/qt_utils.py,sha256=vIBwiYeHhb55P-3HuGlHKL8s4o8AByyXQTl0Qi5-3CY,210
|
493
501
|
tomwer/gui/utils/sandboxes.py,sha256=KsWDEZuz7nwUx8ZZUmKTzljIyErzcWEP6tVokFhFHSQ,7460
|
494
|
-
tomwer/gui/utils/scandescription.py,sha256=
|
502
|
+
tomwer/gui/utils/scandescription.py,sha256=d1-ydDsZtrKMJd1hbAeng7IV0HroojbeXsCrBmqojQ8,3178
|
495
503
|
tomwer/gui/utils/scrollarea.py,sha256=TDWSb_xsqX1vWaeWYl-yNB_-ok5QkYs9bjIOm2vL1qk,2954
|
496
504
|
tomwer/gui/utils/slider.py,sha256=TJK_IMnBst5evDky26YeSDI0ns4mXBNoXHiQW-K_9Yc,3467
|
497
|
-
tomwer/gui/utils/splashscreen.py,sha256=
|
498
|
-
tomwer/gui/utils/unitsystem.py,sha256=
|
499
|
-
tomwer/gui/utils/vignettes.py,sha256=
|
500
|
-
tomwer/gui/utils/waiterthread.py,sha256
|
505
|
+
tomwer/gui/utils/splashscreen.py,sha256=3LpQbJR3rczNjXFTXM3CnWQitVG1AxAlbdzCmDURpUI,1857
|
506
|
+
tomwer/gui/utils/unitsystem.py,sha256=N4TND2wdUOidDd29zFylzYJDWjX73jCVA7vSSN6DJdY,6321
|
507
|
+
tomwer/gui/utils/vignettes.py,sha256=sVKgpp0B07Gos_PVK3S-0AlN6hJ50oTmzxFOzVS2yig,12943
|
508
|
+
tomwer/gui/utils/waiterthread.py,sha256=XEp6CRQt4aHCuyS2C6ZeQIMWESGilbuhaJjm9CzQQMs,1844
|
501
509
|
tomwer/gui/utils/lineselector/__init__.py,sha256=GZ847ef5X2wk_sAHxg6h24TarPYmb4NZjQI3jjkc7jE,75
|
502
510
|
tomwer/gui/utils/lineselector/lineselection.py,sha256=q9yrpH6cpDEKqgOhJL5Mvq46ifFlgNil5kyikgC936E,2614
|
503
|
-
tomwer/gui/utils/lineselector/lineselector.py,sha256=
|
511
|
+
tomwer/gui/utils/lineselector/lineselector.py,sha256=zjIzHvu7uH4hOs23XyGWXwpAMc33Bj7FeV9eUWurVz4,8162
|
504
512
|
tomwer/gui/visualization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
505
|
-
tomwer/gui/visualization/dataviewer.py,sha256=
|
506
|
-
tomwer/gui/visualization/nxtomometadata.py,sha256=
|
507
|
-
tomwer/gui/visualization/reconstructionparameters.py,sha256=
|
508
|
-
tomwer/gui/visualization/scanoverview.py,sha256=
|
509
|
-
tomwer/gui/visualization/sinogramviewer.py,sha256=
|
510
|
-
tomwer/gui/visualization/tomoobjoverview.py,sha256=
|
511
|
-
tomwer/gui/visualization/volumeoverview.py,sha256=
|
512
|
-
tomwer/gui/visualization/volumeviewer.py,sha256=
|
513
|
+
tomwer/gui/visualization/dataviewer.py,sha256=LZchYdYqTXKRh2Im7-iW87vy4lIZ-63aZYVY005Skho,24254
|
514
|
+
tomwer/gui/visualization/nxtomometadata.py,sha256=uR2bHPnMp66mOJkE9WscTcQaiasr01pt3IbLUPP1F5M,683
|
515
|
+
tomwer/gui/visualization/reconstructionparameters.py,sha256=HtwYg8P0kN4H86pdhif24n11EHMjbd8TCL3tfT7gJT4,15347
|
516
|
+
tomwer/gui/visualization/scanoverview.py,sha256=UDsfi0SRPGBJJquhRu8DMagB9-6_sk-XfoweeoC9KOY,8423
|
517
|
+
tomwer/gui/visualization/sinogramviewer.py,sha256=Pw-t2o4BrkrgOf2G-PIDq-DIx1S6Z7ON77ZjaVZzsYE,9895
|
518
|
+
tomwer/gui/visualization/tomoobjoverview.py,sha256=YzocBQXhgnzI8IsJg5junE7218WcJdvSNH4r6DQgo74,1991
|
519
|
+
tomwer/gui/visualization/volumeoverview.py,sha256=6Hv1TtsDlaGQPCJKW-IkGy_r5Buue-O95tl1KkpMD-0,2491
|
520
|
+
tomwer/gui/visualization/volumeviewer.py,sha256=gbpRBBg-ssdZ_EYQG5rm8q9hlsDcxGliHdJNqFb5Khg,16033
|
513
521
|
tomwer/gui/visualization/diffviewer/__init__.py,sha256=rZ7qOTfAChU3FouCdkZllXT9ZZqTdo1XhLZMfmOqUAE,39
|
514
|
-
tomwer/gui/visualization/diffviewer/diffviewer.py,sha256=
|
515
|
-
tomwer/gui/visualization/diffviewer/shiftwidget.py,sha256
|
522
|
+
tomwer/gui/visualization/diffviewer/diffviewer.py,sha256=3eN3ayaGvTWcmX4yVIvVsoC_Q7F8FLuxZxkDcRjGDv0,20932
|
523
|
+
tomwer/gui/visualization/diffviewer/shiftwidget.py,sha256=MeDHQCCy00Tw6xnFCwgXVzsFWimk9cXMXZjTlCI6Muw,20940
|
516
524
|
tomwer/gui/visualization/test/__init__.py,sha256=nRVmFmNtdzN5PElEurDCb9pDulWIha-fLu-VX8hNn5A,1368
|
517
|
-
tomwer/gui/visualization/test/test_dataviewer.py,sha256=
|
518
|
-
tomwer/gui/visualization/test/test_diffviewer.py,sha256=
|
519
|
-
tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py,sha256=
|
520
|
-
tomwer/gui/visualization/test/test_reconstruction_parameters.py,sha256=
|
521
|
-
tomwer/gui/visualization/test/test_sinogramviewer.py,sha256=
|
522
|
-
tomwer/gui/visualization/test/test_stacks.py,sha256=
|
523
|
-
tomwer/gui/visualization/test/test_volumeviewer.py,sha256=
|
525
|
+
tomwer/gui/visualization/test/test_dataviewer.py,sha256=uiF4_tYUsP2w9-R9JrpecerUj7XIQbv0AgRSYPV_itQ,2446
|
526
|
+
tomwer/gui/visualization/test/test_diffviewer.py,sha256=P88kYucd1zC-IGH-1sA05ZYP6gP6paajW-1CX2ANBhA,3530
|
527
|
+
tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py,sha256=57UaBGtXdoOBqR6QFSi_k-Kwj1SDbdQA1War4p9Gqhw,2547
|
528
|
+
tomwer/gui/visualization/test/test_reconstruction_parameters.py,sha256=NZw7ta5gwZhlbBjsdliHPP6hkpkyV91Kd5Ni2H29T50,2531
|
529
|
+
tomwer/gui/visualization/test/test_sinogramviewer.py,sha256=XwAFqrfadDAlK95QtZ6cq8g7mq70UHVXEdyNUkAMym8,3064
|
530
|
+
tomwer/gui/visualization/test/test_stacks.py,sha256=yXw-11QEeXpz7GuzMfr32DWcCzmdqV3ZrTwDweByAvQ,4688
|
531
|
+
tomwer/gui/visualization/test/test_volumeviewer.py,sha256=WBL6XZ4_Lpn7J1JxeNCcR-2Pk2Cv8XeeOauBTy5-OJw,2759
|
524
532
|
tomwer/io/__init__.py,sha256=SVtYldPNwbBMqlawa4O42EjpgKo_AfF8JlhaVCMGkmg,1423
|
525
|
-
tomwer/io/utils/__init__.py,sha256=
|
526
|
-
tomwer/io/utils/h5pyutils.py,sha256
|
527
|
-
tomwer/io/utils/utils.py,sha256=
|
528
|
-
tomwer/resources/__init__.py,sha256=
|
533
|
+
tomwer/io/utils/__init__.py,sha256=SrC5etCrm-3oMkUc4PPRqSdkIwTvKdtnBTfxh35_exI,272
|
534
|
+
tomwer/io/utils/h5pyutils.py,sha256=-_A6wqvSjZWffvpkATfsS4TG4mm7PbtQ3Dsvk6ZZcxE,2971
|
535
|
+
tomwer/io/utils/utils.py,sha256=N2jEUB8eKpqsBA5YqHK7TbCq6aeRZHpsm1gGTxp8l_s,10347
|
536
|
+
tomwer/resources/__init__.py,sha256=cblWDciQcdpOz49epzlVv1AsQMwW9VbobgWsmSfizPo,5991
|
529
537
|
tomwer/resources/gui/icons/Imagej_icon.png,sha256=JFDzPw20pzRrf6wLBnScXEcmTVt6orXPzwPwniKeVss,1618960
|
530
538
|
tomwer/resources/gui/icons/a.png,sha256=YrYFndLl3SUcsYNJDloU9YeJLBUkiMmgvDjDNJCMipI,3858
|
531
539
|
tomwer/resources/gui/icons/a.svg,sha256=scmfMHL1zMYZiSbYYo6Mn19raAjKIrvqTUItOmzDqtY,2650
|
@@ -650,47 +658,47 @@ tomwer/resources/gui/illustrations/xz_slice.svg,sha256=0zonYy8RamFKMpvzNnuCmm_7M
|
|
650
658
|
tomwer/resources/gui/illustrations/yz_slice.png,sha256=I211tf-K3QZVLEf9N3H9vVyrQRcjzZ_JNsvg0s6ptz0,28771
|
651
659
|
tomwer/resources/gui/illustrations/yz_slice.svg,sha256=C0qNwMbTYnu1IzdBJbpED3gNHwVAGwWY4woUXiAr0gY,30725
|
652
660
|
tomwer/synctools/__init__.py,sha256=tRDggYL9-TB1rXT30lo4blFpdX0G7b5JV18ia1bWqms,137
|
653
|
-
tomwer/synctools/axis.py,sha256=
|
654
|
-
tomwer/synctools/darkref.py,sha256=
|
655
|
-
tomwer/synctools/datalistener.py,sha256=
|
656
|
-
tomwer/synctools/datatransfert.py,sha256=
|
657
|
-
tomwer/synctools/imageloaderthread.py,sha256=
|
658
|
-
tomwer/synctools/rsyncmanager.py,sha256=
|
659
|
-
tomwer/synctools/saaxis.py,sha256=
|
660
|
-
tomwer/synctools/sadeltabeta.py,sha256=
|
661
|
+
tomwer/synctools/axis.py,sha256=dHDcLvbae3f3f79HFpadYHQtTOmZjZxq6SUrz_A6gxk,1958
|
662
|
+
tomwer/synctools/darkref.py,sha256=luR4rMv78I5ahktm4YnD8ej0tXeItsJYyTbS6gTdl3I,1813
|
663
|
+
tomwer/synctools/datalistener.py,sha256=1RTaDHsvy8Ve7hNTTmYXPyZZQLfZCaX7Qrmp_WboRhM,9717
|
664
|
+
tomwer/synctools/datatransfert.py,sha256=A0n2AGEO6SS1KMuGkdgdCA5EPEkutOAjetBc9wX0dsc,1813
|
665
|
+
tomwer/synctools/imageloaderthread.py,sha256=SD3IyylugBNJ1IxoWDf87X0puMRm3hpf5ADhnpLdLrM,2860
|
666
|
+
tomwer/synctools/rsyncmanager.py,sha256=LugdCiQELLtknA6RaTqID-jbwmGn93SgFTaH54guDnw,6227
|
667
|
+
tomwer/synctools/saaxis.py,sha256=6837tCygZLVtVk8ppmzwiycr4L23z6tLVcdwW8BmS_A,1984
|
668
|
+
tomwer/synctools/sadeltabeta.py,sha256=1CgFG9BKiAiQx5T38VwCP3xveWU4ay-yaf_NAI7vvfo,2009
|
661
669
|
tomwer/synctools/stacks/__init__.py,sha256=wWN09X2qRXzBSekl5nkpEx1WDAcU2LQLxO9NpmW3bDU,165
|
662
|
-
tomwer/synctools/stacks/processingstack.py,sha256=
|
670
|
+
tomwer/synctools/stacks/processingstack.py,sha256=AcdJhpKY_PO5FxazGOM04KJNOuAS_lxFP6K8yc5wMUA,5868
|
663
671
|
tomwer/synctools/stacks/control/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
664
|
-
tomwer/synctools/stacks/control/datalistener.py,sha256=
|
672
|
+
tomwer/synctools/stacks/control/datalistener.py,sha256=Lo7S9b28W5kec0rMvQQVGhURdw8HMXkKckyEPuaf1aQ,5100
|
665
673
|
tomwer/synctools/stacks/edit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
666
|
-
tomwer/synctools/stacks/edit/darkflatpatch.py,sha256=
|
667
|
-
tomwer/synctools/stacks/edit/imagekeyeditor.py,sha256=
|
674
|
+
tomwer/synctools/stacks/edit/darkflatpatch.py,sha256=N_SSMM_eVGQHkEue4izNVNRsZdwr8USeJ-YfoV2ztC0,6422
|
675
|
+
tomwer/synctools/stacks/edit/imagekeyeditor.py,sha256=H4SllUvf4JHKDqXEWXBm82ZYu8YNI0cU-SW_Znb5oSY,6159
|
668
676
|
tomwer/synctools/stacks/reconstruction/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
669
|
-
tomwer/synctools/stacks/reconstruction/axis.py,sha256=
|
670
|
-
tomwer/synctools/stacks/reconstruction/castvolume.py,sha256=
|
671
|
-
tomwer/synctools/stacks/reconstruction/dkrefcopy.py,sha256=
|
672
|
-
tomwer/synctools/stacks/reconstruction/lamino.py,sha256=
|
673
|
-
tomwer/synctools/stacks/reconstruction/nabu.py,sha256=
|
674
|
-
tomwer/synctools/stacks/reconstruction/normalization.py,sha256=
|
675
|
-
tomwer/synctools/stacks/reconstruction/saaxis.py,sha256=
|
676
|
-
tomwer/synctools/stacks/reconstruction/sadeltabeta.py,sha256=
|
677
|
+
tomwer/synctools/stacks/reconstruction/axis.py,sha256=5Ex-qSmMh6BhDA4W3YD7ElgRqLgmZ4Xp4oujY73Zcns,8832
|
678
|
+
tomwer/synctools/stacks/reconstruction/castvolume.py,sha256=HTR1s09gQK2BnlpD8yRM-UnkRzr7kQb7LUETLMdk0og,7539
|
679
|
+
tomwer/synctools/stacks/reconstruction/dkrefcopy.py,sha256=SVMxOcIspua1rSGQYRG2WyH3RkuJeBmeltCtHq9MGX4,6807
|
680
|
+
tomwer/synctools/stacks/reconstruction/lamino.py,sha256=r3rocP-DJkxHfwImHIY_sn2AJdPUeZpS8ecrGoScSlI,8426
|
681
|
+
tomwer/synctools/stacks/reconstruction/nabu.py,sha256=PlDOlIesCHKCiHD6od4f2SAcepQsZ5VJQsnH3jxbwzs,10925
|
682
|
+
tomwer/synctools/stacks/reconstruction/normalization.py,sha256=NhMwPwvl_qcjmCrmh6gslbXNpD7nTrKfDYAkHN84Lqk,5301
|
683
|
+
tomwer/synctools/stacks/reconstruction/saaxis.py,sha256=rSzRKaG_jua3X4atOtgWPpNWS_2izokCMadFhi3ORPY,7795
|
684
|
+
tomwer/synctools/stacks/reconstruction/sadeltabeta.py,sha256=N_TE2BqzhUENHymnfwSkPvLjnRlPjBXYgc_QKDujGAc,8000
|
677
685
|
tomwer/synctools/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
678
|
-
tomwer/synctools/test/test_darkRefs.py,sha256=
|
679
|
-
tomwer/synctools/test/test_foldertransfer.py,sha256=
|
680
|
-
tomwer/synctools/test/test_scanstages.py,sha256=
|
686
|
+
tomwer/synctools/test/test_darkRefs.py,sha256=Xk2Bw2PbGz3Lki2WNmZe8xbKnEAb3S7BOQsVFcuA6mk,17192
|
687
|
+
tomwer/synctools/test/test_foldertransfer.py,sha256=BZrex8oi9hY4SBzplYoCIYhpIUIx0YxRLkwKaUQp3fI,14153
|
688
|
+
tomwer/synctools/test/test_scanstages.py,sha256=rz2FL6egRR6OXjZXf1drAekU5n9daPPpm-3hiqmQyIQ,5839
|
681
689
|
tomwer/synctools/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
682
|
-
tomwer/synctools/utils/scanstages.py,sha256=
|
690
|
+
tomwer/synctools/utils/scanstages.py,sha256=kH78L753kbSeerUbAYyGknk3S8dczQcpBqQxXT6oYIc,9273
|
683
691
|
tomwer/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
684
|
-
tomwer/tests/conftest.py,sha256=
|
685
|
-
tomwer/tests/test_scripts.py,sha256=
|
692
|
+
tomwer/tests/conftest.py,sha256=eyYXCLTOysq7JcGrFMuDSeiCDo20uspZCZk4vV-Njvk,1135
|
693
|
+
tomwer/tests/test_scripts.py,sha256=cAiWjkQtaG3p0nRVaDUY9RNieAb1tC6UT6vsyBkcBsE,3853
|
686
694
|
tomwer/tests/test_utils.py,sha256=D0rNDSK6csEOYBY_7gD-4A3jp8rYAm8L1_Xg34A9I2s,305
|
687
|
-
tomwer/tests/utils/__init__.py,sha256=
|
688
|
-
tomwer/tests/utils/utilstest.py,sha256=
|
695
|
+
tomwer/tests/utils/__init__.py,sha256=AAO9QsJsqO7uEg7t7fOOdniqaD4Nw6g3gQO-Fb8hXE4,8653
|
696
|
+
tomwer/tests/utils/utilstest.py,sha256=mNDjZhyzPatgMH0IwwiaFWUu8UBpzuhP5NLgxo1rrQE,7341
|
689
697
|
tomwer/third_party/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
690
698
|
tomwer/third_party/nabu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
691
|
-
tomwer/third_party/nabu/utils.py,sha256=
|
699
|
+
tomwer/third_party/nabu/utils.py,sha256=tgRs69UoEogkaYsDWgZEWFTI5ZYEEuowAlP7mjMnklo,5412
|
692
700
|
tomwer/third_party/nabu/preproc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
693
|
-
tomwer/third_party/nabu/preproc/phase.py,sha256=
|
701
|
+
tomwer/third_party/nabu/preproc/phase.py,sha256=JWOsiTZIwgb6G2cVPHwihlR9Up6ViT7ZejxLt0ev6e4,14415
|
694
702
|
tomwer/third_party/tango/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
695
703
|
tomwer/third_party/tango/device.py,sha256=RP1HbQkWQKWpE8GdcxIz-lXvhTfrdhoEKe4OxBDbLtE,220
|
696
704
|
tomwer/web/__init__.py,sha256=mbB9mcglDZ5ujxOPGg70xJNTcyPWUwoLBUIo7vJlayU,1460
|
@@ -698,10 +706,10 @@ tomwer/web/client.py,sha256=Ldu_rsW5O53QBH3iJ_gDlo9ip2d1-GQuVYo0KX_fzUU,1807
|
|
698
706
|
tomwer/web/config.py,sha256=K-mGjde07maay9arYdfx3DHIEdFfeRBZX6IuxUL5UlA,1623
|
699
707
|
tomwer/web/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
700
708
|
tomwer/web/test/test_graylog_connection.py,sha256=SUNOC2mKEINGQMZkHzFgCPFpx7feDUCvhaJ83xb2thc,2220
|
701
|
-
tomwer-1.
|
702
|
-
tomwer-1.
|
703
|
-
tomwer-1.
|
704
|
-
tomwer-1.
|
705
|
-
tomwer-1.
|
706
|
-
tomwer-1.
|
707
|
-
tomwer-1.
|
709
|
+
tomwer-1.2.0a0.dist-info/LICENSE,sha256=yR_hIZ1MfDh9x2_s23uFqBH7m5DgrBl9nJKkE37YChM,1877
|
710
|
+
tomwer-1.2.0a0.dist-info/METADATA,sha256=5xUR_G2l469GpzZTBcT9_J0oQCQv1EjGA5G_0tYbMXg,11645
|
711
|
+
tomwer-1.2.0a0.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
712
|
+
tomwer-1.2.0a0.dist-info/entry_points.txt,sha256=aDZTIsXRj1SgQ0tixWsmYGjM4y6gcYK7ykK6z7XlLjw,368
|
713
|
+
tomwer-1.2.0a0.dist-info/namespace_packages.txt,sha256=Iut-JTfT11SZHHm77_ZeszD7pZDWXcTweCbvrJpqDyQ,14
|
714
|
+
tomwer-1.2.0a0.dist-info/top_level.txt,sha256=Yz5zKh0FPiImtzHYcPuztG1AO8-6KEpUWgoChGbA0Ys,21
|
715
|
+
tomwer-1.2.0a0.dist-info/RECORD,,
|