tomwer 1.1.0rc7__tar.gz → 1.2.0a0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1064) hide show
  1. tomwer-1.2.0a0/PKG-INFO +177 -0
  2. tomwer-1.2.0a0/orangecontrib/tomwer/__init__.py +6 -0
  3. tomwer-1.2.0a0/orangecontrib/tomwer/orange/managedprocess.py +114 -0
  4. tomwer-1.2.0a0/orangecontrib/tomwer/state_summary.py +50 -0
  5. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/__init__.py +62 -0
  6. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py +244 -0
  7. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py +99 -0
  8. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/AdvancementOW.py +66 -0
  9. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/DataDiscoveryOW.py +235 -0
  10. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/DataListOW.py +128 -0
  11. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/DataListenerOW.py +409 -0
  12. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/DataSelectorOW.py +135 -0
  13. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/DataTransfertOW.py +223 -0
  14. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/DataValidatorOW.py +195 -0
  15. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/DataWatcherOW.py +208 -0
  16. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +234 -0
  17. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/FilterOW.py +128 -0
  18. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +92 -0
  19. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/NXTomomillOW.py +312 -0
  20. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/NotifierOW.py +127 -0
  21. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +144 -0
  22. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/TimerOW.py +130 -0
  23. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/TomoObjSerieOW.py +87 -0
  24. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/VolumeSelector.py +140 -0
  25. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/VolumeSymLinkOW.py +188 -0
  26. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/icons/datadiscover.png +0 -0
  27. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/icons/datadiscover.svg +137 -0
  28. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/icons/nxtomomill.png +0 -0
  29. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/control/icons/nxtomomill.svg +168 -0
  30. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py +177 -0
  31. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/debugtools/ObjectInspectorOW.py +66 -0
  32. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py +183 -0
  33. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py +134 -0
  34. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py +127 -0
  35. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py +103 -0
  36. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/edit/test/test_dark_flat_patch.py +76 -0
  37. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/edit/test/test_image_key_editor.py +56 -0
  38. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/edit/test/test_image_key_upgrader.py +56 -0
  39. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/edit/test/test_nxtomo_editor.py +27 -0
  40. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/other/PythonScriptOW.py +787 -0
  41. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/AxisOW.py +559 -0
  42. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +235 -0
  43. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py +256 -0
  44. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/NabuOW.py +285 -0
  45. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py +454 -0
  46. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py +469 -0
  47. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py +393 -0
  48. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py +307 -0
  49. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/TofuOW.py +196 -0
  50. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +141 -0
  51. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +79 -0
  52. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/visualization/LivesliceOW.py +88 -0
  53. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py +70 -0
  54. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/visualization/RadioStackOW.py +94 -0
  55. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py +115 -0
  56. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py +95 -0
  57. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/visualization/SliceStackOW.py +109 -0
  58. tomwer-1.2.0a0/orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py +88 -0
  59. tomwer-1.2.0a0/setup.cfg +150 -0
  60. tomwer-1.2.0a0/setup.py +35 -0
  61. tomwer-1.2.0a0/tomwer/__init__.py +43 -0
  62. tomwer-1.2.0a0/tomwer/__main__.py +173 -0
  63. tomwer-1.2.0a0/tomwer/app/axis.py +210 -0
  64. tomwer-1.2.0a0/tomwer/app/canvas.py +55 -0
  65. tomwer-1.2.0a0/tomwer/app/canvas_launcher/config.py +206 -0
  66. tomwer-1.2.0a0/tomwer/app/canvas_launcher/environ.py +92 -0
  67. tomwer-1.2.0a0/tomwer/app/canvas_launcher/mainwindow.py +381 -0
  68. tomwer-1.2.0a0/tomwer/app/canvas_launcher/splash.py +26 -0
  69. tomwer-1.2.0a0/tomwer/app/canvas_launcher/widgetsscheme.py +96 -0
  70. tomwer-1.2.0a0/tomwer/app/darkref.py +181 -0
  71. tomwer-1.2.0a0/tomwer/app/darkrefpatch.py +131 -0
  72. tomwer-1.2.0a0/tomwer/app/diffframe.py +93 -0
  73. tomwer-1.2.0a0/tomwer/app/imagekeyeditor.py +104 -0
  74. tomwer-1.2.0a0/tomwer/app/imagekeyupgrader.py +106 -0
  75. tomwer-1.2.0a0/tomwer/app/intensitynormalization.py +207 -0
  76. tomwer-1.2.0a0/tomwer/app/lamino.py +138 -0
  77. tomwer-1.2.0a0/tomwer/app/nabuapp.py +257 -0
  78. tomwer-1.2.0a0/tomwer/app/nxtomoeditor.py +104 -0
  79. tomwer-1.2.0a0/tomwer/app/radiostack.py +83 -0
  80. tomwer-1.2.0a0/tomwer/app/rsync.py +120 -0
  81. tomwer-1.2.0a0/tomwer/app/saaxis.py +286 -0
  82. tomwer-1.2.0a0/tomwer/app/sadeltabeta.py +348 -0
  83. tomwer-1.2.0a0/tomwer/app/samplemoved.py +80 -0
  84. tomwer-1.2.0a0/tomwer/app/scanviewer.py +83 -0
  85. tomwer-1.2.0a0/tomwer/app/sinogramviewer.py +111 -0
  86. tomwer-1.2.0a0/tomwer/app/slicestack.py +80 -0
  87. tomwer-1.2.0a0/tomwer/app/stopdatalistener.py +39 -0
  88. tomwer-1.2.0a0/tomwer/core/futureobject.py +183 -0
  89. tomwer-1.2.0a0/tomwer/core/log/logger.py +128 -0
  90. tomwer-1.2.0a0/tomwer/core/log/processlog.py +106 -0
  91. tomwer-1.2.0a0/tomwer/core/process/conditions/filters.py +217 -0
  92. tomwer-1.2.0a0/tomwer/core/process/control/datadiscovery.py +7 -0
  93. tomwer-1.2.0a0/tomwer/core/process/control/datalistener/datalistener.py +587 -0
  94. tomwer-1.2.0a0/tomwer/core/process/control/datalistener/rpcserver.py +306 -0
  95. tomwer-1.2.0a0/tomwer/core/process/control/datawatcher/datawatcher.py +462 -0
  96. tomwer-1.2.0a0/tomwer/core/process/control/datawatcher/datawatcherobserver.py +682 -0
  97. tomwer-1.2.0a0/tomwer/core/process/control/datawatcher/datawatcherprocess.py +249 -0
  98. tomwer-1.2.0a0/tomwer/core/process/control/datawatcher/edfdwprocess.py +208 -0
  99. tomwer-1.2.0a0/tomwer/core/process/control/datawatcher/hdf5dwprocess.py +83 -0
  100. tomwer-1.2.0a0/tomwer/core/process/control/datawatcher/status.py +77 -0
  101. tomwer-1.2.0a0/tomwer/core/process/control/nxtomomill.py +134 -0
  102. tomwer-1.2.0a0/tomwer/core/process/control/scanlist.py +51 -0
  103. tomwer-1.2.0a0/tomwer/core/process/control/scanselector.py +8 -0
  104. tomwer-1.2.0a0/tomwer/core/process/control/scantransfer.py +690 -0
  105. tomwer-1.2.0a0/tomwer/core/process/control/scanvalidator.py +285 -0
  106. tomwer-1.2.0a0/tomwer/core/process/control/test/test_volume_link.py +73 -0
  107. tomwer-1.2.0a0/tomwer/core/process/control/timer.py +84 -0
  108. tomwer-1.2.0a0/tomwer/core/process/control/volumeselector.py +10 -0
  109. tomwer-1.2.0a0/tomwer/core/process/control/volumesymlink.py +161 -0
  110. tomwer-1.2.0a0/tomwer/core/process/edit/darkflatpatch.py +116 -0
  111. tomwer-1.2.0a0/tomwer/core/process/edit/imagekeyeditor.py +231 -0
  112. tomwer-1.2.0a0/tomwer/core/process/reconstruction/axis/axis.py +995 -0
  113. tomwer-1.2.0a0/tomwer/core/process/reconstruction/axis/mode.py +95 -0
  114. tomwer-1.2.0a0/tomwer/core/process/reconstruction/axis/params.py +916 -0
  115. tomwer-1.2.0a0/tomwer/core/process/reconstruction/darkref/darkrefs.py +609 -0
  116. tomwer-1.2.0a0/tomwer/core/process/reconstruction/darkref/darkrefscopy.py +354 -0
  117. tomwer-1.2.0a0/tomwer/core/process/reconstruction/darkref/params.py +285 -0
  118. tomwer-1.2.0a0/tomwer/core/process/reconstruction/lamino/tofu.py +980 -0
  119. tomwer-1.2.0a0/tomwer/core/process/reconstruction/nabu/castvolume.py +251 -0
  120. tomwer-1.2.0a0/tomwer/core/process/reconstruction/nabu/nabucommon.py +617 -0
  121. tomwer-1.2.0a0/tomwer/core/process/reconstruction/nabu/nabuscores.py +309 -0
  122. tomwer-1.2.0a0/tomwer/core/process/reconstruction/nabu/nabuslices.py +795 -0
  123. tomwer-1.2.0a0/tomwer/core/process/reconstruction/nabu/nabuvolume.py +459 -0
  124. tomwer-1.2.0a0/tomwer/core/process/reconstruction/nabu/utils.py +461 -0
  125. tomwer-1.2.0a0/tomwer/core/process/reconstruction/normalization/__init__.py +2 -0
  126. tomwer-1.2.0a0/tomwer/core/process/reconstruction/normalization/normalization.py +357 -0
  127. tomwer-1.2.0a0/tomwer/core/process/reconstruction/normalization/params.py +166 -0
  128. tomwer-1.2.0a0/tomwer/core/process/reconstruction/saaxis/__init__.py +2 -0
  129. tomwer-1.2.0a0/tomwer/core/process/reconstruction/saaxis/params.py +162 -0
  130. tomwer-1.2.0a0/tomwer/core/process/reconstruction/saaxis/saaxis.py +702 -0
  131. tomwer-1.2.0a0/tomwer/core/process/reconstruction/sadeltabeta/__init__.py +2 -0
  132. tomwer-1.2.0a0/tomwer/core/process/reconstruction/sadeltabeta/params.py +107 -0
  133. tomwer-1.2.0a0/tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +594 -0
  134. tomwer-1.2.0a0/tomwer/core/process/reconstruction/scores/__init__.py +6 -0
  135. tomwer-1.2.0a0/tomwer/core/process/reconstruction/scores/params.py +198 -0
  136. tomwer-1.2.0a0/tomwer/core/process/reconstruction/scores/scores.py +217 -0
  137. tomwer-1.2.0a0/tomwer/core/process/reconstruction/test/test_axis_params.py +61 -0
  138. tomwer-1.2.0a0/tomwer/core/process/reconstruction/test/test_darkref.py +60 -0
  139. tomwer-1.2.0a0/tomwer/core/process/reconstruction/test/test_darkref_copy.py +202 -0
  140. tomwer-1.2.0a0/tomwer/core/process/reconstruction/test/test_paramsbase.py +34 -0
  141. tomwer-1.2.0a0/tomwer/core/process/reconstruction/test/test_saaxis.py +105 -0
  142. tomwer-1.2.0a0/tomwer/core/process/reconstruction/test/test_sadeltabeta.py +71 -0
  143. tomwer-1.2.0a0/tomwer/core/process/reconstruction/test/test_utils.py +29 -0
  144. tomwer-1.2.0a0/tomwer/core/process/script/python.py +101 -0
  145. tomwer-1.2.0a0/tomwer/core/process/task.py +506 -0
  146. tomwer-1.2.0a0/tomwer/core/process/test/test_axis.py +298 -0
  147. tomwer-1.2.0a0/tomwer/core/process/test/test_conditions.py +92 -0
  148. tomwer-1.2.0a0/tomwer/core/process/test/test_dark_and_flat.py +383 -0
  149. tomwer-1.2.0a0/tomwer/core/process/test/test_data_listener.py +114 -0
  150. tomwer-1.2.0a0/tomwer/core/process/test/test_data_transfer.py +379 -0
  151. tomwer-1.2.0a0/tomwer/core/process/test/test_data_watcher.py +82 -0
  152. tomwer-1.2.0a0/tomwer/core/process/test/test_lamino.py +76 -0
  153. tomwer-1.2.0a0/tomwer/core/process/test/test_nabu.py +478 -0
  154. tomwer-1.2.0a0/tomwer/core/process/test/test_normalization.py +103 -0
  155. tomwer-1.2.0a0/tomwer/core/process/test/test_timer.py +77 -0
  156. tomwer-1.2.0a0/tomwer/core/process/utils.py +114 -0
  157. tomwer-1.2.0a0/tomwer/core/progress.py +100 -0
  158. tomwer-1.2.0a0/tomwer/core/scan/blissscan.py +262 -0
  159. tomwer-1.2.0a0/tomwer/core/scan/edfscan.py +605 -0
  160. tomwer-1.2.0a0/tomwer/core/scan/futurescan.py +8 -0
  161. tomwer-1.2.0a0/tomwer/core/scan/hdf5scan.py +509 -0
  162. tomwer-1.2.0a0/tomwer/core/scan/scanbase.py +864 -0
  163. tomwer-1.2.0a0/tomwer/core/scan/scanfactory.py +254 -0
  164. tomwer-1.2.0a0/tomwer/core/scan/scantype.py +7 -0
  165. tomwer-1.2.0a0/tomwer/core/scan/test/test_edf.py +53 -0
  166. tomwer-1.2.0a0/tomwer/core/scan/test/test_future_scan.py +61 -0
  167. tomwer-1.2.0a0/tomwer/core/scan/test/test_h5.py +116 -0
  168. tomwer-1.2.0a0/tomwer/core/scan/test/test_process_registration.py +145 -0
  169. tomwer-1.2.0a0/tomwer/core/scan/test/test_scan.py +446 -0
  170. tomwer-1.2.0a0/tomwer/core/settings.py +112 -0
  171. tomwer-1.2.0a0/tomwer/core/test/test_lamino.py +91 -0
  172. tomwer-1.2.0a0/tomwer/core/test/test_scanutils.py +52 -0
  173. tomwer-1.2.0a0/tomwer/core/test/test_utils.py +292 -0
  174. tomwer-1.2.0a0/tomwer/core/utils/__init__.py +450 -0
  175. tomwer-1.2.0a0/tomwer/core/utils/deprecation.py +135 -0
  176. tomwer-1.2.0a0/tomwer/core/utils/image.py +157 -0
  177. tomwer-1.2.0a0/tomwer/core/utils/locker.py +66 -0
  178. tomwer-1.2.0a0/tomwer/core/utils/normalization.py +85 -0
  179. tomwer-1.2.0a0/tomwer/core/utils/nxtomoutils.py +65 -0
  180. tomwer-1.2.0a0/tomwer/core/utils/scanutils.py +446 -0
  181. tomwer-1.2.0a0/tomwer/core/utils/slurm.py +51 -0
  182. tomwer-1.2.0a0/tomwer/core/utils/time.py +48 -0
  183. tomwer-1.2.0a0/tomwer/core/utils/volumeutils.py +14 -0
  184. tomwer-1.2.0a0/tomwer/core/volume/__init__.py +5 -0
  185. tomwer-1.2.0a0/tomwer/core/volume/edfvolume.py +76 -0
  186. tomwer-1.2.0a0/tomwer/core/volume/hdf5volume.py +93 -0
  187. tomwer-1.2.0a0/tomwer/core/volume/jp2kvolume.py +78 -0
  188. tomwer-1.2.0a0/tomwer/core/volume/rawvolume.py +90 -0
  189. tomwer-1.2.0a0/tomwer/core/volume/tiffvolume.py +124 -0
  190. tomwer-1.2.0a0/tomwer/core/volume/volumebase.py +50 -0
  191. tomwer-1.2.0a0/tomwer/core/volume/volumefactory.py +183 -0
  192. tomwer-1.2.0a0/tomwer/gui/cluster/slurm.py +363 -0
  193. tomwer-1.2.0a0/tomwer/gui/cluster/supervisor.py +424 -0
  194. tomwer-1.2.0a0/tomwer/gui/cluster/test/test_cluster.py +78 -0
  195. tomwer-1.2.0a0/tomwer/gui/cluster/test/test_supervisor.py +91 -0
  196. tomwer-1.2.0a0/tomwer/gui/conditions/filter.py +143 -0
  197. tomwer-1.2.0a0/tomwer/gui/control/actions.py +70 -0
  198. tomwer-1.2.0a0/tomwer/gui/control/datadiscovery.py +168 -0
  199. tomwer-1.2.0a0/tomwer/gui/control/datalist.py +1017 -0
  200. tomwer-1.2.0a0/tomwer/gui/control/datalistener.py +489 -0
  201. tomwer-1.2.0a0/tomwer/gui/control/datareacheractions.py +77 -0
  202. tomwer-1.2.0a0/tomwer/gui/control/datatransfert.py +151 -0
  203. tomwer-1.2.0a0/tomwer/gui/control/datavalidator.py +400 -0
  204. tomwer-1.2.0a0/tomwer/gui/control/datawatcher/configuration.py +250 -0
  205. tomwer-1.2.0a0/tomwer/gui/control/datawatcher/controlwidget.py +116 -0
  206. tomwer-1.2.0a0/tomwer/gui/control/datawatcher/datawatcher.py +603 -0
  207. tomwer-1.2.0a0/tomwer/gui/control/datawatcher/datawatcherobserver.py +294 -0
  208. tomwer-1.2.0a0/tomwer/gui/control/history.py +133 -0
  209. tomwer-1.2.0a0/tomwer/gui/control/observations.py +219 -0
  210. tomwer-1.2.0a0/tomwer/gui/control/scanselectorwidget.py +66 -0
  211. tomwer-1.2.0a0/tomwer/gui/control/selectorwidgetbase.py +138 -0
  212. tomwer-1.2.0a0/tomwer/gui/control/serie/seriecreator.py +966 -0
  213. tomwer-1.2.0a0/tomwer/gui/control/singletomoobj.py +157 -0
  214. tomwer-1.2.0a0/tomwer/gui/control/test/test_datadiscovery.py +27 -0
  215. tomwer-1.2.0a0/tomwer/gui/control/test/test_datalist.py +96 -0
  216. tomwer-1.2.0a0/tomwer/gui/control/test/test_datalistener.py +78 -0
  217. tomwer-1.2.0a0/tomwer/gui/control/test/test_datavalidator.py +54 -0
  218. tomwer-1.2.0a0/tomwer/gui/control/test/test_inputwidget.py +79 -0
  219. tomwer-1.2.0a0/tomwer/gui/control/test/test_process_manager.py +65 -0
  220. tomwer-1.2.0a0/tomwer/gui/control/test/test_scanselector.py +67 -0
  221. tomwer-1.2.0a0/tomwer/gui/control/test/test_scanvalidator.py +115 -0
  222. tomwer-1.2.0a0/tomwer/gui/control/test/test_single_tomo_obj.py +71 -0
  223. tomwer-1.2.0a0/tomwer/gui/control/test/test_volume_dialog.py +216 -0
  224. tomwer-1.2.0a0/tomwer/gui/control/test/test_volumeselector.py +94 -0
  225. tomwer-1.2.0a0/tomwer/gui/control/volumeselectorwidget.py +60 -0
  226. tomwer-1.2.0a0/tomwer/gui/debugtools/datasetgenerator.py +280 -0
  227. tomwer-1.2.0a0/tomwer/gui/debugtools/objectinspector.py +71 -0
  228. tomwer-1.2.0a0/tomwer/gui/edit/dkrfpatch.py +483 -0
  229. tomwer-1.2.0a0/tomwer/gui/edit/imagekeyeditor.py +823 -0
  230. tomwer-1.2.0a0/tomwer/gui/edit/nxtomoeditor.py +476 -0
  231. tomwer-1.2.0a0/tomwer/gui/edit/test/test_dkrf_patch.py +212 -0
  232. tomwer-1.2.0a0/tomwer/gui/edit/test/test_image_key_editor.py +170 -0
  233. tomwer-1.2.0a0/tomwer/gui/edit/test/test_nx_editor.py +157 -0
  234. tomwer-1.2.0a0/tomwer/gui/icons.py +404 -0
  235. tomwer-1.2.0a0/tomwer/gui/illustrations.py +159 -0
  236. tomwer-1.2.0a0/tomwer/gui/imagefromfile.py +157 -0
  237. tomwer-1.2.0a0/tomwer/gui/qfolderdialog.py +570 -0
  238. tomwer-1.2.0a0/tomwer/gui/reconstruction/axis/CompareImages.py +409 -0
  239. tomwer-1.2.0a0/tomwer/gui/reconstruction/axis/__init__.py +2 -0
  240. tomwer-1.2.0a0/tomwer/gui/reconstruction/axis/axis.py +612 -0
  241. tomwer-1.2.0a0/tomwer/gui/reconstruction/axis/radioaxis.py +2590 -0
  242. tomwer-1.2.0a0/tomwer/gui/reconstruction/darkref/darkrefcopywidget.py +299 -0
  243. tomwer-1.2.0a0/tomwer/gui/reconstruction/darkref/darkrefwidget.py +444 -0
  244. tomwer-1.2.0a0/tomwer/gui/reconstruction/lamino/tofu/misc.py +148 -0
  245. tomwer-1.2.0a0/tomwer/gui/reconstruction/lamino/tofu/projections.py +896 -0
  246. tomwer-1.2.0a0/tomwer/gui/reconstruction/lamino/tofu/tofu.py +432 -0
  247. tomwer-1.2.0a0/tomwer/gui/reconstruction/lamino/tofu/tofuexpert.py +567 -0
  248. tomwer-1.2.0a0/tomwer/gui/reconstruction/lamino/tofu/tofuoutput.py +760 -0
  249. tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/action.py +120 -0
  250. tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/castvolume.py +283 -0
  251. tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/check.py +115 -0
  252. tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/nabuconfig/base.py +98 -0
  253. tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py +355 -0
  254. tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py +296 -0
  255. tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/nabuconfig/output.py +257 -0
  256. tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +378 -0
  257. tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +536 -0
  258. tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +988 -0
  259. tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/nabuflow.py +475 -0
  260. tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/slices.py +625 -0
  261. tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/slurm.py +204 -0
  262. tomwer-1.2.0a0/tomwer/gui/reconstruction/nabu/volume.py +475 -0
  263. tomwer-1.2.0a0/tomwer/gui/reconstruction/normalization/intensity.py +922 -0
  264. tomwer-1.2.0a0/tomwer/gui/reconstruction/saaxis/corrangeselector.py +830 -0
  265. tomwer-1.2.0a0/tomwer/gui/reconstruction/saaxis/dimensionwidget.py +260 -0
  266. tomwer-1.2.0a0/tomwer/gui/reconstruction/saaxis/saaxis.py +525 -0
  267. tomwer-1.2.0a0/tomwer/gui/reconstruction/saaxis/sliceselector.py +338 -0
  268. tomwer-1.2.0a0/tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py +500 -0
  269. tomwer-1.2.0a0/tomwer/gui/reconstruction/scores/scoreplot.py +884 -0
  270. tomwer-1.2.0a0/tomwer/gui/reconstruction/test/test_axis.py +204 -0
  271. tomwer-1.2.0a0/tomwer/gui/reconstruction/test/test_lamino.py +189 -0
  272. tomwer-1.2.0a0/tomwer/gui/reconstruction/test/test_nabu.py +359 -0
  273. tomwer-1.2.0a0/tomwer/gui/reconstruction/test/test_saaxis.py +214 -0
  274. tomwer-1.2.0a0/tomwer/gui/reconstruction/test/test_sadeltabeta.py +141 -0
  275. tomwer-1.2.0a0/tomwer/gui/samplemoved/__init__.py +253 -0
  276. tomwer-1.2.0a0/tomwer/gui/samplemoved/selectiontable.py +262 -0
  277. tomwer-1.2.0a0/tomwer/gui/stackplot.py +724 -0
  278. tomwer-1.2.0a0/tomwer/gui/stacks.py +236 -0
  279. tomwer-1.2.0a0/tomwer/gui/test/test_axis_gui.py +27 -0
  280. tomwer-1.2.0a0/tomwer/gui/test/test_qfolder_dialog.py +13 -0
  281. tomwer-1.2.0a0/tomwer/gui/utils/__init__.py +85 -0
  282. tomwer-1.2.0a0/tomwer/gui/utils/buttons.py +102 -0
  283. tomwer-1.2.0a0/tomwer/gui/utils/completer.py +141 -0
  284. tomwer-1.2.0a0/tomwer/gui/utils/flow.py +348 -0
  285. tomwer-1.2.0a0/tomwer/gui/utils/illustrations.py +123 -0
  286. tomwer-1.2.0a0/tomwer/gui/utils/inputwidget.py +428 -0
  287. tomwer-1.2.0a0/tomwer/gui/utils/lineselector/lineselector.py +232 -0
  288. tomwer-1.2.0a0/tomwer/gui/utils/qt_utils.py +12 -0
  289. tomwer-1.2.0a0/tomwer/gui/utils/scandescription.py +79 -0
  290. tomwer-1.2.0a0/tomwer/gui/utils/splashscreen.py +47 -0
  291. tomwer-1.2.0a0/tomwer/gui/utils/unitsystem.py +184 -0
  292. tomwer-1.2.0a0/tomwer/gui/utils/vignettes.py +392 -0
  293. tomwer-1.2.0a0/tomwer/gui/utils/waiterthread.py +49 -0
  294. tomwer-1.2.0a0/tomwer/gui/visualization/dataviewer.py +650 -0
  295. tomwer-1.2.0a0/tomwer/gui/visualization/diffviewer/diffviewer.py +557 -0
  296. tomwer-1.2.0a0/tomwer/gui/visualization/diffviewer/shiftwidget.py +562 -0
  297. tomwer-1.2.0a0/tomwer/gui/visualization/nxtomometadata.py +22 -0
  298. tomwer-1.2.0a0/tomwer/gui/visualization/reconstructionparameters.py +373 -0
  299. tomwer-1.2.0a0/tomwer/gui/visualization/scanoverview.py +249 -0
  300. tomwer-1.2.0a0/tomwer/gui/visualization/sinogramviewer.py +291 -0
  301. tomwer-1.2.0a0/tomwer/gui/visualization/test/test_dataviewer.py +72 -0
  302. tomwer-1.2.0a0/tomwer/gui/visualization/test/test_diffviewer.py +99 -0
  303. tomwer-1.2.0a0/tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py +74 -0
  304. tomwer-1.2.0a0/tomwer/gui/visualization/test/test_reconstruction_parameters.py +68 -0
  305. tomwer-1.2.0a0/tomwer/gui/visualization/test/test_sinogramviewer.py +85 -0
  306. tomwer-1.2.0a0/tomwer/gui/visualization/test/test_stacks.py +134 -0
  307. tomwer-1.2.0a0/tomwer/gui/visualization/test/test_volumeviewer.py +84 -0
  308. tomwer-1.2.0a0/tomwer/gui/visualization/tomoobjoverview.py +52 -0
  309. tomwer-1.2.0a0/tomwer/gui/visualization/volumeoverview.py +66 -0
  310. tomwer-1.2.0a0/tomwer/gui/visualization/volumeviewer.py +432 -0
  311. tomwer-1.2.0a0/tomwer/io/utils/__init__.py +5 -0
  312. tomwer-1.2.0a0/tomwer/io/utils/h5pyutils.py +78 -0
  313. tomwer-1.2.0a0/tomwer/io/utils/utils.py +272 -0
  314. tomwer-1.2.0a0/tomwer/resources/__init__.py +144 -0
  315. tomwer-1.2.0a0/tomwer/resources/gui/icons/nabu.png +0 -0
  316. tomwer-1.2.0a0/tomwer/resources/gui/icons/nabu.svg +105 -0
  317. tomwer-1.2.0a0/tomwer/synctools/axis.py +54 -0
  318. tomwer-1.2.0a0/tomwer/synctools/darkref.py +48 -0
  319. tomwer-1.2.0a0/tomwer/synctools/datalistener.py +270 -0
  320. tomwer-1.2.0a0/tomwer/synctools/datatransfert.py +42 -0
  321. tomwer-1.2.0a0/tomwer/synctools/imageloaderthread.py +79 -0
  322. tomwer-1.2.0a0/tomwer/synctools/rsyncmanager.py +193 -0
  323. tomwer-1.2.0a0/tomwer/synctools/saaxis.py +54 -0
  324. tomwer-1.2.0a0/tomwer/synctools/sadeltabeta.py +54 -0
  325. tomwer-1.2.0a0/tomwer/synctools/stacks/control/datalistener.py +136 -0
  326. tomwer-1.2.0a0/tomwer/synctools/stacks/edit/darkflatpatch.py +159 -0
  327. tomwer-1.2.0a0/tomwer/synctools/stacks/edit/imagekeyeditor.py +154 -0
  328. tomwer-1.2.0a0/tomwer/synctools/stacks/processingstack.py +161 -0
  329. tomwer-1.2.0a0/tomwer/synctools/stacks/reconstruction/axis.py +217 -0
  330. tomwer-1.2.0a0/tomwer/synctools/stacks/reconstruction/castvolume.py +197 -0
  331. tomwer-1.2.0a0/tomwer/synctools/stacks/reconstruction/dkrefcopy.py +176 -0
  332. tomwer-1.2.0a0/tomwer/synctools/stacks/reconstruction/lamino.py +233 -0
  333. tomwer-1.2.0a0/tomwer/synctools/stacks/reconstruction/nabu.py +296 -0
  334. tomwer-1.2.0a0/tomwer/synctools/stacks/reconstruction/normalization.py +135 -0
  335. tomwer-1.2.0a0/tomwer/synctools/stacks/reconstruction/saaxis.py +196 -0
  336. tomwer-1.2.0a0/tomwer/synctools/stacks/reconstruction/sadeltabeta.py +199 -0
  337. tomwer-1.2.0a0/tomwer/synctools/test/test_darkRefs.py +465 -0
  338. tomwer-1.2.0a0/tomwer/synctools/test/test_foldertransfer.py +407 -0
  339. tomwer-1.2.0a0/tomwer/synctools/test/test_scanstages.py +162 -0
  340. tomwer-1.2.0a0/tomwer/synctools/utils/scanstages.py +207 -0
  341. tomwer-1.2.0a0/tomwer/tests/conftest.py +51 -0
  342. tomwer-1.2.0a0/tomwer/tests/test_scripts.py +111 -0
  343. tomwer-1.2.0a0/tomwer/tests/utils/__init__.py +247 -0
  344. tomwer-1.2.0a0/tomwer/tests/utils/utilstest.py +220 -0
  345. tomwer-1.2.0a0/tomwer/third_party/nabu/preproc/phase.py +389 -0
  346. tomwer-1.2.0a0/tomwer/third_party/nabu/utils.py +202 -0
  347. tomwer-1.2.0a0/tomwer/utils.py +254 -0
  348. tomwer-1.2.0a0/tomwer/version.py +134 -0
  349. tomwer-1.2.0a0/tomwer.egg-info/PKG-INFO +177 -0
  350. tomwer-1.2.0a0/tomwer.egg-info/SOURCES.txt +712 -0
  351. tomwer-1.2.0a0/tomwer.egg-info/requires.txt +167 -0
  352. tomwer-1.1.0rc7/PKG-INFO +0 -177
  353. tomwer-1.1.0rc7/orangecontrib/tomwer/__init__.py +0 -5
  354. tomwer-1.1.0rc7/orangecontrib/tomwer/orange/managedprocess.py +0 -112
  355. tomwer-1.1.0rc7/orangecontrib/tomwer/state_summary.py +0 -49
  356. tomwer-1.1.0rc7/orangecontrib/tomwer/test/TestAcquisition.py +0 -246
  357. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/__init__.py +0 -62
  358. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py +0 -242
  359. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py +0 -98
  360. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/control/AdvancementOW.py +0 -65
  361. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/control/DataListOW.py +0 -126
  362. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/control/DataListenerOW.py +0 -410
  363. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/control/DataSelectorOW.py +0 -133
  364. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/control/DataTransfertOW.py +0 -223
  365. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/control/DataValidatorOW.py +0 -196
  366. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/control/DataWatcherOW.py +0 -200
  367. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +0 -234
  368. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/control/FilterOW.py +0 -127
  369. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +0 -93
  370. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/control/NXTomomillOW.py +0 -313
  371. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/control/NotifierOW.py +0 -128
  372. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +0 -142
  373. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/control/TimerOW.py +0 -129
  374. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/control/TomoObjSerieOW.py +0 -85
  375. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/control/VolumeSelector.py +0 -138
  376. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/control/VolumeSymLinkOW.py +0 -187
  377. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/control/icons/nxtomomill.png +0 -0
  378. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/control/icons/nxtomomill.svg +0 -171
  379. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/control/test/test_datalistener.py +0 -135
  380. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py +0 -179
  381. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/debugtools/ObjectInspectorOW.py +0 -65
  382. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py +0 -180
  383. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/edit/ImageKeyEditorOW.py +0 -131
  384. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/edit/ImageKeyUpgraderOW.py +0 -124
  385. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py +0 -100
  386. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/edit/test/test_dark_flat_patch.py +0 -74
  387. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/edit/test/test_image_key_editor.py +0 -54
  388. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/edit/test/test_image_key_upgrader.py +0 -54
  389. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/edit/test/test_nxtomo_editor.py +0 -25
  390. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/other/PythonScriptOW.py +0 -787
  391. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/reconstruction/AxisOW.py +0 -564
  392. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +0 -233
  393. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py +0 -254
  394. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/reconstruction/NabuOW.py +0 -283
  395. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py +0 -459
  396. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py +0 -475
  397. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py +0 -393
  398. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py +0 -309
  399. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/reconstruction/TofuOW.py +0 -194
  400. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.png +0 -0
  401. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.svg +0 -108
  402. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/reconstruction/test/test_axis.py +0 -235
  403. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/reconstruction/test/test_nabu_widget.py +0 -136
  404. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/reconstruction/test/test_saaxis.py +0 -218
  405. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/test/test_conditions.py +0 -111
  406. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/test/test_darkref.py +0 -299
  407. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/test/test_foldertransfert.py +0 -129
  408. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +0 -141
  409. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +0 -77
  410. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/visualization/LivesliceOW.py +0 -87
  411. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py +0 -69
  412. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/visualization/RadioStackOW.py +0 -92
  413. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py +0 -113
  414. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py +0 -92
  415. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/visualization/SliceStackOW.py +0 -107
  416. tomwer-1.1.0rc7/orangecontrib/tomwer/widgets/visualization/VolumeViewerOW.py +0 -87
  417. tomwer-1.1.0rc7/setup.cfg +0 -150
  418. tomwer-1.1.0rc7/setup.py +0 -36
  419. tomwer-1.1.0rc7/tomwer/__init__.py +0 -43
  420. tomwer-1.1.0rc7/tomwer/__main__.py +0 -172
  421. tomwer-1.1.0rc7/tomwer/app/axis.py +0 -206
  422. tomwer-1.1.0rc7/tomwer/app/canvas.py +0 -53
  423. tomwer-1.1.0rc7/tomwer/app/canvas_launcher/config.py +0 -204
  424. tomwer-1.1.0rc7/tomwer/app/canvas_launcher/environ.py +0 -93
  425. tomwer-1.1.0rc7/tomwer/app/canvas_launcher/mainwindow.py +0 -380
  426. tomwer-1.1.0rc7/tomwer/app/canvas_launcher/splash.py +0 -25
  427. tomwer-1.1.0rc7/tomwer/app/canvas_launcher/widgetsscheme.py +0 -96
  428. tomwer-1.1.0rc7/tomwer/app/darkref.py +0 -180
  429. tomwer-1.1.0rc7/tomwer/app/darkrefpatch.py +0 -129
  430. tomwer-1.1.0rc7/tomwer/app/diffframe.py +0 -91
  431. tomwer-1.1.0rc7/tomwer/app/imagekeyeditor.py +0 -104
  432. tomwer-1.1.0rc7/tomwer/app/imagekeyupgrader.py +0 -104
  433. tomwer-1.1.0rc7/tomwer/app/intensitynormalization.py +0 -207
  434. tomwer-1.1.0rc7/tomwer/app/lamino.py +0 -136
  435. tomwer-1.1.0rc7/tomwer/app/nabuapp.py +0 -255
  436. tomwer-1.1.0rc7/tomwer/app/nxtomoeditor.py +0 -103
  437. tomwer-1.1.0rc7/tomwer/app/radiostack.py +0 -81
  438. tomwer-1.1.0rc7/tomwer/app/rsync.py +0 -120
  439. tomwer-1.1.0rc7/tomwer/app/saaxis.py +0 -287
  440. tomwer-1.1.0rc7/tomwer/app/sadeltabeta.py +0 -348
  441. tomwer-1.1.0rc7/tomwer/app/samplemoved.py +0 -78
  442. tomwer-1.1.0rc7/tomwer/app/scanviewer.py +0 -82
  443. tomwer-1.1.0rc7/tomwer/app/sinogramviewer.py +0 -110
  444. tomwer-1.1.0rc7/tomwer/app/slicestack.py +0 -78
  445. tomwer-1.1.0rc7/tomwer/app/stopdatalistener.py +0 -38
  446. tomwer-1.1.0rc7/tomwer/core/futureobject.py +0 -174
  447. tomwer-1.1.0rc7/tomwer/core/log/logger.py +0 -127
  448. tomwer-1.1.0rc7/tomwer/core/log/processlog.py +0 -107
  449. tomwer-1.1.0rc7/tomwer/core/process/conditions/filters.py +0 -217
  450. tomwer-1.1.0rc7/tomwer/core/process/control/datalistener/datalistener.py +0 -586
  451. tomwer-1.1.0rc7/tomwer/core/process/control/datalistener/rpcserver.py +0 -316
  452. tomwer-1.1.0rc7/tomwer/core/process/control/datawatcher/datawatcher.py +0 -459
  453. tomwer-1.1.0rc7/tomwer/core/process/control/datawatcher/datawatcherobserver.py +0 -679
  454. tomwer-1.1.0rc7/tomwer/core/process/control/datawatcher/datawatcherprocess.py +0 -247
  455. tomwer-1.1.0rc7/tomwer/core/process/control/datawatcher/edfdwprocess.py +0 -218
  456. tomwer-1.1.0rc7/tomwer/core/process/control/datawatcher/hdf5dwprocess.py +0 -81
  457. tomwer-1.1.0rc7/tomwer/core/process/control/datawatcher/status.py +0 -75
  458. tomwer-1.1.0rc7/tomwer/core/process/control/nxtomomill.py +0 -133
  459. tomwer-1.1.0rc7/tomwer/core/process/control/scanlist.py +0 -50
  460. tomwer-1.1.0rc7/tomwer/core/process/control/scanselector.py +0 -7
  461. tomwer-1.1.0rc7/tomwer/core/process/control/scantransfer.py +0 -690
  462. tomwer-1.1.0rc7/tomwer/core/process/control/scanvalidator.py +0 -284
  463. tomwer-1.1.0rc7/tomwer/core/process/control/test/test_volume_link.py +0 -72
  464. tomwer-1.1.0rc7/tomwer/core/process/control/timer.py +0 -84
  465. tomwer-1.1.0rc7/tomwer/core/process/control/volumeselector.py +0 -9
  466. tomwer-1.1.0rc7/tomwer/core/process/control/volumesymlink.py +0 -162
  467. tomwer-1.1.0rc7/tomwer/core/process/edit/darkflatpatch.py +0 -119
  468. tomwer-1.1.0rc7/tomwer/core/process/edit/imagekeyeditor.py +0 -233
  469. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/axis/axis.py +0 -997
  470. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/axis/mode.py +0 -94
  471. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/axis/params.py +0 -921
  472. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/darkref/darkrefs.py +0 -613
  473. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/darkref/darkrefscopy.py +0 -358
  474. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/darkref/params.py +0 -283
  475. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/lamino/tofu.py +0 -984
  476. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/nabu/castvolume.py +0 -254
  477. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/nabu/nabucommon.py +0 -618
  478. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/nabu/nabuscores.py +0 -307
  479. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/nabu/nabuslices.py +0 -790
  480. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/nabu/nabuvolume.py +0 -461
  481. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/nabu/utils.py +0 -458
  482. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/normalization/__init__.py +0 -4
  483. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/normalization/normalization.py +0 -362
  484. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/normalization/params.py +0 -166
  485. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/saaxis/__init__.py +0 -2
  486. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/saaxis/params.py +0 -163
  487. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/saaxis/saaxis.py +0 -713
  488. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/sadeltabeta/__init__.py +0 -2
  489. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/sadeltabeta/params.py +0 -111
  490. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +0 -600
  491. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/scores/__init__.py +0 -6
  492. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/scores/params.py +0 -201
  493. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/scores/scores.py +0 -220
  494. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/test/test_axis_params.py +0 -59
  495. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/test/test_darkref.py +0 -61
  496. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/test/test_darkref_copy.py +0 -200
  497. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/test/test_paramsbase.py +0 -34
  498. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/test/test_saaxis.py +0 -101
  499. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/test/test_sadeltabeta.py +0 -70
  500. tomwer-1.1.0rc7/tomwer/core/process/reconstruction/test/test_utils.py +0 -28
  501. tomwer-1.1.0rc7/tomwer/core/process/script/python.py +0 -103
  502. tomwer-1.1.0rc7/tomwer/core/process/task.py +0 -507
  503. tomwer-1.1.0rc7/tomwer/core/process/test/test_axis.py +0 -295
  504. tomwer-1.1.0rc7/tomwer/core/process/test/test_conditions.py +0 -92
  505. tomwer-1.1.0rc7/tomwer/core/process/test/test_dark_and_flat.py +0 -382
  506. tomwer-1.1.0rc7/tomwer/core/process/test/test_data_listener.py +0 -112
  507. tomwer-1.1.0rc7/tomwer/core/process/test/test_data_transfer.py +0 -377
  508. tomwer-1.1.0rc7/tomwer/core/process/test/test_data_watcher.py +0 -80
  509. tomwer-1.1.0rc7/tomwer/core/process/test/test_lamino.py +0 -74
  510. tomwer-1.1.0rc7/tomwer/core/process/test/test_nabu.py +0 -477
  511. tomwer-1.1.0rc7/tomwer/core/process/test/test_normalization.py +0 -101
  512. tomwer-1.1.0rc7/tomwer/core/process/test/test_timer.py +0 -76
  513. tomwer-1.1.0rc7/tomwer/core/process/utils.py +0 -114
  514. tomwer-1.1.0rc7/tomwer/core/progress.py +0 -101
  515. tomwer-1.1.0rc7/tomwer/core/scan/blissscan.py +0 -260
  516. tomwer-1.1.0rc7/tomwer/core/scan/edfscan.py +0 -608
  517. tomwer-1.1.0rc7/tomwer/core/scan/futurescan.py +0 -7
  518. tomwer-1.1.0rc7/tomwer/core/scan/hdf5scan.py +0 -516
  519. tomwer-1.1.0rc7/tomwer/core/scan/scanbase.py +0 -864
  520. tomwer-1.1.0rc7/tomwer/core/scan/scanfactory.py +0 -255
  521. tomwer-1.1.0rc7/tomwer/core/scan/test/test_edf.py +0 -52
  522. tomwer-1.1.0rc7/tomwer/core/scan/test/test_future_scan.py +0 -60
  523. tomwer-1.1.0rc7/tomwer/core/scan/test/test_h5.py +0 -115
  524. tomwer-1.1.0rc7/tomwer/core/scan/test/test_process_registration.py +0 -143
  525. tomwer-1.1.0rc7/tomwer/core/scan/test/test_scan.py +0 -444
  526. tomwer-1.1.0rc7/tomwer/core/settings.py +0 -113
  527. tomwer-1.1.0rc7/tomwer/core/test/test_lamino.py +0 -90
  528. tomwer-1.1.0rc7/tomwer/core/test/test_scanutils.py +0 -51
  529. tomwer-1.1.0rc7/tomwer/core/test/test_utils.py +0 -290
  530. tomwer-1.1.0rc7/tomwer/core/utils/__init__.py +0 -448
  531. tomwer-1.1.0rc7/tomwer/core/utils/deprecation.py +0 -135
  532. tomwer-1.1.0rc7/tomwer/core/utils/image.py +0 -156
  533. tomwer-1.1.0rc7/tomwer/core/utils/locker.py +0 -66
  534. tomwer-1.1.0rc7/tomwer/core/utils/normalization.py +0 -84
  535. tomwer-1.1.0rc7/tomwer/core/utils/nxtomoutils.py +0 -64
  536. tomwer-1.1.0rc7/tomwer/core/utils/scanutils.py +0 -443
  537. tomwer-1.1.0rc7/tomwer/core/utils/slurm.py +0 -50
  538. tomwer-1.1.0rc7/tomwer/core/utils/time.py +0 -50
  539. tomwer-1.1.0rc7/tomwer/core/utils/volumeutils.py +0 -13
  540. tomwer-1.1.0rc7/tomwer/core/volume/__init__.py +0 -5
  541. tomwer-1.1.0rc7/tomwer/core/volume/edfvolume.py +0 -75
  542. tomwer-1.1.0rc7/tomwer/core/volume/hdf5volume.py +0 -95
  543. tomwer-1.1.0rc7/tomwer/core/volume/jp2kvolume.py +0 -77
  544. tomwer-1.1.0rc7/tomwer/core/volume/rawvolume.py +0 -90
  545. tomwer-1.1.0rc7/tomwer/core/volume/tiffvolume.py +0 -122
  546. tomwer-1.1.0rc7/tomwer/core/volume/volumebase.py +0 -49
  547. tomwer-1.1.0rc7/tomwer/core/volume/volumefactory.py +0 -183
  548. tomwer-1.1.0rc7/tomwer/gui/cluster/slurm.py +0 -361
  549. tomwer-1.1.0rc7/tomwer/gui/cluster/supervisor.py +0 -422
  550. tomwer-1.1.0rc7/tomwer/gui/cluster/test/test_cluster.py +0 -77
  551. tomwer-1.1.0rc7/tomwer/gui/cluster/test/test_supervisor.py +0 -89
  552. tomwer-1.1.0rc7/tomwer/gui/conditions/filter.py +0 -142
  553. tomwer-1.1.0rc7/tomwer/gui/control/actions.py +0 -69
  554. tomwer-1.1.0rc7/tomwer/gui/control/datalist.py +0 -1016
  555. tomwer-1.1.0rc7/tomwer/gui/control/datalistener.py +0 -485
  556. tomwer-1.1.0rc7/tomwer/gui/control/datareacheractions.py +0 -76
  557. tomwer-1.1.0rc7/tomwer/gui/control/datatransfert.py +0 -149
  558. tomwer-1.1.0rc7/tomwer/gui/control/datavalidator.py +0 -401
  559. tomwer-1.1.0rc7/tomwer/gui/control/datawatcher/configuration.py +0 -239
  560. tomwer-1.1.0rc7/tomwer/gui/control/datawatcher/datawatcher.py +0 -661
  561. tomwer-1.1.0rc7/tomwer/gui/control/datawatcher/datawatcherobserver.py +0 -296
  562. tomwer-1.1.0rc7/tomwer/gui/control/history.py +0 -131
  563. tomwer-1.1.0rc7/tomwer/gui/control/observations.py +0 -219
  564. tomwer-1.1.0rc7/tomwer/gui/control/scanselectorwidget.py +0 -64
  565. tomwer-1.1.0rc7/tomwer/gui/control/selectorwidgetbase.py +0 -136
  566. tomwer-1.1.0rc7/tomwer/gui/control/serie/seriecreator.py +0 -967
  567. tomwer-1.1.0rc7/tomwer/gui/control/singletomoobj.py +0 -157
  568. tomwer-1.1.0rc7/tomwer/gui/control/test/test_datalist.py +0 -95
  569. tomwer-1.1.0rc7/tomwer/gui/control/test/test_datalistener.py +0 -78
  570. tomwer-1.1.0rc7/tomwer/gui/control/test/test_datavalidator.py +0 -52
  571. tomwer-1.1.0rc7/tomwer/gui/control/test/test_inputwidget.py +0 -78
  572. tomwer-1.1.0rc7/tomwer/gui/control/test/test_process_manager.py +0 -65
  573. tomwer-1.1.0rc7/tomwer/gui/control/test/test_scanselector.py +0 -65
  574. tomwer-1.1.0rc7/tomwer/gui/control/test/test_scanvalidator.py +0 -114
  575. tomwer-1.1.0rc7/tomwer/gui/control/test/test_single_tomo_obj.py +0 -69
  576. tomwer-1.1.0rc7/tomwer/gui/control/test/test_volume_dialog.py +0 -214
  577. tomwer-1.1.0rc7/tomwer/gui/control/test/test_volumeselector.py +0 -92
  578. tomwer-1.1.0rc7/tomwer/gui/control/volumeselectorwidget.py +0 -59
  579. tomwer-1.1.0rc7/tomwer/gui/debugtools/datasetgenerator.py +0 -279
  580. tomwer-1.1.0rc7/tomwer/gui/debugtools/objectinspector.py +0 -72
  581. tomwer-1.1.0rc7/tomwer/gui/edit/dkrfpatch.py +0 -482
  582. tomwer-1.1.0rc7/tomwer/gui/edit/imagekeyeditor.py +0 -823
  583. tomwer-1.1.0rc7/tomwer/gui/edit/nxtomoeditor.py +0 -475
  584. tomwer-1.1.0rc7/tomwer/gui/edit/test/test_dkrf_patch.py +0 -211
  585. tomwer-1.1.0rc7/tomwer/gui/edit/test/test_image_key_editor.py +0 -168
  586. tomwer-1.1.0rc7/tomwer/gui/edit/test/test_nx_editor.py +0 -155
  587. tomwer-1.1.0rc7/tomwer/gui/icons.py +0 -403
  588. tomwer-1.1.0rc7/tomwer/gui/illustrations.py +0 -158
  589. tomwer-1.1.0rc7/tomwer/gui/imagefromfile.py +0 -155
  590. tomwer-1.1.0rc7/tomwer/gui/qfolderdialog.py +0 -568
  591. tomwer-1.1.0rc7/tomwer/gui/reconstruction/axis/CompareImages.py +0 -408
  592. tomwer-1.1.0rc7/tomwer/gui/reconstruction/axis/__init__.py +0 -2
  593. tomwer-1.1.0rc7/tomwer/gui/reconstruction/axis/axis.py +0 -610
  594. tomwer-1.1.0rc7/tomwer/gui/reconstruction/axis/radioaxis.py +0 -2592
  595. tomwer-1.1.0rc7/tomwer/gui/reconstruction/darkref/darkrefcopywidget.py +0 -298
  596. tomwer-1.1.0rc7/tomwer/gui/reconstruction/darkref/darkrefwidget.py +0 -442
  597. tomwer-1.1.0rc7/tomwer/gui/reconstruction/lamino/tofu/misc.py +0 -146
  598. tomwer-1.1.0rc7/tomwer/gui/reconstruction/lamino/tofu/projections.py +0 -888
  599. tomwer-1.1.0rc7/tomwer/gui/reconstruction/lamino/tofu/tofu.py +0 -429
  600. tomwer-1.1.0rc7/tomwer/gui/reconstruction/lamino/tofu/tofuexpert.py +0 -564
  601. tomwer-1.1.0rc7/tomwer/gui/reconstruction/lamino/tofu/tofuoutput.py +0 -757
  602. tomwer-1.1.0rc7/tomwer/gui/reconstruction/nabu/action.py +0 -119
  603. tomwer-1.1.0rc7/tomwer/gui/reconstruction/nabu/castvolume.py +0 -281
  604. tomwer-1.1.0rc7/tomwer/gui/reconstruction/nabu/check.py +0 -114
  605. tomwer-1.1.0rc7/tomwer/gui/reconstruction/nabu/nabuconfig/base.py +0 -95
  606. tomwer-1.1.0rc7/tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py +0 -352
  607. tomwer-1.1.0rc7/tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py +0 -295
  608. tomwer-1.1.0rc7/tomwer/gui/reconstruction/nabu/nabuconfig/output.py +0 -255
  609. tomwer-1.1.0rc7/tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +0 -376
  610. tomwer-1.1.0rc7/tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +0 -536
  611. tomwer-1.1.0rc7/tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +0 -981
  612. tomwer-1.1.0rc7/tomwer/gui/reconstruction/nabu/nabuflow.py +0 -472
  613. tomwer-1.1.0rc7/tomwer/gui/reconstruction/nabu/slices.py +0 -621
  614. tomwer-1.1.0rc7/tomwer/gui/reconstruction/nabu/slurm.py +0 -203
  615. tomwer-1.1.0rc7/tomwer/gui/reconstruction/nabu/volume.py +0 -473
  616. tomwer-1.1.0rc7/tomwer/gui/reconstruction/normalization/intensity.py +0 -921
  617. tomwer-1.1.0rc7/tomwer/gui/reconstruction/saaxis/corrangeselector.py +0 -829
  618. tomwer-1.1.0rc7/tomwer/gui/reconstruction/saaxis/dimensionwidget.py +0 -259
  619. tomwer-1.1.0rc7/tomwer/gui/reconstruction/saaxis/saaxis.py +0 -525
  620. tomwer-1.1.0rc7/tomwer/gui/reconstruction/saaxis/sliceselector.py +0 -338
  621. tomwer-1.1.0rc7/tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py +0 -503
  622. tomwer-1.1.0rc7/tomwer/gui/reconstruction/scores/scoreplot.py +0 -883
  623. tomwer-1.1.0rc7/tomwer/gui/reconstruction/test/test_axis.py +0 -203
  624. tomwer-1.1.0rc7/tomwer/gui/reconstruction/test/test_lamino.py +0 -188
  625. tomwer-1.1.0rc7/tomwer/gui/reconstruction/test/test_nabu.py +0 -357
  626. tomwer-1.1.0rc7/tomwer/gui/reconstruction/test/test_saaxis.py +0 -212
  627. tomwer-1.1.0rc7/tomwer/gui/reconstruction/test/test_sadeltabeta.py +0 -139
  628. tomwer-1.1.0rc7/tomwer/gui/samplemoved/__init__.py +0 -252
  629. tomwer-1.1.0rc7/tomwer/gui/samplemoved/selectiontable.py +0 -260
  630. tomwer-1.1.0rc7/tomwer/gui/stackplot.py +0 -723
  631. tomwer-1.1.0rc7/tomwer/gui/stacks.py +0 -234
  632. tomwer-1.1.0rc7/tomwer/gui/test/test_axis_gui.py +0 -26
  633. tomwer-1.1.0rc7/tomwer/gui/test/test_qfolder_dialog.py +0 -12
  634. tomwer-1.1.0rc7/tomwer/gui/utils/__init__.py +0 -85
  635. tomwer-1.1.0rc7/tomwer/gui/utils/buttons.py +0 -101
  636. tomwer-1.1.0rc7/tomwer/gui/utils/completer.py +0 -140
  637. tomwer-1.1.0rc7/tomwer/gui/utils/flow.py +0 -346
  638. tomwer-1.1.0rc7/tomwer/gui/utils/illustrations.py +0 -122
  639. tomwer-1.1.0rc7/tomwer/gui/utils/inputwidget.py +0 -434
  640. tomwer-1.1.0rc7/tomwer/gui/utils/lineselector/lineselector.py +0 -234
  641. tomwer-1.1.0rc7/tomwer/gui/utils/qt_utils.py +0 -11
  642. tomwer-1.1.0rc7/tomwer/gui/utils/scandescription.py +0 -77
  643. tomwer-1.1.0rc7/tomwer/gui/utils/splashscreen.py +0 -47
  644. tomwer-1.1.0rc7/tomwer/gui/utils/unitsystem.py +0 -182
  645. tomwer-1.1.0rc7/tomwer/gui/utils/vignettes.py +0 -392
  646. tomwer-1.1.0rc7/tomwer/gui/utils/waiterthread.py +0 -48
  647. tomwer-1.1.0rc7/tomwer/gui/visualization/dataviewer.py +0 -658
  648. tomwer-1.1.0rc7/tomwer/gui/visualization/diffviewer/diffviewer.py +0 -560
  649. tomwer-1.1.0rc7/tomwer/gui/visualization/diffviewer/shiftwidget.py +0 -560
  650. tomwer-1.1.0rc7/tomwer/gui/visualization/nxtomometadata.py +0 -21
  651. tomwer-1.1.0rc7/tomwer/gui/visualization/reconstructionparameters.py +0 -372
  652. tomwer-1.1.0rc7/tomwer/gui/visualization/scanoverview.py +0 -247
  653. tomwer-1.1.0rc7/tomwer/gui/visualization/sinogramviewer.py +0 -290
  654. tomwer-1.1.0rc7/tomwer/gui/visualization/test/test_dataviewer.py +0 -70
  655. tomwer-1.1.0rc7/tomwer/gui/visualization/test/test_diffviewer.py +0 -97
  656. tomwer-1.1.0rc7/tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py +0 -72
  657. tomwer-1.1.0rc7/tomwer/gui/visualization/test/test_reconstruction_parameters.py +0 -66
  658. tomwer-1.1.0rc7/tomwer/gui/visualization/test/test_sinogramviewer.py +0 -84
  659. tomwer-1.1.0rc7/tomwer/gui/visualization/test/test_stacks.py +0 -132
  660. tomwer-1.1.0rc7/tomwer/gui/visualization/test/test_volumeviewer.py +0 -82
  661. tomwer-1.1.0rc7/tomwer/gui/visualization/tomoobjoverview.py +0 -49
  662. tomwer-1.1.0rc7/tomwer/gui/visualization/volumeoverview.py +0 -64
  663. tomwer-1.1.0rc7/tomwer/gui/visualization/volumeviewer.py +0 -431
  664. tomwer-1.1.0rc7/tomwer/io/utils/__init__.py +0 -5
  665. tomwer-1.1.0rc7/tomwer/io/utils/h5pyutils.py +0 -77
  666. tomwer-1.1.0rc7/tomwer/io/utils/utils.py +0 -276
  667. tomwer-1.1.0rc7/tomwer/resources/__init__.py +0 -144
  668. tomwer-1.1.0rc7/tomwer/synctools/axis.py +0 -52
  669. tomwer-1.1.0rc7/tomwer/synctools/darkref.py +0 -47
  670. tomwer-1.1.0rc7/tomwer/synctools/datalistener.py +0 -266
  671. tomwer-1.1.0rc7/tomwer/synctools/datatransfert.py +0 -43
  672. tomwer-1.1.0rc7/tomwer/synctools/imageloaderthread.py +0 -77
  673. tomwer-1.1.0rc7/tomwer/synctools/rsyncmanager.py +0 -192
  674. tomwer-1.1.0rc7/tomwer/synctools/saaxis.py +0 -52
  675. tomwer-1.1.0rc7/tomwer/synctools/sadeltabeta.py +0 -52
  676. tomwer-1.1.0rc7/tomwer/synctools/stacks/control/datalistener.py +0 -139
  677. tomwer-1.1.0rc7/tomwer/synctools/stacks/edit/darkflatpatch.py +0 -158
  678. tomwer-1.1.0rc7/tomwer/synctools/stacks/edit/imagekeyeditor.py +0 -153
  679. tomwer-1.1.0rc7/tomwer/synctools/stacks/processingstack.py +0 -160
  680. tomwer-1.1.0rc7/tomwer/synctools/stacks/reconstruction/axis.py +0 -217
  681. tomwer-1.1.0rc7/tomwer/synctools/stacks/reconstruction/castvolume.py +0 -194
  682. tomwer-1.1.0rc7/tomwer/synctools/stacks/reconstruction/dkrefcopy.py +0 -175
  683. tomwer-1.1.0rc7/tomwer/synctools/stacks/reconstruction/lamino.py +0 -231
  684. tomwer-1.1.0rc7/tomwer/synctools/stacks/reconstruction/nabu.py +0 -295
  685. tomwer-1.1.0rc7/tomwer/synctools/stacks/reconstruction/normalization.py +0 -139
  686. tomwer-1.1.0rc7/tomwer/synctools/stacks/reconstruction/saaxis.py +0 -194
  687. tomwer-1.1.0rc7/tomwer/synctools/stacks/reconstruction/sadeltabeta.py +0 -197
  688. tomwer-1.1.0rc7/tomwer/synctools/test/test_darkRefs.py +0 -464
  689. tomwer-1.1.0rc7/tomwer/synctools/test/test_foldertransfer.py +0 -405
  690. tomwer-1.1.0rc7/tomwer/synctools/test/test_scanstages.py +0 -161
  691. tomwer-1.1.0rc7/tomwer/synctools/utils/scanstages.py +0 -205
  692. tomwer-1.1.0rc7/tomwer/tests/conftest.py +0 -51
  693. tomwer-1.1.0rc7/tomwer/tests/test_scripts.py +0 -110
  694. tomwer-1.1.0rc7/tomwer/tests/utils/__init__.py +0 -246
  695. tomwer-1.1.0rc7/tomwer/tests/utils/utilstest.py +0 -221
  696. tomwer-1.1.0rc7/tomwer/third_party/nabu/preproc/phase.py +0 -387
  697. tomwer-1.1.0rc7/tomwer/third_party/nabu/utils.py +0 -201
  698. tomwer-1.1.0rc7/tomwer/utils.py +0 -254
  699. tomwer-1.1.0rc7/tomwer/version.py +0 -134
  700. tomwer-1.1.0rc7/tomwer.egg-info/PKG-INFO +0 -177
  701. tomwer-1.1.0rc7/tomwer.egg-info/SOURCES.txt +0 -712
  702. tomwer-1.1.0rc7/tomwer.egg-info/requires.txt +0 -167
  703. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/LICENSE +0 -0
  704. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/MANIFEST.in +0 -0
  705. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/README.rst +0 -0
  706. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/__init__.py +0 -0
  707. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/orange/__init__.py +0 -0
  708. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/orange/settings.py +0 -0
  709. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/tutorials/EBS_tomo_listener.ows +0 -0
  710. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/tutorials/__init__.py +0 -0
  711. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/tutorials/cast_volume.ows +0 -0
  712. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/tutorials/simple_slice_reconstruction.ows +0 -0
  713. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/tutorials/simple_volume_local_reconstruction.ows +0 -0
  714. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows +0 -0
  715. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/tutorials/using_saaxis_to_find_cor.ows +0 -0
  716. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/cluster/__init__.py +0 -0
  717. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/cluster/icons/slurm.png +0 -0
  718. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/cluster/icons/slurm.svg +0 -0
  719. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.png +0 -0
  720. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/cluster/icons/slurmobserver.svg +0 -0
  721. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/__init__.py +0 -0
  722. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/advancement.png +0 -0
  723. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/advancement.svg +0 -0
  724. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/datalistener.png +0 -0
  725. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/datalistener.svg +0 -0
  726. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/datawatcher.svg +0 -0
  727. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/edf2nx.png +0 -0
  728. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/edf2nx.svg +0 -0
  729. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/esrf.png +0 -0
  730. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/folder-transfert.svg +0 -0
  731. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/image_key_upgrader.png +0 -0
  732. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/namefilter.png +0 -0
  733. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/namefilter.svg +0 -0
  734. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/notification.png +0 -0
  735. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/notification.svg +0 -0
  736. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/progress.svg +0 -0
  737. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/scanlist.svg +0 -0
  738. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/scanselector.png +0 -0
  739. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/scanselector.svg +0 -0
  740. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/single_tomo_obj.png +0 -0
  741. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/single_tomo_obj.svg +0 -0
  742. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/time.png +0 -0
  743. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/tomoobjserie.png +0 -0
  744. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/tomoobjserie.svg +0 -0
  745. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/tomwer.png +0 -0
  746. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/validator.png +0 -0
  747. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/validatorcrack.png +0 -0
  748. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/volumeselector.png +0 -0
  749. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/volumeselector.svg +0 -0
  750. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/volumesymlink.png +0 -0
  751. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/control/icons/volumesymlink.svg +0 -0
  752. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/debugtools/__init__.py +0 -0
  753. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/debugtools/icons/hammer.png +0 -0
  754. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/debugtools/icons/hammer.svg +0 -0
  755. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/debugtools/icons/inspector.png +0 -0
  756. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/debugtools/icons/inspector.svg +0 -0
  757. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/edit/__init__.py +0 -0
  758. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/edit/icons/image_key_editor.png +0 -0
  759. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/edit/icons/image_key_editor.svg +0 -0
  760. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.png +0 -0
  761. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.svg +0 -0
  762. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.png +0 -0
  763. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.svg +0 -0
  764. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.png +0 -0
  765. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/edit/icons/patch_dark_flat.svg +0 -0
  766. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/edit/test/__init__.py +0 -0
  767. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer.png +0 -0
  768. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_build.png +0 -0
  769. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_build.svg +0 -0
  770. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_cluster.png +0 -0
  771. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_cluster.svg +0 -0
  772. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_control.png +0 -0
  773. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_control.svg +0 -0
  774. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_debug_tools.png +0 -0
  775. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_debug_tools.svg +0 -0
  776. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_edit.png +0 -0
  777. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_edit.svg +0 -0
  778. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_other.png +0 -0
  779. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_other.svg +0 -0
  780. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_visu.png +0 -0
  781. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/icons/tomwer_visu.svg +0 -0
  782. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/other/__init__.py +0 -0
  783. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/other/icons/PythonScript.svg +0 -0
  784. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/__init__.py +0 -0
  785. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/XY_lamino.svg +0 -0
  786. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/XZ_lamino.svg +0 -0
  787. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/YZ_lamino.svg +0 -0
  788. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/axis.png +0 -0
  789. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/axis.svg +0 -0
  790. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/bricks.png +0 -0
  791. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/darkref.png +0 -0
  792. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/darkref.svg +0 -0
  793. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.png +0 -0
  794. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/delta_beta_range.svg +0 -0
  795. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/esrf.png +0 -0
  796. /tomwer-1.1.0rc7/tomwer/resources/gui/icons/nabu.png → /tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.png +0 -0
  797. /tomwer-1.1.0rc7/tomwer/resources/gui/icons/nabu.svg → /tomwer-1.2.0a0/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.svg +0 -0
  798. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_3d.png +0 -0
  799. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_3d.svg +0 -0
  800. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_cast.png +0 -0
  801. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/nabu_cast.svg +0 -0
  802. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/norm_I.png +0 -0
  803. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/norm_I.svg +0 -0
  804. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/refCopy.png +0 -0
  805. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/refCopy.svg +0 -0
  806. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/saaxis.png +0 -0
  807. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/saaxis.svg +0 -0
  808. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.png +0 -0
  809. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/sadeltabeta.svg +0 -0
  810. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/tomogui.png +0 -0
  811. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/reconstruction/icons/tomwer.png +0 -0
  812. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/utils.py +0 -0
  813. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/__init__.py +0 -0
  814. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/diff.png +0 -0
  815. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/diff.svg +0 -0
  816. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/esrf.png +0 -0
  817. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/eye.png +0 -0
  818. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/eyecrack.png +0 -0
  819. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/liveslice.png +0 -0
  820. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/liveslice.svg +0 -0
  821. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.png +0 -0
  822. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.svg +0 -0
  823. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/radiosstack.png +0 -0
  824. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/radiosstack.svg +0 -0
  825. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/sampleMoved.png +0 -0
  826. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/sampleMoved.svg +0 -0
  827. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/sinogramviewer.png +0 -0
  828. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/slicesstack.png +0 -0
  829. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/slicesstack.svg +0 -0
  830. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/tomwer.png +0 -0
  831. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.png +0 -0
  832. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.svg +0 -0
  833. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/app/__init__.py +0 -0
  834. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/app/canvas_launcher/__init__.py +0 -0
  835. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/__init__.py +0 -0
  836. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/cluster/__init__.py +0 -0
  837. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/cluster/cluster.py +0 -0
  838. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/log/__init__.py +0 -0
  839. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/__init__.py +0 -0
  840. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/cluster/__init__.py +0 -0
  841. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/cluster/supervisor.py +0 -0
  842. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/conditions/__init__.py +0 -0
  843. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/control/__init__.py +0 -0
  844. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/control/datalistener/__init__.py +0 -0
  845. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/control/datawatcher/__init__.py +0 -0
  846. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/control/singletomoobj.py +0 -0
  847. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/control/test/__init__.py +0 -0
  848. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/control/tomoobjserie.py +0 -0
  849. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/edit/__init__.py +0 -0
  850. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/__init__.py +0 -0
  851. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/axis/__init__.py +0 -0
  852. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/axis/anglemode.py +0 -0
  853. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/axis/projectiontype.py +0 -0
  854. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/darkref/__init__.py +0 -0
  855. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/darkref/settings.py +0 -0
  856. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/lamino/__init__.py +0 -0
  857. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/nabu/__init__.py +0 -0
  858. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/nabu/settings.py +0 -0
  859. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/nabu/target.py +0 -0
  860. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/paramsbase.py +0 -0
  861. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/test/__init__.py +0 -0
  862. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/utils/__init__.py +0 -0
  863. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/reconstruction/utils/cor.py +0 -0
  864. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/script/__init__.py +0 -0
  865. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/test/__init__.py +0 -0
  866. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/visualization/__init__.py +0 -0
  867. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/visualization/dataviewer.py +0 -0
  868. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/visualization/diffviewer.py +0 -0
  869. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/visualization/imagestackviewer.py +0 -0
  870. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/visualization/liveslice.py +0 -0
  871. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/visualization/radiostack.py +0 -0
  872. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/visualization/samplemoved.py +0 -0
  873. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/visualization/sinogramviewer.py +0 -0
  874. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/visualization/slicestack.py +0 -0
  875. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/process/visualization/volumeviewer.py +0 -0
  876. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/scan/__init__.py +0 -0
  877. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/scan/test/__init__.py +0 -0
  878. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/signal.py +0 -0
  879. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/test/__init__.py +0 -0
  880. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/tomwer_object.py +0 -0
  881. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/utils/Singleton.py +0 -0
  882. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/utils/char.py +0 -0
  883. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/utils/ftseriesutils.py +0 -0
  884. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/utils/gpu.py +0 -0
  885. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/utils/logconfig.py +0 -0
  886. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/utils/resource.py +0 -0
  887. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/core/utils/threads.py +0 -0
  888. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/__init__.py +0 -0
  889. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/cluster/__init__.py +0 -0
  890. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/cluster/test/__init__.py +0 -0
  891. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/conditions/__init__.py +0 -0
  892. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/control/__init__.py +0 -0
  893. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/control/datawatcher/__init__.py +0 -0
  894. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/control/nxtomomill.py +0 -0
  895. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/control/serie/__init__.py +0 -0
  896. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/control/serie/seriewaiter.py +0 -0
  897. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/control/test/__init__.py +0 -0
  898. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/debugtools/__init__.py +0 -0
  899. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/edit/__init__.py +0 -0
  900. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/edit/test/__init__.py +0 -0
  901. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/qlefilesystem.py +0 -0
  902. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/__init__.py +0 -0
  903. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/darkref/__init__.py +0 -0
  904. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/lamino/__init__.py +0 -0
  905. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/lamino/tofu/TofuOptionLoader.py +0 -0
  906. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/lamino/tofu/__init__.py +0 -0
  907. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/lamino/tofu/settings.py +0 -0
  908. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/nabu/__init__.py +0 -0
  909. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/nabu/nabuconfig/__init__.py +0 -0
  910. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/normalization/__init__.py +0 -0
  911. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/saaxis/__init__.py +0 -0
  912. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/sadeltabeta/__init__.py +0 -0
  913. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/scores/__init__.py +0 -0
  914. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/scores/control.py +0 -0
  915. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/reconstruction/test/__init__.py +0 -0
  916. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/settings.py +0 -0
  917. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/test/__init__.py +0 -0
  918. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/utils/lineselector/__init__.py +0 -0
  919. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/utils/sandboxes.py +0 -0
  920. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/utils/scrollarea.py +0 -0
  921. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/utils/slider.py +0 -0
  922. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/visualization/__init__.py +0 -0
  923. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/visualization/diffviewer/__init__.py +0 -0
  924. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/gui/visualization/test/__init__.py +0 -0
  925. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/io/__init__.py +0 -0
  926. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/Imagej_icon.png +0 -0
  927. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/a.png +0 -0
  928. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/a.svg +0 -0
  929. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/add.png +0 -0
  930. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/add.svg +0 -0
  931. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/advanced_user.png +0 -0
  932. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/advanced_user.svg +0 -0
  933. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/axis.png +0 -0
  934. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/axis.svg +0 -0
  935. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/basic_user.png +0 -0
  936. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/basic_user.svg +0 -0
  937. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/cfg_file_active.png +0 -0
  938. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/cfg_file_active.svg +0 -0
  939. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/cfg_file_inactive.png +0 -0
  940. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/cfg_file_inactive.svg +0 -0
  941. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/compare_mode_a_minus_b.png +0 -0
  942. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/compare_mode_a_minus_b.svg +0 -0
  943. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/datalistener_activate.png +0 -0
  944. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/datalistener_activate.svg +0 -0
  945. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/datalistener_deactivate.png +0 -0
  946. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/datalistener_deactivate.svg +0 -0
  947. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/delta_beta.png +0 -0
  948. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/delta_beta.svg +0 -0
  949. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/hammer.png +0 -0
  950. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/hammer.svg +0 -0
  951. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/health.png +0 -0
  952. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/health.svg +0 -0
  953. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/high_speed.png +0 -0
  954. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/high_speed.svg +0 -0
  955. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/history.png +0 -0
  956. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/hourglass.npy +0 -0
  957. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/imageNotFound.npy +0 -0
  958. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/information.png +0 -0
  959. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/information.svg +0 -0
  960. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/input.png +0 -0
  961. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/input.svg +0 -0
  962. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/lamino_parameters.svg +0 -0
  963. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/lineselection.png +0 -0
  964. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/lineselection.svg +0 -0
  965. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/list_selection.png +0 -0
  966. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/list_selection.svg +0 -0
  967. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/locked.png +0 -0
  968. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/locked.svg +0 -0
  969. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/log.png +0 -0
  970. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/log.svg +0 -0
  971. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/loop.png +0 -0
  972. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/low_speed.png +0 -0
  973. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/low_speed.svg +0 -0
  974. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/medium_low_speed.png +0 -0
  975. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/medium_low_speed.svg +0 -0
  976. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/minimalistic_user.png +0 -0
  977. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/minimalistic_user.svg +0 -0
  978. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/multi-document-save.png +0 -0
  979. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/multi-document-save.svg +0 -0
  980. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/output.png +0 -0
  981. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/output.svg +0 -0
  982. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/parameters.png +0 -0
  983. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/parameters.svg +0 -0
  984. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/plot-xleft.png +0 -0
  985. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/plot-xleft.svg +0 -0
  986. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/plot-xright.png +0 -0
  987. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/plot-xright.svg +0 -0
  988. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/range_selection.png +0 -0
  989. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/range_selection.svg +0 -0
  990. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/results.png +0 -0
  991. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/results.svg +0 -0
  992. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/rm.png +0 -0
  993. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/rm.svg +0 -0
  994. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/roman_four.png +0 -0
  995. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/roman_four.svg +0 -0
  996. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/roman_one.png +0 -0
  997. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/roman_one.svg +0 -0
  998. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/roman_three.png +0 -0
  999. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/roman_three.svg +0 -0
  1000. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/roman_two.png +0 -0
  1001. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/roman_two.svg +0 -0
  1002. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/single_selection.png +0 -0
  1003. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/single_selection.svg +0 -0
  1004. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/sinogram.png +0 -0
  1005. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/slurm.svg +0 -0
  1006. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/slurm_active.png +0 -0
  1007. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/slurm_active.svg +0 -0
  1008. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/slurm_deactive.png +0 -0
  1009. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/slurm_deactive.svg +0 -0
  1010. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/switch.png +0 -0
  1011. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/tomwer.png +0 -0
  1012. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/tomwer_large.png +0 -0
  1013. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/unlocked.png +0 -0
  1014. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/unlocked.svg +0 -0
  1015. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/unsharp_mask.png +0 -0
  1016. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/vignettes.png +0 -0
  1017. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/vignettes.svg +0 -0
  1018. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/warning.png +0 -0
  1019. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/icons/warning.svg +0 -0
  1020. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/ctf_z1.png +0 -0
  1021. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/ctf_z1.svg +0 -0
  1022. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/flow_down.png +0 -0
  1023. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/flow_down.svg +0 -0
  1024. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/flow_right.png +0 -0
  1025. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/flow_right.svg +0 -0
  1026. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/lamino_angle.png +0 -0
  1027. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/lamino_angle.svg +0 -0
  1028. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/lamino_beta_angle.png +0 -0
  1029. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/lamino_beta_angle.svg +0 -0
  1030. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/lamino_theta_angle.png +0 -0
  1031. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/lamino_theta_angle.svg +0 -0
  1032. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/manual_slice.png +0 -0
  1033. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/manual_slice.svg +0 -0
  1034. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/no_rot.svg +0 -0
  1035. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/psi_angle.png +0 -0
  1036. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/psi_angle.svg +0 -0
  1037. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/rotation_center.png +0 -0
  1038. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/rotation_center.svg +0 -0
  1039. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/slice_stack.png +0 -0
  1040. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/slice_stack.svg +0 -0
  1041. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/xy_slice.png +0 -0
  1042. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/xy_slice.svg +0 -0
  1043. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/xz_slice.png +0 -0
  1044. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/xz_slice.svg +0 -0
  1045. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/yz_slice.png +0 -0
  1046. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/resources/gui/illustrations/yz_slice.svg +0 -0
  1047. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/synctools/__init__.py +0 -0
  1048. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/synctools/stacks/__init__.py +0 -0
  1049. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/synctools/stacks/control/__init__.py +0 -0
  1050. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/synctools/stacks/edit/__init__.py +0 -0
  1051. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/synctools/stacks/reconstruction/__init__.py +0 -0
  1052. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/synctools/test/__init__.py +0 -0
  1053. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/synctools/utils/__init__.py +0 -0
  1054. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/tests/__init__.py +0 -0
  1055. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/tests/test_utils.py +0 -0
  1056. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/third_party/__init__.py +0 -0
  1057. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/third_party/nabu/__init__.py +0 -0
  1058. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/third_party/nabu/preproc/__init__.py +0 -0
  1059. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/third_party/tango/__init__.py +0 -0
  1060. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer/third_party/tango/device.py +0 -0
  1061. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer.egg-info/dependency_links.txt +0 -0
  1062. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer.egg-info/entry_points.txt +0 -0
  1063. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer.egg-info/namespace_packages.txt +0 -0
  1064. {tomwer-1.1.0rc7 → tomwer-1.2.0a0}/tomwer.egg-info/top_level.txt +0 -0
