tomwer 1.0.4__py3-none-any.whl → 1.1.0__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/tutorials/EBS_tomo_listener.ows +39 -0
- orangecontrib/tomwer/tutorials/cast_volume.ows +34 -0
- orangecontrib/tomwer/tutorials/simple_slice_reconstruction.ows +39 -0
- orangecontrib/tomwer/tutorials/simple_volume_local_reconstruction.ows +49 -0
- orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows +59 -0
- orangecontrib/tomwer/tutorials/using_saaxis_to_find_cor.ows +44 -0
- orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py +1 -1
- orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py +14 -4
- orangecontrib/tomwer/widgets/cluster/__init__.py +1 -1
- orangecontrib/tomwer/widgets/control/DataListOW.py +12 -5
- orangecontrib/tomwer/widgets/control/DataListenerOW.py +18 -9
- orangecontrib/tomwer/widgets/control/DataSelectorOW.py +13 -6
- orangecontrib/tomwer/widgets/control/DataTransfertOW.py +4 -5
- orangecontrib/tomwer/widgets/control/DataValidatorOW.py +8 -4
- orangecontrib/tomwer/widgets/control/DataWatcherOW.py +4 -6
- orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +49 -62
- orangecontrib/tomwer/widgets/control/FilterOW.py +2 -4
- orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +93 -0
- orangecontrib/tomwer/widgets/control/NXTomomillOW.py +135 -128
- orangecontrib/tomwer/widgets/control/NotifierOW.py +31 -7
- orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +3 -5
- orangecontrib/tomwer/widgets/control/TomoObjSerieOW.py +85 -0
- orangecontrib/tomwer/widgets/control/VolumeSelector.py +12 -4
- orangecontrib/tomwer/widgets/control/VolumeSymLinkOW.py +11 -7
- orangecontrib/tomwer/widgets/control/icons/notification.svg +4 -4
- orangecontrib/tomwer/widgets/control/icons/nxtomomill.png +0 -0
- orangecontrib/tomwer/widgets/control/icons/nxtomomill.svg +8 -5
- orangecontrib/tomwer/widgets/control/icons/tomoobjserie.png +0 -0
- orangecontrib/tomwer/widgets/control/icons/tomoobjserie.svg +138 -0
- orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py +16 -4
- orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py +100 -0
- orangecontrib/tomwer/widgets/edit/icons/image_key_editor.png +0 -0
- orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.png +0 -0
- orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.png +0 -0
- orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.svg +123 -0
- orangecontrib/tomwer/widgets/edit/test/test_dark_flat_patch.py +21 -1
- orangecontrib/tomwer/widgets/edit/test/test_image_key_editor.py +1 -1
- orangecontrib/tomwer/widgets/edit/test/test_image_key_upgrader.py +1 -1
- orangecontrib/tomwer/widgets/edit/test/test_nxtomo_editor.py +25 -0
- orangecontrib/tomwer/widgets/other/PythonScriptOW.py +19 -10
- orangecontrib/tomwer/widgets/reconstruction/AxisOW.py +20 -14
- orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +24 -10
- orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py +26 -21
- orangecontrib/tomwer/widgets/reconstruction/NabuOW.py +29 -12
- orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py +44 -17
- orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py +28 -18
- orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py +24 -17
- orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py +6 -6
- orangecontrib/tomwer/widgets/reconstruction/TofuOW.py +4 -2
- orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.png +0 -0
- orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.svg +11 -8
- orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +10 -4
- orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +1 -1
- orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py +69 -0
- orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py +2 -4
- orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.png +0 -0
- orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.svg +105 -0
- tomwer/__main__.py +10 -5
- tomwer/app/canvas_launcher/config.py +10 -10
- tomwer/app/canvas_launcher/mainwindow.py +68 -6
- tomwer/app/canvas_launcher/widgetsscheme.py +1 -3
- tomwer/app/darkref.py +16 -12
- tomwer/app/imagekeyeditor.py +2 -2
- tomwer/app/imagekeyupgrader.py +104 -0
- tomwer/app/nxtomoeditor.py +103 -0
- tomwer/app/rsync.py +1 -1
- tomwer/core/cluster/cluster.py +1 -1
- tomwer/core/futureobject.py +1 -0
- tomwer/core/process/control/datalistener/datalistener.py +7 -1
- tomwer/core/process/control/datalistener/rpcserver.py +3 -3
- tomwer/core/process/control/datawatcher/datawatcher.py +18 -18
- tomwer/core/process/control/datawatcher/datawatcherobserver.py +5 -8
- tomwer/core/process/control/datawatcher/datawatcherprocess.py +2 -3
- tomwer/core/process/control/datawatcher/edfdwprocess.py +2 -2
- tomwer/core/process/control/nxtomomill.py +33 -58
- tomwer/core/process/control/scanlist.py +2 -1
- tomwer/core/process/control/scanselector.py +7 -0
- tomwer/core/process/control/scantransfer.py +9 -18
- tomwer/core/process/control/scanvalidator.py +6 -5
- tomwer/core/process/control/singletomoobj.py +2 -1
- tomwer/core/process/control/timer.py +2 -1
- tomwer/core/process/control/tomoobjserie.py +8 -0
- tomwer/core/process/control/volumeselector.py +2 -1
- tomwer/core/process/control/volumesymlink.py +2 -1
- tomwer/core/process/edit/darkflatpatch.py +2 -1
- tomwer/core/process/edit/imagekeyeditor.py +4 -3
- tomwer/core/process/reconstruction/axis/axis.py +29 -32
- tomwer/core/process/reconstruction/axis/mode.py +3 -2
- tomwer/core/process/reconstruction/axis/params.py +35 -16
- tomwer/core/process/reconstruction/darkref/darkrefs.py +90 -707
- tomwer/core/process/reconstruction/darkref/darkrefscopy.py +44 -16
- tomwer/core/process/reconstruction/darkref/params.py +62 -67
- tomwer/core/process/reconstruction/lamino/tofu.py +1 -1
- tomwer/core/process/reconstruction/nabu/castvolume.py +21 -26
- tomwer/core/process/reconstruction/nabu/nabucommon.py +36 -38
- tomwer/core/process/reconstruction/nabu/nabuscores.py +28 -13
- tomwer/core/process/reconstruction/nabu/nabuslices.py +41 -14
- tomwer/core/process/reconstruction/nabu/nabuvolume.py +21 -12
- tomwer/core/process/reconstruction/nabu/utils.py +12 -1
- tomwer/core/process/reconstruction/normalization/normalization.py +9 -8
- tomwer/core/process/reconstruction/saaxis/saaxis.py +46 -20
- tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +38 -12
- tomwer/core/process/reconstruction/test/__init__.py +0 -39
- tomwer/core/process/reconstruction/test/test_axis_params.py +25 -3
- tomwer/core/process/reconstruction/test/test_darkref_copy.py +117 -1
- tomwer/core/process/script/python.py +16 -12
- tomwer/core/process/task.py +3 -7
- tomwer/core/process/test/test_axis.py +1 -1
- tomwer/core/process/test/test_dark_and_flat.py +41 -111
- tomwer/core/process/test/test_data_listener.py +0 -29
- tomwer/core/process/test/test_data_transfer.py +10 -14
- tomwer/core/process/test/test_nabu.py +1 -1
- tomwer/core/process/test/test_normalization.py +1 -1
- tomwer/core/process/visualization/liveslice.py +6 -0
- tomwer/core/scan/blissscan.py +37 -2
- tomwer/core/scan/edfscan.py +14 -4
- tomwer/core/scan/hdf5scan.py +10 -4
- tomwer/core/scan/scanbase.py +35 -29
- tomwer/core/scan/scanfactory.py +3 -17
- tomwer/core/scan/test/test_h5.py +1 -1
- tomwer/core/scan/test/test_process_registration.py +0 -11
- tomwer/core/scan/test/test_scan.py +32 -30
- tomwer/core/settings.py +2 -2
- tomwer/core/test/test_utils.py +1 -1
- tomwer/core/tomwer_object.py +19 -0
- tomwer/core/utils/__init__.py +0 -45
- tomwer/core/utils/char.py +2 -0
- tomwer/core/utils/gpu.py +5 -5
- tomwer/core/utils/nxtomoutils.py +2 -2
- tomwer/core/utils/scanutils.py +50 -0
- tomwer/core/utils/volumeutils.py +13 -0
- tomwer/core/volume/edfvolume.py +4 -0
- tomwer/core/volume/hdf5volume.py +4 -0
- tomwer/core/volume/jp2kvolume.py +4 -0
- tomwer/core/volume/rawvolume.py +4 -0
- tomwer/core/volume/tiffvolume.py +4 -0
- tomwer/core/volume/volumebase.py +19 -12
- tomwer/core/volume/volumefactory.py +20 -1
- tomwer/gui/cluster/slurm.py +1 -1
- tomwer/gui/cluster/test/test_cluster.py +2 -2
- tomwer/gui/control/datalist.py +109 -34
- tomwer/gui/control/datatransfert.py +1 -1
- tomwer/gui/control/datawatcher/datawatcher.py +23 -13
- tomwer/gui/control/datawatcher/datawatcherobserver.py +1 -1
- tomwer/gui/control/observations.py +0 -3
- tomwer/gui/control/selectorwidgetbase.py +42 -11
- tomwer/gui/control/serie/seriecreator.py +967 -0
- tomwer/{web/__init__.py → gui/control/serie/seriewaiter.py} +5 -7
- tomwer/gui/control/singletomoobj.py +15 -3
- tomwer/gui/control/test/test_datalist.py +1 -1
- tomwer/gui/control/test/test_datalistener.py +1 -1
- tomwer/gui/control/test/test_inputwidget.py +1 -1
- tomwer/gui/control/test/test_process_manager.py +1 -13
- tomwer/gui/control/test/test_scanselector.py +1 -1
- tomwer/gui/control/test/test_scanvalidator.py +1 -1
- tomwer/gui/control/test/test_single_tomo_obj.py +1 -1
- tomwer/gui/control/test/test_volume_dialog.py +19 -7
- tomwer/gui/control/test/test_volumeselector.py +4 -4
- tomwer/gui/debugtools/datasetgenerator.py +1 -8
- tomwer/gui/edit/dkrfpatch.py +2 -2
- tomwer/gui/edit/imagekeyeditor.py +12 -9
- tomwer/gui/edit/nxtomoeditor.py +475 -0
- tomwer/gui/edit/test/test_dkrf_patch.py +2 -14
- tomwer/gui/edit/test/test_image_key_editor.py +2 -2
- tomwer/gui/edit/test/test_nx_editor.py +155 -0
- tomwer/gui/qfolderdialog.py +11 -0
- tomwer/gui/reconstruction/axis/CompareImages.py +27 -29
- tomwer/gui/reconstruction/axis/axis.py +2 -0
- tomwer/gui/reconstruction/axis/radioaxis.py +67 -11
- tomwer/gui/reconstruction/darkref/darkrefcopywidget.py +7 -9
- tomwer/gui/reconstruction/darkref/darkrefwidget.py +22 -24
- tomwer/gui/reconstruction/lamino/tofu/projections.py +1 -1
- tomwer/gui/reconstruction/lamino/tofu/tofu.py +3 -3
- tomwer/gui/reconstruction/lamino/tofu/tofuexpert.py +4 -4
- tomwer/gui/reconstruction/lamino/tofu/tofuoutput.py +10 -4
- tomwer/gui/reconstruction/nabu/castvolume.py +80 -11
- tomwer/gui/reconstruction/nabu/check.py +1 -1
- tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py +352 -0
- tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py +0 -9
- tomwer/gui/reconstruction/nabu/nabuconfig/output.py +1 -1
- tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +18 -19
- tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +30 -7
- tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +26 -13
- tomwer/gui/reconstruction/nabu/slices.py +10 -2
- tomwer/gui/reconstruction/nabu/slurm.py +1 -1
- tomwer/gui/reconstruction/nabu/volume.py +13 -7
- tomwer/gui/reconstruction/normalization/intensity.py +1 -1
- tomwer/gui/reconstruction/saaxis/corrangeselector.py +10 -34
- tomwer/gui/reconstruction/saaxis/saaxis.py +11 -6
- tomwer/gui/reconstruction/saaxis/sliceselector.py +11 -26
- tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py +13 -8
- tomwer/gui/reconstruction/scores/scoreplot.py +67 -61
- tomwer/gui/reconstruction/test/test_axis.py +2 -2
- tomwer/gui/reconstruction/test/test_lamino.py +2 -2
- tomwer/gui/reconstruction/test/test_nabu.py +14 -1
- tomwer/gui/reconstruction/test/test_saaxis.py +8 -17
- tomwer/gui/reconstruction/test/test_sadeltabeta.py +7 -13
- tomwer/gui/stackplot.py +11 -28
- tomwer/gui/test/test_axis_gui.py +4 -4
- tomwer/gui/test/test_qfolder_dialog.py +12 -0
- tomwer/gui/utils/inputwidget.py +42 -21
- tomwer/gui/utils/lineselector/lineselector.py +13 -21
- tomwer/gui/utils/scandescription.py +2 -4
- tomwer/gui/utils/slider.py +1 -102
- tomwer/gui/utils/unitsystem.py +48 -11
- tomwer/gui/visualization/dataviewer.py +24 -17
- tomwer/gui/visualization/diffviewer/diffviewer.py +2 -11
- tomwer/gui/visualization/nxtomometadata.py +21 -0
- tomwer/gui/visualization/scanoverview.py +0 -1
- tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py +72 -0
- tomwer/gui/visualization/test/test_stacks.py +1 -1
- tomwer/gui/visualization/tomoobjoverview.py +49 -0
- tomwer/gui/visualization/volumeoverview.py +64 -0
- tomwer/gui/visualization/volumeviewer.py +1 -1
- tomwer/resources/gui/icons/multi-document-save.png +0 -0
- tomwer/resources/gui/icons/multi-document-save.svg +101 -0
- tomwer/resources/gui/illustrations/ctf_z1.png +0 -0
- tomwer/resources/gui/illustrations/ctf_z1.svg +471 -0
- tomwer/synctools/datalistener.py +5 -1
- tomwer/synctools/imageloaderthread.py +2 -2
- tomwer/synctools/stacks/edit/imagekeyeditor.py +1 -1
- tomwer/synctools/stacks/processingstack.py +2 -2
- tomwer/synctools/stacks/reconstruction/castvolume.py +1 -0
- tomwer/synctools/stacks/reconstruction/lamino.py +1 -3
- tomwer/synctools/stacks/reconstruction/sadeltabeta.py +0 -2
- tomwer/synctools/test/test_darkRefs.py +32 -149
- tomwer/synctools/test/test_foldertransfer.py +1 -1
- tomwer/synctools/test/test_scanstages.py +2 -2
- tomwer/tests/__init__.py +0 -0
- tomwer/tests/conftest.py +51 -0
- tomwer/{test → tests}/test_scripts.py +1 -1
- tomwer/tests/test_utils.py +10 -0
- tomwer/{test → tests}/utils/utilstest.py +0 -11
- tomwer/version.py +3 -3
- {tomwer-1.0.4.dist-info → tomwer-1.1.0.dist-info}/METADATA +14 -16
- {tomwer-1.0.4.dist-info → tomwer-1.1.0.dist-info}/RECORD +245 -217
- {tomwer-1.0.4.dist-info → tomwer-1.1.0.dist-info}/WHEEL +1 -1
- {tomwer-1.0.4.dist-info → tomwer-1.1.0.dist-info}/entry_points.txt +6 -0
- orangecontrib/tomwer/setup.py +0 -45
- orangecontrib/tomwer/widgets/setup.py +0 -49
- tomwer/app/process.py +0 -153
- tomwer/core/process/reconstruction/nabu/slurm.py +0 -36
- tomwer/core/process/reconstruction/utils/nabu_slice_exec.py +0 -10
- tomwer/core/utils/laminoutils.py +0 -80
- tomwer/gui/utils/lineselector/lineselection.py +0 -76
- tomwer/setup.py +0 -52
- tomwer/web/client.py +0 -43
- tomwer/web/config.py +0 -36
- tomwer/web/test/test_graylog_connection.py +0 -59
- {tomwer/test → orangecontrib/tomwer/tutorials}/__init__.py +0 -0
- /tomwer/{web/test → gui/control/serie}/__init__.py +0 -0
- /tomwer/{test → tests}/utils/__init__.py +0 -0
- /tomwer-1.0.4-py3.8-nspkg.pth → /tomwer-1.1.0-py3.9-nspkg.pth +0 -0
- {tomwer-1.0.4.dist-info → tomwer-1.1.0.dist-info}/LICENSE +0 -0
- {tomwer-1.0.4.dist-info → tomwer-1.1.0.dist-info}/namespace_packages.txt +0 -0
- {tomwer-1.0.4.dist-info → tomwer-1.1.0.dist-info}/top_level.txt +0 -0
@@ -1,35 +1,42 @@
|
|
1
|
-
tomwer-1.0
|
1
|
+
tomwer-1.1.0-py3.9-nspkg.pth,sha256=xeeGR3TjdoVxdFeF6T-zSwZWh6Et--EYuPWu67LxL_c,574
|
2
2
|
orangecontrib/tomwer/__init__.py,sha256=B3VLqV-jCha0MgRp-9_W6EbAjEFnFz6FvgtqHGA6EoQ,147
|
3
|
-
orangecontrib/tomwer/setup.py,sha256=6vVQXIOyd-Zdqq6vtp0K55US39VsFXRBXCXF799lVcs,1748
|
4
3
|
orangecontrib/tomwer/state_summary.py,sha256=3wnJdLg9jiXSM8iTP8SxL1a92bnntxO9RhBZ71z5dY4,1710
|
5
4
|
orangecontrib/tomwer/orange/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
5
|
orangecontrib/tomwer/orange/managedprocess.py,sha256=1BLYdPeQObzStLV9pu28l8_frZyMGf6XYWmgL6ztQB8,4619
|
7
6
|
orangecontrib/tomwer/orange/settings.py,sha256=0aBTVBVIR441LOb-CoYCwRZ1ArB5Cq17xCiVH7cv_SA,2044
|
7
|
+
orangecontrib/tomwer/tutorials/EBS_tomo_listener.ows,sha256=GLHvcQnR79X2sTDqIq9h4ayb3Tya7S-givzPta63ciQ,4747
|
8
|
+
orangecontrib/tomwer/tutorials/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
|
+
orangecontrib/tomwer/tutorials/cast_volume.ows,sha256=TbEVl1B5RzqRwkgXX-gufMnpBUACwJLMAH11fg9d618,2918
|
10
|
+
orangecontrib/tomwer/tutorials/simple_slice_reconstruction.ows,sha256=O9Bnunjh0Q9tqpNZ56yQo7UqHAiynHH_NTB4_y6N-Ao,4435
|
11
|
+
orangecontrib/tomwer/tutorials/simple_volume_local_reconstruction.ows,sha256=BBxkMX98PjDZsgxiVz4i-xPFw4WMdzif2YPnRQfONP4,5945
|
12
|
+
orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows,sha256=-z9o7iaW8B7zEQ2ilP_LDporYDWBuaBUily71moaX94,7408
|
13
|
+
orangecontrib/tomwer/tutorials/using_saaxis_to_find_cor.ows,sha256=TUZNkXEsQyj7Qra1GEb4IhGFDWv3uJzqXbp3P04jwbs,5192
|
8
14
|
orangecontrib/tomwer/widgets/__init__.py,sha256=IwY85ur-TZUdRH1igCEfMiUKFvu9cmbdzf7WtegRfxA,2493
|
9
|
-
orangecontrib/tomwer/widgets/setup.py,sha256=JQVw97byGt2q6ONOgTpxE0Q3CUOh3_MW_mCV50KXzus,1905
|
10
15
|
orangecontrib/tomwer/widgets/utils.py,sha256=zGfY5XfrLdD2awrtItLYJjFRE-FCCwhPs_QJaEA73X0,2339
|
11
|
-
orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py,sha256=
|
12
|
-
orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py,sha256=
|
13
|
-
orangecontrib/tomwer/widgets/cluster/__init__.py,sha256=
|
16
|
+
orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py,sha256=IyP11MMwbwC3BO3gWTEqwizqIqKBnOni96rxlxuUPYQ,8957
|
17
|
+
orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py,sha256=T9koZYPIEvx6HOOSP-tn-bHN6vMDmIWHYesIUcvwPTE,4010
|
18
|
+
orangecontrib/tomwer/widgets/cluster/__init__.py,sha256=HyTijuJFHFyl5n94nCWREgTxbE3olYsYLAFshjTMNN4,1614
|
14
19
|
orangecontrib/tomwer/widgets/cluster/icons/slurm.png,sha256=C-YBLwXCnh0oo4nvEt80WxX_jKYGUAFpWMUSlzt6ke0,1995
|
15
20
|
orangecontrib/tomwer/widgets/cluster/icons/slurm.svg,sha256=9LqiU88NH3ACxtZ8A7gTm-C_0ACR8iq0k_N2W1IFf9Q,9790
|
16
21
|
orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.png,sha256=sxH1V20s0JZPTCq82Fizz8Q9RHXwviapdStgZT8GBIM,3212
|
17
22
|
orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.svg,sha256=N22gP4exnQP5zYysfSGXIMTHh0QZmMQXjGOx2gOEpfc,56984
|
18
23
|
orangecontrib/tomwer/widgets/control/AdvancementOW.py,sha256=_327cdJcP-4C8J3aV-ced7f5K-e2CV5GPl3WHUTn_7s,2487
|
19
|
-
orangecontrib/tomwer/widgets/control/DataListOW.py,sha256=
|
20
|
-
orangecontrib/tomwer/widgets/control/DataListenerOW.py,sha256
|
21
|
-
orangecontrib/tomwer/widgets/control/DataSelectorOW.py,sha256=
|
22
|
-
orangecontrib/tomwer/widgets/control/DataTransfertOW.py,sha256=
|
23
|
-
orangecontrib/tomwer/widgets/control/DataValidatorOW.py,sha256
|
24
|
-
orangecontrib/tomwer/widgets/control/DataWatcherOW.py,sha256=
|
25
|
-
orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py,sha256=
|
26
|
-
orangecontrib/tomwer/widgets/control/FilterOW.py,sha256=
|
27
|
-
orangecontrib/tomwer/widgets/control/
|
28
|
-
orangecontrib/tomwer/widgets/control/
|
29
|
-
orangecontrib/tomwer/widgets/control/
|
24
|
+
orangecontrib/tomwer/widgets/control/DataListOW.py,sha256=1qBZR3xSQdt0yb0xHLVTCorRSjsHLbrTKX4eDCNZtr4,4742
|
25
|
+
orangecontrib/tomwer/widgets/control/DataListenerOW.py,sha256=M5LwCJLo1CMFgRGsH_sMJzfYK3cliGMPD_5tdLe4bFQ,15295
|
26
|
+
orangecontrib/tomwer/widgets/control/DataSelectorOW.py,sha256=22_DCUPiFCWoA27Mg6lpVRqaHne3KRhiq8lMtHP9XBs,4997
|
27
|
+
orangecontrib/tomwer/widgets/control/DataTransfertOW.py,sha256=K2LVVDACO2hDXFmX43DxUOBqxiHdFYVKvxEC1PxKgoo,7302
|
28
|
+
orangecontrib/tomwer/widgets/control/DataValidatorOW.py,sha256=-bgP7ArsSN77LECJjjuEIdplmmwaC5Fx16pVx-fQLEI,7197
|
29
|
+
orangecontrib/tomwer/widgets/control/DataWatcherOW.py,sha256=IoDoXy1unewG6UmvMwa2U24pQjy6VSVep7bYtLDEEjo,7326
|
30
|
+
orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py,sha256=Tb0ux5BqNvgIcPzeVo8Owx5hno5p4KggO5bUXJQg4EM,9099
|
31
|
+
orangecontrib/tomwer/widgets/control/FilterOW.py,sha256=vSDr8u3_oR8xl6s5jQGt-DmyJwFOxtq72rBvBqlJA7U,4577
|
32
|
+
orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py,sha256=kJPFQBHiqbi05U62UzDFgu6b5vPJZbO79XeAu_PyoIM,3323
|
33
|
+
orangecontrib/tomwer/widgets/control/NXTomomillOW.py,sha256=CalszjDcaSjYv0GMAl6YrMAQUtGJXf8nGBmeAo44FB4,12259
|
34
|
+
orangecontrib/tomwer/widgets/control/NotifierOW.py,sha256=HezUbOnVoFKWBTJgY5j_CdLuzC2Z3n6i1MJoQKxJk3Y,4282
|
35
|
+
orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py,sha256=vIMbTTxhG6rEjeMjK7VlWy-aK8vzScfEI09FdVkku18,5863
|
30
36
|
orangecontrib/tomwer/widgets/control/TimerOW.py,sha256=_2CKOStGq4svMdBiuIzqUCfefGMyrkHll3t8_P5Ldt8,4418
|
31
|
-
orangecontrib/tomwer/widgets/control/
|
32
|
-
orangecontrib/tomwer/widgets/control/
|
37
|
+
orangecontrib/tomwer/widgets/control/TomoObjSerieOW.py,sha256=5Kwg_4Ksim71bfRHErMiFLealiaOCTE_M6xe_cO6t8M,3229
|
38
|
+
orangecontrib/tomwer/widgets/control/VolumeSelector.py,sha256=YICTlcU3llShST7fhuWgVLQITLjh2e280EYHQboqi6U,5107
|
39
|
+
orangecontrib/tomwer/widgets/control/VolumeSymLinkOW.py,sha256=AEvBxdBgSZQ8MhsUQTUEGIfUN-Esk9YYddPI1F_LdaQ,6545
|
33
40
|
orangecontrib/tomwer/widgets/control/__init__.py,sha256=SaP5K3r1k3BqnHyNEKKApBnfDXucbryi4HexMvokYhQ,1545
|
34
41
|
orangecontrib/tomwer/widgets/control/icons/advancement.png,sha256=Uv_Eb1nzkb6IVj0u4btrz5_DD126aYPZcls7U40jIEw,729
|
35
42
|
orangecontrib/tomwer/widgets/control/icons/advancement.svg,sha256=tNLbRofd2oT1bHov49X3q-YVNwtHEgrW3HfPc5i80js,5781
|
@@ -44,9 +51,9 @@ orangecontrib/tomwer/widgets/control/icons/image_key_upgrader.png,sha256=3z6wbni
|
|
44
51
|
orangecontrib/tomwer/widgets/control/icons/namefilter.png,sha256=X8bjqAnxP5v1jzlUl9_aFxyE_DFadPE1fy4bv3l-9wM,2072
|
45
52
|
orangecontrib/tomwer/widgets/control/icons/namefilter.svg,sha256=z8o4MbAcSmnE-SeqCcgQ0_6wvy6C9QM3UGzyl9RjJGM,3757
|
46
53
|
orangecontrib/tomwer/widgets/control/icons/notification.png,sha256=rmDW0zS9D7FwKadIzEEhAm-KuV6ixK7ViyQIppWWBY8,2600
|
47
|
-
orangecontrib/tomwer/widgets/control/icons/notification.svg,sha256=
|
48
|
-
orangecontrib/tomwer/widgets/control/icons/nxtomomill.png,sha256=
|
49
|
-
orangecontrib/tomwer/widgets/control/icons/nxtomomill.svg,sha256=
|
54
|
+
orangecontrib/tomwer/widgets/control/icons/notification.svg,sha256=lDnKnOaOOPYQINZJSuB7gdJzvoG9jvwx8ZDx4i1UfRA,4587
|
55
|
+
orangecontrib/tomwer/widgets/control/icons/nxtomomill.png,sha256=Md3rWGn6UIn9AQkk8xlFcrDuiahqAYfsYoj9T2pf8QQ,1417
|
56
|
+
orangecontrib/tomwer/widgets/control/icons/nxtomomill.svg,sha256=z4QiWUj94j4MkbNODmKxd_7ti-uLVerffDYtftUQw4s,11417
|
50
57
|
orangecontrib/tomwer/widgets/control/icons/progress.svg,sha256=tE8dn1IusSW1GbJKTM7csir9apC-QiaKjbWi4q76c4U,2516
|
51
58
|
orangecontrib/tomwer/widgets/control/icons/scanlist.svg,sha256=YqqUWI5oHlgkHBQP4nD6MJnyzK5VVOTAl1Vs0HtYN3Y,2873
|
52
59
|
orangecontrib/tomwer/widgets/control/icons/scanselector.png,sha256=LDj_eW5U_-t8AxHsd1M8rtN769BN4oW4d_ahOLcRGXY,1463
|
@@ -54,6 +61,8 @@ orangecontrib/tomwer/widgets/control/icons/scanselector.svg,sha256=9Ie1LUjkqTDRl
|
|
54
61
|
orangecontrib/tomwer/widgets/control/icons/single_tomo_obj.png,sha256=VmoATUj_etBFj-YpZPrf5VZH7wu89BRgA7_sjrgY1ZY,351
|
55
62
|
orangecontrib/tomwer/widgets/control/icons/single_tomo_obj.svg,sha256=jOoOnBAivfelz3_caCypir91bggni9L5bUsRIwBC73I,3615
|
56
63
|
orangecontrib/tomwer/widgets/control/icons/time.png,sha256=bqeevyHKx5SKYHA1q4OBXROhyJCmUDGeFwsg6Rt6-d8,3641
|
64
|
+
orangecontrib/tomwer/widgets/control/icons/tomoobjserie.png,sha256=YR6vkxvIVsafhrhDKI9CGVi6LE-fFYYvc4nQuBvGixs,3116
|
65
|
+
orangecontrib/tomwer/widgets/control/icons/tomoobjserie.svg,sha256=lscdTMImi7tpmXiYJRTJ9jNkTGSu-nAo1pe_Lx5ckxI,5900
|
57
66
|
orangecontrib/tomwer/widgets/control/icons/tomwer.png,sha256=M9IWm_TDKlSA6PZ-FPblo2k6PH-kkT2d0ASRvZ-pM_8,8992
|
58
67
|
orangecontrib/tomwer/widgets/control/icons/validator.png,sha256=mc9NL5bmDMFrd23SQc8GR8WEmiERyokVC1z2QmGF5pA,9358
|
59
68
|
orangecontrib/tomwer/widgets/control/icons/validatorcrack.png,sha256=gWwhrkyQWt4gx8HIejqeha05jjQoR2r3zcEKf5APxfw,9592
|
@@ -68,19 +77,24 @@ orangecontrib/tomwer/widgets/debugtools/icons/hammer.png,sha256=5z_sXTWfAMCYhKbv
|
|
68
77
|
orangecontrib/tomwer/widgets/debugtools/icons/hammer.svg,sha256=7uovCO-33EP_A6sjGzQMkvF59hdF_Aj1hzr5yIAfDjk,3191
|
69
78
|
orangecontrib/tomwer/widgets/debugtools/icons/inspector.png,sha256=sNTPrEEDGQHwU-O6hXBZfdmXeUWUarZPsL3s6l9opSE,1020
|
70
79
|
orangecontrib/tomwer/widgets/debugtools/icons/inspector.svg,sha256=GPx4Xoo8dZGr0Ea6O_2YXcTh5Vg6Lzrh86uf6iG5opQ,3943
|
71
|
-
orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py,sha256=
|
80
|
+
orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py,sha256=pUPk6c5TcAACP0ZqvFeHHm_9ZfL_I4nk9NYk9UPXD-A,6426
|
72
81
|
orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py,sha256=u1MFGMvcIs-gJuetgtkb5O9itHXeaP1etD0GC7IY7AY,4492
|
73
82
|
orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py,sha256=RZAuJ3BBsQ8_3ykgswdQoL7OaLFobmWOkYFHfur7Rd0,4503
|
83
|
+
orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py,sha256=55HlNIDPgmKo_P1DISucT5GtXtIWOLOq8SCU2F6Itvs,2956
|
74
84
|
orangecontrib/tomwer/widgets/edit/__init__.py,sha256=Vi59fYTOMhrLXwQ3OkMIonmHx4rG_UUnutZPiax_rGY,1555
|
75
|
-
orangecontrib/tomwer/widgets/edit/icons/image_key_editor.png,sha256=
|
85
|
+
orangecontrib/tomwer/widgets/edit/icons/image_key_editor.png,sha256=Fl6PEgzY9Gjs6Sh_vMWHCXVtNJ_wiQ5e9g58rZI64ng,878
|
76
86
|
orangecontrib/tomwer/widgets/edit/icons/image_key_editor.svg,sha256=9viXpjZxrXDx6qgWbRByvvqbBLcleUS1viFpSVDdFgg,7396
|
87
|
+
orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.png,sha256=jHnMOdF8A2H5KTZ0oG64OlKWA9MDhLW8L-mYS3HH4UA,998
|
77
88
|
orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.svg,sha256=h5j65y8QkeUe3N7zkgFa6BN9BZrIelfLLjuivzKMBsQ,13531
|
89
|
+
orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.png,sha256=9f2FTGGgosSXAY-BxG_Iy9Bt-UZcC-kMF9bAZu4aiOg,1026
|
90
|
+
orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.svg,sha256=bHPTVeDwLoJXHwxj8l-ucyFWgmSuyBd8zGkOpzwj09c,8204
|
78
91
|
orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.png,sha256=iYJDtrlegb4i5M8ta8eHbPAIb9hUC-JsMTcLN-0SZX8,1522
|
79
92
|
orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.svg,sha256=cAGJ0qLFdlE-Fp2fA5nCGVLdRITSJ53LsgMzSO1HGWk,29749
|
80
93
|
orangecontrib/tomwer/widgets/edit/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
81
|
-
orangecontrib/tomwer/widgets/edit/test/test_dark_flat_patch.py,sha256=
|
82
|
-
orangecontrib/tomwer/widgets/edit/test/test_image_key_editor.py,sha256=
|
83
|
-
orangecontrib/tomwer/widgets/edit/test/test_image_key_upgrader.py,sha256=
|
94
|
+
orangecontrib/tomwer/widgets/edit/test/test_dark_flat_patch.py,sha256=bn8yR9Y0MA6cj9PG3i7Gp5Su4ldCgKRiGOpZinZaZrU,2830
|
95
|
+
orangecontrib/tomwer/widgets/edit/test/test_image_key_editor.py,sha256=Q7fz0IGzoEPe2pQmo7-qIe3NgKRMlep0Hla0NlYrlIw,2127
|
96
|
+
orangecontrib/tomwer/widgets/edit/test/test_image_key_upgrader.py,sha256=mW-ooI9v3ZiUeYqSTzP-iuFDKdUUCIK7q7d6VZ16068,2209
|
97
|
+
orangecontrib/tomwer/widgets/edit/test/test_nxtomo_editor.py,sha256=frNTQHhzTd0tkSg2L1P_Im9EVT-2ZtqPRVgtxS817bg,818
|
84
98
|
orangecontrib/tomwer/widgets/icons/tomwer.png,sha256=M9IWm_TDKlSA6PZ-FPblo2k6PH-kkT2d0ASRvZ-pM_8,8992
|
85
99
|
orangecontrib/tomwer/widgets/icons/tomwer_build.png,sha256=NoFulUejQqGshY4POh2g--0I5Ug1aGFoyhkBkTa_Pe4,6731
|
86
100
|
orangecontrib/tomwer/widgets/icons/tomwer_build.svg,sha256=atDII2b2ElqVPXT3Q80bkYJZnmhqSKMluDspT4LDs_g,15969
|
@@ -96,18 +110,18 @@ orangecontrib/tomwer/widgets/icons/tomwer_other.png,sha256=Wkmfwcr4r0BVTr2nnN4JO
|
|
96
110
|
orangecontrib/tomwer/widgets/icons/tomwer_other.svg,sha256=B9yhdFCX6btz63rvRe5he0AIZcy6yyY3Jq07GMyQrkI,16763
|
97
111
|
orangecontrib/tomwer/widgets/icons/tomwer_visu.png,sha256=RuUI1bQwURe8iGkKhN3QzPqciC3fIelD6WcJ4NXGhIY,8760
|
98
112
|
orangecontrib/tomwer/widgets/icons/tomwer_visu.svg,sha256=KGi42uPMqTtLtj5pYc6slvCPN53MOOI8b0iRQx2sSBM,18818
|
99
|
-
orangecontrib/tomwer/widgets/other/PythonScriptOW.py,sha256=
|
113
|
+
orangecontrib/tomwer/widgets/other/PythonScriptOW.py,sha256=wfJ29jVsUY6bUq3LMGl_c3wKRXGx_m33p9tTXkhvklk,26974
|
100
114
|
orangecontrib/tomwer/widgets/other/__init__.py,sha256=7Ca9kD-HBAYOI72go7FckSGSeBSMmZn17Wt2ZNVbK5o,1512
|
101
115
|
orangecontrib/tomwer/widgets/other/icons/PythonScript.svg,sha256=-8O2mNwRmyVdFvpcJsXLlOPcn50Sbv_qFHet1IF9T6A,5501
|
102
|
-
orangecontrib/tomwer/widgets/reconstruction/AxisOW.py,sha256=
|
103
|
-
orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py,sha256=
|
104
|
-
orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py,sha256=
|
105
|
-
orangecontrib/tomwer/widgets/reconstruction/NabuOW.py,sha256=
|
106
|
-
orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py,sha256=
|
107
|
-
orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py,sha256=
|
108
|
-
orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py,sha256=
|
109
|
-
orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py,sha256=
|
110
|
-
orangecontrib/tomwer/widgets/reconstruction/TofuOW.py,sha256=
|
116
|
+
orangecontrib/tomwer/widgets/reconstruction/AxisOW.py,sha256=2GhuZ89cLnnORaMsgXq4_Cz_vke-bDgIelLIfBwiyzs,22288
|
117
|
+
orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py,sha256=02qpJUdjr2Zk10wpTCpRknkEmKDWTQsP8WG7K4mlwSA,9097
|
118
|
+
orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py,sha256=IvE4-yDaktCUOnq8NnQB6jHsjddynHlOHSkh_1504Gk,10518
|
119
|
+
orangecontrib/tomwer/widgets/reconstruction/NabuOW.py,sha256=OHVqsEr48vIbpNLNaQZrgL3pEn_FvEQJ5uryajzQon0,10884
|
120
|
+
orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py,sha256=ZtKVU804Aj9RdZLYsNzOylCo02bQNJ1mFt8lEu1QsB8,17622
|
121
|
+
orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py,sha256=GPMR0dbv3t0FdlCXM_gLNxZDto-QULjlOEiDgqu3KYE,17852
|
122
|
+
orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py,sha256=tmLBFWa9oBT1335t-Ta2otM5ndhxoLo3AtSO2nW1zqo,14636
|
123
|
+
orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py,sha256=Tx6rXjjrYN8JawMNZFr-AGr1upa0GX_-aIuoU6s5XMM,10845
|
124
|
+
orangecontrib/tomwer/widgets/reconstruction/TofuOW.py,sha256=X889aNXwB-h5mTa9XuXSX35j15LZvr7DCnP8nfjuCsk,7820
|
111
125
|
orangecontrib/tomwer/widgets/reconstruction/__init__.py,sha256=lgfP-eyIPCwy2R5FVl7uBcO17ESpLbkB1YSvieFRqq4,1601
|
112
126
|
orangecontrib/tomwer/widgets/reconstruction/icons/XY_lamino.svg,sha256=6fLlBy8R2HJMGdTYgZSQqmLWDp0m63uGRc7ixjC9SHA,8087
|
113
127
|
orangecontrib/tomwer/widgets/reconstruction/icons/XZ_lamino.svg,sha256=kSjhObKm8W_Lz_aSN06SuMNKr9lqkdJ3vxaNbBRp64A,11786
|
@@ -120,8 +134,8 @@ orangecontrib/tomwer/widgets/reconstruction/icons/darkref.svg,sha256=GM7FKmq6hf8
|
|
120
134
|
orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.png,sha256=HbRgOxVfeoIKVCvZxOVR0IkPtwnMGTgOkuLm41IWl6s,5509
|
121
135
|
orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.svg,sha256=NixrD-WzXa5g5D6tC6nQn6SMYhK2QAERC3ut1uFH4Ic,14957
|
122
136
|
orangecontrib/tomwer/widgets/reconstruction/icons/esrf.png,sha256=keM4tfcuTQ3k3IGxx3tOW5sHiyegJgmbvYklo6e2M5U,105862
|
123
|
-
orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.png,sha256=
|
124
|
-
orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.svg,sha256=
|
137
|
+
orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.png,sha256=f9PNysRn4tvAcC7bi7ncxlOqND6p-fME5z2vsLI47-w,644
|
138
|
+
orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.svg,sha256=XMDcG0faFaxhGoOCyMjlIHY_Ii_u2DtpfLZ1D3Zp7g8,4230
|
125
139
|
orangecontrib/tomwer/widgets/reconstruction/icons/nabu_3d.png,sha256=TNJykS51IZ-k90ajKxJn53A5SxiUvBadk_4H5vn1Df0,2940
|
126
140
|
orangecontrib/tomwer/widgets/reconstruction/icons/nabu_3d.svg,sha256=WH8Ji8md5LxrnMpTKDGYkk47v44aDLdzNsHPirHv01U,6178
|
127
141
|
orangecontrib/tomwer/widgets/reconstruction/icons/nabu_cast.png,sha256=vmQjyptoHkNqcNtsoTl6alfQGjn2bUa-tx3w6VOnlMY,3023
|
@@ -136,11 +150,12 @@ orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.png,sha256=JJYo295
|
|
136
150
|
orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.svg,sha256=gQQFb5Uj2Vr8UPVtRGqNBz-aQWc5DcDvpSMGwv8VANE,14712
|
137
151
|
orangecontrib/tomwer/widgets/reconstruction/icons/tomogui.png,sha256=qg7SZMRY3QjK-tteyoN0ToU5gNs1ZflkwzUK5kVVVQI,6846
|
138
152
|
orangecontrib/tomwer/widgets/reconstruction/icons/tomwer.png,sha256=M9IWm_TDKlSA6PZ-FPblo2k6PH-kkT2d0ASRvZ-pM_8,8992
|
139
|
-
orangecontrib/tomwer/widgets/visualization/DataViewerOW.py,sha256=
|
140
|
-
orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py,sha256=
|
153
|
+
orangecontrib/tomwer/widgets/visualization/DataViewerOW.py,sha256=T8rse9FIWbM6LPOZvkcKDuwlD1aSZYGrKIwg3S-3Xuw,5199
|
154
|
+
orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py,sha256=6XQ7i8XmrbKeB1iodyHzQlhahHHfOUngPevrh608ohU,2874
|
141
155
|
orangecontrib/tomwer/widgets/visualization/LivesliceOW.py,sha256=g2QQNI2hfcN0w2YCTOd4VjNwqMiOG3UcIUGtJkrJnXo,3171
|
156
|
+
orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py,sha256=KelMKYUL-rIq_Vi_1sylUu8P3EWsnY0HLilJcZdiwLE,1949
|
142
157
|
orangecontrib/tomwer/widgets/visualization/RadioStackOW.py,sha256=_FYjyXCLnfBnEPSEvYzyktpC3XT_thIte9Y6dF3dhn8,3392
|
143
|
-
orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py,sha256=
|
158
|
+
orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py,sha256=NV5-TYsEOW1arb06qWg2A3Qxavk7-60KdJz9Mrxcgf8,4118
|
144
159
|
orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py,sha256=QoreOflKUoehfICkJFr6Xn1jG_l9hEmWrsKb9-WsoFA,3327
|
145
160
|
orangecontrib/tomwer/widgets/visualization/SliceStackOW.py,sha256=0Bo5wcLsQl1e-kZaYMsC5ps8tLVqX5AA5jVRJaEIR70,4063
|
146
161
|
orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py,sha256=GhKLbY075AQpC9Tro_dHs7gtTAprbY16KmZh5qwxgVE,3164
|
@@ -152,6 +167,8 @@ orangecontrib/tomwer/widgets/visualization/icons/eye.png,sha256=UF4hLEEHlaGNroOH
|
|
152
167
|
orangecontrib/tomwer/widgets/visualization/icons/eyecrack.png,sha256=SsN6cLHh4Vz4tUc4N08gCZ5sjiOgYoeCbGoelmR9k5o,4279
|
153
168
|
orangecontrib/tomwer/widgets/visualization/icons/liveslice.png,sha256=EM1c4l3ImwYO04ltyGQxPMEBoq3HOEWVCtJ6Ujixd2Q,1392
|
154
169
|
orangecontrib/tomwer/widgets/visualization/icons/liveslice.svg,sha256=VSTXMtVJ3WwR7LsIaA4haf1SsE0CdNrpTdYWII5la_0,3349
|
170
|
+
orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.png,sha256=bWUPf5i_PEy-j4swE0eAwi20-5gO3_4hnq6R6M2aLRc,1114
|
171
|
+
orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.svg,sha256=FdkCcq0UpkzskUKobxLK4xy4_UgkPvYjlI8w9xbZAAc,22650
|
155
172
|
orangecontrib/tomwer/widgets/visualization/icons/radiosstack.png,sha256=_QL30iH2ZZdNiGjN9fOVJQMd31cQPK24w1zFbKySDPc,2704
|
156
173
|
orangecontrib/tomwer/widgets/visualization/icons/radiosstack.svg,sha256=c97uv5Deaeh59SJDhAmghbWlvvssWTymazlhW95j6ns,2498
|
157
174
|
orangecontrib/tomwer/widgets/visualization/icons/sampleMoved.png,sha256=AOXb8lRnGFfJO6DjcwdWZuYYBw_2-pvr5Ja17UH3b2M,1281
|
@@ -163,23 +180,23 @@ orangecontrib/tomwer/widgets/visualization/icons/tomwer.png,sha256=M9IWm_TDKlSA6
|
|
163
180
|
orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.png,sha256=8XwGE5maqQdjmU7_EWcqiuOG7xsf7ycNUJ_40UvpYeA,4372
|
164
181
|
orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.svg,sha256=2uT9_px6VBxkC6RxD0QrQVzcBusDlNVKwekh551EF0A,8454
|
165
182
|
tomwer/__init__.py,sha256=UkYK_aDTsg7Qfv3IbRaQZ8lm9hRD93U7fLzbvXoLwn4,1745
|
166
|
-
tomwer/__main__.py,sha256=
|
167
|
-
tomwer/setup.py,sha256=sePo3YhvG__5VH8RMCr0IAXYPrFh0eamWJNmuuENYJ8,1995
|
183
|
+
tomwer/__main__.py,sha256=r6aj9eSuARnS6tFeDalCx5EM6L5RsD4iW2qfleUQi-k,5962
|
168
184
|
tomwer/utils.py,sha256=UVEewsSmUpPXkUSP0zwg-sHZ5HfU9AZNPxKdwYjL7h0,8544
|
169
|
-
tomwer/version.py,sha256=
|
185
|
+
tomwer/version.py,sha256=bEBEwuJxbKFpZ1PZqZKYscxfEhv2yQL95Ud8u4nt3x8,4386
|
170
186
|
tomwer/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
171
187
|
tomwer/app/axis.py,sha256=m8-fOYcX8dRWHa-EjOO9cKiW9nBl7Z5nhOi5d4YovSQ,6473
|
172
188
|
tomwer/app/canvas.py,sha256=TVh-E_LnCzfDVYL_r0Hy5KC47nJ4Bk_L6XVurXaab4s,1377
|
173
|
-
tomwer/app/darkref.py,sha256=
|
189
|
+
tomwer/app/darkref.py,sha256=DNKuZDGxi_LCtVxqGrSUILVC3TeQ0UIcMxjA9wb0WTg,5607
|
174
190
|
tomwer/app/darkrefpatch.py,sha256=hHdL4oz1uoTd_BwgUjrR4-DXUAKn7HDOlpgGBBNHcNI,3817
|
175
191
|
tomwer/app/diffframe.py,sha256=tqxqghINLsW_UCvJK4bgx2AnB2ygho7ZspI_yriWASU,2741
|
176
|
-
tomwer/app/imagekeyeditor.py,sha256=
|
192
|
+
tomwer/app/imagekeyeditor.py,sha256=rTI_UhMsjBTqMYNooiLdxCi_XRozw9_pPZVLsrgh4w8,3347
|
193
|
+
tomwer/app/imagekeyupgrader.py,sha256=kWw0ykrzWpTuCb0ibIuk-Jo4ZSjxvLl1wtfPjLwCUgk,3174
|
177
194
|
tomwer/app/intensitynormalization.py,sha256=gkW-nFEvVZxj7kEP8fGafH-wZa-Tl8AHda368cfXQoM,6518
|
178
195
|
tomwer/app/lamino.py,sha256=o1sxB6SMJ4n4gwcnvZwU3mvTtaqHCAv2xH9U15HdD9o,4690
|
179
196
|
tomwer/app/nabuapp.py,sha256=39_vwNighSJrpWMKlMP1Of9BzAfd_G_dXq6YmyaF4BU,8017
|
180
|
-
tomwer/app/
|
197
|
+
tomwer/app/nxtomoeditor.py,sha256=5IrHhUxAV8GOMwQpSdnhDyrHpY-9gvT11Y80C9KfRPM,2795
|
181
198
|
tomwer/app/radiostack.py,sha256=aVZHFWhkZktjyDyUDRFuORuJsjvgcyioBK-MfAFoQFM,2247
|
182
|
-
tomwer/app/rsync.py,sha256=
|
199
|
+
tomwer/app/rsync.py,sha256=jODKA0vP_yvGDpXoc-ff3shN2oVEgEsBy9MM9Uy9kfk,4081
|
183
200
|
tomwer/app/saaxis.py,sha256=47hq-ZSG_3Qhm94qNYUXVk_F7Ji9xu-GBRhY5r-ha4Q,9505
|
184
201
|
tomwer/app/sadeltabeta.py,sha256=wjEmyM108JWnnnDdkYq1mOvwDGkfiiiaMkfCkNsjppM,12344
|
185
202
|
tomwer/app/samplemoved.py,sha256=Opk5sFUvZhM3OXiuZTecEXf0iOz9l06a7CGs3yvHn4M,2185
|
@@ -188,308 +205,318 @@ tomwer/app/sinogramviewer.py,sha256=Xu7batttJeq44LKms9MUBC8SqkcBJ89FC0pcEFS5Wh8,
|
|
188
205
|
tomwer/app/slicestack.py,sha256=enIJtdeaElR8ST34obvGEYQVBdsA3ox9rc0AuTDlDsE,2086
|
189
206
|
tomwer/app/stopdatalistener.py,sha256=zuVIEkfXVrBnKf8cmpUBUg0xrsdnQ2fjuJwUk_FnyKU,956
|
190
207
|
tomwer/app/canvas_launcher/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
191
|
-
tomwer/app/canvas_launcher/config.py,sha256=
|
208
|
+
tomwer/app/canvas_launcher/config.py,sha256=aF9VlavqSKgImpFOKSdazfaWzzhY6LfjYn_HWgmEygU,7251
|
192
209
|
tomwer/app/canvas_launcher/environ.py,sha256=pOJzQ612T0AA4mtGmCoB_YGo9fnxpDOBRuMEFiaMQl8,2501
|
193
|
-
tomwer/app/canvas_launcher/mainwindow.py,sha256=
|
210
|
+
tomwer/app/canvas_launcher/mainwindow.py,sha256=Tw6k1epW48D-WD8VEsHzIhjRSKMQPpS8rNpEqxP0O6c,12322
|
194
211
|
tomwer/app/canvas_launcher/splash.py,sha256=a2s9UwfEu4qenTUn9z-2g-tcAQNFOAgidmeUPFM70Gs,559
|
195
|
-
tomwer/app/canvas_launcher/widgetsscheme.py,sha256=
|
212
|
+
tomwer/app/canvas_launcher/widgetsscheme.py,sha256=ynznd04N5RteRLWPC9kNVJifM_-WV1yTelIT0LqzmjI,2816
|
196
213
|
tomwer/core/__init__.py,sha256=lLfviCLw9VdT6SQ_9eYhqFe8QtUA-Dv-JDGpgxQ8Yzs,1373
|
197
|
-
tomwer/core/futureobject.py,sha256=
|
214
|
+
tomwer/core/futureobject.py,sha256=OOhcEDxLMbgb4h4HGA-Yz-b3kZsSpjU3-_sUnsYizZs,6060
|
198
215
|
tomwer/core/progress.py,sha256=Bgv-t7eflfWQlZMX_klE4xbu2vPcX4gRxI3O3y6X1UU,3251
|
199
|
-
tomwer/core/settings.py,sha256=
|
216
|
+
tomwer/core/settings.py,sha256=wf5q6SGJGkJI_uL-z9FlCUN2Ao773429-fOGwPZ12Bc,3227
|
200
217
|
tomwer/core/signal.py,sha256=I5TUcyeBZzrEh1SFGs-ylJSL1aBs41ZFb3IJo3O_55c,6115
|
201
|
-
tomwer/core/tomwer_object.py,sha256=
|
218
|
+
tomwer/core/tomwer_object.py,sha256=tbqyCcqEuiAzC1Y0EUWPOZ9eYhtYFVYALGfxzIMr3x8,1089
|
202
219
|
tomwer/core/cluster/__init__.py,sha256=vak-tOR_fqqnNqZ8xw2ecos-HAgKpZBbC7yk4JUjDKk,60
|
203
|
-
tomwer/core/cluster/cluster.py,sha256=
|
220
|
+
tomwer/core/cluster/cluster.py,sha256=XMt3oQsTtdfDWYzNVcnk4Ub3EWRNv6ajrTS3CuIh8os,4478
|
204
221
|
tomwer/core/log/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
205
222
|
tomwer/core/log/logger.py,sha256=L9BwVlmPb52mDqfPLIVHX9htVBMWfAZqHw80FRXhPrE,4129
|
206
223
|
tomwer/core/log/processlog.py,sha256=KAl2W6RItG4DYs7274DHxZZUgVtLsGjcsuzVVg4pu_w,3698
|
207
224
|
tomwer/core/process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
208
|
-
tomwer/core/process/task.py,sha256=
|
225
|
+
tomwer/core/process/task.py,sha256=sgt1hlK0atDhyzoUmLAat27JlT5rRHJFIF3EQSBkBSA,17302
|
209
226
|
tomwer/core/process/utils.py,sha256=rrTyNEDEnJLpKFm70F3Dg2mAjuWiTX4D4ZtvvZkbF1M,4061
|
210
227
|
tomwer/core/process/cluster/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
211
228
|
tomwer/core/process/cluster/supervisor.py,sha256=sStffXsjWEYaAF0yL03igtLflRnmr3zJzHRWGidwHas,1755
|
212
229
|
tomwer/core/process/conditions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
213
230
|
tomwer/core/process/conditions/filters.py,sha256=82cedGBU0uc6jJhXGNfIMCDsbjBecDsfFGaHbCzKM5U,6422
|
214
231
|
tomwer/core/process/control/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
215
|
-
tomwer/core/process/control/nxtomomill.py,sha256
|
216
|
-
tomwer/core/process/control/scanlist.py,sha256=
|
217
|
-
tomwer/core/process/control/
|
218
|
-
tomwer/core/process/control/
|
219
|
-
tomwer/core/process/control/
|
220
|
-
tomwer/core/process/control/
|
221
|
-
tomwer/core/process/control/
|
222
|
-
tomwer/core/process/control/
|
232
|
+
tomwer/core/process/control/nxtomomill.py,sha256=-ZSiphhicBmk45u_32BvvYnK4polr3SmREzVhFrpYr8,5197
|
233
|
+
tomwer/core/process/control/scanlist.py,sha256=qVD0uNa8aaydzVXQVPKTmjrvJFi-ysOzXxnQygvB4lA,2047
|
234
|
+
tomwer/core/process/control/scanselector.py,sha256=uFoL7kGpoAYQTPc2U7F1WsZX-EpNn8aaB3r4A4_JYTY,288
|
235
|
+
tomwer/core/process/control/scantransfer.py,sha256=fD9zECdJ5GR6MjsrYaQbEcet362ou6DC9X5OpiW7mSY,26868
|
236
|
+
tomwer/core/process/control/scanvalidator.py,sha256=Gf1U84aBRFKOZeqgHqXu495sED91LSNGG9vuvV41BcA,10588
|
237
|
+
tomwer/core/process/control/singletomoobj.py,sha256=lzUH-0_-1U08DuBQggxzGs6zzAyZzwWuNZENQJI91ts,555
|
238
|
+
tomwer/core/process/control/timer.py,sha256=Nbtb6E3tnXJ9urftG1eQWcg3TCvNvNVakSETH5tFkgY,2959
|
239
|
+
tomwer/core/process/control/tomoobjserie.py,sha256=4BaujArjbbdROfZ_rrIXXbe_PYwWp8mRQuDLlHTdQjA,209
|
240
|
+
tomwer/core/process/control/volumeselector.py,sha256=pxc042t2KEUk8QSfeqygenPvEw4BM1Ej8MTStsEOa0k,304
|
241
|
+
tomwer/core/process/control/volumesymlink.py,sha256=0LKBknRs07Fh6MCQsUmCesnjQYnoYi6t9Li8-NxwS5Q,5994
|
223
242
|
tomwer/core/process/control/datalistener/__init__.py,sha256=gSEeJEDX8E-8HzY7tmPc32QKfqSZHG4Ad06IxDrzOWo,52
|
224
|
-
tomwer/core/process/control/datalistener/datalistener.py,sha256=
|
225
|
-
tomwer/core/process/control/datalistener/rpcserver.py,sha256=
|
243
|
+
tomwer/core/process/control/datalistener/datalistener.py,sha256=z86q2VA-x3E_wLjplIqbq1bJs15KR9W5FeybWKCtTzk,22058
|
244
|
+
tomwer/core/process/control/datalistener/rpcserver.py,sha256=k0ZNjvT30FfVBiwiiVzaDV27W77HyR7opC6oRu1q7SA,11405
|
226
245
|
tomwer/core/process/control/datawatcher/__init__.py,sha256=F9d_bGOr5iAPEfnKaf5XOEwQSR1wZp_wkzcDYNSuin4,50
|
227
|
-
tomwer/core/process/control/datawatcher/datawatcher.py,sha256=
|
228
|
-
tomwer/core/process/control/datawatcher/datawatcherobserver.py,sha256=
|
229
|
-
tomwer/core/process/control/datawatcher/datawatcherprocess.py,sha256=
|
230
|
-
tomwer/core/process/control/datawatcher/edfdwprocess.py,sha256=
|
246
|
+
tomwer/core/process/control/datawatcher/datawatcher.py,sha256=KhktCQ9Mph16I_gARVyBINaNp3_SefRzhXPzjEQNaNk,16656
|
247
|
+
tomwer/core/process/control/datawatcher/datawatcherobserver.py,sha256=m1zDnBW5_xFX6YnIsvDE7CD96DuWSfPSUxDNIG42RJY,25749
|
248
|
+
tomwer/core/process/control/datawatcher/datawatcherprocess.py,sha256=Y8nujgurfPf5ZXqDGFA4l-V_ka-hf7zpIxI442zChrk,9454
|
249
|
+
tomwer/core/process/control/datawatcher/edfdwprocess.py,sha256=zZ7k5j1kxk915pKsCnBGjDYanBs9hSEJi79_CAtDEmY,7576
|
231
250
|
tomwer/core/process/control/datawatcher/hdf5dwprocess.py,sha256=fSdsLs90b-k9PGMHGnsOIbc72mZz4ByZ-07pBXlrORY,3025
|
232
251
|
tomwer/core/process/control/datawatcher/status.py,sha256=IF08EUfRowiSVGNizuyDSsll8Od3dENYh2BxA2aWh8I,3043
|
233
252
|
tomwer/core/process/control/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
234
253
|
tomwer/core/process/control/test/test_volume_link.py,sha256=GBCCJzV5HwshnksJytmvsWWEYHTRyh6z0HDR7Ci7bZ8,3093
|
235
254
|
tomwer/core/process/edit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
236
|
-
tomwer/core/process/edit/darkflatpatch.py,sha256=
|
237
|
-
tomwer/core/process/edit/imagekeyeditor.py,sha256=
|
255
|
+
tomwer/core/process/edit/darkflatpatch.py,sha256=JSnxDWu3T8tvZWsa_EUuYn3z_V8Q2gCqPxxDe6W7AZY,4126
|
256
|
+
tomwer/core/process/edit/imagekeyeditor.py,sha256=bBMZjimS68wlfWRduzj6lFPnUqMSBRCHAdwa3rJJYcI,8101
|
238
257
|
tomwer/core/process/reconstruction/__init__.py,sha256=EgySFx4vfoPre5NwYZbKoWSMx-3lBYXWlAI-b-ttRu4,1504
|
239
258
|
tomwer/core/process/reconstruction/paramsbase.py,sha256=YhCqZwZCM632WdLlLHJVEwBHnXwbBf7CoLA3jESxOFE,7725
|
240
259
|
tomwer/core/process/reconstruction/axis/__init__.py,sha256=NunQ3qSK_Fo0tPNvMjV7qAGmXU4qKGTTcsF_9mcZofQ,83
|
241
260
|
tomwer/core/process/reconstruction/axis/anglemode.py,sha256=sOkuTqO8sR8xd_tEwZHj-o1TA1z33AmwwZbrPnuYqmI,1896
|
242
|
-
tomwer/core/process/reconstruction/axis/axis.py,sha256=
|
243
|
-
tomwer/core/process/reconstruction/axis/mode.py,sha256=
|
244
|
-
tomwer/core/process/reconstruction/axis/params.py,sha256=
|
261
|
+
tomwer/core/process/reconstruction/axis/axis.py,sha256=aWolbia5OYEzvC4hdJKurvLaL4J0TTsDJZfzuYcSy80,34853
|
262
|
+
tomwer/core/process/reconstruction/axis/mode.py,sha256=wLAPrTYmpaSKWuiPbM5jYe8qZQ2LN2SelfCmQlHRnjc,3543
|
263
|
+
tomwer/core/process/reconstruction/axis/params.py,sha256=5qbFpMhNFUc9te_4kNEFBTAb2biIR_Wk-ZUbJu1aRnQ,32567
|
245
264
|
tomwer/core/process/reconstruction/axis/projectiontype.py,sha256=0w_NZ0N95iInHuEQCIxJIxt7K-YpCUo2fZ-_vhZ6D7Q,1543
|
246
265
|
tomwer/core/process/reconstruction/darkref/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
247
|
-
tomwer/core/process/reconstruction/darkref/darkrefs.py,sha256=
|
248
|
-
tomwer/core/process/reconstruction/darkref/darkrefscopy.py,sha256=
|
249
|
-
tomwer/core/process/reconstruction/darkref/params.py,sha256=
|
266
|
+
tomwer/core/process/reconstruction/darkref/darkrefs.py,sha256=3F0NeNctVaLjF3Adao7Gv1d7s1Ciar7csGkdGY2Km_w,23768
|
267
|
+
tomwer/core/process/reconstruction/darkref/darkrefscopy.py,sha256=GZZn3OpVfkM0Rgxi-o9u4GTd1qfLbmmNth9epwO4vfM,12882
|
268
|
+
tomwer/core/process/reconstruction/darkref/params.py,sha256=mt0O304c5RkKg6UHGwFSzarNgV4qykuUgWCgA9tCk0s,9567
|
250
269
|
tomwer/core/process/reconstruction/darkref/settings.py,sha256=35jliuOIjMKTOJjgn4uiotcDEr6RskpLHfRWWLm76dc,188
|
251
270
|
tomwer/core/process/reconstruction/lamino/__init__.py,sha256=EH-YNlONEw1v6UU5ByDh8Y_ltvKVgivRfpAfLBkxKm4,52
|
252
|
-
tomwer/core/process/reconstruction/lamino/tofu.py,sha256=
|
271
|
+
tomwer/core/process/reconstruction/lamino/tofu.py,sha256=0x3v2QB7nzPAVjBqFrPpYh4MiZQlkiUv3BD6E-Gs_BM,34544
|
253
272
|
tomwer/core/process/reconstruction/nabu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
254
|
-
tomwer/core/process/reconstruction/nabu/castvolume.py,sha256=
|
255
|
-
tomwer/core/process/reconstruction/nabu/nabucommon.py,sha256=
|
256
|
-
tomwer/core/process/reconstruction/nabu/nabuscores.py,sha256=
|
257
|
-
tomwer/core/process/reconstruction/nabu/nabuslices.py,sha256=
|
258
|
-
tomwer/core/process/reconstruction/nabu/nabuvolume.py,sha256=
|
273
|
+
tomwer/core/process/reconstruction/nabu/castvolume.py,sha256=LuJ-wlXi0LXgC9aFYfnGl1P-CWGHxEH7j2qHyNJYQww,10072
|
274
|
+
tomwer/core/process/reconstruction/nabu/nabucommon.py,sha256=t9FnjhHLbYKizpG2mgFxHsvp0qTQyFgXAmRqjyRUh9g,21681
|
275
|
+
tomwer/core/process/reconstruction/nabu/nabuscores.py,sha256=1cNBEElw_XDoYQueh882la62QWEdn7WLjAQxN-Ualy8,11294
|
276
|
+
tomwer/core/process/reconstruction/nabu/nabuslices.py,sha256=x1EyvTKQYuCSMLSex-yI1GVLPE5-_fXMm3_OrzEjZUU,29421
|
277
|
+
tomwer/core/process/reconstruction/nabu/nabuvolume.py,sha256=p9yKpCMA2uF7IULnU0zvSwDUauc7qqfD8p1GxMWEr4U,16307
|
259
278
|
tomwer/core/process/reconstruction/nabu/settings.py,sha256=bH5bW88tikwGQXIBNVznefXNldlClhKk-LhhU3qOcO0,2264
|
260
|
-
tomwer/core/process/reconstruction/nabu/slurm.py,sha256=NyBozMcIR5OGMVRE8COIMCVncfXsW_-RK0THViD6Ym4,896
|
261
279
|
tomwer/core/process/reconstruction/nabu/target.py,sha256=_Z4gViprjR3Vm4KASqsASStLA9GM1wTyoi3Pg0PUSeg,1481
|
262
|
-
tomwer/core/process/reconstruction/nabu/utils.py,sha256=
|
280
|
+
tomwer/core/process/reconstruction/nabu/utils.py,sha256=GtRZiJ114l_5yWRbeVvkAKS_VdUk-2Wrxul6pd_ERlY,13909
|
263
281
|
tomwer/core/process/reconstruction/normalization/__init__.py,sha256=iyTlaMg14Q1eXFr8ICZovTjNd8gt6oe4e3T-6Ldo25k,128
|
264
|
-
tomwer/core/process/reconstruction/normalization/normalization.py,sha256=
|
282
|
+
tomwer/core/process/reconstruction/normalization/normalization.py,sha256=uS8ueUfwbyIW8k6boHlJ7UOWiJhLTubac0cXci1N7SQ,13088
|
265
283
|
tomwer/core/process/reconstruction/normalization/params.py,sha256=EwYypv75SkqnqPRIZqnm7k8VdwpBmaJszYI5qaCpG5Y,4790
|
266
284
|
tomwer/core/process/reconstruction/saaxis/__init__.py,sha256=qCVB1LY-XBlWNEJDB5Lxy2zCV3mrhX6frr2QCcWHLw0,93
|
267
285
|
tomwer/core/process/reconstruction/saaxis/params.py,sha256=vGSIc41Ve-cHdCQBsV0vsOyuO9ZoXrZq_keSu-tOEOI,5624
|
268
|
-
tomwer/core/process/reconstruction/saaxis/saaxis.py,sha256=
|
286
|
+
tomwer/core/process/reconstruction/saaxis/saaxis.py,sha256=W58ubkdI0U1LhyW_WoJFGzDqkWLAPwbn1dGm0f9YxIw,28589
|
269
287
|
tomwer/core/process/reconstruction/sadeltabeta/__init__.py,sha256=WY0sluyFXKiq8QeD3KvnGSpl0is7GL4F2JuBaBZNMYY,108
|
270
288
|
tomwer/core/process/reconstruction/sadeltabeta/params.py,sha256=DEE4ObLtCJ76QrhD4pisXecAdqELI0OtN_B-zm2RMHs,4106
|
271
|
-
tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py,sha256=
|
289
|
+
tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py,sha256=Npx7_Sv2oZWK7FKT3zzmitxzdMI72LyX9p8lbDygVAc,23099
|
272
290
|
tomwer/core/process/reconstruction/scores/__init__.py,sha256=T7RRLNV0Zk6xK1WRlTP8XtyLkGkS16H_PJi82T5QePw,282
|
273
291
|
tomwer/core/process/reconstruction/scores/params.py,sha256=2ZCoe-0ME3t40tOGqStuqcwLZIgd09eoVax0d5Ib3bk,6963
|
274
292
|
tomwer/core/process/reconstruction/scores/scores.py,sha256=o3HyUpS_iwwbCwWOANITgx9WaF2LYK-8Gv37Oj80qHg,6994
|
275
|
-
tomwer/core/process/reconstruction/test/__init__.py,sha256=
|
276
|
-
tomwer/core/process/reconstruction/test/test_axis_params.py,sha256=
|
293
|
+
tomwer/core/process/reconstruction/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
294
|
+
tomwer/core/process/reconstruction/test/test_axis_params.py,sha256=VDsA-acAvezVGUuGqrTwquhZc7eA3pfJ0LAy0AvDyAA,1608
|
277
295
|
tomwer/core/process/reconstruction/test/test_darkref.py,sha256=Db7vOi6A29_TFjeKhxCdK4LuJRkMS8c3b4idyXrS_7k,2466
|
278
|
-
tomwer/core/process/reconstruction/test/test_darkref_copy.py,sha256=
|
296
|
+
tomwer/core/process/reconstruction/test/test_darkref_copy.py,sha256=MAFF90_BkFUyPbtuU5e2TU3ZTzpcVCfrGC6RESiP89M,5990
|
279
297
|
tomwer/core/process/reconstruction/test/test_paramsbase.py,sha256=C-8I1dRCNC1bPxynY0-clDS5L1LYKqZ_MnM8-f-OACU,908
|
280
298
|
tomwer/core/process/reconstruction/test/test_saaxis.py,sha256=xR5EE7KgjBqTc7foAACCinvK7W-nuk_vjgwq27qgIFc,4097
|
281
299
|
tomwer/core/process/reconstruction/test/test_sadeltabeta.py,sha256=tny2ComoRPUuPclUUmKAPL6shbC0yGnTWa3hP3AEcjg,2516
|
282
300
|
tomwer/core/process/reconstruction/test/test_utils.py,sha256=ElTfO_qGIbTI4Yw6XWBVujyYbj19Cw4yUiqCRKqb3ns,1005
|
283
301
|
tomwer/core/process/reconstruction/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
284
302
|
tomwer/core/process/reconstruction/utils/cor.py,sha256=HeaZRYXPtfpJJ03HSw6Orb2KIcQtVpWZmSBKvkOojBs,368
|
285
|
-
tomwer/core/process/reconstruction/utils/nabu_slice_exec.py,sha256=GG67zA5flUWnkdmRr2kevymI7sO-kdD767r4_vC5gcU,377
|
286
303
|
tomwer/core/process/script/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
287
|
-
tomwer/core/process/script/python.py,sha256=
|
304
|
+
tomwer/core/process/script/python.py,sha256=ZSBT_u_fpkTGzJAVBvQ3zsu78DE-cVgLeaPGDmWbUJM,3879
|
288
305
|
tomwer/core/process/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
289
|
-
tomwer/core/process/test/test_axis.py,sha256=
|
306
|
+
tomwer/core/process/test/test_axis.py,sha256=IaPS6k_vAZZY4JyfR1l9Cq89uWRaME9twEzse2b3Kvo,11408
|
290
307
|
tomwer/core/process/test/test_conditions.py,sha256=-WMQcK1RO0sm0ucH8_RLlUrM1Tr9rFH5Qydnz123Xj0,3402
|
291
|
-
tomwer/core/process/test/test_dark_and_flat.py,sha256=
|
292
|
-
tomwer/core/process/test/test_data_listener.py,sha256=
|
293
|
-
tomwer/core/process/test/test_data_transfer.py,sha256
|
308
|
+
tomwer/core/process/test/test_dark_and_flat.py,sha256=Fvq2Jw4qrWKvB57Nml_owEtOmvbS3o4r6CSV1sPf5AU,14930
|
309
|
+
tomwer/core/process/test/test_data_listener.py,sha256=YMy5SbDZT3Fi8viF-pxPB8ZbA_WDNdBApXLbmWWhzUM,3694
|
310
|
+
tomwer/core/process/test/test_data_transfer.py,sha256=PIFwFLJvss4nJPFx5cJHdpog1mEtt-rfBS-drnQuDBY,15319
|
294
311
|
tomwer/core/process/test/test_data_watcher.py,sha256=_l2YSr4vpsCb9KYGse-rgFa1RF1xD9KJAKLrdLsjHTQ,3127
|
295
312
|
tomwer/core/process/test/test_lamino.py,sha256=jwfQIFsUZw1Zr3OS-vF_LE7rATlRQpAeCY_QEk2NESw,2939
|
296
|
-
tomwer/core/process/test/test_nabu.py,sha256=
|
297
|
-
tomwer/core/process/test/test_normalization.py,sha256=
|
313
|
+
tomwer/core/process/test/test_nabu.py,sha256=NfCQixq3jcrlPELnTMeD6VZ9rDjsFhYwYi2a1A-XdeM,19155
|
314
|
+
tomwer/core/process/test/test_normalization.py,sha256=POmyPF0clZEphPerh0dRo3aggWYe8U2kd4UthHT5miY,3950
|
298
315
|
tomwer/core/process/test/test_timer.py,sha256=WGiVx9Kmhx9bk3AbD-tsQ-rZu1g8TRuAkwOinU7IvwM,2968
|
299
316
|
tomwer/core/process/visualization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
300
317
|
tomwer/core/process/visualization/dataviewer.py,sha256=m13Ticv3iTNgXilZj-HGjRBY4AUihDEmZlTPiDdo8WE,1517
|
301
318
|
tomwer/core/process/visualization/diffviewer.py,sha256=_Iz2VTEshEQZy01r2UjvYs7Xh-3ddaleHAVS2_eN3xU,1517
|
302
319
|
tomwer/core/process/visualization/imagestackviewer.py,sha256=p5H3zbWLCkvVotwo5lptQLfXbvl5gbLftHXKmqUMcos,1523
|
303
|
-
tomwer/core/process/visualization/liveslice.py,sha256=
|
320
|
+
tomwer/core/process/visualization/liveslice.py,sha256=ie5D1RRkgZDOYW8UlgMscVSMdEhd5KCG3Vl3RHEIfqU,198
|
304
321
|
tomwer/core/process/visualization/radiostack.py,sha256=PvXUYae3UafOPY8UXXrYU9wnxZuGJd09qzAeq467WPc,1517
|
305
322
|
tomwer/core/process/visualization/samplemoved.py,sha256=JQyriau6YQngwoId2NHFqLxZvWRkwgQdu2mvMFsZzrg,1519
|
306
323
|
tomwer/core/process/visualization/sinogramviewer.py,sha256=AEoVIEKK75fLcGjXhX-CIRKNAo2A_SUkTASyszZTnAk,1521
|
307
324
|
tomwer/core/process/visualization/slicestack.py,sha256=wKxjS7oFLbC0PRXtQuBHRjs4H1aVnQB1cRaHAHsmjSA,1518
|
308
325
|
tomwer/core/process/visualization/volumeviewer.py,sha256=9Y3z--FDPm_LBPgbFywGOxqve3vz9UHoV-gXZ6b9-rg,1520
|
309
326
|
tomwer/core/scan/__init__.py,sha256=V1TPi41mS3b6jskdiNqgnKYvRHZg1x1KmEClQ3hUmu8,1392
|
310
|
-
tomwer/core/scan/blissscan.py,sha256=
|
311
|
-
tomwer/core/scan/edfscan.py,sha256=
|
327
|
+
tomwer/core/scan/blissscan.py,sha256=hQi91vaQCg-uZBhYQ6mSooLkB2e9k0refqR-Xiyd51Q,8271
|
328
|
+
tomwer/core/scan/edfscan.py,sha256=5bkNzPQhJLbEJf4tdikeRs7KEou2sEsWGAST3uZbqhA,22293
|
312
329
|
tomwer/core/scan/futurescan.py,sha256=uTcEa3BR2Tb3pMct9Ve7TeeUL9AEOjdKNejL4-uR1Tk,212
|
313
|
-
tomwer/core/scan/hdf5scan.py,sha256=
|
314
|
-
tomwer/core/scan/scanbase.py,sha256=
|
315
|
-
tomwer/core/scan/scanfactory.py,sha256=
|
330
|
+
tomwer/core/scan/hdf5scan.py,sha256=RMRphkCW90wUdvBt7gByww8VtocstjWT5hmqTc5BaJw,18707
|
331
|
+
tomwer/core/scan/scanbase.py,sha256=ynplFca9w70SEvBF8jcpWkLpyC8jkwihJS0Roqe4WXo,31415
|
332
|
+
tomwer/core/scan/scanfactory.py,sha256=6aSOz0UopdOWRWJKNoN3VdRneaTsdz3AN7QqEorX-UM,10594
|
316
333
|
tomwer/core/scan/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
317
334
|
tomwer/core/scan/test/test_edf.py,sha256=VbgL6fMKccU9Ca2RuE0jc8iP8rIgHL_N0nCV8ay5WvY,2211
|
318
335
|
tomwer/core/scan/test/test_future_scan.py,sha256=vXzjfsRY0m3_zZmdl7X-GfHjCbn-JF1vsTZe__tCpjw,2165
|
319
|
-
tomwer/core/scan/test/test_h5.py,sha256=
|
320
|
-
tomwer/core/scan/test/test_process_registration.py,sha256=
|
321
|
-
tomwer/core/scan/test/test_scan.py,sha256=
|
336
|
+
tomwer/core/scan/test/test_h5.py,sha256=AriX-b_vSOBkGWhWDEzLRjxyvNRN1Re7ILNzF_1OynQ,4388
|
337
|
+
tomwer/core/scan/test/test_process_registration.py,sha256=_-tCc8Y3v6eC-Pmw45ihMk0yTEkTafmDv35QadaP5sc,5194
|
338
|
+
tomwer/core/scan/test/test_scan.py,sha256=y_YY2QvKqKnYslHqti6NRvP-ZQH6Zft0Raqw7QNkfM4,14957
|
322
339
|
tomwer/core/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
323
340
|
tomwer/core/test/test_lamino.py,sha256=2-uCBIBiKldMHY5gkDnVSECKhDbwb6yiVgLOo0ooMCQ,3489
|
324
341
|
tomwer/core/test/test_scanutils.py,sha256=Dg9dIGxjqpo42zV7or-gnaUVcTf2x8BvtrKNME4uekA,2151
|
325
|
-
tomwer/core/test/test_utils.py,sha256=
|
342
|
+
tomwer/core/test/test_utils.py,sha256=q_IPM_1NCyVoFDI96Tzpy6YMIxHqGYMT0XBrogZD3lA,10673
|
326
343
|
tomwer/core/utils/Singleton.py,sha256=57g7-B2eqyrneT8DQ2Tzqha0bg-mcdSdaPtOjhsGWVc,1559
|
327
|
-
tomwer/core/utils/__init__.py,sha256=
|
328
|
-
tomwer/core/utils/char.py,sha256=
|
344
|
+
tomwer/core/utils/__init__.py,sha256=0xymzqHO1oEdOnLkzeRCyeILhKI6hcIrM0rMh-fbxmc,13486
|
345
|
+
tomwer/core/utils/char.py,sha256=VxNJ6Les9hZzVQz-gkPexWjn2h_J-XY3FiikwdgdGd0,1673
|
329
346
|
tomwer/core/utils/deprecation.py,sha256=2eIFwhOR08afzhF8dolSoM5M8ScPAj_JB9CT-QXN954,4714
|
330
347
|
tomwer/core/utils/ftseriesutils.py,sha256=urIZfVN0j0PAD3RHVAzBMaMNAN-sFudxFKNZ8cCKWXs,2382
|
331
|
-
tomwer/core/utils/gpu.py,sha256=
|
348
|
+
tomwer/core/utils/gpu.py,sha256=7s1LpN7e5ZTf1lqx0OLo-R45oE1L0JWmnLe2Hmhph6M,1812
|
332
349
|
tomwer/core/utils/image.py,sha256=tp7MWdXL2KuY3Aghf344_AULh3aUU18WnWZKrF1UH_4,4984
|
333
|
-
tomwer/core/utils/laminoutils.py,sha256=FzZseoKHPss4ZieS2lVuq4MVvM5DrCDDRTz0UWO5aK4,2896
|
334
350
|
tomwer/core/utils/locker.py,sha256=rDBfM8amysWaPbNIWkk9MZcCr_o3s5_xE4JnVj9w708,2271
|
335
351
|
tomwer/core/utils/logconfig.py,sha256=xlMqmecIAfnvs4-xFTvbtmZZ_FrX1fY39jq8NC0Km3w,1434
|
336
352
|
tomwer/core/utils/normalization.py,sha256=xBZEushzmP2yl-1ezw_WEh_LDJx9bQb99Zr8W4TFW70,2899
|
337
|
-
tomwer/core/utils/nxtomoutils.py,sha256=
|
353
|
+
tomwer/core/utils/nxtomoutils.py,sha256=32rtaQhx0xJpCcsfiCSlyELaATk9Xjq8lWcZZirAsQg,2685
|
338
354
|
tomwer/core/utils/resource.py,sha256=c5GYRVGYReU8AN5TKlexDSUnkp2PWN4JGsJ7dtvTRSY,2140
|
339
|
-
tomwer/core/utils/scanutils.py,sha256=
|
355
|
+
tomwer/core/utils/scanutils.py,sha256=FD2n9xiNiXFROukqSIqPhUgnfAkx7lOzhSZA4Rs9TPc,15497
|
340
356
|
tomwer/core/utils/slurm.py,sha256=cuR0G0U4Zx6HawJz2yHE0bdWmhPDpzf-27IOCWNUems,1922
|
341
357
|
tomwer/core/utils/threads.py,sha256=_JO6WEbdJo74ZhrFpojM2pVgDmenejump7a568fFu2E,3189
|
342
358
|
tomwer/core/utils/time.py,sha256=HfPZv-i8uJFF1tV6_22sM3IgRs3Syl8iWNJ2IiiG6sA,1894
|
359
|
+
tomwer/core/utils/volumeutils.py,sha256=GfjhbAJ3nhClptmBd4M-Ca8isDV6TF8784eNV8kz6Pc,489
|
343
360
|
tomwer/core/volume/__init__.py,sha256=c-EWhAuQnuf0A_IkoYa03JuokKFEPvyKY5vsznzsKoU,253
|
344
|
-
tomwer/core/volume/edfvolume.py,sha256=
|
345
|
-
tomwer/core/volume/hdf5volume.py,sha256=
|
346
|
-
tomwer/core/volume/jp2kvolume.py,sha256=
|
347
|
-
tomwer/core/volume/rawvolume.py,sha256=
|
348
|
-
tomwer/core/volume/tiffvolume.py,sha256=
|
349
|
-
tomwer/core/volume/volumebase.py,sha256=
|
350
|
-
tomwer/core/volume/volumefactory.py,sha256=
|
361
|
+
tomwer/core/volume/edfvolume.py,sha256=UdIV0hI7MGNa1Uge-3z6jINvJVWV-TWmCmRRgu9SvTw,3113
|
362
|
+
tomwer/core/volume/hdf5volume.py,sha256=H29SpXiK7M93pjnXZ7C2eE0S5CU-POGQgAHebBOiKYI,3835
|
363
|
+
tomwer/core/volume/jp2kvolume.py,sha256=AVRMM6ch8Rdl9dYhoYjzr9yHbBKt1N7tBuMnh2G1A0U,3138
|
364
|
+
tomwer/core/volume/rawvolume.py,sha256=TIqfcJeUPKxoEAmLg_X2EXpXNgYwBJ9LwI3azECr1YE,3536
|
365
|
+
tomwer/core/volume/tiffvolume.py,sha256=F9zpaiOpDZTF_mrY88EmO3Wv7wALpH_NAsbzUSVSnsc,4831
|
366
|
+
tomwer/core/volume/volumebase.py,sha256=cgoTbJTGsCM6sg3UaDVfbYb6oFxxZjSCmP77HqyxNeo,1538
|
367
|
+
tomwer/core/volume/volumefactory.py,sha256=Abd1En7bd-sJsSBr3w9ud0AMPw1lTP1mxS46vx9vfEo,8033
|
351
368
|
tomwer/gui/__init__.py,sha256=GuoK-CFwHqHBiLvvSUOAk6_SaXu7-k3SIYCfPTZFHFk,1474
|
352
369
|
tomwer/gui/icons.py,sha256=uOxiH_rau5I5Ayk6WA65f61__3-Xy__rilS-w_XDfyc,12916
|
353
370
|
tomwer/gui/illustrations.py,sha256=jSwOWFsQYcyWT4Ndq6dQU_aGaVoj6w8-f0hj_GLUWmM,5367
|
354
371
|
tomwer/gui/imagefromfile.py,sha256=wTV4ZvPEwP2nDDsR6G0D_u-tilH9g-IZ82-IHMyvefY,5508
|
355
|
-
tomwer/gui/qfolderdialog.py,sha256=
|
372
|
+
tomwer/gui/qfolderdialog.py,sha256=dXHbS2WyXN396jkixiLeul3p_TiEmxD-vWC7JcaWopM,22662
|
356
373
|
tomwer/gui/qlefilesystem.py,sha256=cBqCDwHj74lZeMqIjikVwBBDp1sUzzhiFiA-NROqzgo,408
|
357
374
|
tomwer/gui/settings.py,sha256=Wcz18A-T7tA9RnVuCxkKfJcfMIvCx-7KD4dzZMS8rxo,1399
|
358
|
-
tomwer/gui/stackplot.py,sha256=
|
375
|
+
tomwer/gui/stackplot.py,sha256=nFJ2NTzgXVN8cgcIrSV0sVymw--KZEs2tY3G5QiRLpw,25236
|
359
376
|
tomwer/gui/stacks.py,sha256=5yks_eEyEKyVaA0zeUvGOh13AGB62fvYZQoQ5K4Wnb8,8437
|
360
377
|
tomwer/gui/cluster/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
361
|
-
tomwer/gui/cluster/slurm.py,sha256=
|
378
|
+
tomwer/gui/cluster/slurm.py,sha256=Hnu5eFPvqDww75HW5IqVIFoc8Myg6rWuRv5yLgGGLms,13210
|
362
379
|
tomwer/gui/cluster/supervisor.py,sha256=Xfd_T_tCbV774Nv5e3gOi64PExunvfX-SRCNtENQy48,16567
|
363
380
|
tomwer/gui/cluster/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
364
|
-
tomwer/gui/cluster/test/test_cluster.py,sha256=
|
381
|
+
tomwer/gui/cluster/test/test_cluster.py,sha256=s3oZWJyJsNRqtGT7hUahtwmNfJkjKbyGbPtzMVnU9Lw,3078
|
365
382
|
tomwer/gui/cluster/test/test_supervisor.py,sha256=CfBf4Zm_s8px4AZ98sfGeiOVBYELLRaKJTNVLeWz4aA,3205
|
366
383
|
tomwer/gui/conditions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
367
384
|
tomwer/gui/conditions/filter.py,sha256=RYrwMAkXmfIPRYJUipr4vWhP5Lh8LfX_-tWSAY7-YU8,5531
|
368
385
|
tomwer/gui/control/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
369
386
|
tomwer/gui/control/actions.py,sha256=hJ9-izknVneIYO-BcyeY1UN9H8o457QMNDdFVAjC21U,2667
|
370
|
-
tomwer/gui/control/datalist.py,sha256=
|
387
|
+
tomwer/gui/control/datalist.py,sha256=dBTqw0e9XlONOM-OdLE0Cw39e2-SnDHwEm_k49EZGvI,37673
|
371
388
|
tomwer/gui/control/datalistener.py,sha256=BX4epY5ETlWXM0SBdu4kmzfeKgvgWrGPqcAuqHChMQE,18768
|
372
389
|
tomwer/gui/control/datareacheractions.py,sha256=7EJKNUPgMisdgQbSA6ZGwj1SSmAEkKXtqRP3a8_s4Ng,2571
|
373
|
-
tomwer/gui/control/datatransfert.py,sha256=
|
390
|
+
tomwer/gui/control/datatransfert.py,sha256=xVqQXa-U1kzKzJ_r8dJt1rshQmbOijDfRzfjd9y3GC0,5700
|
374
391
|
tomwer/gui/control/datavalidator.py,sha256=kfQy8V-SIGRgJMd6xiz1AcNuygQGTPjNto0EgIzkB5U,14554
|
375
392
|
tomwer/gui/control/history.py,sha256=PJ9UF1yh4WcKbCxUYzcf1j5FHZW1zU179o7KOfCCsnM,4826
|
376
393
|
tomwer/gui/control/nxtomomill.py,sha256=DI7DsO98O8h9mFcJ_1y1Kb8nD6w09at8YvJZNHR_EtE,7293
|
377
|
-
tomwer/gui/control/observations.py,sha256=
|
394
|
+
tomwer/gui/control/observations.py,sha256=aLK28z4B64fN194NLoC56Y4uMZUHgyFN_ljw4OEw1f4,7783
|
378
395
|
tomwer/gui/control/scanselectorwidget.py,sha256=xJwIhYzYL7FsL4zyQRu3Ns-JV68492hEAPGKsw7M0n4,2354
|
379
|
-
tomwer/gui/control/selectorwidgetbase.py,sha256=
|
380
|
-
tomwer/gui/control/singletomoobj.py,sha256=
|
396
|
+
tomwer/gui/control/selectorwidgetbase.py,sha256=4TeIUAtl_rkx02oactafeB6-RaGGHmEbWHo2qjx507s,4534
|
397
|
+
tomwer/gui/control/singletomoobj.py,sha256=cLmH6umBMK_YRLoGj_qgVhXMqVADNLet4tDTBScRBis,6022
|
381
398
|
tomwer/gui/control/volumeselectorwidget.py,sha256=OjNkz5AiCcuqbapvF1iRfXtdlhHFFJ65uK8QMBQIJu8,2081
|
382
399
|
tomwer/gui/control/datawatcher/__init__.py,sha256=4MnBP53SmxMTRpeM8NApgSsbh6HRKshwLdhpJt078jQ,1444
|
383
400
|
tomwer/gui/control/datawatcher/configuration.py,sha256=99r3VaS3AhvSXmnHgPbwi3Lx6LqPrjzooIB7xXth31M,9713
|
384
|
-
tomwer/gui/control/datawatcher/datawatcher.py,sha256=
|
385
|
-
tomwer/gui/control/datawatcher/datawatcherobserver.py,sha256=
|
401
|
+
tomwer/gui/control/datawatcher/datawatcher.py,sha256=6M-1U8x4Zf7asitm4p7EWrq8MiWv0lHXAmV5QG6dDBg,25076
|
402
|
+
tomwer/gui/control/datawatcher/datawatcherobserver.py,sha256=Qr85PPK6F7IUwbcpv1FfGlpfgtHaP3K1uqYkc4dJd7c,10693
|
403
|
+
tomwer/gui/control/serie/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
404
|
+
tomwer/gui/control/serie/seriecreator.py,sha256=H-GVOaT8k4Iq0TI1gy_r2n120RMVoWco8KhOqAbBsaM,35053
|
405
|
+
tomwer/gui/control/serie/seriewaiter.py,sha256=N8gDWBDDIh17CFlxc1NljmYrVbLMGqZ8RCJUuEdnZt8,1374
|
386
406
|
tomwer/gui/control/test/__init__.py,sha256=OLK9ip_LryBfM_L40MReqjvJS3wdbWP_CpnBeD1NQTA,1368
|
387
|
-
tomwer/gui/control/test/test_datalist.py,sha256=
|
388
|
-
tomwer/gui/control/test/test_datalistener.py,sha256=
|
407
|
+
tomwer/gui/control/test/test_datalist.py,sha256=knTQ6q--n-cSWhminpVEXh0hCR9TkkIAuTc-oHeL_eQ,3545
|
408
|
+
tomwer/gui/control/test/test_datalistener.py,sha256=w-P_JT6WBD8UU9Jfj23-N3GtJh5PZyzjgYbJNfu-nKk,3186
|
389
409
|
tomwer/gui/control/test/test_datavalidator.py,sha256=56kDin1LlotT5owK53TggfDFt8G708xSD2a7zyYFZao,2015
|
390
|
-
tomwer/gui/control/test/test_inputwidget.py,sha256=
|
391
|
-
tomwer/gui/control/test/test_process_manager.py,sha256=
|
392
|
-
tomwer/gui/control/test/test_scanselector.py,sha256=
|
393
|
-
tomwer/gui/control/test/test_scanvalidator.py,sha256=
|
394
|
-
tomwer/gui/control/test/test_single_tomo_obj.py,sha256=
|
395
|
-
tomwer/gui/control/test/test_volume_dialog.py,sha256=
|
396
|
-
tomwer/gui/control/test/test_volumeselector.py,sha256=
|
410
|
+
tomwer/gui/control/test/test_inputwidget.py,sha256=jIif0UoPuDg8Mj4dMYTC2RSw2lH0cS72gVnJkZat_DQ,3134
|
411
|
+
tomwer/gui/control/test/test_process_manager.py,sha256=ukbrVUFMqIMEWG-jCB08O7WwfF_JLmNPw43Rlr51vUc,2582
|
412
|
+
tomwer/gui/control/test/test_scanselector.py,sha256=ZIv7BR0nbC3axy_Yl7GzyQHrsOVi8vQFyhdI0Dv8PM8,2579
|
413
|
+
tomwer/gui/control/test/test_scanvalidator.py,sha256=WW6u6jmwv97Gdb9zuDqOoOB3Ng7uOPjuFFmNv4S3XLw,3876
|
414
|
+
tomwer/gui/control/test/test_single_tomo_obj.py,sha256=zi7jw2g_halQDPSuSTqaruUOyfnBqOGXLmI_4GG1dPk,2271
|
415
|
+
tomwer/gui/control/test/test_volume_dialog.py,sha256=imDddkDWxr4MSHJBk79mIG3OJvpltJ8uGchsdP-yP3g,8162
|
416
|
+
tomwer/gui/control/test/test_volumeselector.py,sha256=H-S8BZ5nMEfyABAMawtBCEAUS-fOGcfF3Avq7RbJIDU,3405
|
397
417
|
tomwer/gui/debugtools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
398
|
-
tomwer/gui/debugtools/datasetgenerator.py,sha256=
|
418
|
+
tomwer/gui/debugtools/datasetgenerator.py,sha256=2ZOFTz0nBh6ar7QZYHpytDJq8IqFrdqphch--TtZwaw,10644
|
399
419
|
tomwer/gui/debugtools/objectinspector.py,sha256=-RO_DSCnIYJ1BTSXEhgrbztmiag6TM6jFG2Z8RSnJMY,2978
|
400
420
|
tomwer/gui/edit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
401
|
-
tomwer/gui/edit/dkrfpatch.py,sha256=
|
402
|
-
tomwer/gui/edit/imagekeyeditor.py,sha256=
|
421
|
+
tomwer/gui/edit/dkrfpatch.py,sha256=_TAmUGEshF-Z_EzwDHtgs5whLPoc321IURwJxahmSog,17728
|
422
|
+
tomwer/gui/edit/imagekeyeditor.py,sha256=TEanI9q-f_F724KlK0mDZV1u0RWdp4MvgnnEC9nky2E,29692
|
423
|
+
tomwer/gui/edit/nxtomoeditor.py,sha256=Gb2_dfVbQwgT2lm1OWjp28TxrTNn72NwMjwGc2OLd60,17497
|
403
424
|
tomwer/gui/edit/test/__init__.py,sha256=OLK9ip_LryBfM_L40MReqjvJS3wdbWP_CpnBeD1NQTA,1368
|
404
|
-
tomwer/gui/edit/test/test_dkrf_patch.py,sha256=
|
405
|
-
tomwer/gui/edit/test/test_image_key_editor.py,sha256=
|
425
|
+
tomwer/gui/edit/test/test_dkrf_patch.py,sha256=1U7FnhAsRJ4raM0pinA1BxdtqSdpdUTHiUY5ddTcKH8,8025
|
426
|
+
tomwer/gui/edit/test/test_image_key_editor.py,sha256=0621Zuft7KD2d5VLjQOm4JWMRER0FXP-m2RfHURoh0s,5960
|
427
|
+
tomwer/gui/edit/test/test_nx_editor.py,sha256=yZ--4retVaNhzpXXtGxqazqCnwbRA2IomJk62bFT56s,6076
|
406
428
|
tomwer/gui/reconstruction/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
407
|
-
tomwer/gui/reconstruction/axis/CompareImages.py,sha256=
|
429
|
+
tomwer/gui/reconstruction/axis/CompareImages.py,sha256=tFW2klhCpIhUgYrbcRR6FUuZB4fOEGLyh4iuWa-_ok4,16216
|
408
430
|
tomwer/gui/reconstruction/axis/__init__.py,sha256=zFQwK6azdmVCiP7tdeHUnhRZgMfhW4bnDD-f-_VLNyA,94
|
409
|
-
tomwer/gui/reconstruction/axis/axis.py,sha256=
|
410
|
-
tomwer/gui/reconstruction/axis/radioaxis.py,sha256=
|
431
|
+
tomwer/gui/reconstruction/axis/axis.py,sha256=hgz1B-gz4HGfwR9zWpUU0G6zLVnlzqJroyyaDQdwOfc,22527
|
432
|
+
tomwer/gui/reconstruction/axis/radioaxis.py,sha256=nfDU37vWzioaavS5UgQJwtaVViGOveYt15OY_1ycCEM,97630
|
411
433
|
tomwer/gui/reconstruction/darkref/__init__.py,sha256=g9LASP8OJjxCPEHXO14hN0OLjLkeUve6etaPm1LIz4c,1373
|
412
|
-
tomwer/gui/reconstruction/darkref/darkrefcopywidget.py,sha256=
|
413
|
-
tomwer/gui/reconstruction/darkref/darkrefwidget.py,sha256=
|
434
|
+
tomwer/gui/reconstruction/darkref/darkrefcopywidget.py,sha256=Zr_E7eri8vnLr_8MMR8BNl76O8yp4PxpYhP2EtJxQYY,11387
|
435
|
+
tomwer/gui/reconstruction/darkref/darkrefwidget.py,sha256=XumtW_nA4oHQmSjrJqeZll205RaSmCYG0ZnEGRHUffE,16417
|
414
436
|
tomwer/gui/reconstruction/lamino/__init__.py,sha256=30XyGUjbuN-ysUI2Nsz37HW2mjA4pT-fmsiahjw3p4o,1474
|
415
437
|
tomwer/gui/reconstruction/lamino/tofu/TofuOptionLoader.py,sha256=wgBY68d98J-o_FN3cV3aB7BXepxQUaOz8y_tnRFYgBQ,3664
|
416
438
|
tomwer/gui/reconstruction/lamino/tofu/__init__.py,sha256=qvJg7iThYOWKa3i7PsHL96ogMdAcj4eCjlcVXuhPOU4,54
|
417
439
|
tomwer/gui/reconstruction/lamino/tofu/misc.py,sha256=DDvy2t9gVJRV4mTWbgorjUp_FFaTLauFgnFZwO7NKcU,5384
|
418
|
-
tomwer/gui/reconstruction/lamino/tofu/projections.py,sha256=
|
440
|
+
tomwer/gui/reconstruction/lamino/tofu/projections.py,sha256=adT6dst3WXa2eeGICutfiGkL4hoxdvdtugPw0RebF1w,34750
|
419
441
|
tomwer/gui/reconstruction/lamino/tofu/settings.py,sha256=6qK2DujKHdhtucQ1o5-IvTg8tokqVjLLtdWk46xs7GU,2979
|
420
|
-
tomwer/gui/reconstruction/lamino/tofu/tofu.py,sha256=
|
421
|
-
tomwer/gui/reconstruction/lamino/tofu/tofuexpert.py,sha256=
|
422
|
-
tomwer/gui/reconstruction/lamino/tofu/tofuoutput.py,sha256=
|
442
|
+
tomwer/gui/reconstruction/lamino/tofu/tofu.py,sha256=dy_zBtHLnumwm5FfX4cnuqJY9S9VkNcxwolB0XPYjMg,17374
|
443
|
+
tomwer/gui/reconstruction/lamino/tofu/tofuexpert.py,sha256=0TNajtIKAdRj7Y_oK5d8rHh9b40hJY3bNJnFVQJjrsg,20494
|
444
|
+
tomwer/gui/reconstruction/lamino/tofu/tofuoutput.py,sha256=0DFuSMFU983LNwEnWXqEEvjjwIsih6n67-KqrEvRjr8,29446
|
423
445
|
tomwer/gui/reconstruction/nabu/__init__.py,sha256=v2WxaBpu2zpGu7DEV96zaKAtHgRlcpORuAG2S0iF9O0,44
|
424
446
|
tomwer/gui/reconstruction/nabu/action.py,sha256=t_L_sOkNYApqLGCNmbucq9IVd1XijycKhZdh262vO88,3889
|
425
|
-
tomwer/gui/reconstruction/nabu/castvolume.py,sha256=
|
426
|
-
tomwer/gui/reconstruction/nabu/check.py,sha256=
|
447
|
+
tomwer/gui/reconstruction/nabu/castvolume.py,sha256=DWoubbxvHYf6FeOswWLix84BbUMjeHpIQvn0L4Q2O2I,12543
|
448
|
+
tomwer/gui/reconstruction/nabu/check.py,sha256=4m1zbiak462UxKlKz_rKa1xarK-_VVC4p6ZE8JKYh9Y,4731
|
427
449
|
tomwer/gui/reconstruction/nabu/nabuflow.py,sha256=EqiBtxfXqOE7umcWw7kShbfs0Be12XbBzdTSQEyWX-0,17194
|
428
|
-
tomwer/gui/reconstruction/nabu/slices.py,sha256=
|
429
|
-
tomwer/gui/reconstruction/nabu/slurm.py,sha256=
|
430
|
-
tomwer/gui/reconstruction/nabu/volume.py,sha256=
|
450
|
+
tomwer/gui/reconstruction/nabu/slices.py,sha256=Ndqn_f9vf83tdPh2x1ucaR7Xl5HIwpxpZNNvSnFE2BM,23443
|
451
|
+
tomwer/gui/reconstruction/nabu/slurm.py,sha256=iSgBwoDu2mM0Q2Ouyy5uVHfhmM98rdIHSRWx1c2KJ5Y,6984
|
452
|
+
tomwer/gui/reconstruction/nabu/volume.py,sha256=Pc9DogLRFg1pY6ORRhNICN6NTqLPFSaO1hHb9ydgeWE,18553
|
431
453
|
tomwer/gui/reconstruction/nabu/nabuconfig/__init__.py,sha256=WgEFXIrUDhX0vpBNlKiymHEY9p1DMdk4QZkvnXIC8yk,77
|
432
454
|
tomwer/gui/reconstruction/nabu/nabuconfig/base.py,sha256=X8aF0_DVPfyVf19kgjpyjcCo8hCP-cYPuThuJalt9po,3473
|
433
|
-
tomwer/gui/reconstruction/nabu/nabuconfig/
|
434
|
-
tomwer/gui/reconstruction/nabu/nabuconfig/
|
435
|
-
tomwer/gui/reconstruction/nabu/nabuconfig/
|
436
|
-
tomwer/gui/reconstruction/nabu/nabuconfig/
|
437
|
-
tomwer/gui/reconstruction/nabu/nabuconfig/
|
455
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py,sha256=yCJ-R3QHvplaqyTE10trEQHCDK_VgWIjZ6fZ2U__LtE,13082
|
456
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py,sha256=euetzzztzrcTSG6jsPyQgdY6O5tWWRVqasVka8bgBjU,11490
|
457
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/output.py,sha256=x3z3yj1OySj8aoeG4VqwaxVi2hWvfMVs44Ms4AyVzOw,9865
|
458
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/phase.py,sha256=z-qM-dbofF0xl_Cl7CMIpOPCNnL67UiH2U75PwWoDjM,15253
|
459
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py,sha256=hPk49mkuI8En4BIc70O8R9vDE9JuExsWQ1BtWdt_TqA,22714
|
460
|
+
tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py,sha256=w_SosHK8Bp1iIiwOJ5KRAQMmYKYxUsQKoPewX9q8mkk,37357
|
438
461
|
tomwer/gui/reconstruction/normalization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
439
|
-
tomwer/gui/reconstruction/normalization/intensity.py,sha256
|
462
|
+
tomwer/gui/reconstruction/normalization/intensity.py,sha256=-kj3_w1BYJGv2V40sGD3wCUb1N6Aeq5SgsXswMyMnDk,34640
|
440
463
|
tomwer/gui/reconstruction/saaxis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
441
|
-
tomwer/gui/reconstruction/saaxis/corrangeselector.py,sha256=
|
464
|
+
tomwer/gui/reconstruction/saaxis/corrangeselector.py,sha256=8_qmdIKq9MuM0_sO91QhLcuTzhfhiCfN7WDn1WTSrnA,33331
|
442
465
|
tomwer/gui/reconstruction/saaxis/dimensionwidget.py,sha256=vTCMZtqC8qW941Bodd9CcbtGzfme3TAYqp30W8YVPKo,9780
|
443
|
-
tomwer/gui/reconstruction/saaxis/saaxis.py,sha256=
|
444
|
-
tomwer/gui/reconstruction/saaxis/sliceselector.py,sha256=
|
466
|
+
tomwer/gui/reconstruction/saaxis/saaxis.py,sha256=b1eTylYnQySx7L-dHMBmtggsgCEEfVnn8TAyfPdQZMs,21337
|
467
|
+
tomwer/gui/reconstruction/saaxis/sliceselector.py,sha256=zmFowgGxN-3A1_TuP4V9M21Ob_G23LjG9nSZjro3F0M,12229
|
445
468
|
tomwer/gui/reconstruction/sadeltabeta/__init__.py,sha256=74VkZ1KfTqXmfQReLkjJenvuEZFkhHDqK6BZJHhOeS4,57
|
446
|
-
tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py,sha256=
|
469
|
+
tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py,sha256=ce5rBZ7sBWSiCSsIVRWUWk4LDA8aVyJMvw_bPXtgnak,19007
|
447
470
|
tomwer/gui/reconstruction/scores/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
448
471
|
tomwer/gui/reconstruction/scores/control.py,sha256=JkWCjISddVQIpcFfTsJsVAf_0ld2J8fX8fICT10nK7c,3019
|
449
|
-
tomwer/gui/reconstruction/scores/scoreplot.py,sha256=
|
472
|
+
tomwer/gui/reconstruction/scores/scoreplot.py,sha256=DcjzHIbhy7lDv43_2hoK-HDU2Uz9usjtpFxHVGXLi1I,31610
|
450
473
|
tomwer/gui/reconstruction/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
451
|
-
tomwer/gui/reconstruction/test/test_axis.py,sha256=
|
452
|
-
tomwer/gui/reconstruction/test/test_lamino.py,sha256=
|
453
|
-
tomwer/gui/reconstruction/test/test_nabu.py,sha256=
|
454
|
-
tomwer/gui/reconstruction/test/test_saaxis.py,sha256=
|
455
|
-
tomwer/gui/reconstruction/test/test_sadeltabeta.py,sha256=
|
474
|
+
tomwer/gui/reconstruction/test/test_axis.py,sha256=wPzuUelG_Yia1-yeuIrwKb-EN09cRKbcuHPZSpe-PvY,8161
|
475
|
+
tomwer/gui/reconstruction/test/test_lamino.py,sha256=wzGbHs4K7A_RLg9q3Yi9y1xTIiRQsHcK5OQZ2yuHNQM,8218
|
476
|
+
tomwer/gui/reconstruction/test/test_nabu.py,sha256=UHkPnOUNomBpxh2D7C4fY8MiUGpGJw-iWvFDFvLA1io,13750
|
477
|
+
tomwer/gui/reconstruction/test/test_saaxis.py,sha256=JVD8uXLrmiks1_p8vqv00FRCG9jHtuR26KkraS1SLc4,8137
|
478
|
+
tomwer/gui/reconstruction/test/test_sadeltabeta.py,sha256=M4ZSPSAa_GoCcQjNytbDoQ-5hSTkcB-VFKRr20IjdKk,5422
|
456
479
|
tomwer/gui/samplemoved/__init__.py,sha256=ZQD2p7NMOlkjqovGGY8I8ns_9bMjGJdUEBhYWlVO70o,9637
|
457
480
|
tomwer/gui/samplemoved/selectiontable.py,sha256=iJd_pEji8aUd0EKXxjMYe11Hw8tyCCElmdGoK4-OHZs,9399
|
458
481
|
tomwer/gui/test/__init__.py,sha256=ni87cKf-CzKIuVQTqj9VSUG-AcDN7ochWSfH-TC5-20,1368
|
459
|
-
tomwer/gui/test/test_axis_gui.py,sha256=
|
482
|
+
tomwer/gui/test/test_axis_gui.py,sha256=IGmpe3FyVvHpomo3peSGxCcUWMSPwRe7Tk619mSh8Xc,1147
|
483
|
+
tomwer/gui/test/test_qfolder_dialog.py,sha256=X_PvPWoEQ-nopWaRKR0XGswyOZLaNnL4DnOCfZzB68k,346
|
460
484
|
tomwer/gui/utils/__init__.py,sha256=p3InYA6LWc1RdhWQz_q18rColFRxSIiBr441dVKu9IM,2996
|
461
485
|
tomwer/gui/utils/buttons.py,sha256=lMu05nx2QEy5eCXKib6DbC1bpUXGcQS-63G3WCWdkNQ,3721
|
462
486
|
tomwer/gui/utils/completer.py,sha256=yYnslb6eHLMsMABW23KzcoHK33XkZbpFlHQ_Pyfkb8w,4978
|
463
487
|
tomwer/gui/utils/flow.py,sha256=vBuXHil-xWc9ThA-AVRXx2qprQp_2KWTC7H9ijyYh5k,12089
|
464
488
|
tomwer/gui/utils/illustrations.py,sha256=xF5nOkNN9VucvCQOk5XMVVN1cJ6UBPodcD0JvH000-E,4438
|
465
|
-
tomwer/gui/utils/inputwidget.py,sha256=
|
489
|
+
tomwer/gui/utils/inputwidget.py,sha256=MsS9oyNWM12OvXw2YaVcQZJZ66wm6F-iVNqfgQmshjI,16359
|
466
490
|
tomwer/gui/utils/qt_utils.py,sha256=eeHZZ4Anjsxi6BEjMPGoWs77r066mF1w9YVO8NFA6VE,209
|
467
491
|
tomwer/gui/utils/sandboxes.py,sha256=KsWDEZuz7nwUx8ZZUmKTzljIyErzcWEP6tVokFhFHSQ,7460
|
468
|
-
tomwer/gui/utils/scandescription.py,sha256=
|
492
|
+
tomwer/gui/utils/scandescription.py,sha256=KZfRm57UIqFgP3xJgpHFifJETQKN_0TuWv8WiU3Vz9Q,3176
|
469
493
|
tomwer/gui/utils/scrollarea.py,sha256=TDWSb_xsqX1vWaeWYl-yNB_-ok5QkYs9bjIOm2vL1qk,2954
|
470
|
-
tomwer/gui/utils/slider.py,sha256=
|
494
|
+
tomwer/gui/utils/slider.py,sha256=TJK_IMnBst5evDky26YeSDI0ns4mXBNoXHiQW-K_9Yc,3467
|
471
495
|
tomwer/gui/utils/splashscreen.py,sha256=7g33O-V1QqpU4cu-ki4ZJxdchTpWC15bKSGepfmteBQ,1857
|
472
|
-
tomwer/gui/utils/unitsystem.py,sha256=
|
496
|
+
tomwer/gui/utils/unitsystem.py,sha256=wRZ_T1tFTAXqaGuffcFksAWey5qk2Ggi2WD-oJcsjc4,6319
|
473
497
|
tomwer/gui/utils/vignettes.py,sha256=Y8aqnanN5U5syXs0MPoyYt_tCfflybCyC2hSxDEePSw,12980
|
474
498
|
tomwer/gui/utils/waiterthread.py,sha256=-3rgoIV461MnsXH0xCFLaYOWhPWOkFm-oD2ybfBde1Q,1843
|
475
499
|
tomwer/gui/utils/lineselector/__init__.py,sha256=GZ847ef5X2wk_sAHxg6h24TarPYmb4NZjQI3jjkc7jE,75
|
476
|
-
tomwer/gui/utils/lineselector/
|
477
|
-
tomwer/gui/utils/lineselector/lineselector.py,sha256=YEBTdyfwgXX1xRqEALcVMJxKy1jrCfU6EpejpeiFnrk,8460
|
500
|
+
tomwer/gui/utils/lineselector/lineselector.py,sha256=VueUHAiLB87uVCYkDyybDGWJs3ajLQdfj4KeznD8Z1Q,8228
|
478
501
|
tomwer/gui/visualization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
479
|
-
tomwer/gui/visualization/dataviewer.py,sha256=
|
502
|
+
tomwer/gui/visualization/dataviewer.py,sha256=tpEHUDMPqW3fNBa7Suhos_hbIBDPBlZo7lXDBXcmhxk,24611
|
503
|
+
tomwer/gui/visualization/nxtomometadata.py,sha256=XSmTvYm3PBbWnP4ux89p1jclqoFYmylATXGZfljHsQE,682
|
480
504
|
tomwer/gui/visualization/reconstructionparameters.py,sha256=AQt-uogaxsxXd9ooOWGolOUDsmVOVxsfKBd0MAPuMco,15392
|
481
|
-
tomwer/gui/visualization/scanoverview.py,sha256=
|
505
|
+
tomwer/gui/visualization/scanoverview.py,sha256=zV9JGadh1NWjSbOMI-cMSkFj9MCJWjXkOt9JWR46Fbc,8421
|
482
506
|
tomwer/gui/visualization/sinogramviewer.py,sha256=Ww7k0mAREMTSaHK0TDiKngQu-e-V1aFez-NFSRZpIi0,9894
|
483
|
-
tomwer/gui/visualization/
|
507
|
+
tomwer/gui/visualization/tomoobjoverview.py,sha256=X98Dg0Sml8ifTG7oYgWGuCDBBH4HlLxyBEVR1Ir8DBg,1988
|
508
|
+
tomwer/gui/visualization/volumeoverview.py,sha256=KyCPM0b4StOTCqvyHfCwf8_eC__xFtekdyY6w_pPZkc,2489
|
509
|
+
tomwer/gui/visualization/volumeviewer.py,sha256=fi-rElfWlqyBYvi02iURZEJLb_xflnY_pr3VgzZtEhM,16074
|
484
510
|
tomwer/gui/visualization/diffviewer/__init__.py,sha256=rZ7qOTfAChU3FouCdkZllXT9ZZqTdo1XhLZMfmOqUAE,39
|
485
|
-
tomwer/gui/visualization/diffviewer/diffviewer.py,sha256=
|
511
|
+
tomwer/gui/visualization/diffviewer/diffviewer.py,sha256=5tZ9sTy9MwVlCuUryN03wQOWEzWddpshiYkaiuDFPLY,21076
|
486
512
|
tomwer/gui/visualization/diffviewer/shiftwidget.py,sha256=--JvNXU3Si-fWtO1SfzhQKY8YVCymNez-yn47SrFsA4,20938
|
487
513
|
tomwer/gui/visualization/test/__init__.py,sha256=nRVmFmNtdzN5PElEurDCb9pDulWIha-fLu-VX8hNn5A,1368
|
488
514
|
tomwer/gui/visualization/test/test_dataviewer.py,sha256=NuYVFMX1yBncrcUI4jMCvj-VOcZO8_1uMz3uNW2SSXY,2444
|
489
515
|
tomwer/gui/visualization/test/test_diffviewer.py,sha256=9LX4qDfT3nB9byMI-U6rGaviwlG0bjHZF9oCATOUmqw,3528
|
516
|
+
tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py,sha256=UMFV5VQkbQN3uuvo5Ti7QPswl5QloZAmi5KWTQMj1a0,2545
|
490
517
|
tomwer/gui/visualization/test/test_reconstruction_parameters.py,sha256=4Yad2E7WybnJA5t7XB5uJ8pGc74pngHVCLyiZSB0YTg,2529
|
491
518
|
tomwer/gui/visualization/test/test_sinogramviewer.py,sha256=gef6KdBA8wOL1xc7YSlahmZSeTD5jDEXPEHuSRd8-ig,3098
|
492
|
-
tomwer/gui/visualization/test/test_stacks.py,sha256=
|
519
|
+
tomwer/gui/visualization/test/test_stacks.py,sha256=lkDwK51CGXhx67wQVDJyrslbn51GwNQJkAuZLqE-UxM,4686
|
493
520
|
tomwer/gui/visualization/test/test_volumeviewer.py,sha256=_hxBUrGHqbDek_PP3BymeLbuX52avhBXPg7O7fP__WY,2757
|
494
521
|
tomwer/io/__init__.py,sha256=SVtYldPNwbBMqlawa4O42EjpgKo_AfF8JlhaVCMGkmg,1423
|
495
522
|
tomwer/io/utils/__init__.py,sha256=FHTW1gVsTG4t7fugEVXo94EcB9OAg5wOctSlRY2q5lI,272
|
@@ -548,6 +575,8 @@ tomwer/resources/gui/icons/medium_low_speed.png,sha256=v1KISoEvYWBkEgFrudAkexWDn
|
|
548
575
|
tomwer/resources/gui/icons/medium_low_speed.svg,sha256=38NML8O2X6IwxU11F6Jd5b-WOjJzZMizoEUGqUusmA4,2361
|
549
576
|
tomwer/resources/gui/icons/minimalistic_user.png,sha256=ncAsn2t9Td4rwZ301XUedVVSgboUD-soY8dlgFqRMAs,3262
|
550
577
|
tomwer/resources/gui/icons/minimalistic_user.svg,sha256=TWROAFjrQymIiOnuMyxMWfy4O6A5-LgWkwf0IMedlpE,6855
|
578
|
+
tomwer/resources/gui/icons/multi-document-save.png,sha256=UoiWm94-LIA0Tl2GoXS6prx7U5I4HZrVT36yqyt5Tcs,917
|
579
|
+
tomwer/resources/gui/icons/multi-document-save.svg,sha256=FeKkkOeZZIOKJGXfh7fdoYPJw4L4h4lYAmXW4NwVgbU,6072
|
551
580
|
tomwer/resources/gui/icons/nabu.png,sha256=buqGOZleoXIH_JXxb6SVEe4NIZSHJIsto-uI-nHq7K0,176
|
552
581
|
tomwer/resources/gui/icons/nabu.svg,sha256=sFaNsPIjYr2LLKAKhr3yZkYUMV5szFFGWipZLJCO3XQ,3999
|
553
582
|
tomwer/resources/gui/icons/output.png,sha256=kkd3lIHD5_SFVmPnOv1eZ_yWvKNfjNbe3A9ePS-y4Aw,1025
|
@@ -590,6 +619,8 @@ tomwer/resources/gui/icons/vignettes.png,sha256=IrRLh0W4kr6qIfbAgMxE7B4UKvbG5zAg
|
|
590
619
|
tomwer/resources/gui/icons/vignettes.svg,sha256=qn_jgL_q4P0Hzo2jODmSxmZNzN8eQMoQ3yyagCWM904,3252
|
591
620
|
tomwer/resources/gui/icons/warning.png,sha256=6uxDzFf5QSf5BBVBrBL_VAOzaFzV-9Ext52lsue6HPs,2348
|
592
621
|
tomwer/resources/gui/icons/warning.svg,sha256=YjFMio-qMTmEJTnJzj3twnuGErvqK0LSj5x44YIdEBw,1462
|
622
|
+
tomwer/resources/gui/illustrations/ctf_z1.png,sha256=UckofrAS4A_I8OI2zu7T_wNHO-Vj8Jp1nHJy8oqMROE,7752
|
623
|
+
tomwer/resources/gui/illustrations/ctf_z1.svg,sha256=NgbH8MgXda4ywt5c6j162BDOMDvKUK6oGDJY_M9AWaU,36320
|
593
624
|
tomwer/resources/gui/illustrations/flow_down.png,sha256=lWv8HaEaiQ2JSjF0tS1IlcyoWOJD_J0TcTVhzENACno,551
|
594
625
|
tomwer/resources/gui/illustrations/flow_down.svg,sha256=WNLyBbTnJqohneGt6bP5W1UafYxTGdtSR16KpwwMBDk,3987
|
595
626
|
tomwer/resources/gui/illustrations/flow_right.png,sha256=1tuAYv7EDKtZNAssdEGuHZMJC2kWDvVVGVT030q9hHc,531
|
@@ -618,38 +649,40 @@ tomwer/resources/gui/illustrations/yz_slice.svg,sha256=C0qNwMbTYnu1IzdBJbpED3gNH
|
|
618
649
|
tomwer/synctools/__init__.py,sha256=tRDggYL9-TB1rXT30lo4blFpdX0G7b5JV18ia1bWqms,137
|
619
650
|
tomwer/synctools/axis.py,sha256=aiNuRzj3XV_n-scMGMrOTKxCOZacG_kJECEkg8f3V-8,1956
|
620
651
|
tomwer/synctools/darkref.py,sha256=nU8f5gfofTkzHcn41CV_ZfRku0-6RtuJi5FxQyDLLDw,1812
|
621
|
-
tomwer/synctools/datalistener.py,sha256=
|
652
|
+
tomwer/synctools/datalistener.py,sha256=ahgSN5XlPxJkfgCl0kUcytXk3r8ubw79SZur5vi96G8,9822
|
622
653
|
tomwer/synctools/datatransfert.py,sha256=nyk6XRk-UZE_E_mU7Z378zm_B4ckm6gTHoSC8CBubUE,1821
|
623
|
-
tomwer/synctools/imageloaderthread.py,sha256=
|
654
|
+
tomwer/synctools/imageloaderthread.py,sha256=lm0MjWfVcE7nnXIXD0Ti4_0N4LviI0IhhhNGMIJkKv8,2858
|
624
655
|
tomwer/synctools/rsyncmanager.py,sha256=d5xMERo8xHIGd41KZs8HS1hCU9HkKBqH9BgMrug5KIo,6226
|
625
656
|
tomwer/synctools/saaxis.py,sha256=dkQxmVeLV_PMO5ZI6h-YqKqRo-iZSEX3oveTcdD51Dk,1982
|
626
657
|
tomwer/synctools/sadeltabeta.py,sha256=YH31xjIY0wKWXgmqsKuVlbKNuQ3Y4yi6go5_XEUIk7Q,2007
|
627
658
|
tomwer/synctools/stacks/__init__.py,sha256=wWN09X2qRXzBSekl5nkpEx1WDAcU2LQLxO9NpmW3bDU,165
|
628
|
-
tomwer/synctools/stacks/processingstack.py,sha256=
|
659
|
+
tomwer/synctools/stacks/processingstack.py,sha256=k595KxZ9GeQl4IIP_MGdmIMMVHeIvBinfb3_OUV7IKQ,5867
|
629
660
|
tomwer/synctools/stacks/control/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
630
661
|
tomwer/synctools/stacks/control/datalistener.py,sha256=YK3ZaDI4seh-hSiW6pmPxvj7d3mFT6fWvITHDtAKgtk,5249
|
631
662
|
tomwer/synctools/stacks/edit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
632
663
|
tomwer/synctools/stacks/edit/darkflatpatch.py,sha256=oEW6I-yS0NtbQpgOks2rGYrtDAHYeqkD3MRJsmPKa8c,6509
|
633
|
-
tomwer/synctools/stacks/edit/imagekeyeditor.py,sha256=
|
664
|
+
tomwer/synctools/stacks/edit/imagekeyeditor.py,sha256=R-pzVHvAARpdZ47XX7U18FJ30C2MsyI09LA9t3EUTl4,6225
|
634
665
|
tomwer/synctools/stacks/reconstruction/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
635
666
|
tomwer/synctools/stacks/reconstruction/axis.py,sha256=v-wfLsA8aa-vtsXaNeqmVssZkjNpTupu4OLVhMzibis,8926
|
636
|
-
tomwer/synctools/stacks/reconstruction/castvolume.py,sha256=
|
667
|
+
tomwer/synctools/stacks/reconstruction/castvolume.py,sha256=wJuwz-95bvWJgRKigdhqi3QpNo7VXzTQeBhXsBhhZ5Q,7536
|
637
668
|
tomwer/synctools/stacks/reconstruction/dkrefcopy.py,sha256=pCLDj_jIdqjyPiUzK9tGoCo7Q4NjE5xyCNagP8_H4uM,6857
|
638
|
-
tomwer/synctools/stacks/reconstruction/lamino.py,sha256=
|
669
|
+
tomwer/synctools/stacks/reconstruction/lamino.py,sha256=HiRx_cenEBuC_FP_V8RHDZS0u-PDChHZVrINKJNZzW4,8463
|
639
670
|
tomwer/synctools/stacks/reconstruction/nabu.py,sha256=JPtmUm7Kbg4GZ8EMeCM2SKYbma_vfw6ZJoaGQK4BK80,11065
|
640
671
|
tomwer/synctools/stacks/reconstruction/normalization.py,sha256=aT5or7PH44lPiAbUJ8RKr6jmOx7--ZvRNQ3Oh2eB_M4,5442
|
641
672
|
tomwer/synctools/stacks/reconstruction/saaxis.py,sha256=1zq2aO8dGiIZutMfP4hRA-_HpCwPZPRG3CtGovIrJpc,7842
|
642
|
-
tomwer/synctools/stacks/reconstruction/sadeltabeta.py,sha256=
|
673
|
+
tomwer/synctools/stacks/reconstruction/sadeltabeta.py,sha256=nezBcr8zhwhCm3SEEzZ7t8kmri7Mjr8PWjDiJiSw0gA,8073
|
643
674
|
tomwer/synctools/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
644
|
-
tomwer/synctools/test/test_darkRefs.py,sha256=
|
645
|
-
tomwer/synctools/test/test_foldertransfer.py,sha256=
|
646
|
-
tomwer/synctools/test/test_scanstages.py,sha256=
|
675
|
+
tomwer/synctools/test/test_darkRefs.py,sha256=6b4SSQ0-t_KbQI-6PwhRaEHt1w98jYECdIqel7JZQ1w,17251
|
676
|
+
tomwer/synctools/test/test_foldertransfer.py,sha256=xDnhACa0WaQmM8hCnkop2Joy8c0I6i3jlSuHiNoizRs,14151
|
677
|
+
tomwer/synctools/test/test_scanstages.py,sha256=ElQEqgjys1z2j23mdpvRSFC1sx9OqGDp4d-YpLjO2VI,5867
|
647
678
|
tomwer/synctools/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
648
679
|
tomwer/synctools/utils/scanstages.py,sha256=Sclbu0a9DJNZ_TG_fL3zYWmydU1iQFxKjKr7UUreFl4,9271
|
649
|
-
tomwer/
|
650
|
-
tomwer/
|
651
|
-
tomwer/
|
652
|
-
tomwer/
|
680
|
+
tomwer/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
681
|
+
tomwer/tests/conftest.py,sha256=VoEyMYGzwDVL9Ek2KnBRwmEJMhXNXlzn0jt-wXyeR7I,1172
|
682
|
+
tomwer/tests/test_scripts.py,sha256=pk7iNcxWgqcnfG5XWS-pGr1fuDKQHrp-qDhz3KH2ZSM,3852
|
683
|
+
tomwer/tests/test_utils.py,sha256=D0rNDSK6csEOYBY_7gD-4A3jp8rYAm8L1_Xg34A9I2s,305
|
684
|
+
tomwer/tests/utils/__init__.py,sha256=WjXBwGbMsJWEL45sar3PkLcbMcEvj3d3bb3vxlieqpg,8650
|
685
|
+
tomwer/tests/utils/utilstest.py,sha256=w-kLzneVeKXqyoD68SVuN4TSu6uVp6cY6TD0haO7T8I,7342
|
653
686
|
tomwer/third_party/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
654
687
|
tomwer/third_party/nabu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
655
688
|
tomwer/third_party/nabu/utils.py,sha256=mgY5lik4jv_HCMd3wKyjuqeRU_JgevwCoEB5N_HDtLE,5411
|
@@ -657,15 +690,10 @@ tomwer/third_party/nabu/preproc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
657
690
|
tomwer/third_party/nabu/preproc/phase.py,sha256=ABa2PnJSUS3u9ahucauPtwJmljcWlkY-iyGGybeLQ5k,14386
|
658
691
|
tomwer/third_party/tango/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
659
692
|
tomwer/third_party/tango/device.py,sha256=RP1HbQkWQKWpE8GdcxIz-lXvhTfrdhoEKe4OxBDbLtE,220
|
660
|
-
tomwer/
|
661
|
-
tomwer/
|
662
|
-
tomwer/
|
663
|
-
tomwer/
|
664
|
-
tomwer/
|
665
|
-
tomwer-1.0.
|
666
|
-
tomwer-1.0.
|
667
|
-
tomwer-1.0.4.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
668
|
-
tomwer-1.0.4.dist-info/entry_points.txt,sha256=VYCPqnZm72Z26_rHz7ZxTt9qQiAcwhUfchNzIR57PuU,239
|
669
|
-
tomwer-1.0.4.dist-info/namespace_packages.txt,sha256=Iut-JTfT11SZHHm77_ZeszD7pZDWXcTweCbvrJpqDyQ,14
|
670
|
-
tomwer-1.0.4.dist-info/top_level.txt,sha256=Yz5zKh0FPiImtzHYcPuztG1AO8-6KEpUWgoChGbA0Ys,21
|
671
|
-
tomwer-1.0.4.dist-info/RECORD,,
|
693
|
+
tomwer-1.1.0.dist-info/LICENSE,sha256=yR_hIZ1MfDh9x2_s23uFqBH7m5DgrBl9nJKkE37YChM,1877
|
694
|
+
tomwer-1.1.0.dist-info/METADATA,sha256=2ROvNTw37AFS2f666vu3qXASqdw9uW0VfBHdj13P178,11641
|
695
|
+
tomwer-1.1.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
696
|
+
tomwer-1.1.0.dist-info/entry_points.txt,sha256=aDZTIsXRj1SgQ0tixWsmYGjM4y6gcYK7ykK6z7XlLjw,368
|
697
|
+
tomwer-1.1.0.dist-info/namespace_packages.txt,sha256=Iut-JTfT11SZHHm77_ZeszD7pZDWXcTweCbvrJpqDyQ,14
|
698
|
+
tomwer-1.1.0.dist-info/top_level.txt,sha256=Yz5zKh0FPiImtzHYcPuztG1AO8-6KEpUWgoChGbA0Ys,21
|
699
|
+
tomwer-1.1.0.dist-info/RECORD,,
|