orGUI 1.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. orGUI-1.0.1.dist-info/LICENSE +21 -0
  2. orGUI-1.0.1.dist-info/METADATA +147 -0
  3. orGUI-1.0.1.dist-info/RECORD +83 -0
  4. orGUI-1.0.1.dist-info/WHEEL +5 -0
  5. orGUI-1.0.1.dist-info/entry_points.txt +2 -0
  6. orGUI-1.0.1.dist-info/top_level.txt +1 -0
  7. orgui/__init__.py +36 -0
  8. orgui/app/ArrayTableDialog.py +433 -0
  9. orgui/app/QReflectionSelector.py +538 -0
  10. orgui/app/QScanSelector.py +692 -0
  11. orgui/app/QUBCalculator.py +1210 -0
  12. orgui/app/__init__.py +36 -0
  13. orgui/app/database.py +487 -0
  14. orgui/app/orGUI.py +2613 -0
  15. orgui/app/qutils.py +51 -0
  16. orgui/backend/__init__.py +32 -0
  17. orgui/backend/backends.py +157 -0
  18. orgui/backend/beamline/ID31DiffractLinTilt.py +77 -0
  19. orgui/backend/beamline/P212_tools.py +577 -0
  20. orgui/backend/beamline/__init__.py +36 -0
  21. orgui/backend/beamline/fio_reader.py +110 -0
  22. orgui/backend/beamline/id31_tools.py +651 -0
  23. orgui/backend/scans.py +95 -0
  24. orgui/backend/udefaults.py +163 -0
  25. orgui/backend/universalScanLoader.py +105 -0
  26. orgui/datautils/__init__.py +32 -0
  27. orgui/datautils/util.py +705 -0
  28. orgui/datautils/xrayutils/CTRcalc.py +3022 -0
  29. orgui/datautils/xrayutils/CTRopt.py +623 -0
  30. orgui/datautils/xrayutils/CTRplotutil.py +904 -0
  31. orgui/datautils/xrayutils/DetectorCalibration.py +685 -0
  32. orgui/datautils/xrayutils/HKLVlieg.py +1360 -0
  33. orgui/datautils/xrayutils/ReciprocalNavigation.py +401 -0
  34. orgui/datautils/xrayutils/_CTRcalc_accel.py +181 -0
  35. orgui/datautils/xrayutils/__init__.py +46 -0
  36. orgui/datautils/xrayutils/element_data.py +213 -0
  37. orgui/datautils/xrayutils/test/__init__.py +57 -0
  38. orgui/datautils/xrayutils/test/test_CTRcalc.py +152 -0
  39. orgui/datautils/xrayutils/test/test_DetectorCalibration.py +336 -0
  40. orgui/datautils/xrayutils/test/test_HKLcalc.py +88 -0
  41. orgui/datautils/xrayutils/unitcells/Fe3O4(100).bul +59 -0
  42. orgui/datautils/xrayutils/unitcells/Pt100.bul +7 -0
  43. orgui/datautils/xrayutils/unitcells/Pt100_small.bul +5 -0
  44. orgui/datautils/xrayutils/unitcells/Pt110.bul +5 -0
  45. orgui/datautils/xrayutils/unitcells/Pt111.bul +6 -0
  46. orgui/datautils/xrayutils/unitcells/Pt310.bul +13 -0
  47. orgui/datautils/xrayutils/unitcells/Pt3O4(100).bul +19 -0
  48. orgui/datautils/xrayutils/unitcells/PtO(001).bul +9 -0
  49. orgui/datautils/xrayutils/unitcells/PtO(010).bul +9 -0
  50. orgui/datautils/xrayutils/unitcells/PtO(100).bul +9 -0
  51. orgui/datautils/xrayutils/unitcells/__init__.py +67 -0
  52. orgui/datautils/xrayutils/unitcells/a-PtO2(0001).bul +6 -0
  53. orgui/main.py +101 -0
  54. orgui/resources/__init__.py +40 -0
  55. orgui/resources/icons/alpha.png +0 -0
  56. orgui/resources/icons/alpha.svg +67 -0
  57. orgui/resources/icons/diffractometer_v3.png +0 -0
  58. orgui/resources/icons/disable-image.png +0 -0
  59. orgui/resources/icons/disable-image.svg +68 -0
  60. orgui/resources/icons/document-nx-open.png +0 -0
  61. orgui/resources/icons/document-nx-open.svg +152 -0
  62. orgui/resources/icons/document-nx-save.png +0 -0
  63. orgui/resources/icons/document-nx-save.svg +73 -0
  64. orgui/resources/icons/logo.png +0 -0
  65. orgui/resources/icons/logo.svg +808 -0
  66. orgui/resources/icons/max_image.png +0 -0
  67. orgui/resources/icons/max_image.svg +77 -0
  68. orgui/resources/icons/max_image2.png +0 -0
  69. orgui/resources/icons/max_image2.svg +83 -0
  70. orgui/resources/icons/search-image.png +0 -0
  71. orgui/resources/icons/search-image.svg +94 -0
  72. orgui/resources/icons/search-reflection.png +0 -0
  73. orgui/resources/icons/search-reflection.svg +126 -0
  74. orgui/resources/icons/search.png +0 -0
  75. orgui/resources/icons/search.svg +91 -0
  76. orgui/resources/icons/select-image.png +0 -0
  77. orgui/resources/icons/select-image.svg +60 -0
  78. orgui/resources/icons/set-reflection.png +0 -0
  79. orgui/resources/icons/set-reflection.svg +91 -0
  80. orgui/resources/icons/sum_image.png +0 -0
  81. orgui/resources/icons/sum_image.svg +63 -0
  82. orgui/resources/icons/sum_image2.png +0 -0
  83. orgui/resources/icons/sum_image2.svg +75 -0
