tomwer 1.6.22__tar.gz → 2.0.0.dev0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1454) hide show
  1. tomwer-2.0.0.dev0/PKG-INFO +200 -0
  2. tomwer-2.0.0.dev0/README.rst +93 -0
  3. tomwer-2.0.0.dev0/pyproject.toml +198 -0
  4. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/__init__.py +10 -0
  5. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/orange/ewoks_compatibility.py +9 -0
  6. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/orange/managedprocess.py +79 -0
  7. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/orange/task_widgets/TomwerWidgetNoThread.py +8 -0
  8. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/orange/task_widgets/TomwerWidgetOneThreadPerRun.py +22 -0
  9. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/orange/task_widgets/TomwerWidgetWithStack.py +20 -0
  10. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/state_summary.py +50 -0
  11. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tests/TestAcquisition.py +197 -0
  12. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/EBS_tomo_listener.ows +49 -0
  13. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/append_raw_darks_and_flats_frames_to_NXtomos.ows +44 -0
  14. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/cast_volume.ows +34 -0
  15. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/copy_reduced_darks_and_flats_meth1.ows +49 -0
  16. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/default_cor_search.ows +45 -0
  17. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/drac_publication.ows +48 -0
  18. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/id16b/ID16b_full_volume.ows +29 -0
  19. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/id16b/ID16b_insitu.ows +287 -0
  20. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/id16b/ID16b_normalization.ows +218 -0
  21. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/multipag_example.ows +45 -0
  22. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/simple_slice_reconstruction.ows +44 -0
  23. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/simple_slice_reconstruction_on_slurm.ows +55 -0
  24. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/simple_volume_local_reconstruction.ows +50 -0
  25. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows +63 -0
  26. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/using_multicor_to_find_cor.ows +47 -0
  27. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/volume_casting_on_slurm.ows +55 -0
  28. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/cluster/MonitorOW.py +211 -0
  29. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py +78 -0
  30. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/BlissDataListenerOW.py +281 -0
  31. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py +231 -0
  32. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/DataSelectorOW.py +126 -0
  33. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/DataValidatorOW.py +159 -0
  34. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +244 -0
  35. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/FilterOW.py +98 -0
  36. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +89 -0
  37. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/NXTomomillOW.py +335 -0
  38. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/NXtomoConcatenate.py +200 -0
  39. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +111 -0
  40. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/TomoObjSeriesOW.py +58 -0
  41. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/VolumeSelector.py +118 -0
  42. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/_BlissDataListenerQThread.py +158 -0
  43. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control/_datalistener.py +109 -0
  44. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/dataportal/PublishProcessedDataOW.py +160 -0
  45. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/deprecated/VolumeviewerOW.py +55 -0
  46. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py +153 -0
  47. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py +100 -0
  48. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py +105 -0
  49. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py +123 -0
  50. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/other/PythonScriptOW.py +851 -0
  51. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/BaseNabuRecOW.py +39 -0
  52. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +195 -0
  53. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/CoROW.py +464 -0
  54. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/ComputeReduceDarkAndFlatOW.py +80 -0
  55. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/CopyReducedDarkAndFlatOW.py +203 -0
  56. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/MultiCoROW.py +437 -0
  57. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/MultiPagOW.py +252 -0
  58. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/MultiPagWindow.py +153 -0
  59. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/NabuOW.py +291 -0
  60. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/NabuSettingsOW.py +68 -0
  61. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py +296 -0
  62. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/compute_darkflat.png +0 -0
  63. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/compute_darkflat.svg +53 -0
  64. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/copy_darkflat.png +0 -0
  65. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/copy_darkflat.svg +33 -0
  66. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_slices.png +0 -0
  67. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_slices.svg +149 -0
  68. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/stitching/StitcherOW.py +80 -0
  69. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +121 -0
  70. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +53 -0
  71. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/visualization/RadioStackOW.py +70 -0
  72. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py +87 -0
  73. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py +63 -0
  74. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/visualization/SliceStackOW.py +85 -0
  75. tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py +108 -0
  76. tomwer-2.0.0.dev0/src/tomwer/__init__.py +19 -0
  77. tomwer-2.0.0.dev0/src/tomwer/__main__.py +196 -0
  78. tomwer-2.0.0.dev0/src/tomwer/app/__init__.py +1 -0
  79. tomwer-2.0.0.dev0/src/tomwer/app/canvas_launcher/config.py +97 -0
  80. tomwer-2.0.0.dev0/src/tomwer/app/canvas_launcher/mainwindow.py +683 -0
  81. tomwer-2.0.0.dev0/src/tomwer/app/canvas_launcher/schemeedit.py +23 -0
  82. tomwer-2.0.0.dev0/src/tomwer/app/canvas_launcher/utils.py +49 -0
  83. tomwer-2.0.0.dev0/src/tomwer/app/canvas_launcher/widgetsscheme.py +95 -0
  84. tomwer-2.0.0.dev0/src/tomwer/app/cor.py +194 -0
  85. tomwer-2.0.0.dev0/src/tomwer/app/estimate_motion.py +112 -0
  86. tomwer-2.0.0.dev0/src/tomwer/app/imagekeyeditor.py +99 -0
  87. tomwer-2.0.0.dev0/src/tomwer/app/imagekeyupgrader.py +109 -0
  88. tomwer-2.0.0.dev0/src/tomwer/app/multicor.py +177 -0
  89. tomwer-2.0.0.dev0/src/tomwer/app/multipag.py +356 -0
  90. tomwer-2.0.0.dev0/src/tomwer/app/nabuapp.py +259 -0
  91. tomwer-2.0.0.dev0/src/tomwer/app/nxtomoeditor.py +113 -0
  92. tomwer-2.0.0.dev0/src/tomwer/app/patchrawdarkflat.py +129 -0
  93. tomwer-2.0.0.dev0/src/tomwer/app/stitching/common.py +612 -0
  94. tomwer-2.0.0.dev0/src/tomwer/app/volume_viewer.py +163 -0
  95. tomwer-2.0.0.dev0/src/tomwer/core/__init__.py +1 -0
  96. tomwer-2.0.0.dev0/src/tomwer/core/cluster/cluster.py +216 -0
  97. tomwer-2.0.0.dev0/src/tomwer/core/control/_DataListener.py +233 -0
  98. tomwer-2.0.0.dev0/src/tomwer/core/control/datawatcher/datawatcherobserver.py +560 -0
  99. tomwer-2.0.0.dev0/src/tomwer/core/control/datawatcher/datawatcherprocess.py +152 -0
  100. tomwer-2.0.0.dev0/src/tomwer/core/control/datawatcher/edfdwprocess.py +105 -0
  101. tomwer-2.0.0.dev0/src/tomwer/core/control/datawatcher/hdf5dwprocess.py +59 -0
  102. tomwer-2.0.0.dev0/src/tomwer/core/control/scanvalidator.py +184 -0
  103. tomwer-2.0.0.dev0/src/tomwer/core/drac/__init__.py +1 -0
  104. tomwer-2.0.0.dev0/src/tomwer/core/drac/dracbase.py +171 -0
  105. tomwer-2.0.0.dev0/src/tomwer/core/drac/processeddataset.py +157 -0
  106. tomwer-2.0.0.dev0/src/tomwer/core/drac/rawdataset.py +142 -0
  107. tomwer-2.0.0.dev0/src/tomwer/core/drac/tests/test_gallery.py +71 -0
  108. tomwer-2.0.0.dev0/src/tomwer/core/drac/tests/test_icat_processed_dataset.py +80 -0
  109. tomwer-2.0.0.dev0/src/tomwer/core/drac/tests/test_icat_raw_dataset.py +90 -0
  110. tomwer-2.0.0.dev0/src/tomwer/core/output.py +8 -0
  111. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/cor/anglemode.py +71 -0
  112. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/cor/cor_resource.py +131 -0
  113. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/cor/exception.py +4 -0
  114. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/cor/mode.py +261 -0
  115. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/cor/params.py +687 -0
  116. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/MultiBaseParams.py +162 -0
  117. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/__init__.py +1 -0
  118. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/multicor/__init__.py +3 -0
  119. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/multicor/multicor.py +166 -0
  120. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/multicor/params.py +134 -0
  121. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/multipag/__init__.py +3 -0
  122. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/multipag/multipag.py +134 -0
  123. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/multipag/params.py +78 -0
  124. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/reconstructions.py +715 -0
  125. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/scores/ComputedScore.py +56 -0
  126. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/scores/ScoreMethod.py +9 -0
  127. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/scores/__init__.py +1 -0
  128. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/scores/compute.py +144 -0
  129. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/multi/scores/utils.py +52 -0
  130. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/NabuBaseReconstructor.py +552 -0
  131. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/filter.py +14 -0
  132. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/method.py +10 -0
  133. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/mode.py +31 -0
  134. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/nabucommon.py +134 -0
  135. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/nabuvolume.py +214 -0
  136. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/padding.py +8 -0
  137. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/phase.py +28 -0
  138. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/plane.py +20 -0
  139. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/ringcorrection.py +11 -0
  140. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/settings.py +21 -0
  141. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/slice/NabuSliceMode.py +39 -0
  142. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/slice/SingleSliceRunner.py +282 -0
  143. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/slice/SliceInterpreter.py +127 -0
  144. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/slice/slices.py +258 -0
  145. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/stages.py +87 -0
  146. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/test/test_nabu_utils.py +327 -0
  147. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/test/test_slice_interpreter.py +246 -0
  148. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/utils.py +350 -0
  149. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/normalization/__init__.py +1 -0
  150. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/normalization/params.py +137 -0
  151. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/output.py +58 -0
  152. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/params_cache.py +36 -0
  153. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/tests/test_anglemode.py +121 -0
  154. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/tests/test_axis_params.py +60 -0
  155. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/tests/test_cor.py +47 -0
  156. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/tests/test_params_cache.py +37 -0
  157. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/tests/test_paramsbase.py +20 -0
  158. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/tests/test_scores.py +26 -0
  159. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/tests/test_utils.py +29 -0
  160. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/utils/LastReceivedScansDict.py +27 -0
  161. tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/utils/cor.py +58 -0
  162. tomwer-2.0.0.dev0/src/tomwer/core/scan/blissscan.py +231 -0
  163. tomwer-2.0.0.dev0/src/tomwer/core/scan/edfscan.py +578 -0
  164. tomwer-2.0.0.dev0/src/tomwer/core/scan/nxtomoscan.py +506 -0
  165. tomwer-2.0.0.dev0/src/tomwer/core/scan/scanbase.py +640 -0
  166. tomwer-2.0.0.dev0/src/tomwer/core/scan/scanfactory.py +218 -0
  167. tomwer-2.0.0.dev0/src/tomwer/core/scan/tests/test_future_scan.py +38 -0
  168. tomwer-2.0.0.dev0/src/tomwer/core/scan/tests/test_nxtomoscan.py +143 -0
  169. tomwer-2.0.0.dev0/src/tomwer/core/scan/tests/test_scan.py +363 -0
  170. tomwer-2.0.0.dev0/src/tomwer/core/settings.py +143 -0
  171. tomwer-2.0.0.dev0/src/tomwer/core/tests/test_scanutils.py +20 -0
  172. tomwer-2.0.0.dev0/src/tomwer/core/tests/test_utils.py +272 -0
  173. tomwer-2.0.0.dev0/src/tomwer/core/tomwer_object.py +55 -0
  174. tomwer-2.0.0.dev0/src/tomwer/core/utils/_Launcher.py +187 -0
  175. tomwer-2.0.0.dev0/src/tomwer/core/utils/ewoks.py +10 -0
  176. tomwer-2.0.0.dev0/src/tomwer/core/utils/nxtomoutils.py +35 -0
  177. tomwer-2.0.0.dev0/src/tomwer/core/utils/scanutils.py +536 -0
  178. tomwer-2.0.0.dev0/src/tomwer/core/utils/spec.py +257 -0
  179. tomwer-2.0.0.dev0/src/tomwer/core/volume/hdf5volume.py +168 -0
  180. tomwer-2.0.0.dev0/src/tomwer/core/volume/volumefactory.py +157 -0
  181. tomwer-2.0.0.dev0/src/tomwer/gui/_image_from_file.py +175 -0
  182. tomwer-2.0.0.dev0/src/tomwer/gui/cluster/slurm.py +952 -0
  183. tomwer-2.0.0.dev0/src/tomwer/gui/cluster/supervisor.py +389 -0
  184. tomwer-2.0.0.dev0/src/tomwer/gui/cluster/tests/test_cluster.py +109 -0
  185. tomwer-2.0.0.dev0/src/tomwer/gui/cluster/tests/test_supervisor.py +46 -0
  186. tomwer-2.0.0.dev0/src/tomwer/gui/conditions/filter.py +125 -0
  187. tomwer-2.0.0.dev0/src/tomwer/gui/control/data_discovery/DataDiscoveryWindow.py +73 -0
  188. tomwer-2.0.0.dev0/src/tomwer/gui/control/data_discovery/_ControlWidget.py +119 -0
  189. tomwer-2.0.0.dev0/src/tomwer/gui/control/data_discovery/_DataDiscoveryConfigWidget.py +56 -0
  190. tomwer-2.0.0.dev0/src/tomwer/gui/control/data_discovery/_MainWidget.py +57 -0
  191. tomwer-2.0.0.dev0/src/tomwer/gui/control/data_discovery/__init__.py +3 -0
  192. tomwer-2.0.0.dev0/src/tomwer/gui/control/data_discovery/_observer.py +256 -0
  193. tomwer-2.0.0.dev0/src/tomwer/gui/control/datalist.py +1146 -0
  194. tomwer-2.0.0.dev0/src/tomwer/gui/control/datalistener.py +578 -0
  195. tomwer-2.0.0.dev0/src/tomwer/gui/control/datavalidator.py +341 -0
  196. tomwer-2.0.0.dev0/src/tomwer/gui/control/observations.py +226 -0
  197. tomwer-2.0.0.dev0/src/tomwer/gui/control/singletomoobj.py +179 -0
  198. tomwer-2.0.0.dev0/src/tomwer/gui/control/tests/test_datadiscovery.py +27 -0
  199. tomwer-2.0.0.dev0/src/tomwer/gui/control/tests/test_datalistener.py +29 -0
  200. tomwer-2.0.0.dev0/src/tomwer/gui/dataportal/gallery.py +132 -0
  201. tomwer-2.0.0.dev0/src/tomwer/gui/debugtools/datasetgenerator.py +252 -0
  202. tomwer-2.0.0.dev0/src/tomwer/gui/edit/dkrfpatch.py +442 -0
  203. tomwer-2.0.0.dev0/src/tomwer/gui/edit/imagekeyeditor.py +784 -0
  204. tomwer-2.0.0.dev0/src/tomwer/gui/edit/nxtomoeditor.py +843 -0
  205. tomwer-2.0.0.dev0/src/tomwer/gui/edit/tests/test_dkrf_patch.py +186 -0
  206. tomwer-2.0.0.dev0/src/tomwer/gui/edit/tests/test_nx_editor.py +474 -0
  207. tomwer-2.0.0.dev0/src/tomwer/gui/icons.py +348 -0
  208. tomwer-2.0.0.dev0/src/tomwer/gui/qlefilesystem.py +37 -0
  209. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/CalculationWidget.py +217 -0
  210. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/CoRMainWindow.py +273 -0
  211. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/CoROptionsWidget.py +310 -0
  212. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/CoRSettingsWidget.py +799 -0
  213. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/CoRWidget.py +534 -0
  214. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/ControlWidget.py +286 -0
  215. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/EstimatedCORWidget.py +408 -0
  216. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/EstimatedCorComboBox.py +130 -0
  217. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/InputWidget.py +347 -0
  218. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/ManualFramesSelection.py +169 -0
  219. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/QCoRParams.py +28 -0
  220. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor/__init__.py +2 -0
  221. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/darkflat/darkflatcopywidget.py +160 -0
  222. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/darkflat/darkflatwidget.py +307 -0
  223. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multicor/CoRScorePlot.py +38 -0
  224. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multicor/MultiCoRTabWidget.py +246 -0
  225. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multicor/MultiCoRWindow.py +263 -0
  226. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multicor/NabuAutoCorDiag.py +52 -0
  227. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multicor/QMultiCoRParams.py +29 -0
  228. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multicor/__init__.py +1 -0
  229. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multicor/corrangeselector.py +785 -0
  230. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multicor/dimensionwidget.py +234 -0
  231. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multicor/sliceselector.py +310 -0
  232. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multipag/DBScorePlot.py +33 -0
  233. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multipag/MultiPagSelectionWidget.py +158 -0
  234. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multipag/MultiPagTabWidget.py +162 -0
  235. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multipag/MultiPagWindowBase.py +153 -0
  236. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multipag/QMultiPagParams.py +29 -0
  237. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/multipag/__init__.py +1 -0
  238. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/castvolume.py +317 -0
  239. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/dialog.py +35 -0
  240. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/estimate_motion/estimator/method.py +10 -0
  241. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/estimate_motion/estimator/model.py +9 -0
  242. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/estimate_motion/mainwindow.py +159 -0
  243. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/estimate_motion/motion_plot_config.py +56 -0
  244. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/estimate_motion/motion_plot_utils.py +76 -0
  245. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/estimate_motion/motion_plots_widget.py +115 -0
  246. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/estimate_motion/nabu_config_widget.py +178 -0
  247. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/NabuSettingsWidget.py +153 -0
  248. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/NabuSettingsWindow.py +235 -0
  249. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/base.py +68 -0
  250. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py +346 -0
  251. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py +224 -0
  252. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/output.py +116 -0
  253. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/paddingmode.py +11 -0
  254. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +413 -0
  255. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +791 -0
  256. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +938 -0
  257. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/stages.py +48 -0
  258. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig/tests/test_NabuSettingsWidget.py +37 -0
  259. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuflow.py +427 -0
  260. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/platform.py +99 -0
  261. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/slices/NabuSlicesWidget.py +142 -0
  262. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/slices/NabuSlicesWindow.py +57 -0
  263. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/slices/SliceGroupBox.py +109 -0
  264. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/slices/tests/test_NabuSlicesWidget.py +29 -0
  265. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/test/test_cast_volume.py +102 -0
  266. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/test/test_ctf.py +44 -0
  267. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/test/test_delta_beta_selector.py +15 -0
  268. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/test/test_volume.py +52 -0
  269. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/volume/DeltaBetaSelector.py +42 -0
  270. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/volume/DeltaBetaSelectorDialog.py +38 -0
  271. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/volume/NabuVolumeWidget.py +169 -0
  272. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/volume/NabuVolumeWindow.py +54 -0
  273. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/volume/SliceSelector.py +68 -0
  274. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/scores/scoreplot.py +877 -0
  275. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/tests/test_axis.py +203 -0
  276. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/tests/test_multicor.py +145 -0
  277. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/tests/test_multipag.py +95 -0
  278. tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/tests/test_nabu.py +350 -0
  279. tomwer-2.0.0.dev0/src/tomwer/gui/samplemoved/__init__.py +223 -0
  280. tomwer-2.0.0.dev0/src/tomwer/gui/samplemoved/selectiontable.py +228 -0
  281. tomwer-2.0.0.dev0/src/tomwer/gui/settings.py +13 -0
  282. tomwer-2.0.0.dev0/src/tomwer/gui/stacks.py +368 -0
  283. tomwer-2.0.0.dev0/src/tomwer/gui/stitching/SingleAxisStitchingWidget.py +357 -0
  284. tomwer-2.0.0.dev0/src/tomwer/gui/stitching/axisorderedlist.py +457 -0
  285. tomwer-2.0.0.dev0/src/tomwer/gui/stitching/config/tomoobjdetails.py +369 -0
  286. tomwer-2.0.0.dev0/src/tomwer/gui/stitching/metadataholder.py +32 -0
  287. tomwer-2.0.0.dev0/src/tomwer/gui/stitching/normalization.py +118 -0
  288. tomwer-2.0.0.dev0/src/tomwer/gui/stitching/stitching_preview.py +273 -0
  289. tomwer-2.0.0.dev0/src/tomwer/gui/stitching/z_stitching/tests/test_fine_estimation.py +20 -0
  290. tomwer-2.0.0.dev0/src/tomwer/gui/stitching/z_stitching/tests/test_raw_estimation.py +191 -0
  291. tomwer-2.0.0.dev0/src/tomwer/gui/stitching/z_stitching/tests/test_stitching_window.py +36 -0
  292. tomwer-2.0.0.dev0/src/tomwer/gui/tests/test_cor_gui.py +43 -0
  293. tomwer-2.0.0.dev0/src/tomwer/gui/tests/utils.py +17 -0
  294. tomwer-2.0.0.dev0/src/tomwer/gui/utils/HDF5DatasetSelector.py +78 -0
  295. tomwer-2.0.0.dev0/src/tomwer/gui/utils/RangeWidget.py +45 -0
  296. tomwer-2.0.0.dev0/src/tomwer/gui/utils/_outputdir.py +62 -0
  297. tomwer-2.0.0.dev0/src/tomwer/gui/utils/buttons.py +207 -0
  298. tomwer-2.0.0.dev0/src/tomwer/gui/utils/flow.py +319 -0
  299. tomwer-2.0.0.dev0/src/tomwer/gui/utils/gpu.py +76 -0
  300. tomwer-2.0.0.dev0/src/tomwer/gui/utils/illustrations.py +102 -0
  301. tomwer-2.0.0.dev0/src/tomwer/gui/utils/inputwidget.py +609 -0
  302. tomwer-2.0.0.dev0/src/tomwer/gui/utils/loadingmode.py +82 -0
  303. tomwer-2.0.0.dev0/src/tomwer/gui/utils/locale.py +26 -0
  304. tomwer-2.0.0.dev0/src/tomwer/gui/utils/sandboxes.py +154 -0
  305. tomwer-2.0.0.dev0/src/tomwer/gui/utils/tests/test_vignettes.py +69 -0
  306. tomwer-2.0.0.dev0/src/tomwer/gui/utils/unitsystem.py +196 -0
  307. tomwer-2.0.0.dev0/src/tomwer/gui/utils/utils.py +122 -0
  308. tomwer-2.0.0.dev0/src/tomwer/gui/utils/vignettes.py +523 -0
  309. tomwer-2.0.0.dev0/src/tomwer/gui/visualization/dataviewer.py +374 -0
  310. tomwer-2.0.0.dev0/src/tomwer/gui/visualization/diffviewer/diffviewer.py +538 -0
  311. tomwer-2.0.0.dev0/src/tomwer/gui/visualization/diffviewer/frametype.py +9 -0
  312. tomwer-2.0.0.dev0/src/tomwer/gui/visualization/diffviewer/shiftwidget.py +531 -0
  313. tomwer-2.0.0.dev0/src/tomwer/gui/visualization/displaymode.py +10 -0
  314. tomwer-2.0.0.dev0/src/tomwer/gui/visualization/fullscreenplot.py +122 -0
  315. tomwer-2.0.0.dev0/src/tomwer/gui/visualization/imagestack.py +416 -0
  316. tomwer-2.0.0.dev0/src/tomwer/gui/visualization/radiomode.py +6 -0
  317. tomwer-2.0.0.dev0/src/tomwer/gui/visualization/scanoverview.py +311 -0
  318. tomwer-2.0.0.dev0/src/tomwer/gui/visualization/sinogramviewer.py +350 -0
  319. tomwer-2.0.0.dev0/src/tomwer/gui/visualization/slicemode.py +6 -0
  320. tomwer-2.0.0.dev0/src/tomwer/gui/visualization/test/test_dataviewer.py +15 -0
  321. tomwer-2.0.0.dev0/src/tomwer/gui/visualization/test/test_sinogramviewer.py +76 -0
  322. tomwer-2.0.0.dev0/src/tomwer/gui/visualization/test/test_stacks.py +203 -0
  323. tomwer-2.0.0.dev0/src/tomwer/gui/visualization/volume_viewer/VolumeViewerWidget.py +304 -0
  324. tomwer-2.0.0.dev0/src/tomwer/gui/visualization/volume_viewer/actions/_OpenGLAction.py +35 -0
  325. tomwer-2.0.0.dev0/src/tomwer/gui/visualization/volume_viewer/toolbar.py +122 -0
  326. tomwer-2.0.0.dev0/src/tomwer/gui/visualization/volumeviewer.py +475 -0
  327. tomwer-2.0.0.dev0/src/tomwer/io/processlog.py +78 -0
  328. tomwer-2.0.0.dev0/src/tomwer/model/__init__.py +1 -0
  329. tomwer-2.0.0.dev0/src/tomwer/model/_common/data.py +36 -0
  330. tomwer-2.0.0.dev0/src/tomwer/model/_common/process.py +12 -0
  331. tomwer-2.0.0.dev0/src/tomwer/model/_common/tomoobj.py +45 -0
  332. tomwer-2.0.0.dev0/src/tomwer/model/_common/volume.py +26 -0
  333. tomwer-2.0.0.dev0/src/tomwer/model/cluster/future_supervisor.py +23 -0
  334. tomwer-2.0.0.dev0/src/tomwer/model/conditions/filters.py +26 -0
  335. tomwer-2.0.0.dev0/src/tomwer/model/control/datadiscovery.py +13 -0
  336. tomwer-2.0.0.dev0/src/tomwer/model/control/scanselector.py +13 -0
  337. tomwer-2.0.0.dev0/src/tomwer/model/control/singletomoobj.py +16 -0
  338. tomwer-2.0.0.dev0/src/tomwer/model/control/volumeselector.py +13 -0
  339. tomwer-2.0.0.dev0/src/tomwer/model/dataportal/publish.py +24 -0
  340. tomwer-2.0.0.dev0/src/tomwer/model/edit/__init__.py +1 -0
  341. tomwer-2.0.0.dev0/src/tomwer/model/edit/dark_flat_patch.py +13 -0
  342. tomwer-2.0.0.dev0/src/tomwer/model/edit/imagekey_editor.py +13 -0
  343. tomwer-2.0.0.dev0/src/tomwer/model/edit/imagekey_upgrader.py +13 -0
  344. tomwer-2.0.0.dev0/src/tomwer/model/reconstruction/cast_volume.py +145 -0
  345. tomwer-2.0.0.dev0/src/tomwer/model/reconstruction/compute_dark_flat.py +56 -0
  346. tomwer-2.0.0.dev0/src/tomwer/model/reconstruction/copy_reduced_frames.py +140 -0
  347. tomwer-2.0.0.dev0/src/tomwer/model/reconstruction/cor.py +58 -0
  348. tomwer-2.0.0.dev0/src/tomwer/model/reconstruction/estimate_motion_io.py +44 -0
  349. tomwer-2.0.0.dev0/src/tomwer/model/reconstruction/multicor.py +73 -0
  350. tomwer-2.0.0.dev0/src/tomwer/model/reconstruction/nabu_settings.py +20 -0
  351. tomwer-2.0.0.dev0/src/tomwer/model/reconstruction/nabu_slices.py +78 -0
  352. tomwer-2.0.0.dev0/src/tomwer/model/reconstruction/nabu_volume.py +62 -0
  353. tomwer-2.0.0.dev0/src/tomwer/model/reconstruction/reduced_frames.py +46 -0
  354. tomwer-2.0.0.dev0/src/tomwer/model/visualization/dataviewer.py +8 -0
  355. tomwer-2.0.0.dev0/src/tomwer/model/visualization/volume_viewer.py +23 -0
  356. tomwer-2.0.0.dev0/src/tomwer/resources/__init__.py +130 -0
  357. tomwer-2.0.0.dev0/src/tomwer/resources/gui/illustrations/modelization_sample_stage.png +0 -0
  358. tomwer-2.0.0.dev0/src/tomwer/synctools/stacks/processingstack.py +187 -0
  359. tomwer-2.0.0.dev0/src/tomwer/synctools/stacks/reconstruction/cor.py +128 -0
  360. tomwer-2.0.0.dev0/src/tomwer/synctools/stacks/reconstruction/multipag.py +172 -0
  361. tomwer-2.0.0.dev0/src/tomwer/synctools/stacks/reconstruction/nabu.py +185 -0
  362. tomwer-2.0.0.dev0/src/tomwer/tasks/__init__.py +1 -0
  363. tomwer-2.0.0.dev0/src/tomwer/tasks/cluster/supervisor.py +117 -0
  364. tomwer-2.0.0.dev0/src/tomwer/tasks/conditions/filters.py +152 -0
  365. tomwer-2.0.0.dev0/src/tomwer/tasks/control/datadiscovery.py +16 -0
  366. tomwer-2.0.0.dev0/src/tomwer/tasks/control/datalistener.py +10 -0
  367. tomwer-2.0.0.dev0/src/tomwer/tasks/control/datawatcher.py +388 -0
  368. tomwer-2.0.0.dev0/src/tomwer/tasks/control/emailnotifier.py +136 -0
  369. tomwer-2.0.0.dev0/src/tomwer/tasks/control/nxtomoconcatenate.py +123 -0
  370. tomwer-2.0.0.dev0/src/tomwer/tasks/control/nxtomomill.py +191 -0
  371. tomwer-2.0.0.dev0/src/tomwer/tasks/control/scanlist.py +24 -0
  372. tomwer-2.0.0.dev0/src/tomwer/tasks/control/scanselector.py +14 -0
  373. tomwer-2.0.0.dev0/src/tomwer/tasks/control/scanvalidator.py +14 -0
  374. tomwer-2.0.0.dev0/src/tomwer/tasks/control/singletomoobj.py +26 -0
  375. tomwer-2.0.0.dev0/src/tomwer/tasks/control/tests/test_concatenate_nxtomos.py +80 -0
  376. tomwer-2.0.0.dev0/src/tomwer/tasks/control/tests/test_conditions.py +59 -0
  377. tomwer-2.0.0.dev0/src/tomwer/tasks/control/tests/test_email.py +52 -0
  378. tomwer-2.0.0.dev0/src/tomwer/tasks/control/tests/test_h52nx_process.py +151 -0
  379. tomwer-2.0.0.dev0/src/tomwer/tasks/control/volumeselector.py +16 -0
  380. tomwer-2.0.0.dev0/src/tomwer/tasks/dataportal/__init__.py +1 -0
  381. tomwer-2.0.0.dev0/src/tomwer/tasks/dataportal/publish.py +167 -0
  382. tomwer-2.0.0.dev0/src/tomwer/tasks/edit/__init__.py +1 -0
  383. tomwer-2.0.0.dev0/src/tomwer/tasks/edit/darkflatpatch.py +70 -0
  384. tomwer-2.0.0.dev0/src/tomwer/tasks/edit/imagekey_upgrader.py +65 -0
  385. tomwer-2.0.0.dev0/src/tomwer/tasks/edit/imagekeyeditor.py +104 -0
  386. tomwer-2.0.0.dev0/src/tomwer/tasks/edit/nxtomoeditor.py +355 -0
  387. tomwer-2.0.0.dev0/src/tomwer/tasks/edit/tests/test_darkflatpatch.py +239 -0
  388. tomwer-2.0.0.dev0/src/tomwer/tasks/edit/tests/test_imagekey_editor.py +95 -0
  389. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/__init__.py +1 -0
  390. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/copydarkflat.py +126 -0
  391. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/cor.py +340 -0
  392. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/nabu/__init__.py +1 -0
  393. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/nabu/castvolume.py +329 -0
  394. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/nabu/config.py +14 -0
  395. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/nabu/estimate_motion.py +54 -0
  396. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/nabu/multicor.py +612 -0
  397. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/nabu/multipag.py +648 -0
  398. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/nabu/nabuvolume.py +214 -0
  399. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/nabu/slices.py +198 -0
  400. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/normalization.py +293 -0
  401. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/reducedarkflat.py +317 -0
  402. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/tests/test_castvolume.py +96 -0
  403. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/tests/test_dark_and_flat.py +321 -0
  404. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/tests/test_darkflat_copy.py +168 -0
  405. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/tests/test_multidb.py +45 -0
  406. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/tests/test_nabu.py +146 -0
  407. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/tests/test_nabu_estimate_motion.py +33 -0
  408. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/tests/test_nabu_multicor.py +73 -0
  409. tomwer-2.0.0.dev0/src/tomwer/tasks/reconstruction/tests/test_nabu_normalization.py +252 -0
  410. tomwer-2.0.0.dev0/src/tomwer/tasks/script/python.py +46 -0
  411. tomwer-2.0.0.dev0/src/tomwer/tasks/stitching/nabustitcher.py +182 -0
  412. tomwer-2.0.0.dev0/src/tomwer/tasks/stitching/tests/test_metadataholder.py +17 -0
  413. tomwer-2.0.0.dev0/src/tomwer/tasks/task.py +69 -0
  414. tomwer-2.0.0.dev0/src/tomwer/tasks/visualization/dataviewer.py +14 -0
  415. tomwer-2.0.0.dev0/src/tomwer/tasks/visualization/tests/test_diff_viewer.py +12 -0
  416. tomwer-2.0.0.dev0/src/tomwer/tasks/visualization/tests/test_image_stack_viewer.py +14 -0
  417. tomwer-2.0.0.dev0/src/tomwer/tasks/visualization/tests/test_radio_stack.py +12 -0
  418. tomwer-2.0.0.dev0/src/tomwer/tasks/visualization/tests/test_sample_moved.py +14 -0
  419. tomwer-2.0.0.dev0/src/tomwer/tasks/visualization/tests/test_sinogram_viewer.py +13 -0
  420. tomwer-2.0.0.dev0/src/tomwer/tasks/visualization/tests/test_slice_stack.py +13 -0
  421. tomwer-2.0.0.dev0/src/tomwer/tasks/visualization/volume_viewer.py +55 -0
  422. tomwer-2.0.0.dev0/src/tomwer/tests/conftest.py +85 -0
  423. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/cluster/tests/test_monitor.py +49 -0
  424. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/cluster/tests/test_slurm_clusterow.py +40 -0
  425. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_data_validator.py +36 -0
  426. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_datadiscovery.py +124 -0
  427. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_dataselector.py +69 -0
  428. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_nxtomomill.py +100 -0
  429. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_singletomoobj.py +40 -0
  430. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_volume_selector.py +69 -0
  431. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_dark_flat_patch.py +50 -0
  432. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_nxtomo_editor.py +145 -0
  433. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/other/tests/test_pythonscript.py +16 -0
  434. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_cast_volumeow.py +54 -0
  435. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_copy_reduced_dark_flat_widget.py +98 -0
  436. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_cor.py +131 -0
  437. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_multicor.py +129 -0
  438. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_multipag.py +209 -0
  439. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_nabu_slices.py +89 -0
  440. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_nabu_volume.py +65 -0
  441. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/stitching/tests/test_zstitching.py +290 -0
  442. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/test_darkflat.py +171 -0
  443. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_dataviewerow.py +43 -0
  444. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_diffviewerow.py +23 -0
  445. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_nxtomo_metadata_viewer.py +12 -0
  446. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_radio_stackow.py +14 -0
  447. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_sample_movedow.py +28 -0
  448. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_sinogram_viewerow.py +14 -0
  449. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_slice_stackow.py +14 -0
  450. tomwer-2.0.0.dev0/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_volume_viewerow.py +51 -0
  451. tomwer-2.0.0.dev0/src/tomwer/tests/test_ewoks/test_conversion.py +98 -0
  452. tomwer-2.0.0.dev0/src/tomwer/tests/test_ewoks/test_single_node_execution.py +92 -0
  453. tomwer-2.0.0.dev0/src/tomwer/tests/test_ewoks/test_workflows.py +558 -0
  454. tomwer-2.0.0.dev0/src/tomwer/tests/test_scripts.py +143 -0
  455. tomwer-2.0.0.dev0/src/tomwer/version.py +134 -0
  456. tomwer-2.0.0.dev0/src/tomwer.egg-info/PKG-INFO +200 -0
  457. tomwer-2.0.0.dev0/src/tomwer.egg-info/SOURCES.txt +1021 -0
  458. tomwer-2.0.0.dev0/src/tomwer.egg-info/requires.txt +90 -0
  459. tomwer-1.6.22/MANIFEST.in +0 -0
  460. tomwer-1.6.22/PKG-INFO +0 -202
  461. tomwer-1.6.22/README.rst +0 -103
  462. tomwer-1.6.22/pyproject.toml +0 -189
  463. tomwer-1.6.22/src/orangecontrib/tomwer/__init__.py +0 -10
  464. tomwer-1.6.22/src/orangecontrib/tomwer/orange/managedprocess.py +0 -105
  465. tomwer-1.6.22/src/orangecontrib/tomwer/state_summary.py +0 -50
  466. tomwer-1.6.22/src/orangecontrib/tomwer/tests/TestAcquisition.py +0 -218
  467. tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/EBS_tomo_listener.ows +0 -39
  468. tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/append_raw_darks_and_flats_frames_to_NXtomos.ows +0 -44
  469. tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/cast_volume.ows +0 -34
  470. tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/copy_reduced_darks_and_flats_meth1.ows +0 -55
  471. tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/copy_reduced_darks_and_flats_meth2.ows +0 -48
  472. tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/default_cor_search.ows +0 -40
  473. tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/drac_publication.ows +0 -44
  474. tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/id16b/ID16b_full_volume.ows +0 -22
  475. tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/id16b/ID16b_insitu.ows +0 -302
  476. tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/id16b/ID16b_normalization.ows +0 -218
  477. tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/simple_slice_reconstruction.ows +0 -39
  478. tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/simple_slice_reconstruction_on_slurm.ows +0 -50
  479. tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/simple_volume_local_reconstruction.ows +0 -52
  480. tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows +0 -67
  481. tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/untitled.ows +0 -15
  482. tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/using_saaxis_to_find_cor.ows +0 -44
  483. tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/volume_casting_on_slurm.ows +0 -54
  484. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py +0 -275
  485. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py +0 -82
  486. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/BlissDataListenerOW.py +0 -72
  487. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py +0 -231
  488. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/DataSelectorOW.py +0 -126
  489. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/DataTransfertOW.py +0 -196
  490. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/DataValidatorOW.py +0 -167
  491. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/DataWatcherOW.py +0 -178
  492. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +0 -250
  493. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/EmailOW.py +0 -92
  494. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/FilterOW.py +0 -101
  495. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +0 -99
  496. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/NXTomomillOW.py +0 -337
  497. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/NXtomoConcatenate.py +0 -202
  498. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/NotifierOW.py +0 -108
  499. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/ReduceDarkFlatSelectorOW.py +0 -94
  500. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +0 -142
  501. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/TimerOW.py +0 -110
  502. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/TomoObjSeriesOW.py +0 -58
  503. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/VolumeSelector.py +0 -120
  504. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/_DataListenerBaseClass.py +0 -234
  505. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/icons/datawatcher.svg +0 -50
  506. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control/icons/folder-transfert.svg +0 -24
  507. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/dataportal/PublishProcessedDataOW.py +0 -173
  508. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/deprecated/DataListenerOW.py +0 -116
  509. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/deprecated/VolumeViewerOW.py +0 -62
  510. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/deprecated/icons/datalistener.svg +0 -30
  511. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py +0 -157
  512. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py +0 -106
  513. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py +0 -109
  514. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py +0 -127
  515. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/other/PythonScriptOW.py +0 -843
  516. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/AxisOW.py +0 -530
  517. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +0 -228
  518. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py +0 -243
  519. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/NabuHelicalPrepareWeightsDoubleOW.py +0 -186
  520. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/NabuOW.py +0 -272
  521. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py +0 -458
  522. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py +0 -478
  523. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py +0 -386
  524. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py +0 -262
  525. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.png +0 -0
  526. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/stitching/StitcherOW.py +0 -81
  527. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/utils.py +0 -37
  528. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +0 -121
  529. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +0 -53
  530. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/visualization/RadioStackOW.py +0 -70
  531. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py +0 -89
  532. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py +0 -65
  533. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/visualization/SliceStackOW.py +0 -85
  534. tomwer-1.6.22/src/orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py +0 -104
  535. tomwer-1.6.22/src/tomwer/__init__.py +0 -19
  536. tomwer-1.6.22/src/tomwer/__main__.py +0 -264
  537. tomwer-1.6.22/src/tomwer/app/__init__.py +0 -1
  538. tomwer-1.6.22/src/tomwer/app/axis.py +0 -196
  539. tomwer-1.6.22/src/tomwer/app/canvas_launcher/config.py +0 -124
  540. tomwer-1.6.22/src/tomwer/app/canvas_launcher/mainwindow.py +0 -676
  541. tomwer-1.6.22/src/tomwer/app/canvas_launcher/utils.py +0 -55
  542. tomwer-1.6.22/src/tomwer/app/canvas_launcher/widgetsscheme.py +0 -89
  543. tomwer-1.6.22/src/tomwer/app/darkref.py +0 -10
  544. tomwer-1.6.22/src/tomwer/app/darkrefpatch.py +0 -10
  545. tomwer-1.6.22/src/tomwer/app/imagekeyeditor.py +0 -99
  546. tomwer-1.6.22/src/tomwer/app/imagekeyupgrader.py +0 -109
  547. tomwer-1.6.22/src/tomwer/app/intensitynormalization.py +0 -195
  548. tomwer-1.6.22/src/tomwer/app/multicor.py +0 -280
  549. tomwer-1.6.22/src/tomwer/app/multipag.py +0 -357
  550. tomwer-1.6.22/src/tomwer/app/nabuapp.py +0 -248
  551. tomwer-1.6.22/src/tomwer/app/nxtomoeditor.py +0 -110
  552. tomwer-1.6.22/src/tomwer/app/patchrawdarkflat.py +0 -129
  553. tomwer-1.6.22/src/tomwer/app/reducedarkflat.py +0 -206
  554. tomwer-1.6.22/src/tomwer/app/rsync.py +0 -120
  555. tomwer-1.6.22/src/tomwer/app/stitching/common.py +0 -653
  556. tomwer-1.6.22/src/tomwer/app/stopdatalistener.py +0 -40
  557. tomwer-1.6.22/src/tomwer/app/volume_viewer.py +0 -163
  558. tomwer-1.6.22/src/tomwer/core/__init__.py +0 -1
  559. tomwer-1.6.22/src/tomwer/core/cluster/cluster.py +0 -157
  560. tomwer-1.6.22/src/tomwer/core/log/__init__.py +0 -1
  561. tomwer-1.6.22/src/tomwer/core/log/processlog.py +0 -78
  562. tomwer-1.6.22/src/tomwer/core/process/cluster/supervisor.py +0 -67
  563. tomwer-1.6.22/src/tomwer/core/process/conditions/filters.py +0 -215
  564. tomwer-1.6.22/src/tomwer/core/process/control/datadiscovery.py +0 -11
  565. tomwer-1.6.22/src/tomwer/core/process/control/datalistener/__init__.py +0 -1
  566. tomwer-1.6.22/src/tomwer/core/process/control/datalistener/datalistener.py +0 -293
  567. tomwer-1.6.22/src/tomwer/core/process/control/datalistener/rpcserver.py +0 -224
  568. tomwer-1.6.22/src/tomwer/core/process/control/datawatcher/__init__.py +0 -1
  569. tomwer-1.6.22/src/tomwer/core/process/control/datawatcher/datawatcher.py +0 -432
  570. tomwer-1.6.22/src/tomwer/core/process/control/datawatcher/datawatcherobserver.py +0 -648
  571. tomwer-1.6.22/src/tomwer/core/process/control/datawatcher/datawatcherprocess.py +0 -229
  572. tomwer-1.6.22/src/tomwer/core/process/control/datawatcher/edfdwprocess.py +0 -174
  573. tomwer-1.6.22/src/tomwer/core/process/control/datawatcher/hdf5dwprocess.py +0 -59
  574. tomwer-1.6.22/src/tomwer/core/process/control/emailnotifier.py +0 -136
  575. tomwer-1.6.22/src/tomwer/core/process/control/nxtomoconcatenate.py +0 -129
  576. tomwer-1.6.22/src/tomwer/core/process/control/nxtomomill.py +0 -199
  577. tomwer-1.6.22/src/tomwer/core/process/control/scanlist.py +0 -24
  578. tomwer-1.6.22/src/tomwer/core/process/control/scanselector.py +0 -12
  579. tomwer-1.6.22/src/tomwer/core/process/control/scantransfer.py +0 -641
  580. tomwer-1.6.22/src/tomwer/core/process/control/scanvalidator.py +0 -263
  581. tomwer-1.6.22/src/tomwer/core/process/control/singletomoobj.py +0 -14
  582. tomwer-1.6.22/src/tomwer/core/process/control/tests/test_concatenate_nxtomos.py +0 -81
  583. tomwer-1.6.22/src/tomwer/core/process/control/tests/test_email.py +0 -52
  584. tomwer-1.6.22/src/tomwer/core/process/control/tests/test_h52nx_process.py +0 -146
  585. tomwer-1.6.22/src/tomwer/core/process/control/timer.py +0 -79
  586. tomwer-1.6.22/src/tomwer/core/process/control/volumeselector.py +0 -14
  587. tomwer-1.6.22/src/tomwer/core/process/drac/dracbase.py +0 -171
  588. tomwer-1.6.22/src/tomwer/core/process/drac/processeddataset.py +0 -160
  589. tomwer-1.6.22/src/tomwer/core/process/drac/publish.py +0 -118
  590. tomwer-1.6.22/src/tomwer/core/process/drac/rawdataset.py +0 -142
  591. tomwer-1.6.22/src/tomwer/core/process/drac/tests/test_gallery.py +0 -71
  592. tomwer-1.6.22/src/tomwer/core/process/drac/tests/test_icat_processed_dataset.py +0 -80
  593. tomwer-1.6.22/src/tomwer/core/process/drac/tests/test_icat_raw_dataset.py +0 -90
  594. tomwer-1.6.22/src/tomwer/core/process/edit/darkflatpatch.py +0 -121
  595. tomwer-1.6.22/src/tomwer/core/process/edit/imagekeyeditor.py +0 -236
  596. tomwer-1.6.22/src/tomwer/core/process/edit/nxtomoeditor.py +0 -340
  597. tomwer-1.6.22/src/tomwer/core/process/edit/tests/test_darkflatpatch.py +0 -243
  598. tomwer-1.6.22/src/tomwer/core/process/edit/tests/test_imagekey_editor.py +0 -99
  599. tomwer-1.6.22/src/tomwer/core/process/output.py +0 -61
  600. tomwer-1.6.22/src/tomwer/core/process/reconstruction/axis/__init__.py +0 -2
  601. tomwer-1.6.22/src/tomwer/core/process/reconstruction/axis/anglemode.py +0 -21
  602. tomwer-1.6.22/src/tomwer/core/process/reconstruction/axis/axis.py +0 -461
  603. tomwer-1.6.22/src/tomwer/core/process/reconstruction/axis/mode.py +0 -274
  604. tomwer-1.6.22/src/tomwer/core/process/reconstruction/axis/params.py +0 -806
  605. tomwer-1.6.22/src/tomwer/core/process/reconstruction/darkref/darkrefs.py +0 -476
  606. tomwer-1.6.22/src/tomwer/core/process/reconstruction/darkref/darkrefscopy.py +0 -361
  607. tomwer-1.6.22/src/tomwer/core/process/reconstruction/darkref/params.py +0 -272
  608. tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/castvolume.py +0 -291
  609. tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/helical.py +0 -59
  610. tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/nabucommon.py +0 -695
  611. tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/nabuscores.py +0 -722
  612. tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/nabuslices.py +0 -906
  613. tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/nabuvolume.py +0 -582
  614. tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/plane.py +0 -19
  615. tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/settings.py +0 -35
  616. tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/test/test_castvolume.py +0 -118
  617. tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/test/test_nabu_utils.py +0 -354
  618. tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/test/test_nabunormalization.py +0 -199
  619. tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu/utils.py +0 -629
  620. tomwer-1.6.22/src/tomwer/core/process/reconstruction/normalization/__init__.py +0 -2
  621. tomwer-1.6.22/src/tomwer/core/process/reconstruction/normalization/normalization.py +0 -335
  622. tomwer-1.6.22/src/tomwer/core/process/reconstruction/normalization/params.py +0 -135
  623. tomwer-1.6.22/src/tomwer/core/process/reconstruction/output.py +0 -74
  624. tomwer-1.6.22/src/tomwer/core/process/reconstruction/params_cache.py +0 -36
  625. tomwer-1.6.22/src/tomwer/core/process/reconstruction/saaxis/__init__.py +0 -3
  626. tomwer-1.6.22/src/tomwer/core/process/reconstruction/saaxis/params.py +0 -134
  627. tomwer-1.6.22/src/tomwer/core/process/reconstruction/saaxis/saaxis.py +0 -854
  628. tomwer-1.6.22/src/tomwer/core/process/reconstruction/sadeltabeta/__init__.py +0 -3
  629. tomwer-1.6.22/src/tomwer/core/process/reconstruction/sadeltabeta/params.py +0 -78
  630. tomwer-1.6.22/src/tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +0 -835
  631. tomwer-1.6.22/src/tomwer/core/process/reconstruction/scores/__init__.py +0 -6
  632. tomwer-1.6.22/src/tomwer/core/process/reconstruction/scores/params.py +0 -184
  633. tomwer-1.6.22/src/tomwer/core/process/reconstruction/scores/scores.py +0 -198
  634. tomwer-1.6.22/src/tomwer/core/process/reconstruction/tests/test_axis.py +0 -46
  635. tomwer-1.6.22/src/tomwer/core/process/reconstruction/tests/test_axis_params.py +0 -61
  636. tomwer-1.6.22/src/tomwer/core/process/reconstruction/tests/test_darkref.py +0 -33
  637. tomwer-1.6.22/src/tomwer/core/process/reconstruction/tests/test_darkref_copy.py +0 -208
  638. tomwer-1.6.22/src/tomwer/core/process/reconstruction/tests/test_params_cache.py +0 -37
  639. tomwer-1.6.22/src/tomwer/core/process/reconstruction/tests/test_paramsbase.py +0 -54
  640. tomwer-1.6.22/src/tomwer/core/process/reconstruction/tests/test_saaxis.py +0 -84
  641. tomwer-1.6.22/src/tomwer/core/process/reconstruction/tests/test_sadeltabeta.py +0 -48
  642. tomwer-1.6.22/src/tomwer/core/process/reconstruction/tests/test_utils.py +0 -29
  643. tomwer-1.6.22/src/tomwer/core/process/reconstruction/utils/cor.py +0 -16
  644. tomwer-1.6.22/src/tomwer/core/process/script/python.py +0 -61
  645. tomwer-1.6.22/src/tomwer/core/process/script/tests/test_script.py +0 -41
  646. tomwer-1.6.22/src/tomwer/core/process/stitching/nabustitcher.py +0 -184
  647. tomwer-1.6.22/src/tomwer/core/process/stitching/tests/test_metadataholder.py +0 -17
  648. tomwer-1.6.22/src/tomwer/core/process/task.py +0 -129
  649. tomwer-1.6.22/src/tomwer/core/process/tests/test_conditions.py +0 -65
  650. tomwer-1.6.22/src/tomwer/core/process/tests/test_dark_and_flat.py +0 -359
  651. tomwer-1.6.22/src/tomwer/core/process/tests/test_data_listener.py +0 -88
  652. tomwer-1.6.22/src/tomwer/core/process/tests/test_data_transfer.py +0 -354
  653. tomwer-1.6.22/src/tomwer/core/process/tests/test_data_watcher.py +0 -39
  654. tomwer-1.6.22/src/tomwer/core/process/tests/test_nabu.py +0 -460
  655. tomwer-1.6.22/src/tomwer/core/process/tests/test_normalization.py +0 -80
  656. tomwer-1.6.22/src/tomwer/core/process/tests/test_timer.py +0 -51
  657. tomwer-1.6.22/src/tomwer/core/process/utils.py +0 -85
  658. tomwer-1.6.22/src/tomwer/core/process/visualization/dataviewer.py +0 -14
  659. tomwer-1.6.22/src/tomwer/core/process/visualization/tests/test_data_viewer.py +0 -12
  660. tomwer-1.6.22/src/tomwer/core/process/visualization/tests/test_diff_viewer.py +0 -12
  661. tomwer-1.6.22/src/tomwer/core/process/visualization/tests/test_image_stack_viewer.py +0 -14
  662. tomwer-1.6.22/src/tomwer/core/process/visualization/tests/test_radio_stack.py +0 -12
  663. tomwer-1.6.22/src/tomwer/core/process/visualization/tests/test_sample_moved.py +0 -14
  664. tomwer-1.6.22/src/tomwer/core/process/visualization/tests/test_sinogram_viewer.py +0 -13
  665. tomwer-1.6.22/src/tomwer/core/process/visualization/tests/test_slice_stack.py +0 -13
  666. tomwer-1.6.22/src/tomwer/core/scan/blissscan.py +0 -230
  667. tomwer-1.6.22/src/tomwer/core/scan/edfscan.py +0 -586
  668. tomwer-1.6.22/src/tomwer/core/scan/futurescan.py +0 -8
  669. tomwer-1.6.22/src/tomwer/core/scan/hdf5scan.py +0 -26
  670. tomwer-1.6.22/src/tomwer/core/scan/helicalmetadata.py +0 -15
  671. tomwer-1.6.22/src/tomwer/core/scan/nxtomoscan.py +0 -521
  672. tomwer-1.6.22/src/tomwer/core/scan/scanbase.py +0 -737
  673. tomwer-1.6.22/src/tomwer/core/scan/scanfactory.py +0 -226
  674. tomwer-1.6.22/src/tomwer/core/scan/tests/test_future_scan.py +0 -36
  675. tomwer-1.6.22/src/tomwer/core/scan/tests/test_nxtomoscan.py +0 -143
  676. tomwer-1.6.22/src/tomwer/core/scan/tests/test_scan.py +0 -373
  677. tomwer-1.6.22/src/tomwer/core/settings.py +0 -170
  678. tomwer-1.6.22/src/tomwer/core/tests/test_scanutils.py +0 -26
  679. tomwer-1.6.22/src/tomwer/core/tests/test_utils.py +0 -272
  680. tomwer-1.6.22/src/tomwer/core/tomwer_object.py +0 -55
  681. tomwer-1.6.22/src/tomwer/core/utils/lbsram.py +0 -35
  682. tomwer-1.6.22/src/tomwer/core/utils/logconfig.py +0 -6
  683. tomwer-1.6.22/src/tomwer/core/utils/nxtomoutils.py +0 -35
  684. tomwer-1.6.22/src/tomwer/core/utils/process.py +0 -50
  685. tomwer-1.6.22/src/tomwer/core/utils/scanutils.py +0 -445
  686. tomwer-1.6.22/src/tomwer/core/utils/spec.py +0 -265
  687. tomwer-1.6.22/src/tomwer/core/volume/hdf5volume.py +0 -168
  688. tomwer-1.6.22/src/tomwer/core/volume/volumefactory.py +0 -157
  689. tomwer-1.6.22/src/tomwer/gui/cluster/slurm.py +0 -888
  690. tomwer-1.6.22/src/tomwer/gui/cluster/supervisor.py +0 -420
  691. tomwer-1.6.22/src/tomwer/gui/cluster/tests/test_cluster.py +0 -106
  692. tomwer-1.6.22/src/tomwer/gui/cluster/tests/test_supervisor.py +0 -65
  693. tomwer-1.6.22/src/tomwer/gui/conditions/filter.py +0 -119
  694. tomwer-1.6.22/src/tomwer/gui/control/datadiscovery.py +0 -169
  695. tomwer-1.6.22/src/tomwer/gui/control/datalist.py +0 -1146
  696. tomwer-1.6.22/src/tomwer/gui/control/datalistener.py +0 -644
  697. tomwer-1.6.22/src/tomwer/gui/control/datatransfert.py +0 -124
  698. tomwer-1.6.22/src/tomwer/gui/control/datavalidator.py +0 -396
  699. tomwer-1.6.22/src/tomwer/gui/control/datawatcher/__init__.py +0 -3
  700. tomwer-1.6.22/src/tomwer/gui/control/datawatcher/configuration.py +0 -223
  701. tomwer-1.6.22/src/tomwer/gui/control/datawatcher/controlwidget.py +0 -114
  702. tomwer-1.6.22/src/tomwer/gui/control/datawatcher/datawatcher.py +0 -551
  703. tomwer-1.6.22/src/tomwer/gui/control/datawatcher/datawatcherobserver.py +0 -268
  704. tomwer-1.6.22/src/tomwer/gui/control/observations.py +0 -226
  705. tomwer-1.6.22/src/tomwer/gui/control/reducedarkflatselector.py +0 -549
  706. tomwer-1.6.22/src/tomwer/gui/control/series/test/test_nxtomo_concatenate.py +0 -21
  707. tomwer-1.6.22/src/tomwer/gui/control/singletomoobj.py +0 -179
  708. tomwer-1.6.22/src/tomwer/gui/control/tests/test_datadiscovery.py +0 -27
  709. tomwer-1.6.22/src/tomwer/gui/control/tests/test_datalistener.py +0 -29
  710. tomwer-1.6.22/src/tomwer/gui/control/tests/test_reducedarkflat_selector.py +0 -280
  711. tomwer-1.6.22/src/tomwer/gui/control/tests/test_scanvalidator.py +0 -90
  712. tomwer-1.6.22/src/tomwer/gui/dataportal/gallery.py +0 -133
  713. tomwer-1.6.22/src/tomwer/gui/debugtools/datasetgenerator.py +0 -251
  714. tomwer-1.6.22/src/tomwer/gui/dialog/_PortOccupyDialog.py +0 -73
  715. tomwer-1.6.22/src/tomwer/gui/edit/dkrfpatch.py +0 -442
  716. tomwer-1.6.22/src/tomwer/gui/edit/imagekeyeditor.py +0 -784
  717. tomwer-1.6.22/src/tomwer/gui/edit/nxtomoeditor.py +0 -817
  718. tomwer-1.6.22/src/tomwer/gui/edit/tests/test_dkrf_patch.py +0 -186
  719. tomwer-1.6.22/src/tomwer/gui/edit/tests/test_nx_editor.py +0 -473
  720. tomwer-1.6.22/src/tomwer/gui/icons.py +0 -365
  721. tomwer-1.6.22/src/tomwer/gui/imagefromfile.py +0 -131
  722. tomwer-1.6.22/src/tomwer/gui/qlefilesystem.py +0 -37
  723. tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/AxisMainWindow.py +0 -275
  724. tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/AxisOptionsWidget.py +0 -313
  725. tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/AxisSettingsWidget.py +0 -796
  726. tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/AxisWidget.py +0 -534
  727. tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/CalculationWidget.py +0 -216
  728. tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/ControlWidget.py +0 -285
  729. tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/EstimatedCORWidget.py +0 -408
  730. tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/EstimatedCorComboBox.py +0 -118
  731. tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/InputWidget.py +0 -347
  732. tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/ManualFramesSelection.py +0 -168
  733. tomwer-1.6.22/src/tomwer/gui/reconstruction/axis/__init__.py +0 -2
  734. tomwer-1.6.22/src/tomwer/gui/reconstruction/darkref/darkrefcopywidget.py +0 -284
  735. tomwer-1.6.22/src/tomwer/gui/reconstruction/darkref/darkrefwidget.py +0 -419
  736. tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/__init__.py +0 -1
  737. tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/castvolume.py +0 -334
  738. tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/helical.py +0 -78
  739. tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/nabuconfig/base.py +0 -67
  740. tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py +0 -346
  741. tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py +0 -238
  742. tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/nabuconfig/output.py +0 -306
  743. tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +0 -406
  744. tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +0 -788
  745. tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +0 -1096
  746. tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/nabuconfig/tests/test_NabuConfiguration.py +0 -42
  747. tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/nabuflow.py +0 -427
  748. tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/platform.py +0 -94
  749. tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/slices.py +0 -660
  750. tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/test/test_cast_volume.py +0 -101
  751. tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/test/test_ctf.py +0 -44
  752. tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/test/test_helical.py +0 -21
  753. tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/volume.py +0 -466
  754. tomwer-1.6.22/src/tomwer/gui/reconstruction/normalization/intensity.py +0 -861
  755. tomwer-1.6.22/src/tomwer/gui/reconstruction/normalization/test/test_intensity.py +0 -89
  756. tomwer-1.6.22/src/tomwer/gui/reconstruction/saaxis/corrangeselector.py +0 -791
  757. tomwer-1.6.22/src/tomwer/gui/reconstruction/saaxis/dimensionwidget.py +0 -224
  758. tomwer-1.6.22/src/tomwer/gui/reconstruction/saaxis/saaxis.py +0 -551
  759. tomwer-1.6.22/src/tomwer/gui/reconstruction/saaxis/sliceselector.py +0 -307
  760. tomwer-1.6.22/src/tomwer/gui/reconstruction/sacommon.py +0 -151
  761. tomwer-1.6.22/src/tomwer/gui/reconstruction/sadeltabeta/__init__.py +0 -1
  762. tomwer-1.6.22/src/tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py +0 -515
  763. tomwer-1.6.22/src/tomwer/gui/reconstruction/scores/scoreplot.py +0 -870
  764. tomwer-1.6.22/src/tomwer/gui/reconstruction/tests/test_axis.py +0 -203
  765. tomwer-1.6.22/src/tomwer/gui/reconstruction/tests/test_nabu.py +0 -364
  766. tomwer-1.6.22/src/tomwer/gui/reconstruction/tests/test_saaxis.py +0 -188
  767. tomwer-1.6.22/src/tomwer/gui/reconstruction/tests/test_sadeltabeta.py +0 -126
  768. tomwer-1.6.22/src/tomwer/gui/samplemoved/__init__.py +0 -225
  769. tomwer-1.6.22/src/tomwer/gui/samplemoved/selectiontable.py +0 -232
  770. tomwer-1.6.22/src/tomwer/gui/settings.py +0 -13
  771. tomwer-1.6.22/src/tomwer/gui/stacks.py +0 -368
  772. tomwer-1.6.22/src/tomwer/gui/stitching/SingleAxisStitchingWidget.py +0 -357
  773. tomwer-1.6.22/src/tomwer/gui/stitching/axisorderedlist.py +0 -460
  774. tomwer-1.6.22/src/tomwer/gui/stitching/config/tomoobjdetails.py +0 -369
  775. tomwer-1.6.22/src/tomwer/gui/stitching/metadataholder.py +0 -32
  776. tomwer-1.6.22/src/tomwer/gui/stitching/normalization.py +0 -118
  777. tomwer-1.6.22/src/tomwer/gui/stitching/stitching_preview.py +0 -253
  778. tomwer-1.6.22/src/tomwer/gui/stitching/z_stitching/tests/test_fine_estimation.py +0 -35
  779. tomwer-1.6.22/src/tomwer/gui/stitching/z_stitching/tests/test_raw_estimation.py +0 -226
  780. tomwer-1.6.22/src/tomwer/gui/stitching/z_stitching/tests/test_stitching_window.py +0 -55
  781. tomwer-1.6.22/src/tomwer/gui/tests/test_axis_gui.py +0 -43
  782. tomwer-1.6.22/src/tomwer/gui/utils/RangeWidget.py +0 -45
  783. tomwer-1.6.22/src/tomwer/gui/utils/buttons.py +0 -206
  784. tomwer-1.6.22/src/tomwer/gui/utils/flow.py +0 -319
  785. tomwer-1.6.22/src/tomwer/gui/utils/gpu.py +0 -76
  786. tomwer-1.6.22/src/tomwer/gui/utils/illustrations.py +0 -98
  787. tomwer-1.6.22/src/tomwer/gui/utils/inputwidget.py +0 -604
  788. tomwer-1.6.22/src/tomwer/gui/utils/loadingmode.py +0 -81
  789. tomwer-1.6.22/src/tomwer/gui/utils/sandboxes.py +0 -154
  790. tomwer-1.6.22/src/tomwer/gui/utils/tests/test_vignettes.py +0 -68
  791. tomwer-1.6.22/src/tomwer/gui/utils/unitsystem.py +0 -194
  792. tomwer-1.6.22/src/tomwer/gui/utils/utils.py +0 -111
  793. tomwer-1.6.22/src/tomwer/gui/utils/vignettes.py +0 -522
  794. tomwer-1.6.22/src/tomwer/gui/visualization/dataviewer.py +0 -370
  795. tomwer-1.6.22/src/tomwer/gui/visualization/diffviewer/diffviewer.py +0 -544
  796. tomwer-1.6.22/src/tomwer/gui/visualization/diffviewer/shiftwidget.py +0 -535
  797. tomwer-1.6.22/src/tomwer/gui/visualization/fullscreenplot.py +0 -106
  798. tomwer-1.6.22/src/tomwer/gui/visualization/imagestack.py +0 -407
  799. tomwer-1.6.22/src/tomwer/gui/visualization/scanoverview.py +0 -278
  800. tomwer-1.6.22/src/tomwer/gui/visualization/sinogramviewer.py +0 -262
  801. tomwer-1.6.22/src/tomwer/gui/visualization/test/test_dataviewer.py +0 -45
  802. tomwer-1.6.22/src/tomwer/gui/visualization/test/test_sinogramviewer.py +0 -58
  803. tomwer-1.6.22/src/tomwer/gui/visualization/test/test_stacks.py +0 -203
  804. tomwer-1.6.22/src/tomwer/gui/visualization/volume_viewer/VolumeViewerWidget.py +0 -303
  805. tomwer-1.6.22/src/tomwer/gui/visualization/volume_viewer/toolbar.py +0 -118
  806. tomwer-1.6.22/src/tomwer/model/volume_viewer.py +0 -18
  807. tomwer-1.6.22/src/tomwer/resources/__init__.py +0 -130
  808. tomwer-1.6.22/src/tomwer/resources/gui/icons/high_speed.png +0 -0
  809. tomwer-1.6.22/src/tomwer/resources/gui/icons/high_speed.svg +0 -33
  810. tomwer-1.6.22/src/tomwer/resources/gui/icons/low_speed.png +0 -0
  811. tomwer-1.6.22/src/tomwer/resources/gui/icons/low_speed.svg +0 -33
  812. tomwer-1.6.22/src/tomwer/resources/gui/icons/medium_low_speed.png +0 -0
  813. tomwer-1.6.22/src/tomwer/resources/gui/icons/medium_low_speed.svg +0 -33
  814. tomwer-1.6.22/src/tomwer/synctools/axis.py +0 -28
  815. tomwer-1.6.22/src/tomwer/synctools/bliss_sync/_QThreadListenerBase.py +0 -36
  816. tomwer-1.6.22/src/tomwer/synctools/bliss_sync/blissdata_listener.py +0 -125
  817. tomwer-1.6.22/src/tomwer/synctools/bliss_sync/datalistener.py +0 -227
  818. tomwer-1.6.22/src/tomwer/synctools/darkref.py +0 -23
  819. tomwer-1.6.22/src/tomwer/synctools/datatransfert.py +0 -19
  820. tomwer-1.6.22/src/tomwer/synctools/imageloaderthread.py +0 -52
  821. tomwer-1.6.22/src/tomwer/synctools/rsyncmanager.py +0 -169
  822. tomwer-1.6.22/src/tomwer/synctools/saaxis.py +0 -29
  823. tomwer-1.6.22/src/tomwer/synctools/sadeltabeta.py +0 -29
  824. tomwer-1.6.22/src/tomwer/synctools/stacks/control/datalistener.py +0 -106
  825. tomwer-1.6.22/src/tomwer/synctools/stacks/processingstack.py +0 -184
  826. tomwer-1.6.22/src/tomwer/synctools/stacks/reconstruction/axis.py +0 -153
  827. tomwer-1.6.22/src/tomwer/synctools/stacks/reconstruction/castvolume.py +0 -185
  828. tomwer-1.6.22/src/tomwer/synctools/stacks/reconstruction/dkrefcopy.py +0 -169
  829. tomwer-1.6.22/src/tomwer/synctools/stacks/reconstruction/nabu.py +0 -185
  830. tomwer-1.6.22/src/tomwer/synctools/stacks/reconstruction/normalization.py +0 -111
  831. tomwer-1.6.22/src/tomwer/synctools/stacks/reconstruction/saaxis.py +0 -157
  832. tomwer-1.6.22/src/tomwer/synctools/stacks/reconstruction/sadeltabeta.py +0 -158
  833. tomwer-1.6.22/src/tomwer/synctools/tests/test_darkRefs.py +0 -399
  834. tomwer-1.6.22/src/tomwer/synctools/tests/test_foldertransfer.py +0 -359
  835. tomwer-1.6.22/src/tomwer/synctools/utils/scanstages.py +0 -178
  836. tomwer-1.6.22/src/tomwer/tasks/script/python.py +0 -50
  837. tomwer-1.6.22/src/tomwer/tasks/visualization/volume_viewer.py +0 -55
  838. tomwer-1.6.22/src/tomwer/tests/conftest.py +0 -85
  839. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/cluster/tests/test_future_supervisorow.py +0 -48
  840. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/cluster/tests/test_slurm_clusterow.py +0 -40
  841. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_data_validator.py +0 -55
  842. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_datadiscovery.py +0 -129
  843. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_datalistener.py +0 -28
  844. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_dataselector.py +0 -69
  845. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_datawatcher.py +0 -411
  846. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_emailow.py +0 -29
  847. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_notifier.py +0 -24
  848. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_nxtomo_concatenate_ow.py +0 -64
  849. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_nxtomomill.py +0 -133
  850. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_reduce_dark_flat_selector.py +0 -40
  851. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_singletomoobj.py +0 -40
  852. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_timerow.py +0 -25
  853. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_volume_selector.py +0 -69
  854. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_dark_flat_patch.py +0 -50
  855. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_nxtomo_editor.py +0 -155
  856. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/other/tests/test_pythonscript.py +0 -31
  857. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_axis.py +0 -199
  858. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_cast_volumeow.py +0 -58
  859. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_dark_refs_widget.py +0 -136
  860. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_delta_beta_selector.py +0 -15
  861. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_i_norm.py +0 -157
  862. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_nabu_helical_prepare_weights_double.py +0 -20
  863. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_nabu_volume.py +0 -74
  864. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_nabu_widget.py +0 -107
  865. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_sa_delta_beta.py +0 -144
  866. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/reconstruction/tests/test_saaxis.py +0 -159
  867. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/stitching/tests/test_zstitching.py +0 -313
  868. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/test_darkref.py +0 -216
  869. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/test_foldertransfert.py +0 -105
  870. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_dataviewerow.py +0 -57
  871. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_diffviewerow.py +0 -39
  872. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_nxtomo_metadata_viewer.py +0 -29
  873. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_radio_stackow.py +0 -31
  874. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_sample_movedow.py +0 -46
  875. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_sinogram_viewerow.py +0 -31
  876. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_slice_stackow.py +0 -31
  877. tomwer-1.6.22/src/tomwer/tests/orangecontrib/tomwer/widgets/visualization/tests/test_volume_viewerow.py +0 -51
  878. tomwer-1.6.22/src/tomwer/tests/test_ewoks/test_conversion.py +0 -103
  879. tomwer-1.6.22/src/tomwer/tests/test_ewoks/test_single_node_execution.py +0 -87
  880. tomwer-1.6.22/src/tomwer/tests/test_ewoks/test_workflows.py +0 -134
  881. tomwer-1.6.22/src/tomwer/tests/test_scripts.py +0 -161
  882. tomwer-1.6.22/src/tomwer/tests/test_utils.py +0 -49
  883. tomwer-1.6.22/src/tomwer/utils.py +0 -222
  884. tomwer-1.6.22/src/tomwer/version.py +0 -134
  885. tomwer-1.6.22/src/tomwer.egg-info/PKG-INFO +0 -202
  886. tomwer-1.6.22/src/tomwer.egg-info/SOURCES.txt +0 -994
  887. tomwer-1.6.22/src/tomwer.egg-info/pkg_info +0 -205
  888. tomwer-1.6.22/src/tomwer.egg-info/requires.txt +0 -81
  889. tomwer-1.6.22/src/tomwer.egg-info/sources.txt +0 -1030
  890. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/LICENSE +0 -0
  891. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/setup.cfg +0 -0
  892. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/orange/__init__.py +0 -0
  893. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/orange/settings.py +0 -0
  894. {tomwer-1.6.22/src/orangecontrib/tomwer/tests → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/orange/task_widgets}/__init__.py +0 -0
  895. {tomwer-1.6.22/src/orangecontrib/tomwer/tutorials → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tests}/__init__.py +0 -0
  896. {tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/id16b → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials}/__init__.py +0 -0
  897. /tomwer-1.6.22/src/orangecontrib/tomwer/tutorials/darks and flats copy - method 2.ows → /tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/copy_reduced_darks_and_flats_meth2.ows +0 -0
  898. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/tutorials/hello_world_python_script.ows +0 -0
  899. {tomwer-1.6.22/src/orangecontrib/tomwer/widgets/cluster/tests → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/tutorials/id16b}/__init__.py +0 -0
  900. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/__init__.py +0 -0
  901. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/cluster/__init__.py +0 -0
  902. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/cluster/icons/slurm.png +0 -0
  903. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/cluster/icons/slurm.svg +0 -0
  904. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.png +0 -0
  905. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.svg +0 -0
  906. {tomwer-1.6.22/src/orangecontrib/tomwer/widgets/control → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/cluster}/tests/__init__.py +0 -0
  907. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/AdvancementOW.py +0 -0
  908. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/__init__.py +0 -0
  909. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/advancement.png +0 -0
  910. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/advancement.svg +0 -0
  911. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/blissdata_listener.png +0 -0
  912. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/blissdata_listener.svg +0 -0
  913. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/concatenate_nxtomos.png +0 -0
  914. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/concatenate_nxtomos.svg +0 -0
  915. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/datadiscover.png +0 -0
  916. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/datadiscover.svg +0 -0
  917. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/datalistener.png +0 -0
  918. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/edf2nx.png +0 -0
  919. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/edf2nx.svg +0 -0
  920. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/email.png +0 -0
  921. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/email.svg +0 -0
  922. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/esrf.png +0 -0
  923. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/image_key_upgrader.png +0 -0
  924. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/namefilter.png +0 -0
  925. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/namefilter.svg +0 -0
  926. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/notification.png +0 -0
  927. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/notification.svg +0 -0
  928. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/nxtomomill.png +0 -0
  929. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/nxtomomill.svg +0 -0
  930. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/progress.svg +0 -0
  931. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/reduced_darkflat_selector.png +0 -0
  932. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/reduced_darkflat_selector.svg +0 -0
  933. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/scanlist.svg +0 -0
  934. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/scanselector.png +0 -0
  935. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/scanselector.svg +0 -0
  936. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/single_tomo_obj.png +0 -0
  937. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/single_tomo_obj.svg +0 -0
  938. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/time.png +0 -0
  939. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/tomoobjseries.png +0 -0
  940. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/tomoobjseries.svg +0 -0
  941. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/tomwer.png +0 -0
  942. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/validator.png +0 -0
  943. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/validatorcrack.png +0 -0
  944. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/volumeselector.png +0 -0
  945. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/volumeselector.svg +0 -0
  946. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/volumesymlink.png +0 -0
  947. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/control/icons/volumesymlink.svg +0 -0
  948. {tomwer-1.6.22/src/orangecontrib/tomwer/widgets/debugtools → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/control}/tests/__init__.py +0 -0
  949. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/dataportal/__init__.py +0 -0
  950. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/dataportal/icons/publish_processed_data.png +0 -0
  951. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/dataportal/icons/publish_processed_data.svg +0 -0
  952. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py +0 -0
  953. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/debugtools/ObjectInspectorOW.py +0 -0
  954. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/debugtools/__init__.py +0 -0
  955. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/debugtools/icons/hammer.png +0 -0
  956. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/debugtools/icons/hammer.svg +0 -0
  957. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/debugtools/icons/inspector.png +0 -0
  958. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/debugtools/icons/inspector.svg +0 -0
  959. {tomwer-1.6.22/src/orangecontrib/tomwer/widgets/edit → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/debugtools}/tests/__init__.py +0 -0
  960. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/deprecated/__init__.py +0 -0
  961. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/deprecated/_volume_viewer.py +0 -0
  962. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/deprecated/icons/deprecated_volume_viewer.png +0 -0
  963. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/deprecated/icons/deprecated_volume_viewer.svg +0 -0
  964. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/edit/__init__.py +0 -0
  965. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/edit/icons/image_key_editor.png +0 -0
  966. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/edit/icons/image_key_editor.svg +0 -0
  967. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.png +0 -0
  968. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.svg +0 -0
  969. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.png +0 -0
  970. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.svg +0 -0
  971. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.png +0 -0
  972. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.svg +0 -0
  973. {tomwer-1.6.22/src/orangecontrib/tomwer/widgets/other → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/edit}/tests/__init__.py +0 -0
  974. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/deprecated.png +0 -0
  975. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer.png +0 -0
  976. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_build.png +0 -0
  977. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_build.svg +0 -0
  978. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_cluster.png +0 -0
  979. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_cluster.svg +0 -0
  980. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_control.png +0 -0
  981. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_control.svg +0 -0
  982. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_data_portal.png +0 -0
  983. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_data_portal.svg +0 -0
  984. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_debug_tools.png +0 -0
  985. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_debug_tools.svg +0 -0
  986. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_edit.png +0 -0
  987. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_edit.svg +0 -0
  988. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_other.png +0 -0
  989. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_other.svg +0 -0
  990. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_stitching.png +0 -0
  991. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_stitching.svg +0 -0
  992. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_visu.png +0 -0
  993. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/icons/tomwer_visu.svg +0 -0
  994. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/other/TomoObjsHub.py +0 -0
  995. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/other/__init__.py +0 -0
  996. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/other/icons/PythonScript.svg +0 -0
  997. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/other/icons/hub.png +0 -0
  998. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/other/icons/hub.svg +0 -0
  999. {tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/other}/tests/__init__.py +0 -0
  1000. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/__init__.py +0 -0
  1001. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/axis.png +0 -0
  1002. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/axis.svg +0 -0
  1003. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/bricks.png +0 -0
  1004. /tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/icons/darkref.png → /tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/darkflat.png +0 -0
  1005. /tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/icons/darkref.svg → /tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/darkflat.svg +0 -0
  1006. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.png +0 -0
  1007. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.svg +0 -0
  1008. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/esrf.png +0 -0
  1009. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_cast.png +0 -0
  1010. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_cast.svg +0 -0
  1011. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_prepare_weights_double.png +0 -0
  1012. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_prepare_weights_double.svg +0 -0
  1013. /tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.svg → /tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_settings.svg +0 -0
  1014. /tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_3d.png → /tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_volume.png +0 -0
  1015. /tomwer-1.6.22/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_3d.svg → /tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_volume.svg +0 -0
  1016. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/norm_I.png +0 -0
  1017. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/norm_I.svg +0 -0
  1018. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/refCopy.png +0 -0
  1019. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/refCopy.svg +0 -0
  1020. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/saaxis.png +0 -0
  1021. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/saaxis.svg +0 -0
  1022. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.png +0 -0
  1023. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.svg +0 -0
  1024. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/tomogui.png +0 -0
  1025. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/reconstruction/icons/tomwer.png +0 -0
  1026. {tomwer-1.6.22/src/orangecontrib/tomwer/widgets/stitching → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/reconstruction}/tests/__init__.py +0 -0
  1027. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/stitching/ZStitchingConfigOW.py +0 -0
  1028. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/stitching/__init__.py +0 -0
  1029. {tomwer-1.6.22/src/orangecontrib/tomwer/widgets → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/stitching}/tests/__init__.py +0 -0
  1030. {tomwer-1.6.22/src/orangecontrib/tomwer/widgets/visualization → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets}/tests/__init__.py +0 -0
  1031. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py +0 -0
  1032. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/__init__.py +0 -0
  1033. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/diff.png +0 -0
  1034. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/diff.svg +0 -0
  1035. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/esrf.png +0 -0
  1036. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/eye.png +0 -0
  1037. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/eyecrack.png +0 -0
  1038. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.png +0 -0
  1039. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.svg +0 -0
  1040. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/radiosstack.png +0 -0
  1041. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/radiosstack.svg +0 -0
  1042. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/sampleMoved.png +0 -0
  1043. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/sampleMoved.svg +0 -0
  1044. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/sinogramviewer.png +0 -0
  1045. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/slicesstack.png +0 -0
  1046. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/slicesstack.svg +0 -0
  1047. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/tomwer.png +0 -0
  1048. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.png +0 -0
  1049. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.svg +0 -0
  1050. {tomwer-1.6.22/src/tomwer/app/canvas_launcher → tomwer-2.0.0.dev0/src/orangecontrib/tomwer/widgets/visualization/tests}/__init__.py +0 -0
  1051. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/canvas.py +0 -0
  1052. {tomwer-1.6.22/src/tomwer/app/stitching → tomwer-2.0.0.dev0/src/tomwer/app/canvas_launcher}/__init__.py +0 -0
  1053. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/canvas_launcher/environ.py +0 -0
  1054. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/canvas_launcher/splash.py +0 -0
  1055. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/diffframe.py +0 -0
  1056. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/radiostack.py +0 -0
  1057. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/samplemoved.py +0 -0
  1058. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/scanviewer.py +0 -0
  1059. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/sinogramviewer.py +0 -0
  1060. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/slicestack.py +0 -0
  1061. {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/app/stitching}/__init__.py +0 -0
  1062. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/ystitching.py +0 -0
  1063. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/app/zstitching.py +0 -0
  1064. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/cluster/__init__.py +0 -0
  1065. {tomwer-1.6.22/src/tomwer/core/process/cluster → tomwer-2.0.0.dev0/src/tomwer/core/control}/__init__.py +0 -0
  1066. {tomwer-1.6.22/src/tomwer/core/process/conditions → tomwer-2.0.0.dev0/src/tomwer/core/control/datawatcher}/__init__.py +0 -0
  1067. {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/core}/control/datawatcher/status.py +0 -0
  1068. {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/core}/drac/binning.py +0 -0
  1069. {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/core}/drac/gallery.py +0 -0
  1070. {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/core}/drac/output.py +0 -0
  1071. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/futureobject.py +0 -0
  1072. {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/core}/reconstruction/__init__.py +0 -0
  1073. {tomwer-1.6.22/src/tomwer/core/process/control → tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/cor}/__init__.py +0 -0
  1074. {tomwer-1.6.22/src/tomwer/core/process/reconstruction/axis → tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/cor}/projectiontype.py +0 -0
  1075. {tomwer-1.6.22/src/tomwer/core/process/reconstruction/axis → tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/cor}/side.py +0 -0
  1076. {tomwer-1.6.22/src/tomwer/core/process/control/tests → tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/darkflat}/__init__.py +0 -0
  1077. {tomwer-1.6.22/src/tomwer/core/process/reconstruction/darkref → tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/darkflat}/settings.py +0 -0
  1078. {tomwer-1.6.22/src/tomwer/core/process/drac → tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu}/__init__.py +0 -0
  1079. {tomwer-1.6.22/src/tomwer/core/process/edit → tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/nabu/slice}/__init__.py +0 -0
  1080. {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/core}/reconstruction/nabu/target.py +0 -0
  1081. {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/core}/reconstruction/paramsbase.py +0 -0
  1082. {tomwer-1.6.22/src/tomwer/core/process/reconstruction/darkref → tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/tests}/__init__.py +0 -0
  1083. {tomwer-1.6.22/src/tomwer/core/process/reconstruction/nabu → tomwer-2.0.0.dev0/src/tomwer/core/reconstruction/utils}/__init__.py +0 -0
  1084. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/resourcemanager.py +0 -0
  1085. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/scan/__init__.py +0 -0
  1086. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/scan/scantype.py +0 -0
  1087. {tomwer-1.6.22/src/tomwer/core/process/reconstruction → tomwer-2.0.0.dev0/src/tomwer/core/scan}/tests/__init__.py +0 -0
  1088. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/scan/tests/test_edf.py +0 -0
  1089. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/signal.py +0 -0
  1090. {tomwer-1.6.22/src/tomwer/core/process/reconstruction/utils → tomwer-2.0.0.dev0/src/tomwer/core/tests}/__init__.py +0 -0
  1091. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/__init__.py +0 -0
  1092. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/char.py +0 -0
  1093. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/deprecation.py +0 -0
  1094. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/dictutils.py +0 -0
  1095. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/ftseriesutils.py +0 -0
  1096. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/gpu.py +0 -0
  1097. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/image.py +0 -0
  1098. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/normalization.py +0 -0
  1099. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/resource.py +0 -0
  1100. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/slurm.py +0 -0
  1101. {tomwer-1.6.22/src/tomwer/core/process/script → tomwer-2.0.0.dev0/src/tomwer/core/utils/tests}/__init__.py +0 -0
  1102. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/tests/test_image.py +0 -0
  1103. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/tests/test_nxtomo.py +0 -0
  1104. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/tests/test_scan_utils.py +0 -0
  1105. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/tests/test_time.py +0 -0
  1106. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/threads.py +0 -0
  1107. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/time.py +0 -0
  1108. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/utils/volumeutils.py +0 -0
  1109. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/volume/__init__.py +0 -0
  1110. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/volume/edfvolume.py +0 -0
  1111. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/volume/jp2kvolume.py +0 -0
  1112. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/volume/rawvolume.py +0 -0
  1113. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/volume/tests/test_volumes.py +0 -0
  1114. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/volume/tiffvolume.py +0 -0
  1115. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/core/volume/volumebase.py +0 -0
  1116. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/__init__.py +0 -0
  1117. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/cluster/__init__.py +0 -0
  1118. {tomwer-1.6.22/src/tomwer/core/process/stitching → tomwer-2.0.0.dev0/src/tomwer/gui/cluster/tests}/__init__.py +0 -0
  1119. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/conditions/__init__.py +0 -0
  1120. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/configuration/__init__.py +0 -0
  1121. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/configuration/action.py +0 -0
  1122. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/configuration/level.py +0 -0
  1123. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/__init__.py +0 -0
  1124. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/_host.py +0 -0
  1125. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/actions.py +0 -0
  1126. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/datareacheractions.py +0 -0
  1127. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/history.py +0 -0
  1128. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/nxtomomill.py +0 -0
  1129. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/scanselectorwidget.py +0 -0
  1130. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/selectorwidgetbase.py +0 -0
  1131. {tomwer-1.6.22/src/tomwer/core/process/tests → tomwer-2.0.0.dev0/src/tomwer/gui/control/series}/__init__.py +0 -0
  1132. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/series/nxtomoconcatenate.py +0 -0
  1133. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/series/seriescreator.py +0 -0
  1134. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/series/serieswaiter.py +0 -0
  1135. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/series/test/test_creator.py +0 -0
  1136. {tomwer-1.6.22/src/tomwer/core/process/visualization → tomwer-2.0.0.dev0/src/tomwer/gui/control/tests}/__init__.py +0 -0
  1137. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/tests/test_datalist.py +0 -0
  1138. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/tests/test_datavalidator.py +0 -0
  1139. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/tests/test_inputwidget.py +0 -0
  1140. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/tests/test_scan_observations.py +0 -0
  1141. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/tests/test_scanselector.py +0 -0
  1142. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/tests/test_single_tomo_obj.py +0 -0
  1143. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/tests/test_volume_dialog.py +0 -0
  1144. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/tests/test_volumeselector.py +0 -0
  1145. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/tomoobjdisplaymode.py +0 -0
  1146. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/control/volumeselectorwidget.py +0 -0
  1147. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/dataportal/__init__.py +0 -0
  1148. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/dataportal/createscreenshots.py +0 -0
  1149. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/dataportal/outputformat.py +0 -0
  1150. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/dataportal/publish.py +0 -0
  1151. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/dataportal/tests/test_create_screenshots_gui.py +0 -0
  1152. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/dataportal/tests/test_gallery_gui.py +0 -0
  1153. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/debugtools/__init__.py +0 -0
  1154. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/debugtools/objectinspector.py +0 -0
  1155. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/dialog/QDataDialog.py +0 -0
  1156. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/dialog/QVolumeDialog.py +0 -0
  1157. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/dialog/__init__.py +0 -0
  1158. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/edit/__init__.py +0 -0
  1159. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/edit/nxtomowarmer.py +0 -0
  1160. {tomwer-1.6.22/src/tomwer/core/scan → tomwer-2.0.0.dev0/src/tomwer/gui/edit}/tests/__init__.py +0 -0
  1161. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/edit/tests/test_image_key_editor.py +0 -0
  1162. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/fonts.py +0 -0
  1163. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/illustrations.py +0 -0
  1164. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/metadataloader.py +0 -0
  1165. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/qconfigfile.py +0 -0
  1166. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/reconstruction/__init__.py +0 -0
  1167. {tomwer-1.6.22/src/tomwer/gui/reconstruction/axis → tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/cor}/CompareImages.py +0 -0
  1168. {tomwer-1.6.22/src/tomwer/core/tests → tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/darkflat}/__init__.py +0 -0
  1169. {tomwer-1.6.22/src/tomwer/core/utils/tests → tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu}/__init__.py +0 -0
  1170. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/reconstruction/nabu/check.py +0 -0
  1171. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/reconstruction/nabu/nabuconfig/__init__.py +0 -0
  1172. {tomwer-1.6.22/src/tomwer/gui/cluster → tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/nabuconfig}/tests/__init__.py +0 -0
  1173. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/reconstruction/nabu/slurm.py +0 -0
  1174. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/reconstruction/nabu/test/test_check.py +0 -0
  1175. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/reconstruction/nabu/test/test_nabu_preprocessing.py +0 -0
  1176. {tomwer-1.6.22/src/tomwer/gui/control/series → tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/nabu/volume}/__init__.py +0 -0
  1177. {tomwer-1.6.22/src/tomwer/gui/control/tests → tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction/scores}/__init__.py +0 -0
  1178. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/reconstruction/scores/control.py +0 -0
  1179. {tomwer-1.6.22/src/tomwer/gui/edit → tomwer-2.0.0.dev0/src/tomwer/gui/reconstruction}/tests/__init__.py +0 -0
  1180. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stackplot.py +0 -0
  1181. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/StitchingOptionsWidget.py +0 -0
  1182. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/StitchingWindow.py +0 -0
  1183. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/__init__.py +0 -0
  1184. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/action.py +0 -0
  1185. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/alignment.py +0 -0
  1186. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/config/_QSpinBox.py +0 -0
  1187. {tomwer-1.6.22/src/tomwer/gui/reconstruction/darkref → tomwer-2.0.0.dev0/src/tomwer/gui/stitching/config}/__init__.py +0 -0
  1188. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/config/_linkInfo.py +0 -0
  1189. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/config/axisparams.py +0 -0
  1190. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/config/output.py +0 -0
  1191. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/config/positionoveraxis.py +0 -0
  1192. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/config/stitchingstrategies.py +0 -0
  1193. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/config/tests/test_axisparams.py +0 -0
  1194. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/preview.py +0 -0
  1195. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/singleaxis.py +0 -0
  1196. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/stitchandbackground.py +0 -0
  1197. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/stitching_raw.py +0 -0
  1198. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/tests/test_ZStitchingWindow.py +0 -0
  1199. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/tests/test_axis_ordered_list.py +0 -0
  1200. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/tests/test_normalization.py +0 -0
  1201. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/tests/test_preview.py +0 -0
  1202. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/tests/test_stitching_raw.py +0 -0
  1203. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/tests/utils.py +0 -0
  1204. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/utils.py +0 -0
  1205. {tomwer-1.6.22/src/tomwer/gui/reconstruction/nabu/nabuconfig/tests → tomwer-2.0.0.dev0/src/tomwer/gui/stitching/z_stitching}/__init__.py +0 -0
  1206. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/stitching/z_stitching/fineestimation.py +0 -0
  1207. {tomwer-1.6.22/src/tomwer/gui/reconstruction/normalization → tomwer-2.0.0.dev0/src/tomwer/gui/tests}/__init__.py +0 -0
  1208. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/tests/test_qfolder_dialog.py +0 -0
  1209. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/__init__.py +0 -0
  1210. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/completer.py +0 -0
  1211. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/host_editor.py +0 -0
  1212. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/lineselector/__init__.py +0 -0
  1213. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/lineselector/lineselector.py +0 -0
  1214. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/qt_utils.py +0 -0
  1215. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/scandescription.py +0 -0
  1216. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/scrollarea.py +0 -0
  1217. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/slider.py +0 -0
  1218. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/splashscreen.py +0 -0
  1219. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/step.py +0 -0
  1220. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/tests/test_completer.py +0 -0
  1221. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/tests/test_host_editor.py +0 -0
  1222. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/tests/test_line_selector.py +0 -0
  1223. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/tests/test_splashscreen.py +0 -0
  1224. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/utils/waiterthread.py +0 -0
  1225. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/TomoPlot2D.py +0 -0
  1226. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/__init__.py +0 -0
  1227. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/diffviewer/__init__.py +0 -0
  1228. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/nxtomometadata.py +0 -0
  1229. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/reconstructionparameters.py +0 -0
  1230. {tomwer-1.6.22/src/tomwer/gui/reconstruction/saaxis → tomwer-2.0.0.dev0/src/tomwer/gui/visualization/test}/__init__.py +0 -0
  1231. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/test/test_diffviewer.py +0 -0
  1232. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py +0 -0
  1233. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/test/test_reconstruction_parameters.py +0 -0
  1234. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/tomoobjoverview.py +0 -0
  1235. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/CoordinateSystemOverlay.py +0 -0
  1236. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/GeometryOrMetadataWidget.py +0 -0
  1237. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/VolumeViewerWindow.py +0 -0
  1238. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/_CrossHairs.py +0 -0
  1239. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/_HorizontalSliderWithBrowser.py +0 -0
  1240. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/_ProcessingOverlay.py +0 -0
  1241. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/_ReconstructionParameters.py +0 -0
  1242. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/_SliceLoader.py +0 -0
  1243. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/_TomoPlot2DSlices.py +0 -0
  1244. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/__init__.py +0 -0
  1245. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/actions/_ColorBarAction.py +0 -0
  1246. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/actions/_ShowAxesAction.py +0 -0
  1247. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/actions/_ShowCoordinateSystemAction.py +0 -0
  1248. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/actions/_ShowCoordinateSystemLabelAction.py +0 -0
  1249. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/actions/_ShowCrosshairsAction.py +0 -0
  1250. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/actions/_ShowPlotToolBarAction.py +0 -0
  1251. {tomwer-1.6.22/src/tomwer/gui/reconstruction/scores → tomwer-2.0.0.dev0/src/tomwer/gui/visualization/volume_viewer/actions}/__init__.py +0 -0
  1252. {tomwer-1.6.22/src/tomwer/gui/reconstruction → tomwer-2.0.0.dev0/src/tomwer/gui/visualization/volume_viewer}/tests/__init__.py +0 -0
  1253. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volume_viewer/tests/test_VolumeViewer.py +0 -0
  1254. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/gui/visualization/volumeoverview.py +0 -0
  1255. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/io/__init__.py +0 -0
  1256. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/io/utils/__init__.py +0 -0
  1257. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/io/utils/h5pyutils.py +0 -0
  1258. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/io/utils/raw_and_processed_data.py +0 -0
  1259. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/io/utils/test/test_raw_and_processed_data.py +0 -0
  1260. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/io/utils/test/test_utils.py +0 -0
  1261. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/io/utils/tomoobj.py +0 -0
  1262. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/io/utils/utils.py +0 -0
  1263. {tomwer-1.6.22/src/tomwer/gui/stitching/config → tomwer-2.0.0.dev0/src/tomwer/model/_common}/__init__.py +0 -0
  1264. {tomwer-1.6.22/src/tomwer/gui/stitching/z_stitching → tomwer-2.0.0.dev0/src/tomwer/model/cluster}/__init__.py +0 -0
  1265. {tomwer-1.6.22/src/tomwer/gui/tests → tomwer-2.0.0.dev0/src/tomwer/model/conditions}/__init__.py +0 -0
  1266. {tomwer-1.6.22/src/tomwer/gui/visualization/test → tomwer-2.0.0.dev0/src/tomwer/model/control}/__init__.py +0 -0
  1267. {tomwer-1.6.22/src/tomwer/gui/visualization/volume_viewer/actions → tomwer-2.0.0.dev0/src/tomwer/model/dataportal}/__init__.py +0 -0
  1268. {tomwer-1.6.22/src/tomwer/gui/visualization/volume_viewer/tests → tomwer-2.0.0.dev0/src/tomwer/model/reconstruction}/__init__.py +0 -0
  1269. {tomwer-1.6.22/src/tomwer/synctools/bliss_sync → tomwer-2.0.0.dev0/src/tomwer/model/visualization}/__init__.py +0 -0
  1270. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/3D_coordinate_system_XY.png +0 -0
  1271. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/3D_coordinate_system_XZ.png +0 -0
  1272. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/3D_coordinate_system_YZ.png +0 -0
  1273. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/Imagej_icon.png +0 -0
  1274. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/a.png +0 -0
  1275. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/a.svg +0 -0
  1276. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/add.png +0 -0
  1277. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/add.svg +0 -0
  1278. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/advanced_user.png +0 -0
  1279. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/advanced_user.svg +0 -0
  1280. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/axis.png +0 -0
  1281. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/axis.svg +0 -0
  1282. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/background.png +0 -0
  1283. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/background.svg +0 -0
  1284. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/basic_user.png +0 -0
  1285. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/basic_user.svg +0 -0
  1286. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/cfg_file_active.png +0 -0
  1287. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/cfg_file_active.svg +0 -0
  1288. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/cfg_file_inactive.png +0 -0
  1289. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/cfg_file_inactive.svg +0 -0
  1290. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/compare_mode_a_minus_b.png +0 -0
  1291. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/compare_mode_a_minus_b.svg +0 -0
  1292. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/compose.png +0 -0
  1293. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/compose.svg +0 -0
  1294. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/crosshairs.png +0 -0
  1295. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/crosshairs.svg +0 -0
  1296. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/datalistener_activate.png +0 -0
  1297. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/datalistener_activate.svg +0 -0
  1298. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/datalistener_deactivate.png +0 -0
  1299. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/datalistener_deactivate.svg +0 -0
  1300. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/delta_beta.png +0 -0
  1301. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/delta_beta.svg +0 -0
  1302. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/edit_downstream.svg +0 -0
  1303. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/edit_upstream.svg +0 -0
  1304. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/exit.png +0 -0
  1305. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/exit.svg +0 -0
  1306. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/extend_3D_coordinate_system_XY.png +0 -0
  1307. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/extend_3D_coordinate_system_XZ.png +0 -0
  1308. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/extend_3D_coordinate_system_YZ.png +0 -0
  1309. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/free_edition.svg +0 -0
  1310. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/full_screen.png +0 -0
  1311. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/full_screen.svg +0 -0
  1312. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/hammer.png +0 -0
  1313. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/hammer.svg +0 -0
  1314. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/health.png +0 -0
  1315. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/health.svg +0 -0
  1316. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/hide_3D_coordinate_system.png +0 -0
  1317. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/history.png +0 -0
  1318. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/hourglass.npy +0 -0
  1319. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/icat_gallery_opts.png +0 -0
  1320. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/icat_gallery_opts.svg +0 -0
  1321. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/imageNotFound.npy +0 -0
  1322. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/information.png +0 -0
  1323. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/information.svg +0 -0
  1324. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/input.png +0 -0
  1325. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/input.svg +0 -0
  1326. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/invisible.png +0 -0
  1327. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/invisible.svg +0 -0
  1328. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/lineselection.png +0 -0
  1329. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/lineselection.svg +0 -0
  1330. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/link-slash.svg +0 -0
  1331. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/link.svg +0 -0
  1332. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/list_selection.png +0 -0
  1333. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/list_selection.svg +0 -0
  1334. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/locked.png +0 -0
  1335. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/locked.svg +0 -0
  1336. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/log.png +0 -0
  1337. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/log.svg +0 -0
  1338. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/loop.png +0 -0
  1339. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/lr_mirroring.png +0 -0
  1340. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/lr_mirroring.svg +0 -0
  1341. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/minimalistic_user.png +0 -0
  1342. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/minimalistic_user.svg +0 -0
  1343. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/multi-document-save.png +0 -0
  1344. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/multi-document-save.svg +0 -0
  1345. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/nabu.png +0 -0
  1346. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/nabu.svg +0 -0
  1347. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/output.png +0 -0
  1348. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/output.svg +0 -0
  1349. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/parameters.png +0 -0
  1350. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/parameters.svg +0 -0
  1351. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/plot-xleft.png +0 -0
  1352. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/plot-xleft.svg +0 -0
  1353. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/plot-xright.png +0 -0
  1354. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/plot-xright.svg +0 -0
  1355. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/range_selection.png +0 -0
  1356. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/range_selection.svg +0 -0
  1357. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/red_dot.svg +0 -0
  1358. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/reset_3D_coordinate_system.png +0 -0
  1359. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/results.png +0 -0
  1360. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/results.svg +0 -0
  1361. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/rm.png +0 -0
  1362. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/rm.svg +0 -0
  1363. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/roman_four.png +0 -0
  1364. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/roman_four.svg +0 -0
  1365. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/roman_one.png +0 -0
  1366. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/roman_one.svg +0 -0
  1367. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/roman_three.png +0 -0
  1368. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/roman_three.svg +0 -0
  1369. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/roman_two.png +0 -0
  1370. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/roman_two.svg +0 -0
  1371. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/ruler.png +0 -0
  1372. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/ruler.svg +0 -0
  1373. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/search.png +0 -0
  1374. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/search.svg +0 -0
  1375. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/short_description.png +0 -0
  1376. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/short_description.svg +0 -0
  1377. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/show_3D_coordinate_system.png +0 -0
  1378. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/show_coordinate_system_label.svg +0 -0
  1379. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/show_plot_toolbars.svg +0 -0
  1380. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/single_selection.png +0 -0
  1381. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/single_selection.svg +0 -0
  1382. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/sinogram.png +0 -0
  1383. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/slurm.svg +0 -0
  1384. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/slurm_active.png +0 -0
  1385. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/slurm_active.svg +0 -0
  1386. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/slurm_deactive.png +0 -0
  1387. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/slurm_deactive.svg +0 -0
  1388. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/stitching_modeRaw.png +0 -0
  1389. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/stitching_modeRaw.svg +0 -0
  1390. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/stitching_modeRefine.png +0 -0
  1391. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/stitching_modeRefine.svg +0 -0
  1392. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/switch.png +0 -0
  1393. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/tomwer.png +0 -0
  1394. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/tomwer_large.png +0 -0
  1395. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/ud_mirroring.png +0 -0
  1396. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/ud_mirroring.svg +0 -0
  1397. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/unlocked.png +0 -0
  1398. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/unlocked.svg +0 -0
  1399. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/unsharp_mask.png +0 -0
  1400. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/update_stitching_preview.svg +0 -0
  1401. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/url.png +0 -0
  1402. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/url.svg +0 -0
  1403. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/vignettes.png +0 -0
  1404. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/vignettes.svg +0 -0
  1405. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/visible.png +0 -0
  1406. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/visible.svg +0 -0
  1407. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/warning.png +0 -0
  1408. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/icons/warning.svg +0 -0
  1409. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/illustrations/3D_coordinate_system.png +0 -0
  1410. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/illustrations/3D_coordinate_system.svg +0 -0
  1411. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/illustrations/ctf_z1.png +0 -0
  1412. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/illustrations/ctf_z1.svg +0 -0
  1413. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/illustrations/flow_down.png +0 -0
  1414. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/illustrations/flow_down.svg +0 -0
  1415. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/illustrations/flow_right.png +0 -0
  1416. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/illustrations/flow_right.svg +0 -0
  1417. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/gui/illustrations/no_rot.svg +0 -0
  1418. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/resources/video.py +0 -0
  1419. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/synctools/__init__.py +0 -0
  1420. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/synctools/stacks/__init__.py +0 -0
  1421. {tomwer-1.6.22/src/tomwer/synctools/stacks/control → tomwer-2.0.0.dev0/src/tomwer/synctools/stacks/reconstruction}/__init__.py +0 -0
  1422. {tomwer-1.6.22/src/tomwer/synctools/stacks/reconstruction → tomwer-2.0.0.dev0/src/tomwer/tasks/cluster}/__init__.py +0 -0
  1423. {tomwer-1.6.22/src/tomwer/synctools/tests → tomwer-2.0.0.dev0/src/tomwer/tasks/conditions}/__init__.py +0 -0
  1424. {tomwer-1.6.22/src/tomwer/synctools/utils → tomwer-2.0.0.dev0/src/tomwer/tasks/control/tests}/__init__.py +0 -0
  1425. {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/tasks}/control/tomoobjseries.py +0 -0
  1426. {tomwer-1.6.22/src/tomwer/tasks → tomwer-2.0.0.dev0/src/tomwer/tasks/script}/__init__.py +0 -0
  1427. {tomwer-1.6.22/src/tomwer/tasks → tomwer-2.0.0.dev0/src/tomwer/tasks/script}/tests/test_script.py +0 -0
  1428. {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/tasks}/stitching/metadataholder.py +0 -0
  1429. {tomwer-1.6.22/src/tomwer/tasks/script → tomwer-2.0.0.dev0/src/tomwer/tasks/visualization}/__init__.py +0 -0
  1430. {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/tasks}/visualization/diffviewer.py +0 -0
  1431. {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/tasks}/visualization/imagestackviewer.py +0 -0
  1432. {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/tasks}/visualization/radiostack.py +0 -0
  1433. {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/tasks}/visualization/samplemoved.py +0 -0
  1434. {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/tasks}/visualization/sinogramviewer.py +0 -0
  1435. {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/tasks}/visualization/slicestack.py +0 -0
  1436. {tomwer-1.6.22/src/tomwer/core/process → tomwer-2.0.0.dev0/src/tomwer/tasks}/visualization/volumeviewer.py +0 -0
  1437. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/__init__.py +0 -0
  1438. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/app/test_stitching.py +0 -0
  1439. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/datasets.py +0 -0
  1440. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_advancement.py +0 -0
  1441. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/orangecontrib/tomwer/widgets/control/tests/test_tomoobj_series.py +0 -0
  1442. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/orangecontrib/tomwer/widgets/debugtools/tests/test_dataset_generator.py +0 -0
  1443. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/orangecontrib/tomwer/widgets/debugtools/tests/test_object_inspector.py +0 -0
  1444. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_image_key_editor.py +0 -0
  1445. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/orangecontrib/tomwer/widgets/edit/tests/test_image_key_upgrader.py +0 -0
  1446. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/orangecontrib/tomwer/widgets/test_conditions.py +0 -0
  1447. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/tasks/visualization/test_volume_viewer.py +0 -0
  1448. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/tests/utils.py +0 -0
  1449. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/third_part/FrameBrowser.py +0 -0
  1450. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/third_part/OverlayMixIn.py +0 -0
  1451. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer/third_part/qitem_model_resetter.py +0 -0
  1452. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer.egg-info/dependency_links.txt +0 -0
  1453. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer.egg-info/entry_points.txt +0 -0
  1454. {tomwer-1.6.22 → tomwer-2.0.0.dev0}/src/tomwer.egg-info/top_level.txt +0 -0
