tomwer 1.2.8__tar.gz → 1.3.0a0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1032) hide show
  1. tomwer-1.3.0a0/PKG-INFO +286 -0
  2. tomwer-1.3.0a0/orangecontrib/tomwer/tutorials/icat_publication.ows +58 -0
  3. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/__init__.py +64 -0
  4. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py +230 -0
  5. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/control/DataListOW.py +129 -0
  6. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/control/DataSelectorOW.py +145 -0
  7. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +241 -0
  8. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/control/EmailOW.py +82 -0
  9. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/control/NXTomomillOW.py +340 -0
  10. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/control/NXtomoConcatenate.py +196 -0
  11. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/control/NotifierOW.py +127 -0
  12. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/control/VolumeSelector.py +142 -0
  13. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/control/VolumeSymLinkOW.py +182 -0
  14. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py +176 -0
  15. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py +182 -0
  16. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py +133 -0
  17. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py +128 -0
  18. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py +128 -0
  19. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/edit/test/test_nxtomo_editor.py +141 -0
  20. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/icat/PublishProcessedDataOW.py +115 -0
  21. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/icat/RawDataScreenshotCreatorOW.py +98 -0
  22. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/icat/SaveToGalleryAndPublishOW.py +129 -0
  23. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/icat/__init__.py +13 -0
  24. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/icat/icons/add_gallery.png +0 -0
  25. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/icat/icons/add_gallery.svg +82 -0
  26. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/icat/icons/publish_processed_data.png +0 -0
  27. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/icat/icons/publish_processed_data.svg +95 -0
  28. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/icat/icons/raw_screenshots.png +0 -0
  29. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/icat/icons/raw_screenshots.svg +143 -0
  30. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/icons/tomwer_data_portal.png +0 -0
  31. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/icons/tomwer_data_portal.svg +76 -0
  32. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/reconstruction/AxisOW.py +566 -0
  33. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +249 -0
  34. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/reconstruction/NabuHelicalPrepareWeightsDoubleOW.py +179 -0
  35. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/reconstruction/NabuOW.py +330 -0
  36. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py +501 -0
  37. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py +490 -0
  38. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py +410 -0
  39. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py +305 -0
  40. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/visualization/LivesliceOW.py +87 -0
  41. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py +69 -0
  42. tomwer-1.3.0a0/orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py +62 -0
  43. tomwer-1.3.0a0/setup.cfg +162 -0
  44. tomwer-1.3.0a0/tomwer/__main__.py +265 -0
  45. tomwer-1.3.0a0/tomwer/app/canvas.py +63 -0
  46. tomwer-1.3.0a0/tomwer/app/canvas_launcher/config.py +208 -0
  47. tomwer-1.3.0a0/tomwer/app/darkref.py +10 -0
  48. tomwer-1.3.0a0/tomwer/app/darkrefpatch.py +10 -0
  49. tomwer-1.3.0a0/tomwer/app/imagekeyeditor.py +98 -0
  50. tomwer-1.3.0a0/tomwer/app/imagekeyupgrader.py +108 -0
  51. tomwer-1.3.0a0/tomwer/app/intensitynormalization.py +208 -0
  52. tomwer-1.3.0a0/tomwer/app/radiostack.py +93 -0
  53. tomwer-1.3.0a0/tomwer/app/zstitching.py +371 -0
  54. tomwer-1.3.0a0/tomwer/core/cluster/cluster.py +173 -0
  55. tomwer-1.3.0a0/tomwer/core/log/logger.py +130 -0
  56. tomwer-1.3.0a0/tomwer/core/process/conditions/filters.py +239 -0
  57. tomwer-1.3.0a0/tomwer/core/process/control/datalistener/datalistener.py +587 -0
  58. tomwer-1.3.0a0/tomwer/core/process/control/nxtomoconcatenate.py +127 -0
  59. tomwer-1.3.0a0/tomwer/core/process/control/nxtomomill.py +237 -0
  60. tomwer-1.3.0a0/tomwer/core/process/control/scantransfer.py +720 -0
  61. tomwer-1.3.0a0/tomwer/core/process/control/scanvalidator.py +286 -0
  62. tomwer-1.3.0a0/tomwer/core/process/control/test/test_concatenate_nxtomos.py +81 -0
  63. tomwer-1.3.0a0/tomwer/core/process/control/test/test_email.py +52 -0
  64. tomwer-1.3.0a0/tomwer/core/process/control/test/test_h52nx_process.py +158 -0
  65. tomwer-1.3.0a0/tomwer/core/process/control/test/test_volume_link.py +74 -0
  66. tomwer-1.3.0a0/tomwer/core/process/control/timer.py +105 -0
  67. tomwer-1.3.0a0/tomwer/core/process/control/volumesymlink.py +200 -0
  68. tomwer-1.3.0a0/tomwer/core/process/edit/darkflatpatch.py +157 -0
  69. tomwer-1.3.0a0/tomwer/core/process/edit/imagekeyeditor.py +280 -0
  70. tomwer-1.3.0a0/tomwer/core/process/icat/createscreenshots.py +100 -0
  71. tomwer-1.3.0a0/tomwer/core/process/icat/gallery.py +377 -0
  72. tomwer-1.3.0a0/tomwer/core/process/icat/icatbase.py +36 -0
  73. tomwer-1.3.0a0/tomwer/core/process/icat/publish.py +228 -0
  74. tomwer-1.3.0a0/tomwer/core/process/icat/screenshots.py +26 -0
  75. tomwer-1.3.0a0/tomwer/core/process/output.py +52 -0
  76. tomwer-1.3.0a0/tomwer/core/process/reconstruction/axis/axis.py +1025 -0
  77. tomwer-1.3.0a0/tomwer/core/process/reconstruction/axis/mode.py +99 -0
  78. tomwer-1.3.0a0/tomwer/core/process/reconstruction/axis/params.py +947 -0
  79. tomwer-1.3.0a0/tomwer/core/process/reconstruction/darkref/darkrefs.py +561 -0
  80. tomwer-1.3.0a0/tomwer/core/process/reconstruction/darkref/darkrefscopy.py +364 -0
  81. tomwer-1.3.0a0/tomwer/core/process/reconstruction/darkref/params.py +300 -0
  82. tomwer-1.3.0a0/tomwer/core/process/reconstruction/lamino/tofu.py +1000 -0
  83. tomwer-1.3.0a0/tomwer/core/process/reconstruction/nabu/castvolume.py +254 -0
  84. tomwer-1.3.0a0/tomwer/core/process/reconstruction/nabu/helical.py +58 -0
  85. tomwer-1.3.0a0/tomwer/core/process/reconstruction/nabu/nabucommon.py +666 -0
  86. tomwer-1.3.0a0/tomwer/core/process/reconstruction/nabu/nabuscores.py +683 -0
  87. tomwer-1.3.0a0/tomwer/core/process/reconstruction/nabu/nabuslices.py +985 -0
  88. tomwer-1.3.0a0/tomwer/core/process/reconstruction/nabu/nabuvolume.py +607 -0
  89. tomwer-1.3.0a0/tomwer/core/process/reconstruction/nabu/settings.py +62 -0
  90. tomwer-1.3.0a0/tomwer/core/process/reconstruction/nabu/utils.py +545 -0
  91. tomwer-1.3.0a0/tomwer/core/process/reconstruction/output.py +108 -0
  92. tomwer-1.3.0a0/tomwer/core/process/reconstruction/saaxis/saaxis.py +861 -0
  93. tomwer-1.3.0a0/tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +862 -0
  94. tomwer-1.3.0a0/tomwer/core/process/reconstruction/scores/params.py +214 -0
  95. tomwer-1.3.0a0/tomwer/core/process/reconstruction/scores/scores.py +230 -0
  96. tomwer-1.3.0a0/tomwer/core/process/reconstruction/test/test_axis_params.py +61 -0
  97. tomwer-1.3.0a0/tomwer/core/process/reconstruction/test/test_darkref.py +60 -0
  98. tomwer-1.3.0a0/tomwer/core/process/reconstruction/test/test_darkref_copy.py +204 -0
  99. tomwer-1.3.0a0/tomwer/core/process/reconstruction/test/test_saaxis.py +117 -0
  100. tomwer-1.3.0a0/tomwer/core/process/reconstruction/test/test_sadeltabeta.py +74 -0
  101. tomwer-1.3.0a0/tomwer/core/process/stitching/nabustitcher.py +170 -0
  102. tomwer-1.3.0a0/tomwer/core/process/test/test_axis.py +308 -0
  103. tomwer-1.3.0a0/tomwer/core/process/test/test_dark_and_flat.py +391 -0
  104. tomwer-1.3.0a0/tomwer/core/process/test/test_data_transfer.py +380 -0
  105. tomwer-1.3.0a0/tomwer/core/process/test/test_nabu.py +483 -0
  106. tomwer-1.3.0a0/tomwer/core/process/test/test_normalization.py +104 -0
  107. tomwer-1.3.0a0/tomwer/core/scan/edfscan.py +627 -0
  108. tomwer-1.3.0a0/tomwer/core/scan/hdf5scan.py +26 -0
  109. tomwer-1.3.0a0/tomwer/core/scan/nxtomoscan.py +532 -0
  110. tomwer-1.3.0a0/tomwer/core/scan/scanbase.py +877 -0
  111. tomwer-1.3.0a0/tomwer/core/scan/scanfactory.py +256 -0
  112. tomwer-1.3.0a0/tomwer/core/scan/test/test_future_scan.py +61 -0
  113. tomwer-1.3.0a0/tomwer/core/scan/test/test_h5.py +96 -0
  114. tomwer-1.3.0a0/tomwer/core/scan/test/test_process_registration.py +109 -0
  115. tomwer-1.3.0a0/tomwer/core/scan/test/test_scan.py +447 -0
  116. tomwer-1.3.0a0/tomwer/core/settings.py +193 -0
  117. tomwer-1.3.0a0/tomwer/core/test/test_scanutils.py +53 -0
  118. tomwer-1.3.0a0/tomwer/core/test/test_utils.py +299 -0
  119. tomwer-1.3.0a0/tomwer/core/utils/deprecation.py +135 -0
  120. tomwer-1.3.0a0/tomwer/core/utils/dictutils.py +14 -0
  121. tomwer-1.3.0a0/tomwer/core/utils/lbsram.py +35 -0
  122. tomwer-1.3.0a0/tomwer/core/utils/nxtomoutils.py +65 -0
  123. tomwer-1.3.0a0/tomwer/core/utils/scanutils.py +448 -0
  124. tomwer-1.3.0a0/tomwer/core/utils/spec.py +263 -0
  125. tomwer-1.3.0a0/tomwer/core/volume/volumefactory.py +183 -0
  126. tomwer-1.3.0a0/tomwer/gui/cluster/slurm.py +665 -0
  127. tomwer-1.3.0a0/tomwer/gui/cluster/test/test_cluster.py +108 -0
  128. tomwer-1.3.0a0/tomwer/gui/cluster/test/test_supervisor.py +91 -0
  129. tomwer-1.3.0a0/tomwer/gui/configuration/action.py +89 -0
  130. tomwer-1.3.0a0/tomwer/gui/configuration/level.py +22 -0
  131. tomwer-1.3.0a0/tomwer/gui/control/actions.py +124 -0
  132. tomwer-1.3.0a0/tomwer/gui/control/datalist.py +1095 -0
  133. tomwer-1.3.0a0/tomwer/gui/control/datalistener.py +477 -0
  134. tomwer-1.3.0a0/tomwer/gui/control/emailnotifier.py +174 -0
  135. tomwer-1.3.0a0/tomwer/gui/control/history.py +133 -0
  136. tomwer-1.3.0a0/tomwer/gui/control/observations.py +219 -0
  137. tomwer-1.3.0a0/tomwer/gui/control/reducedarkflatselector.py +545 -0
  138. tomwer-1.3.0a0/tomwer/gui/control/selectorwidgetbase.py +165 -0
  139. tomwer-1.3.0a0/tomwer/gui/control/serie/seriecreator.py +959 -0
  140. tomwer-1.3.0a0/tomwer/gui/control/test/test_email.py +35 -0
  141. tomwer-1.3.0a0/tomwer/gui/control/test/test_scanvalidator.py +116 -0
  142. tomwer-1.3.0a0/tomwer/gui/control/test/test_single_tomo_obj.py +71 -0
  143. tomwer-1.3.0a0/tomwer/gui/control/tomoobjdisplaymode.py +8 -0
  144. tomwer-1.3.0a0/tomwer/gui/debugtools/datasetgenerator.py +280 -0
  145. tomwer-1.3.0a0/tomwer/gui/edit/dkrfpatch.py +477 -0
  146. tomwer-1.3.0a0/tomwer/gui/edit/imagekeyeditor.py +820 -0
  147. tomwer-1.3.0a0/tomwer/gui/edit/nxtomoeditor.py +715 -0
  148. tomwer-1.3.0a0/tomwer/gui/edit/nxtomowarmer.py +57 -0
  149. tomwer-1.3.0a0/tomwer/gui/edit/test/test_dkrf_patch.py +212 -0
  150. tomwer-1.3.0a0/tomwer/gui/edit/test/test_image_key_editor.py +170 -0
  151. tomwer-1.3.0a0/tomwer/gui/edit/test/test_nx_editor.py +307 -0
  152. tomwer-1.3.0a0/tomwer/gui/icat/createscreenshots.py +80 -0
  153. tomwer-1.3.0a0/tomwer/gui/icat/gallery.py +214 -0
  154. tomwer-1.3.0a0/tomwer/gui/icat/publish.py +187 -0
  155. tomwer-1.3.0a0/tomwer/gui/reconstruction/axis/axis.py +730 -0
  156. tomwer-1.3.0a0/tomwer/gui/reconstruction/axis/radioaxis.py +2589 -0
  157. tomwer-1.3.0a0/tomwer/gui/reconstruction/darkref/darkrefcopywidget.py +302 -0
  158. tomwer-1.3.0a0/tomwer/gui/reconstruction/lamino/tofu/projections.py +896 -0
  159. tomwer-1.3.0a0/tomwer/gui/reconstruction/lamino/tofu/tofuoutput.py +757 -0
  160. tomwer-1.3.0a0/tomwer/gui/reconstruction/nabu/castvolume.py +329 -0
  161. tomwer-1.3.0a0/tomwer/gui/reconstruction/nabu/check.py +115 -0
  162. tomwer-1.3.0a0/tomwer/gui/reconstruction/nabu/helical.py +78 -0
  163. tomwer-1.3.0a0/tomwer/gui/reconstruction/nabu/nabuconfig/base.py +96 -0
  164. tomwer-1.3.0a0/tomwer/gui/reconstruction/nabu/nabuconfig/output.py +333 -0
  165. tomwer-1.3.0a0/tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +387 -0
  166. tomwer-1.3.0a0/tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +741 -0
  167. tomwer-1.3.0a0/tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +985 -0
  168. tomwer-1.3.0a0/tomwer/gui/reconstruction/nabu/nabuflow.py +467 -0
  169. tomwer-1.3.0a0/tomwer/gui/reconstruction/nabu/slices.py +624 -0
  170. tomwer-1.3.0a0/tomwer/gui/reconstruction/nabu/volume.py +487 -0
  171. tomwer-1.3.0a0/tomwer/gui/reconstruction/normalization/intensity.py +914 -0
  172. tomwer-1.3.0a0/tomwer/gui/reconstruction/saaxis/corrangeselector.py +815 -0
  173. tomwer-1.3.0a0/tomwer/gui/reconstruction/saaxis/dimensionwidget.py +260 -0
  174. tomwer-1.3.0a0/tomwer/gui/reconstruction/saaxis/saaxis.py +523 -0
  175. tomwer-1.3.0a0/tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py +543 -0
  176. tomwer-1.3.0a0/tomwer/gui/reconstruction/scores/control.py +75 -0
  177. tomwer-1.3.0a0/tomwer/gui/reconstruction/scores/scoreplot.py +892 -0
  178. tomwer-1.3.0a0/tomwer/gui/reconstruction/test/test_axis.py +215 -0
  179. tomwer-1.3.0a0/tomwer/gui/reconstruction/test/test_lamino.py +194 -0
  180. tomwer-1.3.0a0/tomwer/gui/reconstruction/test/test_nabu.py +378 -0
  181. tomwer-1.3.0a0/tomwer/gui/reconstruction/test/test_saaxis.py +214 -0
  182. tomwer-1.3.0a0/tomwer/gui/reconstruction/test/test_sadeltabeta.py +151 -0
  183. tomwer-1.3.0a0/tomwer/gui/settings.py +8 -0
  184. tomwer-1.3.0a0/tomwer/gui/stackplot.py +732 -0
  185. tomwer-1.3.0a0/tomwer/gui/stitching/action.py +49 -0
  186. tomwer-1.3.0a0/tomwer/gui/stitching/config/axisparams.py +187 -0
  187. tomwer-1.3.0a0/tomwer/gui/stitching/config/output.py +161 -0
  188. tomwer-1.3.0a0/tomwer/gui/stitching/config/positionoveraxis.py +168 -0
  189. tomwer-1.3.0a0/tomwer/gui/stitching/normalization.py +117 -0
  190. tomwer-1.3.0a0/tomwer/gui/stitching/stitchandbackground.py +149 -0
  191. tomwer-1.3.0a0/tomwer/gui/stitching/stitching.py +1387 -0
  192. tomwer-1.3.0a0/tomwer/gui/stitching/stitching_preview.py +296 -0
  193. tomwer-1.3.0a0/tomwer/gui/stitching/stitching_raw.py +576 -0
  194. tomwer-1.3.0a0/tomwer/gui/stitching/z_stitching/fineestimation.py +247 -0
  195. tomwer-1.3.0a0/tomwer/gui/utils/buttons.py +185 -0
  196. tomwer-1.3.0a0/tomwer/gui/utils/inputwidget.py +618 -0
  197. tomwer-1.3.0a0/tomwer/gui/utils/scandescription.py +83 -0
  198. tomwer-1.3.0a0/tomwer/gui/utils/step.py +144 -0
  199. tomwer-1.3.0a0/tomwer/gui/utils/unitsystem.py +237 -0
  200. tomwer-1.3.0a0/tomwer/gui/utils/vignettes.py +553 -0
  201. tomwer-1.3.0a0/tomwer/gui/visualization/dataviewer.py +681 -0
  202. tomwer-1.3.0a0/tomwer/gui/visualization/diffviewer/diffviewer.py +570 -0
  203. tomwer-1.3.0a0/tomwer/gui/visualization/diffviewer/shiftwidget.py +561 -0
  204. tomwer-1.3.0a0/tomwer/gui/visualization/scanoverview.py +268 -0
  205. tomwer-1.3.0a0/tomwer/gui/visualization/sinogramviewer.py +294 -0
  206. tomwer-1.3.0a0/tomwer/gui/visualization/test/test_diffviewer.py +99 -0
  207. tomwer-1.3.0a0/tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py +74 -0
  208. tomwer-1.3.0a0/tomwer/gui/visualization/test/test_sinogramviewer.py +85 -0
  209. tomwer-1.3.0a0/tomwer/gui/visualization/test/test_stacks.py +134 -0
  210. tomwer-1.3.0a0/tomwer/gui/visualization/test/test_volumeviewer.py +84 -0
  211. tomwer-1.3.0a0/tomwer/io/utils/raw_and_processed_data.py +84 -0
  212. tomwer-1.3.0a0/tomwer/io/utils/tomoobj.py +77 -0
  213. tomwer-1.3.0a0/tomwer/resources/gui/icons/ruler.png +0 -0
  214. tomwer-1.3.0a0/tomwer/resources/gui/icons/ruler.svg +273 -0
  215. tomwer-1.3.0a0/tomwer/resources/gui/icons/short_description.png +0 -0
  216. tomwer-1.3.0a0/tomwer/resources/gui/icons/short_description.svg +58 -0
  217. tomwer-1.3.0a0/tomwer/resources/gui/icons/url.png +0 -0
  218. tomwer-1.3.0a0/tomwer/resources/gui/icons/url.svg +58 -0
  219. tomwer-1.3.0a0/tomwer/synctools/stacks/edit/darkflatpatch.py +164 -0
  220. tomwer-1.3.0a0/tomwer/synctools/stacks/edit/imagekeyeditor.py +135 -0
  221. tomwer-1.3.0a0/tomwer/synctools/stacks/reconstruction/__init__.py +0 -0
  222. tomwer-1.3.0a0/tomwer/synctools/stacks/reconstruction/axis.py +218 -0
  223. tomwer-1.3.0a0/tomwer/synctools/stacks/reconstruction/castvolume.py +197 -0
  224. tomwer-1.3.0a0/tomwer/synctools/stacks/reconstruction/dkrefcopy.py +182 -0
  225. tomwer-1.3.0a0/tomwer/synctools/stacks/reconstruction/nabu.py +205 -0
  226. tomwer-1.3.0a0/tomwer/synctools/stacks/reconstruction/normalization.py +136 -0
  227. tomwer-1.3.0a0/tomwer/synctools/stacks/reconstruction/saaxis.py +182 -0
  228. tomwer-1.3.0a0/tomwer/synctools/stacks/reconstruction/sadeltabeta.py +183 -0
  229. tomwer-1.3.0a0/tomwer/synctools/test/__init__.py +0 -0
  230. tomwer-1.3.0a0/tomwer/synctools/test/test_darkRefs.py +423 -0
  231. tomwer-1.3.0a0/tomwer/synctools/test/test_foldertransfer.py +407 -0
  232. tomwer-1.3.0a0/tomwer/synctools/utils/__init__.py +0 -0
  233. tomwer-1.3.0a0/tomwer/synctools/utils/scanstages.py +207 -0
  234. tomwer-1.3.0a0/tomwer/tests/__init__.py +0 -0
  235. tomwer-1.3.0a0/tomwer/tests/conftest.py +85 -0
  236. tomwer-1.3.0a0/tomwer/tests/datasets.py +13 -0
  237. tomwer-1.3.0a0/tomwer/tests/test_scripts.py +164 -0
  238. tomwer-1.3.0a0/tomwer/tests/utils.py +5 -0
  239. tomwer-1.3.0a0/tomwer/version.py +134 -0
  240. tomwer-1.3.0a0/tomwer.egg-info/PKG-INFO +286 -0
  241. tomwer-1.3.0a0/tomwer.egg-info/SOURCES.txt +828 -0
  242. tomwer-1.3.0a0/tomwer.egg-info/requires.txt +164 -0
  243. tomwer-1.2.8/PKG-INFO +0 -291
  244. tomwer-1.2.8/orangecontrib/tomwer/widgets/__init__.py +0 -63
  245. tomwer-1.2.8/orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py +0 -230
  246. tomwer-1.2.8/orangecontrib/tomwer/widgets/control/DataListOW.py +0 -127
  247. tomwer-1.2.8/orangecontrib/tomwer/widgets/control/DataSelectorOW.py +0 -134
  248. tomwer-1.2.8/orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +0 -235
  249. tomwer-1.2.8/orangecontrib/tomwer/widgets/control/EmailOW.py +0 -82
  250. tomwer-1.2.8/orangecontrib/tomwer/widgets/control/NXTomomillOW.py +0 -327
  251. tomwer-1.2.8/orangecontrib/tomwer/widgets/control/NXtomoConcatenate.py +0 -189
  252. tomwer-1.2.8/orangecontrib/tomwer/widgets/control/NotifierOW.py +0 -126
  253. tomwer-1.2.8/orangecontrib/tomwer/widgets/control/VolumeSelector.py +0 -139
  254. tomwer-1.2.8/orangecontrib/tomwer/widgets/control/VolumeSymLinkOW.py +0 -182
  255. tomwer-1.2.8/orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py +0 -176
  256. tomwer-1.2.8/orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py +0 -182
  257. tomwer-1.2.8/orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py +0 -133
  258. tomwer-1.2.8/orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py +0 -126
  259. tomwer-1.2.8/orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py +0 -128
  260. tomwer-1.2.8/orangecontrib/tomwer/widgets/edit/test/test_nxtomo_editor.py +0 -141
  261. tomwer-1.2.8/orangecontrib/tomwer/widgets/reconstruction/AxisOW.py +0 -565
  262. tomwer-1.2.8/orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +0 -249
  263. tomwer-1.2.8/orangecontrib/tomwer/widgets/reconstruction/NabuHelicalPrepareWeightsDoubleOW.py +0 -169
  264. tomwer-1.2.8/orangecontrib/tomwer/widgets/reconstruction/NabuOW.py +0 -307
  265. tomwer-1.2.8/orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py +0 -467
  266. tomwer-1.2.8/orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py +0 -496
  267. tomwer-1.2.8/orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py +0 -420
  268. tomwer-1.2.8/orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py +0 -306
  269. tomwer-1.2.8/orangecontrib/tomwer/widgets/visualization/LivesliceOW.py +0 -87
  270. tomwer-1.2.8/orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py +0 -69
  271. tomwer-1.2.8/orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py +0 -88
  272. tomwer-1.2.8/setup.cfg +0 -155
  273. tomwer-1.2.8/tomwer/__main__.py +0 -312
  274. tomwer-1.2.8/tomwer/app/canvas.py +0 -55
  275. tomwer-1.2.8/tomwer/app/canvas_launcher/config.py +0 -206
  276. tomwer-1.2.8/tomwer/app/darkref.py +0 -10
  277. tomwer-1.2.8/tomwer/app/darkrefpatch.py +0 -10
  278. tomwer-1.2.8/tomwer/app/imagekeyeditor.py +0 -98
  279. tomwer-1.2.8/tomwer/app/imagekeyupgrader.py +0 -108
  280. tomwer-1.2.8/tomwer/app/intensitynormalization.py +0 -208
  281. tomwer-1.2.8/tomwer/app/radiostack.py +0 -93
  282. tomwer-1.2.8/tomwer/app/zstitching.py +0 -300
  283. tomwer-1.2.8/tomwer/core/cluster/cluster.py +0 -147
  284. tomwer-1.2.8/tomwer/core/log/logger.py +0 -128
  285. tomwer-1.2.8/tomwer/core/process/conditions/filters.py +0 -239
  286. tomwer-1.2.8/tomwer/core/process/control/datalistener/datalistener.py +0 -587
  287. tomwer-1.2.8/tomwer/core/process/control/nxtomoconcatenate.py +0 -127
  288. tomwer-1.2.8/tomwer/core/process/control/nxtomomill.py +0 -179
  289. tomwer-1.2.8/tomwer/core/process/control/scantransfer.py +0 -719
  290. tomwer-1.2.8/tomwer/core/process/control/scanvalidator.py +0 -285
  291. tomwer-1.2.8/tomwer/core/process/control/test/test_concatenate_nxtomos.py +0 -81
  292. tomwer-1.2.8/tomwer/core/process/control/test/test_email.py +0 -52
  293. tomwer-1.2.8/tomwer/core/process/control/test/test_h52nx_process.py +0 -106
  294. tomwer-1.2.8/tomwer/core/process/control/test/test_volume_link.py +0 -74
  295. tomwer-1.2.8/tomwer/core/process/control/timer.py +0 -105
  296. tomwer-1.2.8/tomwer/core/process/control/volumesymlink.py +0 -200
  297. tomwer-1.2.8/tomwer/core/process/edit/darkflatpatch.py +0 -157
  298. tomwer-1.2.8/tomwer/core/process/edit/imagekeyeditor.py +0 -281
  299. tomwer-1.2.8/tomwer/core/process/reconstruction/axis/axis.py +0 -1018
  300. tomwer-1.2.8/tomwer/core/process/reconstruction/axis/mode.py +0 -95
  301. tomwer-1.2.8/tomwer/core/process/reconstruction/axis/params.py +0 -942
  302. tomwer-1.2.8/tomwer/core/process/reconstruction/darkref/darkrefs.py +0 -559
  303. tomwer-1.2.8/tomwer/core/process/reconstruction/darkref/darkrefscopy.py +0 -364
  304. tomwer-1.2.8/tomwer/core/process/reconstruction/darkref/params.py +0 -300
  305. tomwer-1.2.8/tomwer/core/process/reconstruction/lamino/tofu.py +0 -1000
  306. tomwer-1.2.8/tomwer/core/process/reconstruction/nabu/castvolume.py +0 -254
  307. tomwer-1.2.8/tomwer/core/process/reconstruction/nabu/helical.py +0 -54
  308. tomwer-1.2.8/tomwer/core/process/reconstruction/nabu/nabucommon.py +0 -696
  309. tomwer-1.2.8/tomwer/core/process/reconstruction/nabu/nabuscores.py +0 -357
  310. tomwer-1.2.8/tomwer/core/process/reconstruction/nabu/nabuslices.py +0 -973
  311. tomwer-1.2.8/tomwer/core/process/reconstruction/nabu/nabuvolume.py +0 -584
  312. tomwer-1.2.8/tomwer/core/process/reconstruction/nabu/settings.py +0 -62
  313. tomwer-1.2.8/tomwer/core/process/reconstruction/nabu/utils.py +0 -440
  314. tomwer-1.2.8/tomwer/core/process/reconstruction/saaxis/saaxis.py +0 -891
  315. tomwer-1.2.8/tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +0 -808
  316. tomwer-1.2.8/tomwer/core/process/reconstruction/scores/params.py +0 -211
  317. tomwer-1.2.8/tomwer/core/process/reconstruction/scores/scores.py +0 -217
  318. tomwer-1.2.8/tomwer/core/process/reconstruction/test/test_axis_params.py +0 -61
  319. tomwer-1.2.8/tomwer/core/process/reconstruction/test/test_darkref.py +0 -60
  320. tomwer-1.2.8/tomwer/core/process/reconstruction/test/test_darkref_copy.py +0 -204
  321. tomwer-1.2.8/tomwer/core/process/reconstruction/test/test_saaxis.py +0 -118
  322. tomwer-1.2.8/tomwer/core/process/reconstruction/test/test_sadeltabeta.py +0 -74
  323. tomwer-1.2.8/tomwer/core/process/stitching/nabustitcher.py +0 -170
  324. tomwer-1.2.8/tomwer/core/process/test/test_axis.py +0 -308
  325. tomwer-1.2.8/tomwer/core/process/test/test_dark_and_flat.py +0 -388
  326. tomwer-1.2.8/tomwer/core/process/test/test_data_transfer.py +0 -379
  327. tomwer-1.2.8/tomwer/core/process/test/test_nabu.py +0 -483
  328. tomwer-1.2.8/tomwer/core/process/test/test_normalization.py +0 -104
  329. tomwer-1.2.8/tomwer/core/scan/edfscan.py +0 -624
  330. tomwer-1.2.8/tomwer/core/scan/hdf5scan.py +0 -507
  331. tomwer-1.2.8/tomwer/core/scan/scanbase.py +0 -855
  332. tomwer-1.2.8/tomwer/core/scan/scanfactory.py +0 -256
  333. tomwer-1.2.8/tomwer/core/scan/test/test_future_scan.py +0 -61
  334. tomwer-1.2.8/tomwer/core/scan/test/test_h5.py +0 -94
  335. tomwer-1.2.8/tomwer/core/scan/test/test_process_registration.py +0 -109
  336. tomwer-1.2.8/tomwer/core/scan/test/test_scan.py +0 -446
  337. tomwer-1.2.8/tomwer/core/settings.py +0 -173
  338. tomwer-1.2.8/tomwer/core/test/test_scanutils.py +0 -52
  339. tomwer-1.2.8/tomwer/core/test/test_utils.py +0 -292
  340. tomwer-1.2.8/tomwer/core/utils/__init__.py +0 -466
  341. tomwer-1.2.8/tomwer/core/utils/deprecation.py +0 -135
  342. tomwer-1.2.8/tomwer/core/utils/nxtomoutils.py +0 -65
  343. tomwer-1.2.8/tomwer/core/utils/scanutils.py +0 -448
  344. tomwer-1.2.8/tomwer/core/volume/volumefactory.py +0 -183
  345. tomwer-1.2.8/tomwer/gui/cluster/slurm.py +0 -465
  346. tomwer-1.2.8/tomwer/gui/cluster/test/test_cluster.py +0 -95
  347. tomwer-1.2.8/tomwer/gui/cluster/test/test_supervisor.py +0 -91
  348. tomwer-1.2.8/tomwer/gui/control/actions.py +0 -70
  349. tomwer-1.2.8/tomwer/gui/control/datalist.py +0 -1033
  350. tomwer-1.2.8/tomwer/gui/control/datalistener.py +0 -489
  351. tomwer-1.2.8/tomwer/gui/control/email.py +0 -183
  352. tomwer-1.2.8/tomwer/gui/control/history.py +0 -133
  353. tomwer-1.2.8/tomwer/gui/control/observations.py +0 -219
  354. tomwer-1.2.8/tomwer/gui/control/reducedarkflatselector.py +0 -545
  355. tomwer-1.2.8/tomwer/gui/control/selectorwidgetbase.py +0 -138
  356. tomwer-1.2.8/tomwer/gui/control/serie/seriecreator.py +0 -976
  357. tomwer-1.2.8/tomwer/gui/control/test/test_email.py +0 -35
  358. tomwer-1.2.8/tomwer/gui/control/test/test_scanvalidator.py +0 -115
  359. tomwer-1.2.8/tomwer/gui/control/test/test_single_tomo_obj.py +0 -71
  360. tomwer-1.2.8/tomwer/gui/debugtools/datasetgenerator.py +0 -280
  361. tomwer-1.2.8/tomwer/gui/edit/dkrfpatch.py +0 -483
  362. tomwer-1.2.8/tomwer/gui/edit/imagekeyeditor.py +0 -823
  363. tomwer-1.2.8/tomwer/gui/edit/nxtomoeditor.py +0 -648
  364. tomwer-1.2.8/tomwer/gui/edit/nxtomowarmer.py +0 -57
  365. tomwer-1.2.8/tomwer/gui/edit/test/test_dkrf_patch.py +0 -212
  366. tomwer-1.2.8/tomwer/gui/edit/test/test_image_key_editor.py +0 -170
  367. tomwer-1.2.8/tomwer/gui/edit/test/test_nx_editor.py +0 -283
  368. tomwer-1.2.8/tomwer/gui/reconstruction/axis/axis.py +0 -616
  369. tomwer-1.2.8/tomwer/gui/reconstruction/axis/radioaxis.py +0 -2604
  370. tomwer-1.2.8/tomwer/gui/reconstruction/darkref/darkrefcopywidget.py +0 -301
  371. tomwer-1.2.8/tomwer/gui/reconstruction/lamino/tofu/projections.py +0 -896
  372. tomwer-1.2.8/tomwer/gui/reconstruction/lamino/tofu/tofuoutput.py +0 -760
  373. tomwer-1.2.8/tomwer/gui/reconstruction/nabu/action.py +0 -120
  374. tomwer-1.2.8/tomwer/gui/reconstruction/nabu/castvolume.py +0 -329
  375. tomwer-1.2.8/tomwer/gui/reconstruction/nabu/check.py +0 -115
  376. tomwer-1.2.8/tomwer/gui/reconstruction/nabu/helical.py +0 -61
  377. tomwer-1.2.8/tomwer/gui/reconstruction/nabu/nabuconfig/base.py +0 -98
  378. tomwer-1.2.8/tomwer/gui/reconstruction/nabu/nabuconfig/output.py +0 -256
  379. tomwer-1.2.8/tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +0 -390
  380. tomwer-1.2.8/tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +0 -551
  381. tomwer-1.2.8/tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +0 -988
  382. tomwer-1.2.8/tomwer/gui/reconstruction/nabu/nabuflow.py +0 -475
  383. tomwer-1.2.8/tomwer/gui/reconstruction/nabu/slices.py +0 -625
  384. tomwer-1.2.8/tomwer/gui/reconstruction/nabu/volume.py +0 -475
  385. tomwer-1.2.8/tomwer/gui/reconstruction/normalization/intensity.py +0 -922
  386. tomwer-1.2.8/tomwer/gui/reconstruction/saaxis/corrangeselector.py +0 -831
  387. tomwer-1.2.8/tomwer/gui/reconstruction/saaxis/dimensionwidget.py +0 -260
  388. tomwer-1.2.8/tomwer/gui/reconstruction/saaxis/saaxis.py +0 -525
  389. tomwer-1.2.8/tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py +0 -542
  390. tomwer-1.2.8/tomwer/gui/reconstruction/scores/control.py +0 -82
  391. tomwer-1.2.8/tomwer/gui/reconstruction/scores/scoreplot.py +0 -886
  392. tomwer-1.2.8/tomwer/gui/reconstruction/test/test_axis.py +0 -204
  393. tomwer-1.2.8/tomwer/gui/reconstruction/test/test_lamino.py +0 -189
  394. tomwer-1.2.8/tomwer/gui/reconstruction/test/test_nabu.py +0 -359
  395. tomwer-1.2.8/tomwer/gui/reconstruction/test/test_saaxis.py +0 -214
  396. tomwer-1.2.8/tomwer/gui/reconstruction/test/test_sadeltabeta.py +0 -151
  397. tomwer-1.2.8/tomwer/gui/settings.py +0 -31
  398. tomwer-1.2.8/tomwer/gui/stackplot.py +0 -735
  399. tomwer-1.2.8/tomwer/gui/stitching/config/axisparams.py +0 -204
  400. tomwer-1.2.8/tomwer/gui/stitching/config/output.py +0 -159
  401. tomwer-1.2.8/tomwer/gui/stitching/config/positionoveraxis.py +0 -169
  402. tomwer-1.2.8/tomwer/gui/stitching/stitchandbackground.py +0 -151
  403. tomwer-1.2.8/tomwer/gui/stitching/stitching.py +0 -1165
  404. tomwer-1.2.8/tomwer/gui/stitching/stitching_preview.py +0 -239
  405. tomwer-1.2.8/tomwer/gui/stitching/stitching_raw.py +0 -579
  406. tomwer-1.2.8/tomwer/gui/stitching/z_stitching/fineestimation.py +0 -307
  407. tomwer-1.2.8/tomwer/gui/utils/buttons.py +0 -102
  408. tomwer-1.2.8/tomwer/gui/utils/inputwidget.py +0 -610
  409. tomwer-1.2.8/tomwer/gui/utils/scandescription.py +0 -79
  410. tomwer-1.2.8/tomwer/gui/utils/unitsystem.py +0 -240
  411. tomwer-1.2.8/tomwer/gui/utils/vignettes.py +0 -392
  412. tomwer-1.2.8/tomwer/gui/visualization/dataviewer.py +0 -698
  413. tomwer-1.2.8/tomwer/gui/visualization/diffviewer/diffviewer.py +0 -579
  414. tomwer-1.2.8/tomwer/gui/visualization/diffviewer/shiftwidget.py +0 -564
  415. tomwer-1.2.8/tomwer/gui/visualization/scanoverview.py +0 -268
  416. tomwer-1.2.8/tomwer/gui/visualization/sinogramviewer.py +0 -303
  417. tomwer-1.2.8/tomwer/gui/visualization/test/test_diffviewer.py +0 -99
  418. tomwer-1.2.8/tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py +0 -74
  419. tomwer-1.2.8/tomwer/gui/visualization/test/test_sinogramviewer.py +0 -85
  420. tomwer-1.2.8/tomwer/gui/visualization/test/test_stacks.py +0 -134
  421. tomwer-1.2.8/tomwer/gui/visualization/test/test_volumeviewer.py +0 -84
  422. tomwer-1.2.8/tomwer/io/utils/tomoobj.py +0 -79
  423. tomwer-1.2.8/tomwer/resources/gui/icons/esrf_1.svg +0 -307
  424. tomwer-1.2.8/tomwer/resources/gui/icons/triangle.svg +0 -80
  425. tomwer-1.2.8/tomwer/synctools/stacks/edit/darkflatpatch.py +0 -164
  426. tomwer-1.2.8/tomwer/synctools/stacks/edit/imagekeyeditor.py +0 -135
  427. tomwer-1.2.8/tomwer/synctools/stacks/reconstruction/axis.py +0 -218
  428. tomwer-1.2.8/tomwer/synctools/stacks/reconstruction/castvolume.py +0 -197
  429. tomwer-1.2.8/tomwer/synctools/stacks/reconstruction/dkrefcopy.py +0 -188
  430. tomwer-1.2.8/tomwer/synctools/stacks/reconstruction/nabu.py +0 -205
  431. tomwer-1.2.8/tomwer/synctools/stacks/reconstruction/normalization.py +0 -136
  432. tomwer-1.2.8/tomwer/synctools/stacks/reconstruction/saaxis.py +0 -182
  433. tomwer-1.2.8/tomwer/synctools/stacks/reconstruction/sadeltabeta.py +0 -183
  434. tomwer-1.2.8/tomwer/synctools/test/test_darkRefs.py +0 -474
  435. tomwer-1.2.8/tomwer/synctools/test/test_foldertransfer.py +0 -407
  436. tomwer-1.2.8/tomwer/synctools/test/test_scanstages.py +0 -162
  437. tomwer-1.2.8/tomwer/synctools/utils/scanstages.py +0 -207
  438. tomwer-1.2.8/tomwer/tests/conftest.py +0 -51
  439. tomwer-1.2.8/tomwer/tests/test_scripts.py +0 -111
  440. tomwer-1.2.8/tomwer/tests/utils/__init__.py +0 -247
  441. tomwer-1.2.8/tomwer/tests/utils/utilstest.py +0 -220
  442. tomwer-1.2.8/tomwer/version.py +0 -134
  443. tomwer-1.2.8/tomwer.egg-info/PKG-INFO +0 -291
  444. tomwer-1.2.8/tomwer.egg-info/SOURCES.txt +0 -789
  445. tomwer-1.2.8/tomwer.egg-info/requires.txt +0 -168
  446. {tomwer-1.2.8 → tomwer-1.3.0a0}/LICENSE +0 -0
  447. {tomwer-1.2.8 → tomwer-1.3.0a0}/MANIFEST.in +0 -0
  448. {tomwer-1.2.8 → tomwer-1.3.0a0}/README.rst +0 -0
  449. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/__init__.py +0 -0
  450. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/__init__.py +0 -0
  451. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/orange/__init__.py +0 -0
  452. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/orange/managedprocess.py +0 -0
  453. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/orange/settings.py +0 -0
  454. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/state_summary.py +0 -0
  455. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/tutorials/EBS_tomo_listener.ows +0 -0
  456. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/tutorials/__init__.py +0 -0
  457. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/tutorials/append_raw_darks_and_flats_frames_to_NXtomos.ows +0 -0
  458. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/tutorials/cast_volume.ows +0 -0
  459. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/tutorials/copy_reduced_darks_and_flats_meth1.ows +0 -0
  460. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/tutorials/copy_reduced_darks_and_flats_meth2.ows +0 -0
  461. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/tutorials/default_cor_search.ows +0 -0
  462. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/tutorials/hello_world_python_script.ows +0 -0
  463. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/tutorials/simple_slice_reconstruction.ows +0 -0
  464. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/tutorials/simple_slice_reconstruction_on_slurm.ows +0 -0
  465. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/tutorials/simple_volume_local_reconstruction.ows +0 -0
  466. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows +0 -0
  467. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/tutorials/using_saaxis_to_find_cor.ows +0 -0
  468. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py +0 -0
  469. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py +0 -0
  470. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/cluster/__init__.py +0 -0
  471. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/cluster/icons/slurm.png +0 -0
  472. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/cluster/icons/slurm.svg +0 -0
  473. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.png +0 -0
  474. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.svg +0 -0
  475. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/AdvancementOW.py +0 -0
  476. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/DataListenerOW.py +0 -0
  477. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/DataTransfertOW.py +0 -0
  478. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/DataValidatorOW.py +0 -0
  479. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/DataWatcherOW.py +0 -0
  480. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/FilterOW.py +0 -0
  481. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +0 -0
  482. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/ReduceDarkFlatSelectorOW.py +0 -0
  483. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +0 -0
  484. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/TimerOW.py +0 -0
  485. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/TomoObjSerieOW.py +0 -0
  486. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/__init__.py +0 -0
  487. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/advancement.png +0 -0
  488. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/advancement.svg +0 -0
  489. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/concatenate_nxtomos.png +0 -0
  490. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/concatenate_nxtomos.svg +0 -0
  491. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/datadiscover.png +0 -0
  492. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/datadiscover.svg +0 -0
  493. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/datalistener.png +0 -0
  494. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/datalistener.svg +0 -0
  495. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/datawatcher.svg +0 -0
  496. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/edf2nx.png +0 -0
  497. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/edf2nx.svg +0 -0
  498. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/email.png +0 -0
  499. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/email.svg +0 -0
  500. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/esrf.png +0 -0
  501. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/folder-transfert.svg +0 -0
  502. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/image_key_upgrader.png +0 -0
  503. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/namefilter.png +0 -0
  504. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/namefilter.svg +0 -0
  505. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/notification.png +0 -0
  506. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/notification.svg +0 -0
  507. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/nxtomomill.png +0 -0
  508. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/nxtomomill.svg +0 -0
  509. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/progress.svg +0 -0
  510. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/reduced_darkflat_selector.png +0 -0
  511. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/reduced_darkflat_selector.svg +0 -0
  512. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/scanlist.svg +0 -0
  513. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/scanselector.png +0 -0
  514. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/scanselector.svg +0 -0
  515. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/single_tomo_obj.png +0 -0
  516. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/single_tomo_obj.svg +0 -0
  517. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/time.png +0 -0
  518. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/tomoobjserie.png +0 -0
  519. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/tomoobjserie.svg +0 -0
  520. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/tomwer.png +0 -0
  521. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/validator.png +0 -0
  522. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/validatorcrack.png +0 -0
  523. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/volumeselector.png +0 -0
  524. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/volumeselector.svg +0 -0
  525. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/volumesymlink.png +0 -0
  526. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/control/icons/volumesymlink.svg +0 -0
  527. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/debugtools/ObjectInspectorOW.py +0 -0
  528. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/debugtools/__init__.py +0 -0
  529. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/debugtools/icons/hammer.png +0 -0
  530. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/debugtools/icons/hammer.svg +0 -0
  531. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/debugtools/icons/inspector.png +0 -0
  532. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/debugtools/icons/inspector.svg +0 -0
  533. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/edit/__init__.py +0 -0
  534. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/edit/icons/image_key_editor.png +0 -0
  535. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/edit/icons/image_key_editor.svg +0 -0
  536. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.png +0 -0
  537. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.svg +0 -0
  538. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.png +0 -0
  539. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.svg +0 -0
  540. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.png +0 -0
  541. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.svg +0 -0
  542. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/edit/test/__init__.py +0 -0
  543. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/edit/test/test_dark_flat_patch.py +0 -0
  544. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/edit/test/test_image_key_editor.py +0 -0
  545. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/edit/test/test_image_key_upgrader.py +0 -0
  546. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/icons/tomwer.png +0 -0
  547. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_build.png +0 -0
  548. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_build.svg +0 -0
  549. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_cluster.png +0 -0
  550. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_cluster.svg +0 -0
  551. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_control.png +0 -0
  552. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_control.svg +0 -0
  553. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_debug_tools.png +0 -0
  554. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_debug_tools.svg +0 -0
  555. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_edit.png +0 -0
  556. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_edit.svg +0 -0
  557. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_other.png +0 -0
  558. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_other.svg +0 -0
  559. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_stitching.png +0 -0
  560. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_stitching.svg +0 -0
  561. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_visu.png +0 -0
  562. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_visu.svg +0 -0
  563. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/other/PythonScriptOW.py +0 -0
  564. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/other/TomoObjsHub.py +0 -0
  565. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/other/__init__.py +0 -0
  566. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/other/icons/PythonScript.svg +0 -0
  567. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/other/icons/hub.png +0 -0
  568. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/other/icons/hub.svg +0 -0
  569. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py +0 -0
  570. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/TofuOW.py +0 -0
  571. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/__init__.py +0 -0
  572. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/XY_lamino.svg +0 -0
  573. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/XZ_lamino.svg +0 -0
  574. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/YZ_lamino.svg +0 -0
  575. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/axis.png +0 -0
  576. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/axis.svg +0 -0
  577. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/bricks.png +0 -0
  578. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/darkref.png +0 -0
  579. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/darkref.svg +0 -0
  580. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.png +0 -0
  581. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.svg +0 -0
  582. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/esrf.png +0 -0
  583. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.png +0 -0
  584. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.svg +0 -0
  585. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_3d.png +0 -0
  586. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_3d.svg +0 -0
  587. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_cast.png +0 -0
  588. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_cast.svg +0 -0
  589. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_prepare_weights_double.png +0 -0
  590. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_prepare_weights_double.svg +0 -0
  591. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/norm_I.png +0 -0
  592. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/norm_I.svg +0 -0
  593. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/refCopy.png +0 -0
  594. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/refCopy.svg +0 -0
  595. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/saaxis.png +0 -0
  596. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/saaxis.svg +0 -0
  597. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.png +0 -0
  598. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.svg +0 -0
  599. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/tomogui.png +0 -0
  600. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/tomwer.png +0 -0
  601. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/stitching/StitcherOW.py +0 -0
  602. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/stitching/ZStitchingConfigOW.py +0 -0
  603. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/stitching/__init__.py +0 -0
  604. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/utils.py +0 -0
  605. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +0 -0
  606. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +0 -0
  607. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/RadioStackOW.py +0 -0
  608. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py +0 -0
  609. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py +0 -0
  610. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/SliceStackOW.py +0 -0
  611. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/__init__.py +0 -0
  612. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/icons/diff.png +0 -0
  613. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/icons/diff.svg +0 -0
  614. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/icons/esrf.png +0 -0
  615. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/icons/eye.png +0 -0
  616. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/icons/eyecrack.png +0 -0
  617. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/icons/liveslice.png +0 -0
  618. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/icons/liveslice.svg +0 -0
  619. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.png +0 -0
  620. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.svg +0 -0
  621. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/icons/radiosstack.png +0 -0
  622. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/icons/radiosstack.svg +0 -0
  623. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/icons/sampleMoved.png +0 -0
  624. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/icons/sampleMoved.svg +0 -0
  625. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/icons/sinogramviewer.png +0 -0
  626. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/icons/slicesstack.png +0 -0
  627. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/icons/slicesstack.svg +0 -0
  628. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/icons/tomwer.png +0 -0
  629. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.png +0 -0
  630. {tomwer-1.2.8 → tomwer-1.3.0a0}/orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.svg +0 -0
  631. {tomwer-1.2.8 → tomwer-1.3.0a0}/setup.py +0 -0
  632. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/__init__.py +0 -0
  633. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/app/__init__.py +0 -0
  634. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/app/axis.py +0 -0
  635. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/app/canvas_launcher/__init__.py +0 -0
  636. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/app/canvas_launcher/environ.py +0 -0
  637. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/app/canvas_launcher/mainwindow.py +0 -0
  638. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/app/canvas_launcher/splash.py +0 -0
  639. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/app/canvas_launcher/widgetsscheme.py +0 -0
  640. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/app/diffframe.py +0 -0
  641. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/app/lamino.py +0 -0
  642. /tomwer-1.2.8/tomwer/app/saaxis.py → /tomwer-1.3.0a0/tomwer/app/multicor.py +0 -0
  643. /tomwer-1.2.8/tomwer/app/sadeltabeta.py → /tomwer-1.3.0a0/tomwer/app/multipag.py +0 -0
  644. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/app/nabuapp.py +0 -0
  645. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/app/nxtomoeditor.py +0 -0
  646. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/app/patchrawdarkflat.py +0 -0
  647. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/app/reducedarkflat.py +0 -0
  648. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/app/rsync.py +0 -0
  649. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/app/samplemoved.py +0 -0
  650. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/app/scanviewer.py +0 -0
  651. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/app/sinogramviewer.py +0 -0
  652. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/app/slicestack.py +0 -0
  653. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/app/stopdatalistener.py +0 -0
  654. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/__init__.py +0 -0
  655. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/cluster/__init__.py +0 -0
  656. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/futureobject.py +0 -0
  657. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/log/__init__.py +0 -0
  658. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/log/processlog.py +0 -0
  659. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/__init__.py +0 -0
  660. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/cluster/__init__.py +0 -0
  661. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/cluster/supervisor.py +0 -0
  662. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/conditions/__init__.py +0 -0
  663. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/control/__init__.py +0 -0
  664. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/control/datadiscovery.py +0 -0
  665. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/control/datalistener/__init__.py +0 -0
  666. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/control/datalistener/rpcserver.py +0 -0
  667. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/control/datawatcher/__init__.py +0 -0
  668. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/control/datawatcher/datawatcher.py +0 -0
  669. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/control/datawatcher/datawatcherobserver.py +0 -0
  670. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/control/datawatcher/datawatcherprocess.py +0 -0
  671. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/control/datawatcher/edfdwprocess.py +0 -0
  672. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/control/datawatcher/hdf5dwprocess.py +0 -0
  673. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/control/datawatcher/status.py +0 -0
  674. /tomwer-1.2.8/tomwer/core/process/control/email.py → /tomwer-1.3.0a0/tomwer/core/process/control/emailnotifier.py +0 -0
  675. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/control/scanlist.py +0 -0
  676. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/control/scanselector.py +0 -0
  677. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/control/singletomoobj.py +0 -0
  678. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/control/test/__init__.py +0 -0
  679. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/control/tomoobjserie.py +0 -0
  680. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/control/volumeselector.py +0 -0
  681. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/edit/__init__.py +0 -0
  682. {tomwer-1.2.8/tomwer/core/process/reconstruction/darkref → tomwer-1.3.0a0/tomwer/core/process/icat}/__init__.py +0 -0
  683. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/reconstruction/__init__.py +0 -0
  684. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/reconstruction/axis/__init__.py +0 -0
  685. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/reconstruction/axis/anglemode.py +0 -0
  686. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/reconstruction/axis/projectiontype.py +0 -0
  687. {tomwer-1.2.8/tomwer/core/process/reconstruction/nabu → tomwer-1.3.0a0/tomwer/core/process/reconstruction/darkref}/__init__.py +0 -0
  688. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/reconstruction/darkref/settings.py +0 -0
  689. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/reconstruction/lamino/__init__.py +0 -0
  690. {tomwer-1.2.8/tomwer/core/process/reconstruction/test → tomwer-1.3.0a0/tomwer/core/process/reconstruction/nabu}/__init__.py +0 -0
  691. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/reconstruction/nabu/target.py +0 -0
  692. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/reconstruction/normalization/__init__.py +0 -0
  693. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/reconstruction/normalization/normalization.py +0 -0
  694. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/reconstruction/normalization/params.py +0 -0
  695. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/reconstruction/paramsbase.py +0 -0
  696. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/reconstruction/saaxis/__init__.py +0 -0
  697. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/reconstruction/saaxis/params.py +0 -0
  698. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/reconstruction/sadeltabeta/__init__.py +0 -0
  699. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/reconstruction/sadeltabeta/params.py +0 -0
  700. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/reconstruction/scores/__init__.py +0 -0
  701. {tomwer-1.2.8/tomwer/core/process/reconstruction/utils → tomwer-1.3.0a0/tomwer/core/process/reconstruction/test}/__init__.py +0 -0
  702. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/reconstruction/test/test_paramsbase.py +0 -0
  703. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/reconstruction/test/test_utils.py +0 -0
  704. {tomwer-1.2.8/tomwer/core/process/script → tomwer-1.3.0a0/tomwer/core/process/reconstruction/utils}/__init__.py +0 -0
  705. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/reconstruction/utils/cor.py +0 -0
  706. {tomwer-1.2.8/tomwer/core/process/stitching → tomwer-1.3.0a0/tomwer/core/process/script}/__init__.py +0 -0
  707. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/script/python.py +0 -0
  708. {tomwer-1.2.8/tomwer/core/process/test → tomwer-1.3.0a0/tomwer/core/process/stitching}/__init__.py +0 -0
  709. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/stitching/metadataholder.py +0 -0
  710. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/task.py +0 -0
  711. {tomwer-1.2.8/tomwer/core/process/visualization → tomwer-1.3.0a0/tomwer/core/process/test}/__init__.py +0 -0
  712. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/test/test_conditions.py +0 -0
  713. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/test/test_data_listener.py +0 -0
  714. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/test/test_data_watcher.py +0 -0
  715. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/test/test_lamino.py +0 -0
  716. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/test/test_timer.py +0 -0
  717. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/utils.py +0 -0
  718. {tomwer-1.2.8/tomwer/core/scan/test → tomwer-1.3.0a0/tomwer/core/process/visualization}/__init__.py +0 -0
  719. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/visualization/dataviewer.py +0 -0
  720. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/visualization/diffviewer.py +0 -0
  721. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/visualization/imagestackviewer.py +0 -0
  722. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/visualization/liveslice.py +0 -0
  723. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/visualization/radiostack.py +0 -0
  724. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/visualization/samplemoved.py +0 -0
  725. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/visualization/sinogramviewer.py +0 -0
  726. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/visualization/slicestack.py +0 -0
  727. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/process/visualization/volumeviewer.py +0 -0
  728. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/progress.py +0 -0
  729. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/scan/__init__.py +0 -0
  730. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/scan/blissscan.py +0 -0
  731. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/scan/futurescan.py +0 -0
  732. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/scan/helicalmetadata.py +0 -0
  733. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/scan/scantype.py +0 -0
  734. {tomwer-1.2.8/tomwer/core → tomwer-1.3.0a0/tomwer/core/scan}/test/__init__.py +0 -0
  735. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/scan/test/test_edf.py +0 -0
  736. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/signal.py +0 -0
  737. {tomwer-1.2.8/tomwer/gui/cluster → tomwer-1.3.0a0/tomwer/core/test}/__init__.py +0 -0
  738. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/test/test_lamino.py +0 -0
  739. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/tomwer_object.py +0 -0
  740. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/utils/Singleton.py +0 -0
  741. {tomwer-1.2.8/tomwer/gui/cluster/test → tomwer-1.3.0a0/tomwer/core/utils}/__init__.py +0 -0
  742. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/utils/char.py +0 -0
  743. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/utils/ftseriesutils.py +0 -0
  744. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/utils/gpu.py +0 -0
  745. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/utils/image.py +0 -0
  746. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/utils/locker.py +0 -0
  747. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/utils/logconfig.py +0 -0
  748. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/utils/normalization.py +0 -0
  749. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/utils/resource.py +0 -0
  750. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/utils/slurm.py +0 -0
  751. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/utils/threads.py +0 -0
  752. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/utils/time.py +0 -0
  753. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/utils/volumeutils.py +0 -0
  754. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/volume/__init__.py +0 -0
  755. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/volume/edfvolume.py +0 -0
  756. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/volume/hdf5volume.py +0 -0
  757. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/volume/jp2kvolume.py +0 -0
  758. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/volume/rawvolume.py +0 -0
  759. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/volume/tiffvolume.py +0 -0
  760. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/core/volume/volumebase.py +0 -0
  761. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/__init__.py +0 -0
  762. {tomwer-1.2.8/tomwer/gui/conditions → tomwer-1.3.0a0/tomwer/gui/cluster}/__init__.py +0 -0
  763. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/cluster/supervisor.py +0 -0
  764. {tomwer-1.2.8/tomwer/gui/control → tomwer-1.3.0a0/tomwer/gui/cluster/test}/__init__.py +0 -0
  765. {tomwer-1.2.8/tomwer/gui/control/serie → tomwer-1.3.0a0/tomwer/gui/conditions}/__init__.py +0 -0
  766. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/conditions/filter.py +0 -0
  767. {tomwer-1.2.8/tomwer/gui/debugtools → tomwer-1.3.0a0/tomwer/gui/configuration}/__init__.py +0 -0
  768. {tomwer-1.2.8/tomwer/gui/edit → tomwer-1.3.0a0/tomwer/gui/control}/__init__.py +0 -0
  769. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/datadiscovery.py +0 -0
  770. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/datareacheractions.py +0 -0
  771. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/datatransfert.py +0 -0
  772. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/datavalidator.py +0 -0
  773. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/datawatcher/__init__.py +0 -0
  774. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/datawatcher/configuration.py +0 -0
  775. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/datawatcher/controlwidget.py +0 -0
  776. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/datawatcher/datawatcher.py +0 -0
  777. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/datawatcher/datawatcherobserver.py +0 -0
  778. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/nxtomomill.py +0 -0
  779. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/scanselectorwidget.py +0 -0
  780. {tomwer-1.2.8/tomwer/gui/reconstruction → tomwer-1.3.0a0/tomwer/gui/control/serie}/__init__.py +0 -0
  781. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/serie/nxtomoconcatenate.py +0 -0
  782. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/serie/seriewaiter.py +0 -0
  783. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/singletomoobj.py +0 -0
  784. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/test/__init__.py +0 -0
  785. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/test/test_datadiscovery.py +0 -0
  786. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/test/test_datalist.py +0 -0
  787. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/test/test_datalistener.py +0 -0
  788. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/test/test_datavalidator.py +0 -0
  789. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/test/test_inputwidget.py +0 -0
  790. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/test/test_process_manager.py +0 -0
  791. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/test/test_reducedarkflat_selector.py +0 -0
  792. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/test/test_scanselector.py +0 -0
  793. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/test/test_volume_dialog.py +0 -0
  794. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/test/test_volumeselector.py +0 -0
  795. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/control/volumeselectorwidget.py +0 -0
  796. {tomwer-1.2.8/tomwer/gui/reconstruction/normalization → tomwer-1.3.0a0/tomwer/gui/debugtools}/__init__.py +0 -0
  797. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/debugtools/objectinspector.py +0 -0
  798. {tomwer-1.2.8/tomwer/gui/reconstruction/saaxis → tomwer-1.3.0a0/tomwer/gui/edit}/__init__.py +0 -0
  799. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/edit/test/__init__.py +0 -0
  800. {tomwer-1.2.8/tomwer/gui/reconstruction/scores → tomwer-1.3.0a0/tomwer/gui/icat}/__init__.py +0 -0
  801. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/icons.py +0 -0
  802. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/illustrations.py +0 -0
  803. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/imagefromfile.py +0 -0
  804. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/qconfigfile.py +0 -0
  805. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/qfolderdialog.py +0 -0
  806. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/qlefilesystem.py +0 -0
  807. {tomwer-1.2.8/tomwer/gui/reconstruction/test → tomwer-1.3.0a0/tomwer/gui/reconstruction}/__init__.py +0 -0
  808. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/reconstruction/axis/CompareImages.py +0 -0
  809. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/reconstruction/axis/__init__.py +0 -0
  810. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/reconstruction/darkref/__init__.py +0 -0
  811. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/reconstruction/darkref/darkrefwidget.py +0 -0
  812. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/reconstruction/lamino/__init__.py +0 -0
  813. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/reconstruction/lamino/tofu/TofuOptionLoader.py +0 -0
  814. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/reconstruction/lamino/tofu/__init__.py +0 -0
  815. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/reconstruction/lamino/tofu/misc.py +0 -0
  816. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/reconstruction/lamino/tofu/settings.py +0 -0
  817. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/reconstruction/lamino/tofu/tofu.py +0 -0
  818. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/reconstruction/lamino/tofu/tofuexpert.py +0 -0
  819. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/reconstruction/nabu/__init__.py +0 -0
  820. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/reconstruction/nabu/nabuconfig/__init__.py +0 -0
  821. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py +0 -0
  822. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py +0 -0
  823. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/reconstruction/nabu/slurm.py +0 -0
  824. {tomwer-1.2.8/tomwer/gui/stitching → tomwer-1.3.0a0/tomwer/gui/reconstruction/normalization}/__init__.py +0 -0
  825. {tomwer-1.2.8/tomwer/gui/stitching/config → tomwer-1.3.0a0/tomwer/gui/reconstruction/saaxis}/__init__.py +0 -0
  826. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/reconstruction/saaxis/sliceselector.py +0 -0
  827. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/reconstruction/sadeltabeta/__init__.py +0 -0
  828. {tomwer-1.2.8/tomwer/gui/stitching/z_stitching → tomwer-1.3.0a0/tomwer/gui/reconstruction/scores}/__init__.py +0 -0
  829. {tomwer-1.2.8/tomwer/gui/visualization → tomwer-1.3.0a0/tomwer/gui/reconstruction/test}/__init__.py +0 -0
  830. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/samplemoved/__init__.py +0 -0
  831. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/samplemoved/selectiontable.py +0 -0
  832. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/stacks.py +0 -0
  833. {tomwer-1.2.8/tomwer/io → tomwer-1.3.0a0/tomwer/gui/stitching}/__init__.py +0 -0
  834. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/stitching/axisorderedlist.py +0 -0
  835. {tomwer-1.2.8/tomwer/synctools/stacks/control → tomwer-1.3.0a0/tomwer/gui/stitching/config}/__init__.py +0 -0
  836. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/stitching/config/stitchingstrategies.py +0 -0
  837. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/stitching/config/tomoobjdetails.py +0 -0
  838. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/stitching/metadataholder.py +0 -0
  839. {tomwer-1.2.8/tomwer/synctools/stacks/edit → tomwer-1.3.0a0/tomwer/gui/stitching/z_stitching}/__init__.py +0 -0
  840. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/test/__init__.py +0 -0
  841. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/test/test_axis_gui.py +0 -0
  842. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/test/test_qfolder_dialog.py +0 -0
  843. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/utils/__init__.py +0 -0
  844. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/utils/completer.py +0 -0
  845. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/utils/flow.py +0 -0
  846. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/utils/illustrations.py +0 -0
  847. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/utils/lineselector/__init__.py +0 -0
  848. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/utils/lineselector/lineselector.py +0 -0
  849. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/utils/qt_utils.py +0 -0
  850. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/utils/sandboxes.py +0 -0
  851. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/utils/scrollarea.py +0 -0
  852. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/utils/slider.py +0 -0
  853. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/utils/splashscreen.py +0 -0
  854. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/utils/utils.py +0 -0
  855. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/utils/waiterthread.py +0 -0
  856. {tomwer-1.2.8/tomwer/synctools/stacks/reconstruction → tomwer-1.3.0a0/tomwer/gui/visualization}/__init__.py +0 -0
  857. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/visualization/diffviewer/__init__.py +0 -0
  858. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/visualization/fullscreenplot.py +0 -0
  859. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/visualization/nxtomometadata.py +0 -0
  860. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/visualization/reconstructionparameters.py +0 -0
  861. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/visualization/test/__init__.py +0 -0
  862. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/visualization/test/test_dataviewer.py +0 -0
  863. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/visualization/test/test_reconstruction_parameters.py +0 -0
  864. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/visualization/tomoobjoverview.py +0 -0
  865. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/visualization/volumeoverview.py +0 -0
  866. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/gui/visualization/volumeviewer.py +0 -0
  867. {tomwer-1.2.8/tomwer/synctools/test → tomwer-1.3.0a0/tomwer/io}/__init__.py +0 -0
  868. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/io/utils/__init__.py +0 -0
  869. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/io/utils/h5pyutils.py +0 -0
  870. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/io/utils/utils.py +0 -0
  871. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/__init__.py +0 -0
  872. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/Imagej_icon.png +0 -0
  873. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/a.png +0 -0
  874. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/a.svg +0 -0
  875. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/add.png +0 -0
  876. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/add.svg +0 -0
  877. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/advanced_user.png +0 -0
  878. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/advanced_user.svg +0 -0
  879. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/axis.png +0 -0
  880. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/axis.svg +0 -0
  881. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/background.png +0 -0
  882. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/background.svg +0 -0
  883. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/basic_user.png +0 -0
  884. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/basic_user.svg +0 -0
  885. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/cfg_file_active.png +0 -0
  886. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/cfg_file_active.svg +0 -0
  887. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/cfg_file_inactive.png +0 -0
  888. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/cfg_file_inactive.svg +0 -0
  889. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/compare_mode_a_minus_b.png +0 -0
  890. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/compare_mode_a_minus_b.svg +0 -0
  891. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/compose.png +0 -0
  892. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/compose.svg +0 -0
  893. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/datalistener_activate.png +0 -0
  894. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/datalistener_activate.svg +0 -0
  895. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/datalistener_deactivate.png +0 -0
  896. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/datalistener_deactivate.svg +0 -0
  897. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/delta_beta.png +0 -0
  898. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/delta_beta.svg +0 -0
  899. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/exit.png +0 -0
  900. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/exit.svg +0 -0
  901. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/full_screen.png +0 -0
  902. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/full_screen.svg +0 -0
  903. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/hammer.png +0 -0
  904. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/hammer.svg +0 -0
  905. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/health.png +0 -0
  906. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/health.svg +0 -0
  907. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/high_speed.png +0 -0
  908. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/high_speed.svg +0 -0
  909. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/history.png +0 -0
  910. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/hourglass.npy +0 -0
  911. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/imageNotFound.npy +0 -0
  912. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/information.png +0 -0
  913. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/information.svg +0 -0
  914. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/input.png +0 -0
  915. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/input.svg +0 -0
  916. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/invisible.png +0 -0
  917. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/invisible.svg +0 -0
  918. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/lamino_parameters.svg +0 -0
  919. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/lineselection.png +0 -0
  920. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/lineselection.svg +0 -0
  921. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/list_selection.png +0 -0
  922. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/list_selection.svg +0 -0
  923. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/locked.png +0 -0
  924. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/locked.svg +0 -0
  925. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/log.png +0 -0
  926. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/log.svg +0 -0
  927. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/loop.png +0 -0
  928. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/low_speed.png +0 -0
  929. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/low_speed.svg +0 -0
  930. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/medium_low_speed.png +0 -0
  931. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/medium_low_speed.svg +0 -0
  932. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/minimalistic_user.png +0 -0
  933. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/minimalistic_user.svg +0 -0
  934. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/multi-document-save.png +0 -0
  935. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/multi-document-save.svg +0 -0
  936. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/nabu.png +0 -0
  937. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/nabu.svg +0 -0
  938. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/output.png +0 -0
  939. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/output.svg +0 -0
  940. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/parameters.png +0 -0
  941. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/parameters.svg +0 -0
  942. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/plot-xleft.png +0 -0
  943. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/plot-xleft.svg +0 -0
  944. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/plot-xright.png +0 -0
  945. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/plot-xright.svg +0 -0
  946. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/range_selection.png +0 -0
  947. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/range_selection.svg +0 -0
  948. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/results.png +0 -0
  949. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/results.svg +0 -0
  950. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/rm.png +0 -0
  951. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/rm.svg +0 -0
  952. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/roman_four.png +0 -0
  953. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/roman_four.svg +0 -0
  954. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/roman_one.png +0 -0
  955. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/roman_one.svg +0 -0
  956. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/roman_three.png +0 -0
  957. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/roman_three.svg +0 -0
  958. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/roman_two.png +0 -0
  959. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/roman_two.svg +0 -0
  960. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/single_selection.png +0 -0
  961. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/single_selection.svg +0 -0
  962. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/sinogram.png +0 -0
  963. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/slurm.svg +0 -0
  964. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/slurm_active.png +0 -0
  965. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/slurm_active.svg +0 -0
  966. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/slurm_deactive.png +0 -0
  967. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/slurm_deactive.svg +0 -0
  968. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/stitching_modeRaw.png +0 -0
  969. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/stitching_modeRaw.svg +0 -0
  970. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/stitching_modeRefine.png +0 -0
  971. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/stitching_modeRefine.svg +0 -0
  972. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/switch.png +0 -0
  973. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/tomwer.png +0 -0
  974. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/tomwer_large.png +0 -0
  975. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/unlocked.png +0 -0
  976. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/unlocked.svg +0 -0
  977. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/unsharp_mask.png +0 -0
  978. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/update_stitching_preview.svg +0 -0
  979. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/vignettes.png +0 -0
  980. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/vignettes.svg +0 -0
  981. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/visible.png +0 -0
  982. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/visible.svg +0 -0
  983. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/warning.png +0 -0
  984. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/icons/warning.svg +0 -0
  985. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/ctf_z1.png +0 -0
  986. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/ctf_z1.svg +0 -0
  987. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/flow_down.png +0 -0
  988. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/flow_down.svg +0 -0
  989. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/flow_right.png +0 -0
  990. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/flow_right.svg +0 -0
  991. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/lamino_angle.png +0 -0
  992. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/lamino_angle.svg +0 -0
  993. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/lamino_beta_angle.png +0 -0
  994. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/lamino_beta_angle.svg +0 -0
  995. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/lamino_theta_angle.png +0 -0
  996. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/lamino_theta_angle.svg +0 -0
  997. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/manual_slice.png +0 -0
  998. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/manual_slice.svg +0 -0
  999. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/no_rot.svg +0 -0
  1000. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/psi_angle.png +0 -0
  1001. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/psi_angle.svg +0 -0
  1002. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/rotation_center.png +0 -0
  1003. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/rotation_center.svg +0 -0
  1004. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/slice_stack.png +0 -0
  1005. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/slice_stack.svg +0 -0
  1006. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/xy_slice.png +0 -0
  1007. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/xy_slice.svg +0 -0
  1008. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/xz_slice.png +0 -0
  1009. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/xz_slice.svg +0 -0
  1010. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/yz_slice.png +0 -0
  1011. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/resources/gui/illustrations/yz_slice.svg +0 -0
  1012. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/synctools/__init__.py +0 -0
  1013. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/synctools/axis.py +0 -0
  1014. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/synctools/darkref.py +0 -0
  1015. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/synctools/datalistener.py +0 -0
  1016. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/synctools/datatransfert.py +0 -0
  1017. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/synctools/imageloaderthread.py +0 -0
  1018. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/synctools/rsyncmanager.py +0 -0
  1019. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/synctools/saaxis.py +0 -0
  1020. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/synctools/sadeltabeta.py +0 -0
  1021. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/synctools/stacks/__init__.py +0 -0
  1022. {tomwer-1.2.8/tomwer/synctools/utils → tomwer-1.3.0a0/tomwer/synctools/stacks/control}/__init__.py +0 -0
  1023. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/synctools/stacks/control/datalistener.py +0 -0
  1024. {tomwer-1.2.8/tomwer/tests → tomwer-1.3.0a0/tomwer/synctools/stacks/edit}/__init__.py +0 -0
  1025. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/synctools/stacks/processingstack.py +0 -0
  1026. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/synctools/stacks/reconstruction/lamino.py +0 -0
  1027. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/tests/test_utils.py +0 -0
  1028. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer/utils.py +0 -0
  1029. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer.egg-info/dependency_links.txt +0 -0
  1030. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer.egg-info/entry_points.txt +0 -0
  1031. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer.egg-info/namespace_packages.txt +0 -0
  1032. {tomwer-1.2.8 → tomwer-1.3.0a0}/tomwer.egg-info/top_level.txt +0 -0