@@ -0,0 +1,177 @@
1
+ Metadata-Version: 2.1
2
+ Name: tomwer
3
+ Version: 1.2.0a0
4
+ Summary: "tomography workflow tools"
5
+ Home-page: https://gitlab.esrf.fr/tomotools/tomwer
6
+ Author: data analysis unit
7
+ Author-email: henri.payno@esrf.fr
8
+ License: MIT
9
+ Project-URL: Bug Tracker, https://gitlab.esrf.fr/tomotools/tomwer/-/issues
10
+ Classifier: Intended Audience :: Education
11
+ Classifier: Intended Audience :: Science/Research
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Environment :: Console
15
+ Classifier: Environment :: X11 Applications :: Qt
16
+ Classifier: Operating System :: POSIX
17
+ Classifier: Natural Language :: English
18
+ Classifier: Topic :: Scientific/Engineering :: Physics
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Requires-Python: >=3.6
21
+ Description-Content-Type: text/markdown
22
+ Provides-Extra: doc
23
+ Provides-Extra: _full_base
24
+ Provides-Extra: full_no_cuda
25
+ Provides-Extra: full
26
+ Provides-Extra: _dev_spec
27
+ Provides-Extra: dev
28
+ Provides-Extra: dev_no_cuda
29
+ Provides-Extra: setup_requires
30
+ License-File: LICENSE
31
+
32
+ tomwer
33
+ ======
34
+
35
+ tomwer is offering tools to automate acquisition and reconstruction processes for Tomography.
36
+ It contains:
37
+
38
+ - a library to access each acquisition process individually
39
+ - gui and applications to control main processes (reconstruction, data transfert...) and execute them as a stand alone application.
40
+ - an orange add-on to help users defining their own workflow (http://orange.biolab.si)
41
+
42
+
43
+
44
+ .. image:: http://www.edna-site.org/pub/doc/tomwer/extra/tomwer_start_short.gif
45
+
46
+
47
+ .. |Gitlab Status| image:: https://gitlab.esrf.fr/tomotools/tomwer/badges/master/pipeline.svg
48
+ :target: https://gitlab.esrf.fr/tomotools/tomwer/pipelines
49
+
50
+
51
+ Documentation
52
+ -------------
53
+
54
+ Documentation of latest release is available at http://www.edna-site.org/pub/doc/tomwer/latest
55
+
56
+ Installation
57
+ ------------
58
+
59
+ Step 1 - Create a virtual env (recommended)
60
+ '''''''''''''''''''''''''''''''''''''''''''
61
+
62
+ It is recommended to create a python virtual environment to run the workflow tool.
63
+ Virtual environment might avoid some conflict between python packages. But you can also install it on your 'current' python environment and move to step 1.
64
+
65
+ .. code-block:: bash
66
+
67
+ virtualenv --python=python3 --system-site-packages myvirtualenv
68
+
69
+
70
+ Then activate the virtual environment
71
+
72
+ .. code-block:: bash
73
+
74
+ source myvirtualenv/bin/activate
75
+
76
+ First update pip and setuptools to avoid some potential errors
77
+
78
+ .. code-block:: bash
79
+
80
+ pip install --upgrade pip
81
+ pip install setuptools --upgrade
82
+
83
+
84
+ .. note:: To quit the virtual environment
85
+
86
+ .. code-block:: bash
87
+
88
+ deactivate
89
+
90
+ Step 2 - tomwer (madatory)
91
+ ''''''''''''''''''''''''''
92
+
93
+ To install it with all 'features':
94
+
95
+ .. code-block:: bash
96
+
97
+ pip install tomwer[full]
98
+
99
+ alternatively you can install the master branch from
100
+
101
+ .. code-block:: bash
102
+
103
+ pip install git+https://gitlab.esrf.fr/tomotools/tomwer/#egg=tomwer[full]
104
+
105
+
106
+ Step 3 - update orange-canvas-core and orange-widget-base (recommended)
107
+ '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
108
+
109
+ To access 'processing' wheels you might want to install forks of update orange-canvas-core and orange-widget-base
110
+
111
+ .. code-block:: bash
112
+
113
+ pip install https://github.com/payno/orange-canvas-core --no-deps --upgrade
114
+ pip install https://github.com/payno/orange-widget-base --no-deps --upgrade
115
+
116
+
117
+ Launching applications
118
+ ::::::::::::::::::::::
119
+
120
+ After the installation tomwer is embedding several applications.
121
+
122
+ Those applications can be launched by calling:
123
+
124
+ .. code-block:: bash
125
+
126
+ tomwer appName {options}
127
+
128
+ .. note:: if you only call `tomwer` then the man page will be displayed.
129
+
130
+ .. note:: You can access each application help using ``
131
+
132
+ .. code-block:: bash
133
+
134
+ tomwer appName --help
135
+
136
+
137
+ tomwer canvas - orange canvas
138
+ '''''''''''''''''''''''''''''
139
+
140
+ You can launch the canvas to create workflows from the different 'bricks'
141
+
142
+ .. code-block:: bash
143
+
144
+ tomwer canvas
145
+
146
+ .. note:: you can also use `orange-canvas`
147
+
148
+ .. note:: if your installed a virtual environment do not forget to active it :
149
+
150
+ .. code-block:: bash
151
+
152
+ source myvirtualenv/bin/activate
153
+
154
+
155
+ Documentation
156
+ :::::::::::::
157
+
158
+ .. code-block:: bash
159
+
160
+ cd doc
161
+ make html
162
+
163
+ The documentation is build in doc/build/html and the entry point is index.html
164
+
165
+ .. code-block:: bash
166
+
167
+ firefox build/html/index.html
168
+
169
+ .. note:: the build of the documentation need sphinx to be installed. This is not an hard dependacy. So you might need to install it.
170
+
171
+
172
+ You also should generate documentation to be accessible from Orange GUI (pressing the F1 key).
173
+
174
+ .. code-block:: bash
175
+
176
+ cd doc
177
+ make htmlhelp
@@ -0,0 +1,6 @@
1
+ import logging
2
+
3
+ from . import state_summary # noqa F401
4
+
5
+ fabio_logger = logging.getLogger("fabio.edfimage")
6
+ fabio_logger.setLevel(logging.WARNING)
@@ -0,0 +1,114 @@
1
+ # coding: utf-8
2
+ # /*##########################################################################
3
+ #
4
+ # Copyright (c) 2016-2017 European Synchrotron Radiation Facility
5
+ #
6
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ # of this software and associated documentation files (the "Software"), to deal
8
+ # in the Software without restriction, including without limitation the rights
9
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ # copies of the Software, and to permit persons to whom the Software is
11
+ # furnished to do so, subject to the following conditions:
12
+ #
13
+ # The above copyright notice and this permission notice shall be included in
14
+ # all copies or substantial portions of the Software.
15
+ #
16
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ # THE SOFTWARE.
23
+ #
24
+ # ###########################################################################*/
25
+
26
+ __authors__ = ["H. Payno"]
27
+ __license__ = "MIT"
28
+ __date__ = "22/20/2020"
29
+
30
+
31
+ import functools
32
+
33
+ from ewoksorange.bindings import OWEwoksWidgetWithTaskStack
34
+ from ewoksorange.bindings.owwidgets import invalid_data
35
+ from orangewidget.widget import OWBaseWidget
36
+ from processview.core.manager import DatasetState, ProcessManager
37
+ from processview.core.superviseprocess import SuperviseProcess
38
+
39
+ from orangecontrib.tomwer.widgets.utils import WidgetLongProcessing
40
+
41
+
42
+ class _SuperviseMixIn(SuperviseProcess):
43
+ def __init__(self, process_id=None):
44
+ SuperviseProcess.__init__(self, process_id=process_id)
45
+ self.destroyed.connect(functools.partial(ProcessManager().unregister, self))
46
+
47
+ def setCaption(self, caption):
48
+ self.name = caption
49
+
50
+ def notify_skip(self, scan, details=None):
51
+ ProcessManager().notify_dataset_state(
52
+ dataset=scan, process=self, state=DatasetState.SKIPPED, details=details
53
+ )
54
+
55
+ def notify_pending(self, scan, details=None):
56
+ ProcessManager().notify_dataset_state(
57
+ dataset=scan, process=self, state=DatasetState.PENDING, details=details
58
+ )
59
+
60
+ def notify_succeed(self, scan, details=None):
61
+ ProcessManager().notify_dataset_state(
62
+ dataset=scan, process=self, state=DatasetState.SUCCEED, details=details
63
+ )
64
+
65
+ def notify_failed(self, scan, details=None):
66
+ ProcessManager().notify_dataset_state(
67
+ dataset=scan, process=self, state=DatasetState.FAILED, details=details
68
+ )
69
+
70
+ def notify_on_going(self, scan, details=None):
71
+ ProcessManager().notify_dataset_state(
72
+ dataset=scan, process=self, state=DatasetState.ON_GOING, details=details
73
+ )
74
+
75
+
76
+ class SuperviseOW(OWBaseWidget, _SuperviseMixIn, openclass=True):
77
+ """
78
+ A basic OWWidget but registered on the process manager
79
+ """
80
+
81
+ want_control_area = False
82
+
83
+ def __init__(self, parent, process_id=None):
84
+ OWBaseWidget.__init__(self, parent, process_id=process_id)
85
+ _SuperviseMixIn.__init__(self, process_id=process_id)
86
+
87
+ def setCaption(self, caption):
88
+ OWBaseWidget.setCaption(self, caption)
89
+ _SuperviseMixIn.setCaption(self, caption=caption)
90
+
91
+
92
+ class TomwerWithStackStack(
93
+ OWEwoksWidgetWithTaskStack, _SuperviseMixIn, WidgetLongProcessing, openclass=True
94
+ ):
95
+ def __init__(self, parent, process_id=None, *args, **kwargs):
96
+ OWEwoksWidgetWithTaskStack.__init__(self, parent, args, kwargs)
97
+ _SuperviseMixIn.__init__(self, process_id=process_id)
98
+
99
+ self.task_executor_queue.sigComputationStarted.connect(self._startProcessing)
100
+ self.task_executor_queue.sigComputationEnded.connect(self._endProcessing)
101
+
102
+ def setCaption(self, caption):
103
+ OWBaseWidget.setCaption(self, caption)
104
+ _SuperviseMixIn.setCaption(self, caption=caption)
105
+
106
+ def trigger_downstream(self) -> None:
107
+ # for now ewoksorange send ewoks variable. This will work only if
108
+ # all task are implemented using ewokwidget which is not the case today
109
+ for ewoksname, var in self.get_task_outputs().items():
110
+ channel = self._get_output_signal(ewoksname)
111
+ if invalid_data.is_invalid_data(var.value):
112
+ channel.send(None) # or channel.invalidate?
113
+ else:
114
+ channel.send(var.value)
@@ -0,0 +1,50 @@
1
+ from orangewidget.utils.signals import PartialSummary, summarize
2
+
3
+ from tomwer.core.cluster import SlurmClusterConfiguration
4
+ from tomwer.core.futureobject import FutureTomwerObject
5
+ from tomwer.core.scan.blissscan import BlissScan
6
+ from tomwer.core.scan.scanbase import TomwerScanBase
7
+
8
+
9
+ @summarize.register(object) # noqa F811
10
+ def summarize_(Object: object): # noqa F811
11
+ return PartialSummary("any object", "an oject of any type")
12
+
13
+
14
+ @summarize.register(dict) # noqa F811
15
+ def summarize_(configuration: dict): # noqa F811
16
+ return PartialSummary(
17
+ "any configuration", "any configuration that can be provided to a process"
18
+ )
19
+
20
+
21
+ @summarize.register(SlurmClusterConfiguration) # noqa F811
22
+ def summarize_(cluster_config: SlurmClusterConfiguration): # noqa F811
23
+ return PartialSummary(
24
+ "cluster configuration",
25
+ "cluster configuration to launch some remote processing",
26
+ )
27
+
28
+
29
+ @summarize.register(TomwerScanBase) # noqa F811
30
+ def summarize_(data: TomwerScanBase): # noqa F811
31
+ return PartialSummary(
32
+ "dataset with processing history",
33
+ "core object used to ship dataset and history of processing done on this dataset",
34
+ )
35
+
36
+
37
+ @summarize.register(FutureTomwerObject) # noqa F811
38
+ def summarize_(future_data: FutureTomwerObject): # noqa F811
39
+ return PartialSummary(
40
+ "dataset with pending processing",
41
+ "object used when there is some pending processing (asyncio.future). Can be convert back to `data`",
42
+ )
43
+
44
+
45
+ @summarize.register(BlissScan) # noqa F811
46
+ def summarize_(bliss_scan: BlissScan): # noqa F811
47
+ return PartialSummary(
48
+ "raw dataset from bliss",
49
+ "object used when debug some processing relative to bliss",
50
+ )
@@ -0,0 +1,62 @@
1
+ # coding: utf-8
2
+ ###########################################################################
3
+ # Copyright (C) 2016 European Synchrotron Radiation Facility
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in
13
+ # all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ # THE SOFTWARE.
22
+ #
23
+ #############################################################################
24
+
25
+ import sysconfig
26
+
27
+ import pkg_resources
28
+
29
+ ICON = "../widgets/icons/tomwer.png"
30
+
31
+ BACKGROUND = "#C0CCFF"
32
+
33
+
34
+ # Entry point for main Orange categories/widgets discovery
35
+ def widget_discovery(discovery):
36
+ dist = pkg_resources.get_distribution("tomwer")
37
+ pkgs = [
38
+ "orangecontrib.tomwer.widgets.cluster",
39
+ "orangecontrib.tomwer.widgets.control",
40
+ "orangecontrib.tomwer.widgets.debugtools",
41
+ "orangecontrib.tomwer.widgets.edit",
42
+ "orangecontrib.tomwer.widgets.reconstruction",
43
+ "orangecontrib.tomwer.widgets.visualization",
44
+ "orangecontrib.tomwer.widgets.other",
45
+ ]
46
+ for pkg in pkgs:
47
+ discovery.process_category_package(pkg, distribution=dist)
48
+
49
+
50
+ WIDGET_HELP_PATH = (
51
+ # Used for development.
52
+ # You still need to build help pages using
53
+ # make htmlhelp
54
+ # inside doc folder
55
+ ("/build/sphinx/htmlhelp/index.html", None),
56
+ #
57
+ # Documentation included in wheel
58
+ # Correct DATA_FILES entry is needed in setup.py and documentation has to be built
59
+ # # before the wheel is created.
60
+ (f"{sysconfig.get_path('data')}/help/tomwer/index.html", None),
61
+ ("http://www.silx.org/pub/doc/tomwer/htmlhelp/0.9/", None),
62
+ )
@@ -0,0 +1,244 @@
1
+ # coding: utf-8
2
+ # /*##########################################################################
3
+ #
4
+ # Copyright (c) 2016-2017 European Synchrotron Radiation Facility
5
+ #
6
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ # of this software and associated documentation files (the "Software"), to deal
8
+ # in the Software without restriction, including without limitation the rights
9
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ # copies of the Software, and to permit persons to whom the Software is
11
+ # furnished to do so, subject to the following conditions:
12
+ #
13
+ # The above copyright notice and this permission notice shall be included in
14
+ # all copies or substantial portions of the Software.
15
+ #
16
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ # THE SOFTWARE.
23
+ #
24
+ # ###########################################################################*/
25
+
26
+ __authors__ = ["H. Payno"]
27
+ __license__ = "MIT"
28
+ __date__ = "14/10/2021"
29
+
30
+
31
+ import time
32
+
33
+ from orangewidget import gui
34
+ from orangewidget.settings import Setting
35
+ from orangewidget.widget import Input, Output, OWBaseWidget
36
+ from processview.core.manager import DatasetState, ProcessManager
37
+ from processview.core.superviseprocess import SuperviseProcess
38
+ from silx.gui import qt
39
+ from silx.gui.utils.concurrent import submitToQtMainThread
40
+
41
+ from tomwer.core.futureobject import FutureTomwerObject
42
+ from tomwer.core.scan.scanbase import TomwerScanBase
43
+ from tomwer.core.volume.volumebase import TomwerVolumeBase
44
+ from tomwer.gui.cluster.supervisor import (
45
+ FutureTomwerScanObserverWidget as _FutureTomwerScanObserverWidget,
46
+ )
47
+
48
+
49
+ class FutureSupervisorOW(OWBaseWidget, openclass=True):
50
+ """
51
+ Orange widget to define a slurm cluster as input of other
52
+ widgets (based on nabu for now)
53
+ """
54
+
55
+ name = "future supervisor"
56
+ id = "orange.widgets.tomwer.cluster.FutureSupervisorOW.FutureSupervisorOW"
57
+ description = "Observe slurm job registered."
58
+ icon = "icons/slurmobserver.svg"
59
+ priority = 22
60
+ keywords = [
61
+ "tomography",
62
+ "tomwer",
63
+ "slurm",
64
+ "observer",
65
+ "cluster",
66
+ "job",
67
+ "sbatch",
68
+ "supervisor",
69
+ "future",
70
+ ]
71
+
72
+ want_main_area = True
73
+ want_control_area = False
74
+ resizing_enabled = True
75
+ compress_signal = False
76
+
77
+ _ewoks_default_inputs = Setting(dict())
78
+
79
+ class Inputs:
80
+ future_in = Input(
81
+ name="future_tomo_obj",
82
+ type=FutureTomwerObject,
83
+ doc="data with some remote processing",
84
+ multiple=True,
85
+ default=True,
86
+ )
87
+
88
+ class Outputs:
89
+ data = Output(name="data", type=TomwerScanBase)
90
+ volume = Output(name="volume", type=TomwerVolumeBase)
91
+
92
+ def __init__(self, parent=None):
93
+ super().__init__(parent)
94
+ # gui
95
+ layout = gui.vBox(self.mainArea, self.name).layout()
96
+ self._widget = FutureTomwerObjectObserverWidget(
97
+ parent=self, name=self.windowTitle()
98
+ )
99
+ layout.addWidget(self._widget)
100
+
101
+ # connect signal / slot
102
+ self._widget.observationTable.model().sigStatusUpdated.connect(
103
+ self._convertBackAutomatically
104
+ )
105
+ self._widget.sigConversionRequested.connect(self._convertBack)
106
+
107
+ def convertWhenFinished(self):
108
+ return self._widget.convertWhenFinished()
109
+
110
+ def _convertBackAutomatically(self, future_tomo_obj, status):
111
+ if not isinstance(future_tomo_obj, FutureTomwerObject):
112
+ raise TypeError(
113
+ f"future_tomo_obj is expected to be an instance of {FutureTomwerObject} and not {type(future_tomo_obj)}"
114
+ )
115
+ if status in ("finished", "completed") and self.convertWhenFinished():
116
+ self._convertBack(future_tomo_obj)
117
+
118
+ def _convertBack(self, future_tomo_obj):
119
+ if not isinstance(future_tomo_obj, FutureTomwerObject):
120
+ raise TypeError(
121
+ f"future_tomo_obj is expected to be an instance of {FutureTomwerObject} and not {type(future_tomo_obj)}"
122
+ )
123
+ self._futureHasBeenConverted(future_tomo_obj, future_tomo_obj.tomo_obj)
124
+
125
+ @Inputs.future_in
126
+ def add(self, future_tomo_obj, signal_id=None):
127
+ if future_tomo_obj is not None:
128
+ self._widget.addFutureTomoObj(future_tomo_obj=future_tomo_obj)
129
+
130
+ def _futureHasBeenConverted(self, future_tomo_obj, tomo_obj):
131
+ # clean client to free resources
132
+ self._widget.removeFutureTomoObj(future_tomo_obj=future_tomo_obj)
133
+ if tomo_obj is not None:
134
+ if isinstance(tomo_obj, TomwerScanBase):
135
+ self.Outputs.data.send(tomo_obj)
136
+ elif isinstance(tomo_obj, TomwerVolumeBase):
137
+ self.Outputs.volume.send(tomo_obj)
138
+
139
+
140
+ class FutureTomwerObjectObserverWidget(
141
+ _FutureTomwerScanObserverWidget, SuperviseProcess
142
+ ):
143
+ """add dataset state notification (ProcessManager) to the original FutureTomwerScanObserverWidget"""
144
+
145
+ REFRESH_FREQUENCE = 10
146
+ """time between call to updateView"""
147
+
148
+ def __init__(self, name, parent=None):
149
+ super().__init__(parent=parent)
150
+ self.name = name
151
+ self._updateThread = _RefreshThread(
152
+ callback=self.updateView, refresh_frequence=self.REFRESH_FREQUENCE
153
+ )
154
+ self.destroyed.connect(self.stopRefresh)
155
+ self._updateThread.start()
156
+
157
+ def stopRefresh(self):
158
+ if self._updateThread is not None:
159
+ self._updateThread.stop()
160
+ self._updateThread.wait(self.REFRESH_FREQUENCE + 1)
161
+ self._updateThread = None
162
+
163
+ def close(self):
164
+ self.stopRefresh()
165
+ super().close()
166
+
167
+ def addFutureTomoObj(self, future_tomo_obj: FutureTomwerObject):
168
+ super().addFutureTomoObj(future_tomo_obj)
169
+ self._updateTomoObjSupervisor(future_tomo_obj)
170
+
171
+ def removeFutureTomoObj(self, future_tomo_obj: FutureTomwerObject):
172
+ self._updateTomoObjSupervisor(future_tomo_obj)
173
+ super().removeFutureTomoObj(future_tomo_obj)
174
+
175
+ def _updateTomoObjSupervisor(self, future_tomo_obj):
176
+ r_id = future_tomo_obj.process_requester_id
177
+ if r_id is not None:
178
+ requester_name = ProcessManager().get_process(r_id).name
179
+ else:
180
+ requester_name = "unknow"
181
+ details = f"job spawn by {requester_name}"
182
+ if future_tomo_obj is None:
183
+ return
184
+ elif future_tomo_obj.status == "error":
185
+ state = DatasetState.FAILED
186
+ elif future_tomo_obj.status == "pending":
187
+ details = "\n".join([details, "pending"])
188
+ state = DatasetState.PENDING
189
+ elif future_tomo_obj.status in ("finished", "completed"):
190
+ details = future_tomo_obj.logs or "no log found"
191
+ state = DatasetState.SUCCEED
192
+ elif future_tomo_obj.status == "running":
193
+ details = "\n".join([details, "running"])
194
+ state = DatasetState.ON_GOING
195
+ elif future_tomo_obj.status == "cancelled":
196
+ details = "\n".join([details, "job cancelled"])
197
+ state = DatasetState.SKIPPED
198
+ elif future_tomo_obj.status is None:
199
+ return
200
+ else:
201
+ raise ValueError(
202
+ f"future scan status '{future_tomo_obj.status}' is not managed, {type(future_tomo_obj.status)}"
203
+ )
204
+ ProcessManager().notify_dataset_state(
205
+ dataset=future_tomo_obj.tomo_obj,
206
+ process=self,
207
+ state=state,
208
+ details=details,
209
+ )
210
+
211
+ def _updateStatus(self, future_tomo_obj):
212
+ self._updateTomoObjSupervisor(future_tomo_obj)
213
+ super()._updateStatus(future_tomo_obj)
214
+
215
+
216
+ class _RefreshThread(qt.QThread):
217
+ """Simple thread to call a refresh callback each refresh_frequence (seconds)"""
218
+
219
+ TIME_BETWEEN_LOOP = 1.0
220
+
221
+ def __init__(self, callback, refresh_frequence) -> None:
222
+ super().__init__()
223
+ self._callback = callback
224
+ self._refresh_frequence = refresh_frequence
225
+ self._stop = False
226
+
227
+ def stop(self):
228
+ self._stop = True
229
+ self._callback = None
230
+
231
+ def run(self):
232
+ w_t = self._refresh_frequence + self.TIME_BETWEEN_LOOP
233
+
234
+ while not self._stop:
235
+ if w_t <= 0:
236
+ if self._callback is not None:
237
+ try:
238
+ submitToQtMainThread(self._callback)
239
+ except AttributeError:
240
+ # can happen when closing
241
+ pass
242
+ w_t = self._refresh_frequence + self.TIME_BETWEEN_LOOP
243
+ w_t -= self.TIME_BETWEEN_LOOP
244
+ time.sleep(self.TIME_BETWEEN_LOOP)