@@ -0,0 +1,200 @@
1
+ Metadata-Version: 2.4
2
+ Name: tomwer
3
+ Version: 2.0.0.dev0
4
+ Summary: Tomography workflow tools
5
+ Author-email: Henri Payno <henri.payno@esrf.fr>, Pierre Paleo <pierre.paleo@esrf.fr>, Pierre-Olivier Autran <pierre-olivier.autran@esrf.fr>, Jérôme Lesaint <jerome.lesaint@esrf.fr>, Alessandro Mirone <mirone@esrf.fr>
6
+ License: MIT
7
+ Project-URL: Homepage, https://gitlab.esrf.fr/tomotools/tomwer
8
+ Project-URL: Documentation, https://tomotools.gitlab-pages.esrf.fr/tomwer/
9
+ Project-URL: Repository, https://gitlab.esrf.fr/tomotools/tomwer
10
+ Project-URL: Issues, https://gitlab.esrf.fr/tomotools/tomwer/-/issues
11
+ Project-URL: Changelog, https://gitlab.esrf.fr/tomotools/tomwer/-/blob/main/CHANGELOG.rst?ref_type=heads
12
+ Keywords: orange3 add-on,ewoks
13
+ Classifier: Intended Audience :: Education
14
+ Classifier: Intended Audience :: Science/Research
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Environment :: Console
18
+ Classifier: Environment :: X11 Applications :: Qt
19
+ Classifier: Operating System :: POSIX
20
+ Classifier: Natural Language :: English
21
+ Classifier: Topic :: Scientific/Engineering :: Physics
22
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
+ Requires-Python: >=3.10
24
+ Description-Content-Type: text/x-rst
25
+ License-File: LICENSE
26
+ Requires-Dist: numpy
27
+ Requires-Dist: setuptools
28
+ Requires-Dist: psutil
29
+ Requires-Dist: silx[full_no_qt]>=3
30
+ Requires-Dist: tomoscan>=2.4.0dev0
31
+ Requires-Dist: nxtomo>2.0.0dev2
32
+ Requires-Dist: nxtomomill>=2.0.0dev0
33
+ Requires-Dist: processview>=1.5.2
34
+ Requires-Dist: ewokscore
35
+ Requires-Dist: sluurp>=0.4.1
36
+ Requires-Dist: packaging
37
+ Requires-Dist: pint
38
+ Requires-Dist: tqdm
39
+ Requires-Dist: eval_type_backport; python_version < "3.10"
40
+ Requires-Dist: platformdirs
41
+ Requires-Dist: esrf-pathlib
42
+ Provides-Extra: full-base
43
+ Requires-Dist: orange-canvas-core; extra == "full-base"
44
+ Requires-Dist: orange-widget-base; extra == "full-base"
45
+ Requires-Dist: ewokscore; extra == "full-base"
46
+ Requires-Dist: ewoksorange>=3.3.0; extra == "full-base"
47
+ Requires-Dist: fabio; extra == "full-base"
48
+ Requires-Dist: h5py>=3; extra == "full-base"
49
+ Requires-Dist: lxml; extra == "full-base"
50
+ Requires-Dist: scipy; extra == "full-base"
51
+ Requires-Dist: Pillow; extra == "full-base"
52
+ Requires-Dist: glymur<0.14; extra == "full-base"
53
+ Requires-Dist: resource; extra == "full-base"
54
+ Requires-Dist: tifffile; extra == "full-base"
55
+ Requires-Dist: hdf5plugin; extra == "full-base"
56
+ Requires-Dist: pyicat_plus; extra == "full-base"
57
+ Requires-Dist: ewoksnotify[base]; extra == "full-base"
58
+ Requires-Dist: ewoksnotify[icat]; extra == "full-base"
59
+ Requires-Dist: chime; extra == "full-base"
60
+ Requires-Dist: pyicat_plus; extra == "full-base"
61
+ Requires-Dist: blissdata; extra == "full-base"
62
+ Provides-Extra: full-no-cuda
63
+ Requires-Dist: tomwer[full_base]; extra == "full-no-cuda"
64
+ Requires-Dist: nabu>=2024.2.0; extra == "full-no-cuda"
65
+ Requires-Dist: PyQt6; extra == "full-no-cuda"
66
+ Requires-Dist: qtawesome; extra == "full-no-cuda"
67
+ Provides-Extra: full-no-qt
68
+ Requires-Dist: tomwer[full_base]; extra == "full-no-qt"
69
+ Requires-Dist: nabu[full]>=2024.2.0; extra == "full-no-qt"
70
+ Requires-Dist: pycuda<2024.1.1; extra == "full-no-qt"
71
+ Requires-Dist: scikit-cuda; extra == "full-no-qt"
72
+ Requires-Dist: PyQt6; extra == "full-no-qt"
73
+ Requires-Dist: qtawesome; extra == "full-no-qt"
74
+ Provides-Extra: full
75
+ Requires-Dist: tomwer[full_no_qt]; extra == "full"
76
+ Requires-Dist: PyQt6; extra == "full"
77
+ Provides-Extra: doc
78
+ Requires-Dist: tomwer[full_no_cuda]; extra == "doc"
79
+ Requires-Dist: Sphinx>=4.0.0; extra == "doc"
80
+ Requires-Dist: nbsphinx; extra == "doc"
81
+ Requires-Dist: pandoc; extra == "doc"
82
+ Requires-Dist: jupyterlab; extra == "doc"
83
+ Requires-Dist: pydata_sphinx_theme; extra == "doc"
84
+ Requires-Dist: sphinx-design; extra == "doc"
85
+ Requires-Dist: sphinx-autodoc-typehints; extra == "doc"
86
+ Requires-Dist: sphinxcontrib-programoutput; extra == "doc"
87
+ Requires-Dist: sphinxcontrib-youtube; extra == "doc"
88
+ Requires-Dist: myst-parser; extra == "doc"
89
+ Requires-Dist: nb_extension_tagstyler; extra == "doc"
90
+ Requires-Dist: ewokssphinx; extra == "doc"
91
+ Provides-Extra: dev-spec
92
+ Requires-Dist: black; extra == "dev-spec"
93
+ Requires-Dist: flake8; extra == "dev-spec"
94
+ Requires-Dist: timeout-decorator; extra == "dev-spec"
95
+ Requires-Dist: pyopencl; extra == "dev-spec"
96
+ Provides-Extra: dev
97
+ Requires-Dist: tomwer[full]; extra == "dev"
98
+ Requires-Dist: tomwer[dev_spec]; extra == "dev"
99
+ Provides-Extra: dev-no-cuda
100
+ Requires-Dist: tomwer[full_no_cuda]; extra == "dev-no-cuda"
101
+ Requires-Dist: tomwer[dev_spec]; extra == "dev-no-cuda"
102
+ Provides-Extra: test
103
+ Requires-Dist: tomwer[full_no_cuda]; extra == "test"
104
+ Requires-Dist: pytest-asyncio; extra == "test"
105
+ Requires-Dist: tomoscan[test]>=2.4.0dev0; extra == "test"
106
+ Dynamic: license-file
107
+
108
+ .. image:: doc/img/tomwer.png
109
+ :alt: Tomwer Logo
110
+ :align: left
111
+ :width: 400px
112
+
113
+ Introduction
114
+ ------------
115
+
116
+ **Tomwer** provides tools to automate acquisition and reconstruction processes for tomography. The package includes:
117
+
118
+ - A library to individually access each acquisition process.
119
+ - Graphical User Interface (GUI) applications to control key processes such as reconstruction and data transfer, which can be executed as standalone applications.
120
+ - An Orange add-on to help users define custom workflows (`Orange3 <http://orange.biolab.si>`_).
121
+
122
+ Tomwer relies on `Nabu <https://gitlab.esrf.fr/tomotools/nabu>`_ for tomographic reconstruction.
123
+
124
+ **Note**: Currently, the software is only compatible with Linux.
125
+
126
+ Documentation
127
+ -------------
128
+
129
+ The documentation is available here:
130
+
131
+ `Stable Version <https://tomwer.readthedocs.io/en/stable/>`_
132
+
133
+ `Latest Version <https://tomotools.gitlab-pages.esrf.fr/tomwer/>`_
134
+
135
+ Installation
136
+ ------------
137
+
138
+ To install Tomwer with all features:
139
+
140
+ .. code-block:: bash
141
+
142
+ pip install tomwer[full]
143
+
144
+ Alternatively, you can install the latest development branch from the repository:
145
+
146
+ .. code-block:: bash
147
+
148
+ pip install git+https://gitlab.esrf.fr/tomotools/tomwer/#egg=tomwer[full]
149
+
150
+
151
+ Launching Applications
152
+ -----------------------
153
+
154
+ After installation, Tomwer includes several applications. You can launch an application by running:
155
+
156
+ .. code-block:: bash
157
+
158
+ tomwer <appName> [options]
159
+
160
+ - If you run `tomwer` without arguments, a manual page will be displayed.
161
+ - For application-specific help, run:
162
+
163
+ .. code-block:: bash
164
+
165
+ tomwer <appName> --help
166
+
167
+
168
+ Tomwer Canvas - Orange Canvas
169
+ -----------------------------
170
+
171
+ You can launch the Orange canvas to create workflows using the available building blocks:
172
+
173
+ .. code-block:: bash
174
+
175
+ tomwer canvas
176
+
177
+ - Alternatively, you can use `orange-canvas`.
178
+ - If you're using a virtual environment, remember to activate it:
179
+
180
+ .. code-block:: bash
181
+
182
+ source myvirtualenv/bin/activate
183
+
184
+
185
+ Building Documentation
186
+ -----------------------
187
+
188
+ To build the documentation:
189
+
190
+ .. code-block:: bash
191
+
192
+ sphinx-build doc build/html
193
+
194
+ The documentation will be generated in `doc/build/html`, and the entry point is `index.html`. To view the documentation in a browser:
195
+
196
+ .. code-block:: bash
197
+
198
+ firefox build/html/index.html
199
+
200
+ **Note**: Building the documentation requires `sphinx` to be installed, which is not a hard dependency of Tomwer. If needed, install it separately.
@@ -0,0 +1,93 @@
1
+ .. image:: doc/img/tomwer.png
2
+ :alt: Tomwer Logo
3
+ :align: left
4
+ :width: 400px
5
+
6
+ Introduction
7
+ ------------
8
+
9
+ **Tomwer** provides tools to automate acquisition and reconstruction processes for tomography. The package includes:
10
+
11
+ - A library to individually access each acquisition process.
12
+ - Graphical User Interface (GUI) applications to control key processes such as reconstruction and data transfer, which can be executed as standalone applications.
13
+ - An Orange add-on to help users define custom workflows (`Orange3 <http://orange.biolab.si>`_).
14
+
15
+ Tomwer relies on `Nabu <https://gitlab.esrf.fr/tomotools/nabu>`_ for tomographic reconstruction.
16
+
17
+ **Note**: Currently, the software is only compatible with Linux.
18
+
19
+ Documentation
20
+ -------------
21
+
22
+ The documentation is available here:
23
+
24
+ `Stable Version <https://tomwer.readthedocs.io/en/stable/>`_
25
+
26
+ `Latest Version <https://tomotools.gitlab-pages.esrf.fr/tomwer/>`_
27
+
28
+ Installation
29
+ ------------
30
+
31
+ To install Tomwer with all features:
32
+
33
+ .. code-block:: bash
34
+
35
+ pip install tomwer[full]
36
+
37
+ Alternatively, you can install the latest development branch from the repository:
38
+
39
+ .. code-block:: bash
40
+
41
+ pip install git+https://gitlab.esrf.fr/tomotools/tomwer/#egg=tomwer[full]
42
+
43
+
44
+ Launching Applications
45
+ -----------------------
46
+
47
+ After installation, Tomwer includes several applications. You can launch an application by running:
48
+
49
+ .. code-block:: bash
50
+
51
+ tomwer <appName> [options]
52
+
53
+ - If you run `tomwer` without arguments, a manual page will be displayed.
54
+ - For application-specific help, run:
55
+
56
+ .. code-block:: bash
57
+
58
+ tomwer <appName> --help
59
+
60
+
61
+ Tomwer Canvas - Orange Canvas
62
+ -----------------------------
63
+
64
+ You can launch the Orange canvas to create workflows using the available building blocks:
65
+
66
+ .. code-block:: bash
67
+
68
+ tomwer canvas
69
+
70
+ - Alternatively, you can use `orange-canvas`.
71
+ - If you're using a virtual environment, remember to activate it:
72
+
73
+ .. code-block:: bash
74
+
75
+ source myvirtualenv/bin/activate
76
+
77
+
78
+ Building Documentation
79
+ -----------------------
80
+
81
+ To build the documentation:
82
+
83
+ .. code-block:: bash
84
+
85
+ sphinx-build doc build/html
86
+
87
+ The documentation will be generated in `doc/build/html`, and the entry point is `index.html`. To view the documentation in a browser:
88
+
89
+ .. code-block:: bash
90
+
91
+ firefox build/html/index.html
92
+
93
+ **Note**: Building the documentation requires `sphinx` to be installed, which is not a hard dependency of Tomwer. If needed, install it separately.
@@ -0,0 +1,198 @@
1
+ [project]
2
+ name = "tomwer"
3
+ dynamic = ["version"]
4
+ authors = [
5
+ { name = "Henri Payno", email = "henri.payno@esrf.fr" },
6
+ { name = "Pierre Paleo", email = "pierre.paleo@esrf.fr" },
7
+ { name = "Pierre-Olivier Autran", email = "pierre-olivier.autran@esrf.fr" },
8
+ { name = "Jérôme Lesaint", email = "jerome.lesaint@esrf.fr" },
9
+ { name = "Alessandro Mirone", email = "mirone@esrf.fr" }
10
+ ]
11
+ description = "Tomography workflow tools"
12
+ readme = { file = "README.rst", content-type = "text/x-rst" }
13
+ license = { text = "MIT" }
14
+ requires-python = ">=3.10"
15
+ keywords = ["orange3 add-on", "ewoks"]
16
+ classifiers = [
17
+ "Intended Audience :: Education",
18
+ "Intended Audience :: Science/Research",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Programming Language :: Python :: 3",
21
+ "Environment :: Console",
22
+ "Environment :: X11 Applications :: Qt",
23
+ "Operating System :: POSIX",
24
+ "Natural Language :: English",
25
+ "Topic :: Scientific/Engineering :: Physics",
26
+ "Topic :: Software Development :: Libraries :: Python Modules"
27
+ ]
28
+ dependencies = [
29
+ "numpy",
30
+ "setuptools",
31
+ "psutil",
32
+ "silx[full_no_qt]>=3",
33
+ "tomoscan>=2.4.0dev0",
34
+ "nxtomo>2.0.0dev2",
35
+ "nxtomomill>=2.0.0dev0",
36
+ "processview>=1.5.2",
37
+ "ewokscore",
38
+ "sluurp>=0.4.1",
39
+ "packaging",
40
+ "pint",
41
+ "tqdm",
42
+ "eval_type_backport; python_version < '3.10'",
43
+ "platformdirs",
44
+ "esrf-pathlib",
45
+ ]
46
+
47
+ [project.optional-dependencies]
48
+ full_base = [
49
+ "orange-canvas-core",
50
+ "orange-widget-base",
51
+ "ewokscore",
52
+ "ewoksorange>=3.3.0",
53
+ "fabio",
54
+ "h5py>=3",
55
+ "lxml",
56
+ "scipy",
57
+ "Pillow",
58
+ "glymur<0.14", # for python3.9 until https://github.com/quintusdias/glymur/issues/688 is fixed
59
+ "resource",
60
+ "tifffile",
61
+ "hdf5plugin",
62
+ "pyicat_plus",
63
+ "ewoksnotify[base]", # note: avoid full to let silx determine which Qt binding to use.
64
+ "ewoksnotify[icat]",
65
+ "chime", # to complete ewoksnotify
66
+ "pyicat_plus",
67
+ "blissdata",
68
+ ]
69
+ full_no_cuda = [
70
+ "tomwer[full_base]",
71
+ "nabu>=2024.2.0",
72
+ "PyQt6",
73
+ 'qtawesome', # For icons
74
+ ]
75
+ full_no_qt = [
76
+ "tomwer[full_base]",
77
+ "nabu[full]>=2024.2.0",
78
+ "pycuda<2024.1.1",
79
+ "scikit-cuda",
80
+ "PyQt6",
81
+ 'qtawesome', # For icons
82
+ ]
83
+ full = [
84
+ "tomwer[full_no_qt]",
85
+ "PyQt6",
86
+ ]
87
+ doc = [
88
+ "tomwer[full_no_cuda]",
89
+ "Sphinx>=4.0.0",
90
+ "nbsphinx",
91
+ "pandoc",
92
+ "jupyterlab",
93
+ "pydata_sphinx_theme",
94
+ "sphinx-design",
95
+ "sphinx-autodoc-typehints",
96
+ "sphinxcontrib-programoutput",
97
+ "sphinxcontrib-youtube",
98
+ "myst-parser",
99
+ "nb_extension_tagstyler",
100
+ "ewokssphinx",
101
+ ]
102
+ dev_spec = [
103
+ "black",
104
+ "flake8",
105
+ "timeout-decorator",
106
+ "pyopencl",
107
+ ]
108
+ dev = [
109
+ "tomwer[full]",
110
+ "tomwer[dev_spec]"
111
+ ]
112
+ dev_no_cuda = [
113
+ "tomwer[full_no_cuda]",
114
+ "tomwer[dev_spec]"
115
+ ]
116
+ test = [
117
+ "tomwer[full_no_cuda]",
118
+ "pytest-asyncio",
119
+ "tomoscan[test]>=2.4.0dev0",
120
+ ]
121
+
122
+ [project.urls]
123
+ Homepage = "https://gitlab.esrf.fr/tomotools/tomwer"
124
+ Documentation = "https://tomotools.gitlab-pages.esrf.fr/tomwer/"
125
+ Repository = "https://gitlab.esrf.fr/tomotools/tomwer"
126
+ Issues = "https://gitlab.esrf.fr/tomotools/tomwer/-/issues"
127
+ Changelog = "https://gitlab.esrf.fr/tomotools/tomwer/-/blob/main/CHANGELOG.rst?ref_type=heads"
128
+
129
+ [build-system]
130
+ requires = ["setuptools>=61.0", "wheel", "numpy>=1.12"]
131
+ build-backend = "setuptools.build_meta"
132
+
133
+ [tool.setuptools.dynamic]
134
+ version = { attr = "tomwer.__version__" }
135
+
136
+ [tool.setuptools.packages.find]
137
+ where = ["src"]
138
+
139
+ [project.scripts]
140
+ tomwer = "tomwer.__main__:main"
141
+
142
+ [project.entry-points."orange3.addon"]
143
+ tomwer-add-on = "orangecontrib.tomwer:addon"
144
+
145
+ [project.entry-points."orange.widgets"]
146
+ tomwer = "orangecontrib.tomwer.widgets"
147
+
148
+ [project.entry-points."orangecanvas.examples"]
149
+ tomo_examples = "orangecontrib.tomwer.examples"
150
+
151
+ [project.entry-points."orange.widgets.tutorials"]
152
+ tomo_tutorials = "orangecontrib.tomwer.tutorials"
153
+ tomo_tutorials_id16b = "orangecontrib.tomwer.tutorials.id16b"
154
+
155
+ [project.entry-points."orange.canvas.help"]
156
+ html-index = "orangecontrib.tomwer.widgets:WIDGET_HELP_PATH"
157
+
158
+ [project.entry-points."ewoks.tasks.class"]
159
+ "tomwer.tasks.*.*" = "tomwer"
160
+
161
+ [tool.setuptools.package-data]
162
+ "tomwer.resources" = [
163
+ "gui/icons/*.png",
164
+ "gui/icons/*.svg",
165
+ "gui/icons/*.npy",
166
+ "gui/illustrations/*.svg",
167
+ "gui/illustrations/*.png"
168
+ ]
169
+ "orangecontrib.tomwer" = [
170
+ "tutorials/*.ows",
171
+ "tutorials/id16b/*.ows",
172
+ "widgets/icons/*.png",
173
+ "widgets/icons/*.svg",
174
+ "widgets/cluster/icons/*.png",
175
+ "widgets/cluster/icons/*.svg",
176
+ "widgets/control/icons/*.png",
177
+ "widgets/control/icons/*.svg",
178
+ "widgets/debugtools/icons/*.png",
179
+ "widgets/debugtools/icons/*.svg",
180
+ "widgets/deprecated/icons/*.png",
181
+ "widgets/deprecated/icons/*.svg",
182
+ "widgets/edit/icons/*.png",
183
+ "widgets/edit/icons/*.svg",
184
+ "widgets/dataportal/icons/*.png",
185
+ "widgets/dataportal/icons/*.svg",
186
+ "widgets/reconstruction/icons/*.png",
187
+ "widgets/reconstruction/icons/*.svg",
188
+ "widgets/visualization/icons/*.png",
189
+ "widgets/visualization/icons/*.svg",
190
+ "widgets/other/icons/*.png",
191
+ "widgets/other/icons/*.svg"
192
+ ]
193
+
194
+ [tool.sphinx]
195
+ source-dir = "./doc"
196
+
197
+ [tool.coverage.run]
198
+ omit = ["setup.py", "*/test/*"]
@@ -0,0 +1,10 @@
1
+ """
2
+ (Ewoksorange) Orange add-on for tomography
3
+ """
4
+
5
+ import logging
6
+
7
+ from . import state_summary # noqa F401
8
+
9
+ fabio_logger = logging.getLogger("fabio.edfimage")
10
+ fabio_logger.setLevel(logging.WARNING)
@@ -0,0 +1,9 @@
1
+ from __future__ import annotations
2
+
3
+ from ewokscore.variable import Variable
4
+
5
+
6
+ def unpack_variable(obj: Variable):
7
+ if isinstance(obj, Variable):
8
+ return obj.value
9
+ return obj
@@ -0,0 +1,79 @@
1
+ from __future__ import annotations
2
+
3
+ import functools
4
+ import logging
5
+
6
+ from orangewidget.widget import OWBaseWidget
7
+ from processview.core.manager import DatasetState, ProcessManager
8
+ from processview.core.superviseprocess import SuperviseProcess
9
+
10
+ _logger = logging.getLogger(__name__)
11
+
12
+
13
+ class _SuperviseBase(SuperviseProcess):
14
+ """
15
+ MIxIn class for orange widgets that are doing some processing.
16
+ It provides API to:
17
+ * notify the ProcessManager a modification of a dataset / processing state.
18
+ * signal start and stop of a processing.
19
+
20
+ """
21
+
22
+ def __init__(self, process_id=None):
23
+ super().__init__(process_id=process_id)
24
+ self.destroyed.connect(functools.partial(ProcessManager().unregister, self))
25
+
26
+ def setCaption(self, caption):
27
+ self.name = caption
28
+ try:
29
+ ProcessManager().process_renamed(process=self)
30
+ except Exception as e:
31
+ _logger.warning(f"Fail to update process name. Error is {e}")
32
+
33
+ def notify_skip(self, scan, details=None):
34
+ ProcessManager().notify_dataset_state(
35
+ dataset=scan, process=self, state=DatasetState.SKIPPED, details=details
36
+ )
37
+
38
+ def notify_pending(self, scan, details=None):
39
+ ProcessManager().notify_dataset_state(
40
+ dataset=scan, process=self, state=DatasetState.PENDING, details=details
41
+ )
42
+
43
+ def notify_succeed(self, scan, details=None):
44
+ ProcessManager().notify_dataset_state(
45
+ dataset=scan, process=self, state=DatasetState.SUCCEED, details=details
46
+ )
47
+
48
+ def notify_failed(self, scan, details=None):
49
+ ProcessManager().notify_dataset_state(
50
+ dataset=scan, process=self, state=DatasetState.FAILED, details=details
51
+ )
52
+
53
+ def notify_on_going(self, scan, details=None):
54
+ ProcessManager().notify_dataset_state(
55
+ dataset=scan, process=self, state=DatasetState.ON_GOING, details=details
56
+ )
57
+
58
+ def _startProcessing(self, *args, **kwargs):
59
+ self.progressBarInit()
60
+ self.progressBarSet(-1)
61
+
62
+ def _endProcessing(self, *args, **kwargs):
63
+ self.progressBarFinished()
64
+
65
+
66
+ class SuperviseOW(OWBaseWidget, _SuperviseBase, openclass=True):
67
+ """
68
+ A basic OWWidget but registered on the process manager and that can notify processing state to the orange-canvas
69
+ """
70
+
71
+ want_control_area = False
72
+
73
+ def __init__(self, parent, process_id=None):
74
+ OWBaseWidget.__init__(self, parent, process_id=process_id)
75
+ _SuperviseBase.__init__(self, process_id=process_id)
76
+
77
+ def setCaption(self, caption):
78
+ OWBaseWidget.setCaption(self, caption)
79
+ _SuperviseBase.setCaption(self, caption=caption)
@@ -0,0 +1,8 @@
1
+ from ewoksorange.gui.owwidgets.nothread import OWEwoksWidgetNoThread
2
+ from ...orange.managedprocess import _SuperviseBase
3
+
4
+
5
+ class TomwerWidgetNoThread(OWEwoksWidgetNoThread, _SuperviseBase, openclass=True):
6
+ want_main_area = True
7
+ want_control_area = False
8
+ resizing_enabled = True
@@ -0,0 +1,22 @@
1
+ from ewoksorange.gui.owwidgets.threaded import OWEwoksWidgetOneThreadPerRun
2
+ from ...orange.managedprocess import _SuperviseBase
3
+
4
+
5
+ class TomwerWidgetOneThreadPerRun(
6
+ OWEwoksWidgetOneThreadPerRun, _SuperviseBase, openclass=True
7
+ ):
8
+ """
9
+ This widget make sure all input on "data" are triggering the workflow.
10
+
11
+ This is a work around for https://gitlab.esrf.fr/workflow/ewoks/ewoksorange/-/issues/60
12
+
13
+ Task are expected to have "data" as input and define the outputs from the pydantic model.
14
+ """
15
+
16
+ want_main_area = True
17
+ want_control_area = False
18
+ resizing_enabled = True
19
+
20
+ def __init__(self, *args, **kwargs):
21
+ OWEwoksWidgetOneThreadPerRun.__init__(self, *args, **kwargs)
22
+ _SuperviseBase.__init__(self)
@@ -0,0 +1,20 @@
1
+ from ewoksorange.gui.owwidgets.threaded import OWEwoksWidgetWithTaskStack
2
+ from ...orange.managedprocess import _SuperviseBase
3
+
4
+
5
+ class TomwerWidgetWithStack(OWEwoksWidgetWithTaskStack, _SuperviseBase, openclass=True):
6
+
7
+ want_main_area = True
8
+ want_control_area = False
9
+ resizing_enabled = True
10
+
11
+ def __init__(self, parent, process_id=None, *args, **kwargs):
12
+ OWEwoksWidgetWithTaskStack.__init__(self, parent, args, kwargs)
13
+ _SuperviseBase.__init__(self, process_id=process_id)
14
+
15
+ self.task_executor_queue.sigComputationStarted.connect(self._startProcessing)
16
+ self.task_executor_queue.sigComputationEnded.connect(self._endProcessing)
17
+
18
+ def setCaption(self, caption):
19
+ OWEwoksWidgetWithTaskStack.setCaption(self, caption)
20
+ _SuperviseBase.setCaption(self, caption=caption)