@@ -0,0 +1,63 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ id="svg16"
11
+ enable-background="new 0 0 32 32"
12
+ version="1.1"
13
+ viewBox="0 0 32 32"
14
+ xml:space="preserve"
15
+ sodipodi:docname="sum_image.svg"
16
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"><defs
17
+ id="defs10" /><sodipodi:namedview
18
+ pagecolor="#ffffff"
19
+ bordercolor="#666666"
20
+ borderopacity="1"
21
+ objecttolerance="10"
22
+ gridtolerance="10"
23
+ guidetolerance="10"
24
+ inkscape:pageopacity="0"
25
+ inkscape:pageshadow="2"
26
+ inkscape:window-width="3840"
27
+ inkscape:window-height="2066"
28
+ id="namedview8"
29
+ showgrid="false"
30
+ inkscape:zoom="1.3037281"
31
+ inkscape:cx="-1.3674739"
32
+ inkscape:cy="-154.8289"
33
+ inkscape:window-x="-11"
34
+ inkscape:window-y="-11"
35
+ inkscape:window-maximized="1"
36
+ inkscape:current-layer="svg16" /><metadata
37
+ id="metadata22"><rdf:RDF><cc:Work
38
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
39
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><g
40
+ id="g844"
41
+ transform="matrix(0.67772769,0,0,0.67772769,9.6579343,-0.36064224)"><rect
42
+ y="3.9131589"
43
+ x="14.07929"
44
+ height="10.347986"
45
+ width="10.347986"
46
+ id="rect819"
47
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.38739291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><rect
48
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.38739291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
49
+ id="rect821"
50
+ width="10.347986"
51
+ height="10.347986"
52
+ x="16.758211"
53
+ y="6.5395517" /><rect
54
+ y="9.1659431"
55
+ x="19.43713"
56
+ height="10.347986"
57
+ width="10.347986"
58
+ id="rect823"
59
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.38739291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /></g><path
60
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f7941e;stroke-width:1.87799931;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
61
+ d="m 16.861088,12.587836 -11.453455,0.04563 6.479643,7.164113 -7.2097445,7.939845 H 18.138764"
62
+ id="path817"
63
+ inkscape:connector-curvature="0" /></svg>
Binary file
@@ -0,0 +1,75 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ id="svg16"
11
+ enable-background="new 0 0 32 32"
12
+ version="1.1"
13
+ viewBox="0 0 32 32"
14
+ xml:space="preserve"
15
+ sodipodi:docname="sum_image2.svg"
16
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
17
+ inkscape:export-filename="I:\icons\sum_2.png"
18
+ inkscape:export-xdpi="96"
19
+ inkscape:export-ydpi="96"><defs
20
+ id="defs10" /><sodipodi:namedview
21
+ pagecolor="#ffffff"
22
+ bordercolor="#666666"
23
+ borderopacity="1"
24
+ objecttolerance="10"
25
+ gridtolerance="10"
26
+ guidetolerance="10"
27
+ inkscape:pageopacity="0"
28
+ inkscape:pageshadow="2"
29
+ inkscape:window-width="1231"
30
+ inkscape:window-height="936"
31
+ id="namedview8"
32
+ showgrid="false"
33
+ inkscape:zoom="3.6875"
34
+ inkscape:cx="-14.321777"
35
+ inkscape:cy="-72.258575"
36
+ inkscape:window-x="1097"
37
+ inkscape:window-y="391"
38
+ inkscape:window-maximized="0"
39
+ inkscape:current-layer="svg16"
40
+ inkscape:snap-global="false" /><metadata
41
+ id="metadata22"><rdf:RDF><cc:Work
42
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
43
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><path
44
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.77995139;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
45
+ id="path850"
46
+ sodipodi:type="arc"
47
+ sodipodi:cx="21.35284"
48
+ sodipodi:cy="5.8710318"
49
+ sodipodi:rx="8.6657171"
50
+ sodipodi:ry="6.1755686"
51
+ sodipodi:start="0.26179939"
52
+ sodipodi:end="2.8797933"
53
+ sodipodi:open="true"
54
+ d="M 29.72328,7.4693865 A 8.6657171,6.1755686 0 0 1 21.35284,12.0466 8.6657171,6.1755686 0 0 1 12.9824,7.4693863" /><path
55
+ d="m 29.72328,-7.6459451 a 8.6657171,6.1755686 0 0 1 -8.37044,4.5772138 8.6657171,6.1755686 0 0 1 -8.37044,-4.577214"
56
+ sodipodi:open="true"
57
+ sodipodi:end="2.8797933"
58
+ sodipodi:start="0.26179939"
59
+ sodipodi:ry="6.1755686"
60
+ sodipodi:rx="8.6657171"
61
+ sodipodi:cy="-9.2442999"
62
+ sodipodi:cx="21.35284"
63
+ sodipodi:type="arc"
64
+ id="path4559"
65
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.77995139;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
66
+ transform="scale(1,-1)" /><circle
67
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.68863994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
68
+ id="path4561"
69
+ cx="21.345697"
70
+ cy="7.6394448"
71
+ r="2.6277163" /><path
72
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#f7941e;stroke-width:1.87799931;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
73
+ d="M 15.609356,13.303282 4.1559013,13.348912 10.635544,20.513025 3.4257993,28.45287 H 16.887032"
74
+ id="path817"
75
+ inkscape:connector-curvature="0" /></svg>