@@ -0,0 +1,286 @@
1
+ Metadata-Version: 2.1
2
+ Name: tomwer
3
+ Version: 1.3.0a0
4
+ Summary: "tomography workflow tools"
5
+ Home-page: https://gitlab.esrf.fr/tomotools/tomwer
6
+ Author: data analysis unit
7
+ Author-email: henri.payno@esrf.fr
8
+ License: MIT
9
+ Project-URL: Bug Tracker, https://gitlab.esrf.fr/tomotools/tomwer/-/issues
10
+ Keywords: orange3 add-on,ewoks
11
+ Classifier: Intended Audience :: Education
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Environment :: Console
16
+ Classifier: Environment :: X11 Applications :: Qt
17
+ Classifier: Operating System :: POSIX
18
+ Classifier: Natural Language :: English
19
+ Classifier: Topic :: Scientific/Engineering :: Physics
20
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
+ Requires-Python: >=3.6
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ Requires-Dist: numpy
25
+ Requires-Dist: setuptools
26
+ Requires-Dist: psutil
27
+ Requires-Dist: silx<2.0,>=1.0
28
+ Requires-Dist: tomoscan>=2.0.0a11
29
+ Requires-Dist: nxtomo>=1.0.4
30
+ Requires-Dist: nxtomomill>=1.0dev
31
+ Requires-Dist: processview>=1.3
32
+ Requires-Dist: ewoks>=0.1.1
33
+ Requires-Dist: sluurp>=0.3.3
34
+ Requires-Dist: packaging
35
+ Requires-Dist: flufl-lock
36
+ Requires-Dist: pyunitsystem>=1.1.0
37
+ Provides-Extra: full-base
38
+ Requires-Dist: orange-canvas-core; extra == "full-base"
39
+ Requires-Dist: orange-widget-base; extra == "full-base"
40
+ Requires-Dist: ewoks[orange]>=0.1.1; extra == "full-base"
41
+ Requires-Dist: rsyncmanager; extra == "full-base"
42
+ Requires-Dist: graypy; extra == "full-base"
43
+ Requires-Dist: fabio; extra == "full-base"
44
+ Requires-Dist: h5py>=3; extra == "full-base"
45
+ Requires-Dist: lxml; extra == "full-base"
46
+ Requires-Dist: werkzeug; extra == "full-base"
47
+ Requires-Dist: json-rpc; extra == "full-base"
48
+ Requires-Dist: scipy; extra == "full-base"
49
+ Requires-Dist: Pillow; extra == "full-base"
50
+ Requires-Dist: glymur; extra == "full-base"
51
+ Requires-Dist: resource; extra == "full-base"
52
+ Requires-Dist: tifffile; extra == "full-base"
53
+ Requires-Dist: hdf5plugin; extra == "full-base"
54
+ Requires-Dist: pyicat_plus; extra == "full-base"
55
+ Provides-Extra: full-no-cuda
56
+ Requires-Dist: orange-canvas-core; extra == "full-no-cuda"
57
+ Requires-Dist: orange-widget-base; extra == "full-no-cuda"
58
+ Requires-Dist: ewoks[orange]>=0.1.1; extra == "full-no-cuda"
59
+ Requires-Dist: rsyncmanager; extra == "full-no-cuda"
60
+ Requires-Dist: graypy; extra == "full-no-cuda"
61
+ Requires-Dist: fabio; extra == "full-no-cuda"
62
+ Requires-Dist: h5py>=3; extra == "full-no-cuda"
63
+ Requires-Dist: lxml; extra == "full-no-cuda"
64
+ Requires-Dist: werkzeug; extra == "full-no-cuda"
65
+ Requires-Dist: json-rpc; extra == "full-no-cuda"
66
+ Requires-Dist: scipy; extra == "full-no-cuda"
67
+ Requires-Dist: Pillow; extra == "full-no-cuda"
68
+ Requires-Dist: glymur; extra == "full-no-cuda"
69
+ Requires-Dist: resource; extra == "full-no-cuda"
70
+ Requires-Dist: tifffile; extra == "full-no-cuda"
71
+ Requires-Dist: hdf5plugin; extra == "full-no-cuda"
72
+ Requires-Dist: pyicat_plus; extra == "full-no-cuda"
73
+ Requires-Dist: nabu>=2023.3.0dev; extra == "full-no-cuda"
74
+ Provides-Extra: full
75
+ Requires-Dist: orange-canvas-core; extra == "full"
76
+ Requires-Dist: orange-widget-base; extra == "full"
77
+ Requires-Dist: ewoks[orange]>=0.1.1; extra == "full"
78
+ Requires-Dist: rsyncmanager; extra == "full"
79
+ Requires-Dist: graypy; extra == "full"
80
+ Requires-Dist: fabio; extra == "full"
81
+ Requires-Dist: h5py>=3; extra == "full"
82
+ Requires-Dist: lxml; extra == "full"
83
+ Requires-Dist: werkzeug; extra == "full"
84
+ Requires-Dist: json-rpc; extra == "full"
85
+ Requires-Dist: scipy; extra == "full"
86
+ Requires-Dist: Pillow; extra == "full"
87
+ Requires-Dist: glymur; extra == "full"
88
+ Requires-Dist: resource; extra == "full"
89
+ Requires-Dist: tifffile; extra == "full"
90
+ Requires-Dist: hdf5plugin; extra == "full"
91
+ Requires-Dist: pyicat_plus; extra == "full"
92
+ Requires-Dist: nabu[full]>=2023.3.0dev; extra == "full"
93
+ Requires-Dist: pycuda; extra == "full"
94
+ Requires-Dist: scikit-cuda; extra == "full"
95
+ Provides-Extra: doc
96
+ Requires-Dist: orange-canvas-core; extra == "doc"
97
+ Requires-Dist: orange-widget-base; extra == "doc"
98
+ Requires-Dist: ewoks[orange]>=0.1.1; extra == "doc"
99
+ Requires-Dist: rsyncmanager; extra == "doc"
100
+ Requires-Dist: graypy; extra == "doc"
101
+ Requires-Dist: fabio; extra == "doc"
102
+ Requires-Dist: h5py>=3; extra == "doc"
103
+ Requires-Dist: lxml; extra == "doc"
104
+ Requires-Dist: werkzeug; extra == "doc"
105
+ Requires-Dist: json-rpc; extra == "doc"
106
+ Requires-Dist: scipy; extra == "doc"
107
+ Requires-Dist: Pillow; extra == "doc"
108
+ Requires-Dist: glymur; extra == "doc"
109
+ Requires-Dist: resource; extra == "doc"
110
+ Requires-Dist: tifffile; extra == "doc"
111
+ Requires-Dist: hdf5plugin; extra == "doc"
112
+ Requires-Dist: pyicat_plus; extra == "doc"
113
+ Requires-Dist: nabu>=2023.3.0dev; extra == "doc"
114
+ Requires-Dist: Sphinx>=4.0.0; extra == "doc"
115
+ Requires-Dist: nbsphinx; extra == "doc"
116
+ Requires-Dist: pandoc; extra == "doc"
117
+ Requires-Dist: jupyterlab; extra == "doc"
118
+ Requires-Dist: pydata_sphinx_theme; extra == "doc"
119
+ Requires-Dist: sphinx-design; extra == "doc"
120
+ Provides-Extra: dev-spec
121
+ Requires-Dist: black; extra == "dev-spec"
122
+ Requires-Dist: flake8; extra == "dev-spec"
123
+ Requires-Dist: timeout-decorator; extra == "dev-spec"
124
+ Requires-Dist: pyopencl; extra == "dev-spec"
125
+ Provides-Extra: dev
126
+ Requires-Dist: orange-canvas-core; extra == "dev"
127
+ Requires-Dist: orange-widget-base; extra == "dev"
128
+ Requires-Dist: ewoks[orange]>=0.1.1; extra == "dev"
129
+ Requires-Dist: rsyncmanager; extra == "dev"
130
+ Requires-Dist: graypy; extra == "dev"
131
+ Requires-Dist: fabio; extra == "dev"
132
+ Requires-Dist: h5py>=3; extra == "dev"
133
+ Requires-Dist: lxml; extra == "dev"
134
+ Requires-Dist: werkzeug; extra == "dev"
135
+ Requires-Dist: json-rpc; extra == "dev"
136
+ Requires-Dist: scipy; extra == "dev"
137
+ Requires-Dist: Pillow; extra == "dev"
138
+ Requires-Dist: glymur; extra == "dev"
139
+ Requires-Dist: resource; extra == "dev"
140
+ Requires-Dist: tifffile; extra == "dev"
141
+ Requires-Dist: hdf5plugin; extra == "dev"
142
+ Requires-Dist: pyicat_plus; extra == "dev"
143
+ Requires-Dist: nabu[full]>=2023.3.0dev; extra == "dev"
144
+ Requires-Dist: pycuda; extra == "dev"
145
+ Requires-Dist: scikit-cuda; extra == "dev"
146
+ Requires-Dist: black; extra == "dev"
147
+ Requires-Dist: flake8; extra == "dev"
148
+ Requires-Dist: timeout-decorator; extra == "dev"
149
+ Requires-Dist: pyopencl; extra == "dev"
150
+ Provides-Extra: dev-no-cuda
151
+ Requires-Dist: orange-canvas-core; extra == "dev-no-cuda"
152
+ Requires-Dist: orange-widget-base; extra == "dev-no-cuda"
153
+ Requires-Dist: ewoks[orange]>=0.1.1; extra == "dev-no-cuda"
154
+ Requires-Dist: rsyncmanager; extra == "dev-no-cuda"
155
+ Requires-Dist: graypy; extra == "dev-no-cuda"
156
+ Requires-Dist: fabio; extra == "dev-no-cuda"
157
+ Requires-Dist: h5py>=3; extra == "dev-no-cuda"
158
+ Requires-Dist: lxml; extra == "dev-no-cuda"
159
+ Requires-Dist: werkzeug; extra == "dev-no-cuda"
160
+ Requires-Dist: json-rpc; extra == "dev-no-cuda"
161
+ Requires-Dist: scipy; extra == "dev-no-cuda"
162
+ Requires-Dist: Pillow; extra == "dev-no-cuda"
163
+ Requires-Dist: glymur; extra == "dev-no-cuda"
164
+ Requires-Dist: resource; extra == "dev-no-cuda"
165
+ Requires-Dist: tifffile; extra == "dev-no-cuda"
166
+ Requires-Dist: hdf5plugin; extra == "dev-no-cuda"
167
+ Requires-Dist: pyicat_plus; extra == "dev-no-cuda"
168
+ Requires-Dist: nabu>=2023.3.0dev; extra == "dev-no-cuda"
169
+ Requires-Dist: black; extra == "dev-no-cuda"
170
+ Requires-Dist: flake8; extra == "dev-no-cuda"
171
+ Requires-Dist: timeout-decorator; extra == "dev-no-cuda"
172
+ Requires-Dist: pyopencl; extra == "dev-no-cuda"
173
+ Provides-Extra: test
174
+ Requires-Dist: pytest-asyncio; extra == "test"
175
+ Requires-Dist: tomoscan[test]>=2.0.0a11; extra == "test"
176
+ Provides-Extra: setup-requires
177
+ Requires-Dist: setuptools; extra == "setup-requires"
178
+ Requires-Dist: numpy>=1.12; extra == "setup-requires"
179
+
180
+ tomwer
181
+ ======
182
+
183
+ tomwer is offering tools to automate acquisition and reconstruction processes for Tomography.
184
+ It contains:
185
+
186
+ - a library to access each acquisition process individually
187
+ - gui and applications to control main processes (reconstruction, data transfert...) and execute them as a stand alone application.
188
+ - an orange add-on to help users defining their own workflow (http://orange.biolab.si)
189
+
190
+
191
+
192
+ .. image:: http://www.edna-site.org/pub/doc/tomwer/extra/tomwer_start_short.gif
193
+
194
+
195
+ .. |Gitlab Status| image:: https://gitlab.esrf.fr/tomotools/tomwer/badges/master/pipeline.svg
196
+ :target: https://gitlab.esrf.fr/tomotools/tomwer/pipelines
197
+
198
+
199
+ Documentation
200
+ -------------
201
+
202
+ `Latest documentation <https://tomotools.gitlab-pages.esrf.fr/tomwer/>`_
203
+
204
+
205
+ Installation
206
+ ------------
207
+
208
+ Step 1 - tomwer
209
+ '''''''''''''''
210
+
211
+ To install it with all 'features':
212
+
213
+ .. code-block:: bash
214
+
215
+ pip install tomwer[full]
216
+
217
+ alternatively you can install the master branch from
218
+
219
+ .. code-block:: bash
220
+
221
+ pip install git+https://gitlab.esrf.fr/tomotools/tomwer/#egg=tomwer[full]
222
+
223
+
224
+ Step 2 - update orange-canvas-core and orange-widget-base (Optional)
225
+ ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
226
+
227
+ To access 'processing' wheels and 'reprocess action' you might want to install forks of update orange-canvas-core and orange-widget-base. This is optional and projects works with native orange projects
228
+
229
+ .. code-block:: bash
230
+
231
+ pip install git+https://github.com/payno/orange-canvas-core --no-deps --upgrade
232
+ pip install git+https://github.com/payno/orange-widget-base --no-deps --upgrade
233
+
234
+
235
+ Launching applications
236
+ ::::::::::::::::::::::
237
+
238
+ After the installation tomwer is embedding several applications.
239
+
240
+ Those applications can be launched by calling:
241
+
242
+ .. code-block:: bash
243
+
244
+ tomwer appName {options}
245
+
246
+ .. note:: if you only call `tomwer` then the man page will be displayed.
247
+
248
+ .. note:: You can access each application help using ``
249
+
250
+ .. code-block:: bash
251
+
252
+ tomwer appName --help
253
+
254
+
255
+ tomwer canvas - orange canvas
256
+ '''''''''''''''''''''''''''''
257
+
258
+ You can launch the canvas to create workflows from the different 'bricks'
259
+
260
+ .. code-block:: bash
261
+
262
+ tomwer canvas
263
+
264
+ .. note:: you can also use `orange-canvas`
265
+
266
+ .. note:: if your installed a virtual environment do not forget to active it :
267
+
268
+ .. code-block:: bash
269
+
270
+ source myvirtualenv/bin/activate
271
+
272
+
273
+ Documentation
274
+ :::::::::::::
275
+
276
+ .. code-block:: bash
277
+
278
+ sphinx-build doc build/html
279
+
280
+ The documentation is build in doc/build/html and the entry point is index.html
281
+
282
+ .. code-block:: bash
283
+
284
+ firefox build/html/index.html
285
+
286
+ .. note:: the build of the documentation need sphinx to be installed. This is not an hard dependacy. So you might need to install it.
@@ -0,0 +1,58 @@
1
+ <?xml version='1.0' encoding='utf-8'?>
2
+ <scheme version="2.0" title="Reconstruction of a volume and publication to icat" description="">
3
+ <nodes>
4
+ <node id="0" name="scan selector" qualified_name="orangecontrib.tomwer.widgets.control.DataSelectorOW.DataSelectorOW" project_name="tomwer" version="" title="scan selector" position="(150, 150)" />
5
+ <node id="1" name="reduced darks and flats" qualified_name="orangecontrib.tomwer.widgets.reconstruction.DarkRefAndCopyOW.DarkRefAndCopyOW" project_name="tomwer" version="" title="reduced darks and flats" position="(324.0, 183.0)" />
6
+ <node id="2" name="default center of rotation" qualified_name="orangecontrib.tomwer.widgets.reconstruction.AxisOW.AxisOW" project_name="tomwer" version="" title="default center of rotation" position="(490.0, 218.0)" />
7
+ <node id="3" name="nabu slice reconstruction" qualified_name="orangecontrib.tomwer.widgets.reconstruction.NabuOW.NabuOW" project_name="tomwer" version="" title="nabu slice reconstruction" position="(649.0, 261.0)" />
8
+ <node id="4" name="data viewer" qualified_name="orangecontrib.tomwer.widgets.visualization.DataViewerOW.DataViewerOW" project_name="tomwer" version="" title="data viewer" position="(818.0, 248.0)" />
9
+ <node id="5" name="nabu volume reconstruction" qualified_name="orangecontrib.tomwer.widgets.reconstruction.NabuVolumeOW.NabuVolumeOW" project_name="tomwer" version="" title="nabu volume reconstruction" position="(812.0, 391.0)" />
10
+ <node id="6" name="volume viewer" qualified_name="orangecontrib.tomwer.widgets.visualization.VolumeViewerOW.VolumeViewerOW" project_name="tomwer" version="" title="volume viewer" position="(986.75, 383.25)" />
11
+ <node id="7" name="create raw data screenshots" qualified_name="orangecontrib.tomwer.widgets.icat.RawDataScreenshotCreatorOW.RawDataScreenshotCreatorOW" project_name="tomwer" version="" title="create raw data screenshots" position="(321.0, 509.0)" />
12
+ <node id="8" name="save to gallery and publish" qualified_name="orangecontrib.tomwer.widgets.icat.SaveToGalleryAndPublishOW.SaveToGalleryAndPublishOW" project_name="tomwer" version="" title="save to gallery and publish" position="(506.0, 510.0)" />
13
+ <node id="9" name="save to gallery and publish" qualified_name="orangecontrib.tomwer.widgets.icat.SaveToGalleryAndPublishOW.SaveToGalleryAndPublishOW" project_name="tomwer" version="" title="save to gallery and publish (1)" position="(731.0, 514.0)" />
14
+ <node id="10" name="Publish processed data to icat" qualified_name="orangecontrib.tomwer.widgets.icat.PublishProcessedDataOW.PublishProcessedDataOW" project_name="tomwer" version="" title="Publish processed data to icat" position="(990.0, 514.0)" />
15
+ </nodes>
16
+ <links>
17
+ <link id="0" source_node_id="0" sink_node_id="1" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
18
+ <link id="1" source_node_id="1" sink_node_id="2" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
19
+ <link id="2" source_node_id="2" sink_node_id="3" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
20
+ <link id="3" source_node_id="3" sink_node_id="4" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
21
+ <link id="4" source_node_id="3" sink_node_id="5" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
22
+ <link id="5" source_node_id="5" sink_node_id="6" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
23
+ <link id="6" source_node_id="0" sink_node_id="7" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
24
+ <link id="7" source_node_id="7" sink_node_id="8" source_channel="screenshots" sink_channel="screenshots" enabled="true" source_channel_id="screenshots" sink_channel_id="screenshots" />
25
+ <link id="8" source_node_id="3" sink_node_id="9" source_channel="screenshots" sink_channel="screenshots" enabled="true" source_channel_id="screenshots" sink_channel_id="screenshots" />
26
+ <link id="9" source_node_id="5" sink_node_id="10" source_channel="data" sink_channel="data" enabled="true" source_channel_id="data" sink_channel_id="data" />
27
+ </links>
28
+ <annotations>
29
+ <arrow id="0" start="(267.0, 56.0)" end="(194.0, 105.0)" fill="#C1272D" />
30
+ <text id="1" type="text/plain" rect="(276.25, 17.75, 150.0, 31.0)" font-family="Ubuntu" font-size="16">provide dataset</text>
31
+ <text id="2" type="text/plain" rect="(146.0, 597.0, 168.0, 89.0)" font-family="Cantarell" font-size="16">create screenshot for raw projection, raw falt and raw dark</text>
32
+ <text id="3" type="text/plain" rect="(413.0, 612.0, 215.0, 62.0)" font-family="Cantarell" font-size="16">save screenshot to the gallry and publish to icat</text>
33
+ <arrow id="4" start="(630.0, 605.0)" end="(674.0, 573.0)" fill="#C1272D" />
34
+ <arrow id="5" start="(475.99999999999994, 612.0)" end="(477.99999999999994, 568.0)" fill="#C1272D" />
35
+ <arrow id="6" start="(607.0, 387.0)" end="(671.0, 395.0)" fill="#C1272D" />
36
+ <text id="7" type="text/plain" rect="(449.0, 350.0, 150.0, 51.0)" font-family="Cantarell" font-size="16">screenshot of the reconstructed slice</text>
37
+ <arrow id="8" start="(235.0, 592.0)" end="(281.0, 521.0)" fill="#C1272D" />
38
+ <text id="9" type="text/plain" rect="(901.0, 618.0, 179.0, 70.0)" font-family="Cantarell" font-size="16">publish reconstructed volume to icat</text>
39
+ <arrow id="10" start="(980.0, 621.0)" end="(981.0, 579.0)" fill="#C1272D" />
40
+ </annotations>
41
+ <thumbnail />
42
+ <node_properties>
43
+ <properties node_id="0" format="literal">{'_scanIDs': [], 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
44
+ <properties node_id="1" format="literal">{'_ewoks_default_inputs': {'data': None, 'dark_ref_params': None}, 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
45
+ <properties node_id="2" format="literal">{'_ewoks_default_inputs': {'data': None, 'axis_params': {'MODE': 'manual', 'POSITION_VALUE': None, 'CALC_INPUT_TYPE': 'transmission_nopag', 'ANGLE_MODE': '0-180', 'USE_SINOGRAM': False, 'SINOGRAM_LINE': '', 'SINOGRAM_SUBSAMPLING': 10, 'AXIS_URL_1': '', 'AXIS_URL_2': '', 'LOOK_AT_STDMAX': False, 'NEAR_WX': 5, 'FINE_STEP_X': 0.1, 'SCALE_IMG2_TO_IMG1': False, 'NEAR_POSITION': 0.0, 'PADDING_MODE': 'edge', 'FLIP_LR': True, 'COMPOSITE_OPTS': {'theta': 10, 'n_subsampling_y': 10, 'oversampling': 4, 'take_log': True, 'near_pos': 0, 'near_width': 20}, 'SIDE': 'all', 'COR_OPTIONS': ''}, 'gui': {'mode_is_lock': False, 'value_is_lock': False, 'auto_update_estimated_cor': True}}, 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
46
+ <properties node_id="3" format="literal">{'_ewoks_default_inputs': {'data': None, 'nabu_params': None}, 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
47
+ <properties node_id="4" format="literal">{'_viewer_config': {}, 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
48
+ <properties node_id="5" format="literal">{'_ewoks_default_inputs': {'data': None, 'nabu_volume_params': None, 'nabu_params': None}, 'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
49
+ <properties node_id="6" format="literal">{'controlAreaVisible': True, 'savedWidgetGeometry': None, '__version__': 1}</properties>
50
+ <properties node_id="7" format="literal">{'_ewoks_default_inputs': {}, '_ewoks_execinfo': {}, '_ewoks_varinfo': {}, 'controlAreaVisible': True, 'default_inputs': {}, 'savedWidgetGeometry': None, '__version__': 1}</properties>
51
+ <properties node_id="8" format="literal">{'_ewoks_default_inputs': {}, '_ewoks_execinfo': {}, '_ewoks_varinfo': {}, 'controlAreaVisible': True, 'default_inputs': {}, 'savedWidgetGeometry': None, '__version__': 1}</properties>
52
+ <properties node_id="9" format="literal">{'_ewoks_default_inputs': {}, '_ewoks_execinfo': {}, '_ewoks_varinfo': {}, 'controlAreaVisible': True, 'default_inputs': {}, 'savedWidgetGeometry': None, '__version__': 1}</properties>
53
+ <properties node_id="10" format="literal">{'_ewoks_default_inputs': {}, '_ewoks_execinfo': {}, '_ewoks_varinfo': {}, 'controlAreaVisible': True, 'default_inputs': {}, 'savedWidgetGeometry': None, '__version__': 1}</properties>
54
+ </node_properties>
55
+ <session_state>
56
+ <window_groups />
57
+ </session_state>
58
+ </scheme>
@@ -0,0 +1,64 @@
1
+ # coding: utf-8
2
+ ###########################################################################
3
+ # Copyright (C) 2016 European Synchrotron Radiation Facility
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in
13
+ # all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ # THE SOFTWARE.
22
+ #
23
+ #############################################################################
24
+
25
+ import sysconfig
26
+
27
+ import pkg_resources
28
+
29
+ ICON = "../widgets/icons/tomwer.png"
30
+
31
+ BACKGROUND = "#C0CCFF"
32
+
33
+
34
+ # Entry point for main Orange categories/widgets discovery
35
+ def widget_discovery(discovery):
36
+ dist = pkg_resources.get_distribution("tomwer")
37
+ pkgs = [
38
+ "orangecontrib.tomwer.widgets.cluster",
39
+ "orangecontrib.tomwer.widgets.control",
40
+ "orangecontrib.tomwer.widgets.debugtools",
41
+ "orangecontrib.tomwer.widgets.edit",
42
+ "orangecontrib.tomwer.widgets.icat",
43
+ "orangecontrib.tomwer.widgets.reconstruction",
44
+ # "orangecontrib.tomwer.widgets.stitching",
45
+ "orangecontrib.tomwer.widgets.visualization",
46
+ "orangecontrib.tomwer.widgets.other",
47
+ ]
48
+ for pkg in pkgs:
49
+ discovery.process_category_package(pkg, distribution=dist)
50
+
51
+
52
+ WIDGET_HELP_PATH = (
53
+ # Used for development.
54
+ # You still need to build help pages using
55
+ # make htmlhelp
56
+ # inside doc folder
57
+ ("/build/sphinx/htmlhelp/index.html", None),
58
+ #
59
+ # Documentation included in wheel
60
+ # Correct DATA_FILES entry is needed in setup.py and documentation has to be built
61
+ # # before the wheel is created.
62
+ (f"{sysconfig.get_path('data')}/help/tomwer/index.html", None),
63
+ ("http://www.silx.org/pub/doc/tomwer/htmlhelp/0.9/", None),
64
+ )
@@ -0,0 +1,230 @@
1
+ import fnmatch
2
+ import logging
3
+ import os
4
+ from typing import Optional
5
+
6
+ import h5py
7
+ from orangewidget import gui, widget
8
+ from orangewidget.widget import Output
9
+ from silx.gui import qt
10
+ from orangewidget.settings import Setting
11
+
12
+ import tomwer.core.process.control.datadiscovery
13
+ from orangecontrib.tomwer.widgets.utils import WidgetLongProcessing
14
+ from tomwer.core.scan.blissscan import BlissScan
15
+ from tomwer.core.scan.edfscan import EDFTomoScan
16
+ from tomwer.core.scan.nxtomoscan import NXtomoScan
17
+ from tomwer.core.scan.scanbase import TomwerScanBase
18
+ from tomwer.core.scan.scanfactory import ScanFactory
19
+ from tomwer.core.scan.scantype import ScanType
20
+ from tomwer.gui.control.datadiscovery import DataDiscoveryWidget
21
+
22
+ logger = logging.getLogger(__name__)
23
+
24
+
25
+ class DataDiscoveryOW(widget.OWBaseWidget, WidgetLongProcessing, openclass=True):
26
+ """
27
+ This widget will browse a folder and sub folder to find valid tomo scan project.
28
+ Contrary to the scan watcher it will parse all folder / sub folders then stop.
29
+ """
30
+
31
+ name = "scan discovery"
32
+ id = "orangecontrib.widgets.tomwer.control.DataDiscoveryOW.DataDiscoveryOW"
33
+ description = (
34
+ "This widget will browse a folder and sub folder to find valid tomo scan project. \n"
35
+ "Contrary to the scan watcher it will parse all folder / sub folders then stop."
36
+ )
37
+ icon = "icons/datadiscover.svg"
38
+ priority = 11
39
+ keywords = [
40
+ "tomography",
41
+ "tomwer",
42
+ "datadiscovery",
43
+ "data",
44
+ "discovery",
45
+ "search",
46
+ "research",
47
+ "hdf5",
48
+ "NXtomo",
49
+ ]
50
+
51
+ want_main_area = True
52
+ want_control_area = False
53
+ resizing_enabled = True
54
+
55
+ ewokstaskclass = tomwer.core.process.control.datadiscovery._DataDiscoveryPlaceHolder
56
+
57
+ class Outputs:
58
+ data = Output(name="data", type=TomwerScanBase, doc="one scan to be process")
59
+
60
+ settings = Setting(dict())
61
+
62
+ def __init__(self, *args, **kwargs):
63
+ super().__init__(*args, **kwargs)
64
+ self._widget = DataDiscoveryWidget(parent=self)
65
+
66
+ self._box = gui.vBox(self.mainArea, self.name)
67
+ layout = self._box.layout()
68
+ layout.addWidget(self._widget)
69
+
70
+ self._widget.setConfiguration(self.settings)
71
+
72
+ # getting ready for processing
73
+ self._processingThread = _DiscoverThread()
74
+
75
+ # connect signal / slot
76
+ self._processingThread.sigDataFound.connect(self._sendData)
77
+ self._processingThread.finished.connect(self._endProcessing)
78
+ self._widget.widget.controlWidget._qpbstartstop.released.connect(
79
+ self._switchObservation
80
+ )
81
+ # dedicated one for settings
82
+ self._widget.widget.controlWidget._filterQLE.editingFinished.connect(
83
+ self._updatesettings
84
+ )
85
+ self._widget.widget.controlWidget._qteFolderSelected.editingFinished.connect(
86
+ self._updatesettings
87
+ )
88
+ self._widget.widget.configWidget.sigScanTypeChanged.connect(
89
+ self._updatesettings
90
+ )
91
+
92
+ def _updatesettings(self):
93
+ self.settings = self.getConfiguration()
94
+
95
+ # expose some API
96
+ def getConfiguration(self) -> dict:
97
+ return self._widget.getConfiguration()
98
+
99
+ def setConfiguration(self, config: dict):
100
+ self._widget.setConfiguration(config)
101
+
102
+ def getProcessingThread(self) -> qt.QThread:
103
+ return self._processingThread
104
+
105
+ def setFolderObserved(self, dir_: str):
106
+ self._widget.widget.setFolderObserved(dir_)
107
+
108
+ def setSearchScanType(self, scan_type):
109
+ self._widget.widget.setSearchScanType(scan_type)
110
+
111
+ def setFilePattern(self, pattern: Optional[str]):
112
+ self._widget.widget.setLinuxFilePattern(pattern)
113
+
114
+ def _switchObservation(self, *args, **kwargs):
115
+ """stop or start the disceovery according to the thread state"""
116
+ thread = self.getProcessingThread()
117
+ if thread.isRunning():
118
+ thread.quit()
119
+ self._endProcessing()
120
+ else:
121
+ self.start_discovery()
122
+
123
+ def start_discovery(self, wait: Optional[int] = None):
124
+ """start the discovery of scans
125
+ :param int wait: optional waiting time in second
126
+ """
127
+ thread = self.getProcessingThread()
128
+ if thread.isRunning():
129
+ logger.warning("Discovery is already running")
130
+ return
131
+ self._startProcessing()
132
+ thread.setConfiguration(self.getConfiguration())
133
+ thread.start()
134
+ if wait is not None:
135
+ thread.wait(wait)
136
+
137
+ def _sendData(self, data):
138
+ if data is not None:
139
+ self.Outputs.data.send(data)
140
+
141
+ def _startProcessing(self, *args, **kwargs):
142
+ self._widget.widget.controlWidget._qpbstartstop.setText("stop discovery")
143
+ return super()._startProcessing(*args, **kwargs)
144
+
145
+ def _endProcessing(self, *args, **kwargs):
146
+ self._widget.widget.controlWidget._qpbstartstop.setText("start discovery")
147
+ return super()._endProcessing(*args, **kwargs)
148
+
149
+
150
+ class _DiscoverThread(qt.QThread):
151
+ """
152
+ Thread to browse folder and sub folder and looking for some scan
153
+ """
154
+
155
+ sigDataFound = qt.Signal(object)
156
+ """emit each time a new dataset is found"""
157
+
158
+ def __init__(self, **kwargs) -> None:
159
+ super().__init__(**kwargs)
160
+ self._root_dir = None
161
+ self._research_type = None
162
+ self._file_filter = None
163
+ self._look_for_hdf5 = False
164
+
165
+ def setConfiguration(self, config: dict):
166
+ self._root_dir = config.get("start_folder", None)
167
+ self._research_type = ScanType.from_value(config["scan_type_searched"])
168
+ self._file_filter = config.get("file_filter", None)
169
+ self._look_for_hdf5 = self._research_type in (
170
+ ScanType.BLISS,
171
+ ScanType.NX_TOMO,
172
+ )
173
+
174
+ def run(self):
175
+ if self._research_type is None:
176
+ logger.error("No reserach type defined. Cannot research scan")
177
+ elif not os.path.isdir(self._root_dir):
178
+ logger.error(f"{self._root_dir} is not a directory")
179
+ else:
180
+ self.discover_scan(file_path=self._root_dir)
181
+
182
+ def discover_scan(self, file_path):
183
+ if (
184
+ os.path.isfile(file_path)
185
+ and self._look_for_hdf5
186
+ and h5py.is_hdf5(file_path)
187
+ ) or (os.path.isdir(file_path) and not self._look_for_hdf5):
188
+ try:
189
+ name_match = self._file_filter is None or fnmatch.fnmatch(
190
+ os.path.basename(file_path), self._file_filter
191
+ )
192
+ except Exception as e:
193
+ logger.error(f"fnmatch fail. Error is {e}")
194
+ name_match = True
195
+ if name_match:
196
+ self._treat_path(file_path)
197
+ if os.path.isdir(file_path):
198
+ [
199
+ self.discover_scan(file_path=os.path.join(file_path, file_))
200
+ for file_ in os.listdir(file_path)
201
+ ]
202
+
203
+ def _treat_path(self, folder_path: str):
204
+ """treat file / folder at a specific location"""
205
+ try:
206
+ scan_objs = ScanFactory.create_scan_objects(
207
+ scan_path=folder_path,
208
+ accept_bliss_scan=(self._research_type == ScanType.BLISS),
209
+ )
210
+ except Exception as e:
211
+ logger.info(f"Fail to treat {folder_path}. Error is {e}")
212
+ else:
213
+ for scan in scan_objs:
214
+ if (
215
+ isinstance(scan, BlissScan)
216
+ and self._research_type is ScanType.BLISS
217
+ ):
218
+ self.sigDataFound.emit(scan)
219
+ elif (
220
+ isinstance(scan, NXtomoScan)
221
+ and self._research_type is ScanType.NX_TOMO
222
+ ):
223
+ self.sigDataFound.emit(scan)
224
+ elif (
225
+ isinstance(scan, EDFTomoScan)
226
+ and self._research_type is ScanType.SPEC
227
+ ):
228
+ self.sigDataFound.emit(scan)
229
+ else:
230
+ raise NotImplementedError("case not handled", self._research_type)