petal-qc 0.0.17__py3-none-any.whl → 0.0.24__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.
- petal_qc/PetalReceptionTests.py +23 -5
- petal_qc/__init__.py +6 -1
- petal_qc/getPetalCoreTestSummary.py +69 -9
- petal_qc/metrology/PetalMetrology.py +23 -11
- petal_qc/metrology/analyze_locking_points.py +14 -3
- petal_qc/metrology/compare_Cores.py +15 -2
- petal_qc/metrology/convert_mitutoyo.py +5 -0
- petal_qc/metrology/coreMetrology.py +16 -26
- petal_qc/metrology/do_Metrology.py +1 -1
- petal_qc/metrology/petal_flatness.py +10 -9
- petal_qc/metrology/readAVSdata.py +11 -4
- petal_qc/metrology/test_paralelism.py +2 -2
- petal_qc/metrology/uploadPetalInformation.py +35 -3
- petal_qc/readTemplateTable.py +313 -0
- petal_qc/test/analyzeMetrologyTable.py +158 -29
- petal_qc/test/checkPipeShipments.py +60 -0
- petal_qc/test/getAVStests.py +2 -2
- petal_qc/test/reportFromJSon.py +35 -6
- petal_qc/test/testMitutoyo.py +10 -0
- petal_qc/test/thermalReportFromJSon.py +99 -0
- petal_qc/thermal/IRDataGetter.py +2 -0
- petal_qc/thermal/IRPetal.py +20 -6
- petal_qc/thermal/IRPetalParam.py +12 -3
- petal_qc/thermal/Petal_IR_Analysis.py +1 -1
- petal_qc/thermal/PipeFit.py +24 -10
- petal_qc/thermal/PipeIterFit.py +94 -0
- petal_qc/thermal/contours.py +82 -3
- petal_qc/thermal/coreThermal.py +2 -2
- petal_qc/thermal/create_IRCore.py +11 -6
- petal_qc/thermal/create_core_report.py +0 -3
- petal_qc/uploadXrays.py +86 -0
- {petal_qc-0.0.17.dist-info → petal_qc-0.0.24.dist-info}/METADATA +2 -3
- {petal_qc-0.0.17.dist-info → petal_qc-0.0.24.dist-info}/RECORD +36 -30
- {petal_qc-0.0.17.dist-info → petal_qc-0.0.24.dist-info}/WHEEL +1 -1
- {petal_qc-0.0.17.dist-info → petal_qc-0.0.24.dist-info}/entry_points.txt +1 -0
- {petal_qc-0.0.17.dist-info → petal_qc-0.0.24.dist-info}/top_level.txt +0 -0
|
@@ -21,7 +21,7 @@ from petal_qc.thermal import IRBFile
|
|
|
21
21
|
from petal_qc.thermal import IRCore
|
|
22
22
|
from petal_qc.thermal import IRPetal
|
|
23
23
|
from petal_qc.thermal import Petal_IR_Analysis
|
|
24
|
-
from petal_qc.thermal import PipeFit
|
|
24
|
+
from petal_qc.thermal import PipeFit, PipeIterFit
|
|
25
25
|
from petal_qc.thermal.PetalColorMaps import HighContrast
|
|
26
26
|
from petal_qc.thermal.IRDataGetter import IRDataGetter
|
|
27
27
|
from petal_qc.thermal.IRPetalParam import IRPetalParam
|
|
@@ -135,8 +135,8 @@ def create_IR_core(options):
|
|
|
135
135
|
if options.tco2 <= -999:
|
|
136
136
|
out = get_inlet_temp(irbf, options)
|
|
137
137
|
if out <= -999:
|
|
138
|
-
print("### Cannot get Tcos. Setting to default.")
|
|
139
138
|
P = IRPetalParam()
|
|
139
|
+
print("### Cannot get T_co2. Setting to default: {}".format(P.tco2))
|
|
140
140
|
out = P.tco2
|
|
141
141
|
|
|
142
142
|
options.tco2 = out
|
|
@@ -182,8 +182,13 @@ def create_IR_core(options):
|
|
|
182
182
|
ofile = output_folder(options.folder, "{}_pipe_{}.txt".format(prfx, pipe_type))
|
|
183
183
|
np.savetxt(ofile, pipes[i])
|
|
184
184
|
|
|
185
|
-
PF = PipeFit.PipeFit(pipe_type)
|
|
186
|
-
R = PF.fit_ex(pipes[i], factor=getter.factor)
|
|
185
|
+
#PF = PipeFit.PipeFit(pipe_type)
|
|
186
|
+
#R = PF.fit_ex(pipes[i], factor=getter.factor)
|
|
187
|
+
|
|
188
|
+
iPF = PipeIterFit.PipeIterFit(pipes[i])
|
|
189
|
+
PF = iPF.PF
|
|
190
|
+
R = iPF.fit(factor=getter.factor, threshold=12*getter.factor)
|
|
191
|
+
|
|
187
192
|
if options.debug or options.report:
|
|
188
193
|
_X = all_3d_points[i][:, 0]
|
|
189
194
|
_Y = all_3d_points[i][:, 1]
|
|
@@ -204,6 +209,8 @@ def create_IR_core(options):
|
|
|
204
209
|
o = PF.transform_inv(s, R)
|
|
205
210
|
ax.plot(o[:,0], o[:, 1], linewidth=2, color="black")
|
|
206
211
|
|
|
212
|
+
cpipe = PF.transform_inv(PF.pipe, R)
|
|
213
|
+
ax.plot(cpipe[:,0], cpipe[:,1], linewidth=1, color="black")
|
|
207
214
|
__figures__["sensors_{}".format(pipe_type)] = fig
|
|
208
215
|
|
|
209
216
|
fig = plt.figure(tight_layout=True, figsize=(7, 6))
|
|
@@ -290,8 +297,6 @@ def main():
|
|
|
290
297
|
parser.add_argument("--alias", default="", help="Alias")
|
|
291
298
|
parser.add_argument("--SN", default="", help="serial number")
|
|
292
299
|
parser.add_argument("--folder", default=None, help="Folder to store output files. Superseeds folder in --out")
|
|
293
|
-
parser.add_argument("--no-legend", dest="legend", action="store_false", default=True, help="Do not show the legend in plots.")
|
|
294
|
-
parser.add_argument("--save_pipes", default=False, action="store_true", help="SAve pipe path. Output is alias_pipe-i.txt")
|
|
295
300
|
|
|
296
301
|
IRPetalParam.add_parameters(parser)
|
|
297
302
|
|
|
@@ -152,9 +152,6 @@ def main():
|
|
|
152
152
|
parser.add_argument("--folder", default=None, help="Folder to store output files. Superseeds folder in --out")
|
|
153
153
|
parser.add_argument("--add_attachments", action="store_true", default=False, help="If true add the attachments section os DB file.")
|
|
154
154
|
parser.add_argument("--golden", default=None, help="The golden to compare width")
|
|
155
|
-
parser.add_argument("--no-legend", dest="legend", action="store_false", default=True, help="Do not show the legend in plots.")
|
|
156
|
-
parser.add_argument("--save_pipes", default=False, action="store_true", help="SAve pipe path. Output is alias_pipe-i.txt")
|
|
157
|
-
|
|
158
155
|
|
|
159
156
|
IRPetalParam.add_parameters(parser)
|
|
160
157
|
|
petal_qc/uploadXrays.py
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""Test dashboard."""
|
|
3
|
+
import os
|
|
4
|
+
import sys
|
|
5
|
+
import copy
|
|
6
|
+
from pathlib import Path
|
|
7
|
+
from argparse import ArgumentParser
|
|
8
|
+
|
|
9
|
+
try:
|
|
10
|
+
import itkdb_gtk
|
|
11
|
+
|
|
12
|
+
except ImportError:
|
|
13
|
+
cwd = Path(__file__).parent.parent
|
|
14
|
+
sys.path.append(cwd.as_posix())
|
|
15
|
+
import itkdb_gtk
|
|
16
|
+
|
|
17
|
+
from itkdb_gtk import ITkDBlogin, ITkDButils, UploadTest
|
|
18
|
+
from petal_qc.utils.ArgParserUtils import RangeListAction
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
HOME=os.getenv("HOME")
|
|
22
|
+
cloud=Path("{}/Nextcloud/ITk/5-Petal_cores".format(HOME))
|
|
23
|
+
|
|
24
|
+
def uploadXrays(session, options):
|
|
25
|
+
"""Upload Xray tests."""
|
|
26
|
+
if len(options.cores) == 0:
|
|
27
|
+
print("I need a list of cores.")
|
|
28
|
+
return
|
|
29
|
+
|
|
30
|
+
defaults = {
|
|
31
|
+
"institution": "IFIC",
|
|
32
|
+
"runNumber": "1",
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
dto = ITkDButils.get_test_skeleton(session, "CORE_PETAL", "XRAYIMAGING", defaults)
|
|
36
|
+
dto["properties"]["OPERATOR"]="Nico"
|
|
37
|
+
dto["properties"]["MACHINEID"]="Xray"
|
|
38
|
+
|
|
39
|
+
for core in options.cores:
|
|
40
|
+
petal_id = "PPC.{:03d}".format(core)
|
|
41
|
+
try:
|
|
42
|
+
obj = ITkDButils.get_DB_component(session, petal_id)
|
|
43
|
+
SN = obj["serialNumber"]
|
|
44
|
+
|
|
45
|
+
except Exception as E:
|
|
46
|
+
print("Could not find {} in DB:\n{}".format(petal_id, E))
|
|
47
|
+
continue
|
|
48
|
+
|
|
49
|
+
values = copy.deepcopy(dto)
|
|
50
|
+
print("Petal {}".format(petal_id))
|
|
51
|
+
values["component"] = SN
|
|
52
|
+
|
|
53
|
+
image = cloud / petal_id / "Rx_{}.png".format(petal_id)
|
|
54
|
+
if not image.exists():
|
|
55
|
+
print("Xray image does not esxist.\n\t{}".format(image))
|
|
56
|
+
continue
|
|
57
|
+
|
|
58
|
+
A = ITkDButils.Attachment(path=image.as_posix(), title=image.name, desc="X-ray image")
|
|
59
|
+
values["results"]["IMAGELINK"] = image.name
|
|
60
|
+
uploadW = UploadTest.UploadTest(session, values, [A, ])
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
def main():
|
|
65
|
+
"""Main entry"""
|
|
66
|
+
parser = ArgumentParser()
|
|
67
|
+
parser.add_argument("--cores", dest="cores", action=RangeListAction, default=[],
|
|
68
|
+
help="Create list of cores to analyze. The list is made with numbers or ranges (ch1:ch2 or ch1:ch2:step) ")
|
|
69
|
+
options = parser.parse_args()
|
|
70
|
+
|
|
71
|
+
# ITk_PB authentication
|
|
72
|
+
dlg = ITkDBlogin.ITkDBlogin()
|
|
73
|
+
session = dlg.get_client()
|
|
74
|
+
|
|
75
|
+
try:
|
|
76
|
+
uploadXrays(session, options)
|
|
77
|
+
|
|
78
|
+
except Exception as E:
|
|
79
|
+
print(E)
|
|
80
|
+
|
|
81
|
+
dlg.die()
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
if __name__ == "__main__":
|
|
86
|
+
main()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: petal_qc
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.24
|
|
4
4
|
Summary: A collection of scripts for Petal CORE QC.
|
|
5
5
|
Author-email: Carlos Lacasta <carlos.lacasta@cern.ch>
|
|
6
6
|
Project-URL: Homepage, https://gitlab.cern.ch/atlas-itk/sw/db/itk-pdb-gtk-gui-utils
|
|
@@ -19,7 +19,6 @@ Requires-Dist: pandas
|
|
|
19
19
|
Requires-Dist: python_dateutil
|
|
20
20
|
Requires-Dist: python_docx
|
|
21
21
|
Requires-Dist: scipy
|
|
22
|
-
Requires-Dist: scikit-image
|
|
23
22
|
|
|
24
23
|
# Petal QC
|
|
25
24
|
|
|
@@ -1,64 +1,70 @@
|
|
|
1
|
-
petal_qc/PetalReceptionTests.py,sha256=
|
|
2
|
-
petal_qc/__init__.py,sha256=
|
|
1
|
+
petal_qc/PetalReceptionTests.py,sha256=QDWh98nBdO8wmww8yxFTZSikrcqGE5O8hrvEfQp1yrc,11425
|
|
2
|
+
petal_qc/__init__.py,sha256=xeATeI4FAIr4ney8-c-2oYtFtcGj_qiRjAlirIas0hI,1736
|
|
3
3
|
petal_qc/dashBoard.py,sha256=U_UHNMca3H2ogD4a0Vpe4ZVUKEv2-xmGZQEZ9_aH0E4,4034
|
|
4
|
-
petal_qc/getPetalCoreTestSummary.py,sha256=
|
|
4
|
+
petal_qc/getPetalCoreTestSummary.py,sha256=OnvX5zFfyfnLhmPy84kZq2XkfOH5DaDrYSXpiwrmln8,5436
|
|
5
|
+
petal_qc/readTemplateTable.py,sha256=zh6j_g_AYKCJ4ajmGEoy9KI9giL7tBhZdpbUE8s2b7I,8405
|
|
6
|
+
petal_qc/uploadXrays.py,sha256=j_iKGjxWAKLGTFVXivwdnhsleTuYcR4zvuSWxwzCGKU,2289
|
|
5
7
|
petal_qc/BTreport/CheckBTtests.py,sha256=CoKTnW_7gbL42rVaBy9FnH1SEYifmgg1P5Iy253vDFk,9855
|
|
6
8
|
petal_qc/BTreport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
9
|
petal_qc/BTreport/bustapeReport.py,sha256=M0EZQEh8G-65p6-gCOyZ0WlvnRbzQHXPwAWta9ZExnQ,6907
|
|
8
10
|
petal_qc/metrology/Cluster.py,sha256=UtZ5q1EFb8f3qC0hEYBbhRg2pPbW_28aJX2EEMu00Ho,2105
|
|
9
11
|
petal_qc/metrology/DataFile.py,sha256=PbFqy3-WSj69epV5EjhHc1GKhA8I74FmJYOXUjN0V20,1367
|
|
10
|
-
petal_qc/metrology/PetalMetrology.py,sha256=
|
|
12
|
+
petal_qc/metrology/PetalMetrology.py,sha256=FzRTcmxYhOMCVTW83ZEt_mVMLh-mTECE1wUBS3lMo4E,12818
|
|
11
13
|
petal_qc/metrology/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
14
|
petal_qc/metrology/all2csv.py,sha256=KTgEGaediylwkGN7gyWyQqUjU0f9FOa3xF4z1W38EcU,1569
|
|
13
|
-
petal_qc/metrology/analyze_locking_points.py,sha256=
|
|
15
|
+
petal_qc/metrology/analyze_locking_points.py,sha256=1uUN4dfBDk9NopQxyLePJ8r_qJHcsxogB1M4z7FZh6g,20912
|
|
14
16
|
petal_qc/metrology/cold_noise.py,sha256=PuTaQ73WrQCJdE9ezS4UFmA3atwCuvM0ZsUOYu1ZIBw,3106
|
|
15
|
-
petal_qc/metrology/compare_Cores.py,sha256=
|
|
17
|
+
petal_qc/metrology/compare_Cores.py,sha256=7t6RJ2QiJl-zmNG886jSLswS8rhD4zgipZlxjz7oTbM,9931
|
|
16
18
|
petal_qc/metrology/comparisonTable.py,sha256=6Zmh-x0ahs28ZJQuHMrIiRcblUmTN1_-1otFSRNMPds,1743
|
|
17
|
-
petal_qc/metrology/convert_mitutoyo.py,sha256=
|
|
19
|
+
petal_qc/metrology/convert_mitutoyo.py,sha256=tpnB_fHBR8PpJeb7_q9foYKGNDRhJzxHNemmpfbSt8E,5650
|
|
18
20
|
petal_qc/metrology/convert_smartscope.py,sha256=0vAEYn7ec4qTnLfjphj1QA6tK3vZsXyF6nYYj3jE5Yc,6174
|
|
19
|
-
petal_qc/metrology/coreMetrology.py,sha256=
|
|
21
|
+
petal_qc/metrology/coreMetrology.py,sha256=Dg5aVLOQzdl1IK15iugtnsqKks1ydePelkWFuFH5MUc,12962
|
|
20
22
|
petal_qc/metrology/data2csv.py,sha256=2ttMSmfGLPIaOqZGima2dH6sdnSRAFTHlEbSOfW5ebA,1809
|
|
21
|
-
petal_qc/metrology/do_Metrology.py,sha256=
|
|
23
|
+
petal_qc/metrology/do_Metrology.py,sha256=wA3fKJrdDLGYd0lEi8uSP9uRwQeS59nX6F4VtNnm9LM,4356
|
|
22
24
|
petal_qc/metrology/flatness4nigel.py,sha256=SUHwn6pCEUWQV_62-_9-VKrmUdL4gVQcSA3aTtYq958,4071
|
|
23
25
|
petal_qc/metrology/gtkutils.py,sha256=1pOTxiE2EZR9zNNNT5cOetga_4NG9DzLaqQPI4c1EzE,3372
|
|
24
|
-
petal_qc/metrology/petal_flatness.py,sha256=
|
|
25
|
-
petal_qc/metrology/readAVSdata.py,sha256=
|
|
26
|
+
petal_qc/metrology/petal_flatness.py,sha256=f8UqAmwbSkOngFbwekeGq6cX5flSkd7JNhCYRIn39LE,10695
|
|
27
|
+
petal_qc/metrology/readAVSdata.py,sha256=1cCMlHoeiwLr1DzV8ZcLpJRaa8D3A1-i7FIFPZHBihE,25754
|
|
26
28
|
petal_qc/metrology/show_data_file.py,sha256=yZPcmMy-1EWWySiBBx0hNB3tPVh19bTr0PDaXSyIF4c,4057
|
|
27
29
|
petal_qc/metrology/testSummary.py,sha256=0BhcEd1BPz2Mbonzi8nyZOzNSzpUqowBFNl5cVutqsk,994
|
|
28
|
-
petal_qc/metrology/test_paralelism.py,sha256=
|
|
29
|
-
petal_qc/metrology/uploadPetalInformation.py,sha256=
|
|
30
|
-
petal_qc/test/analyzeMetrologyTable.py,sha256=
|
|
30
|
+
petal_qc/metrology/test_paralelism.py,sha256=Ij9WlHxyG8It3JqdCVVIWPeuv1OjBGeOsLkD44V2h5A,2024
|
|
31
|
+
petal_qc/metrology/uploadPetalInformation.py,sha256=WMgT9Y0z9EPwAF5q7mm6EkfjPlv1kvpSQNLwH-mPKos,28052
|
|
32
|
+
petal_qc/test/analyzeMetrologyTable.py,sha256=hYyDGm7yns5i5SS6--DZfDX4bXbCEvilYPKk1Nm54e0,6759
|
|
31
33
|
petal_qc/test/checkAVStests.py,sha256=0xAJLazfkgfQ0ouc17fivaj69OXTiS9sali0DhH-jTs,4814
|
|
32
34
|
petal_qc/test/checkCoreShipments.py,sha256=d9W_uE0tMdfJGRuiiTOGyIW60SIj08QKWjd3Y8aVBi8,1554
|
|
35
|
+
petal_qc/test/checkPipeShipments.py,sha256=XFHtWEFIDldq6pnaaPDvS6h3D5bD3M9ZWzhKFgAzHnM,1807
|
|
33
36
|
petal_qc/test/compare_golden.py,sha256=lG1rtYLw_PwKWrLk0VVdbnRhi7Ytu78q7PGWcYptM_8,1171
|
|
34
37
|
petal_qc/test/createMetrologyFile.py,sha256=3fmHj8AlT_739sGRrKgpe_ZbGW2NUDAc6w0t7dEXWMo,2387
|
|
35
38
|
petal_qc/test/createMetrologyTable.py,sha256=Dh9Mwab5geyojigVCS5mKba1EJU-4K1-ELDMZTDw4Dg,2687
|
|
36
39
|
petal_qc/test/desyModuleBow.py,sha256=4RgDIVEMqzlGUVqKCjji95_JzfXtcgjK4kefKrVH9eY,3602
|
|
37
40
|
petal_qc/test/findRawData.py,sha256=8wqvPILjfZZ0CKkDhOa_tcsYMwNwcKOLyaEoWfISBQY,2872
|
|
38
41
|
petal_qc/test/getAVSjson.py,sha256=o8AYtyr7Vnp-enznmQ-NNiivZipmxtoVrmsfnRCl0X4,977
|
|
39
|
-
petal_qc/test/getAVStests.py,sha256=
|
|
42
|
+
petal_qc/test/getAVStests.py,sha256=MsphZFxiPLCo6gf1ZTQ5Sy415rF35NgvF13OGagunV0,10308
|
|
40
43
|
petal_qc/test/listPetalCoreComponents.py,sha256=7U9wokRkgeZdYZKeZdAadA32BlhVK6okInuh94hmj24,2502
|
|
41
44
|
petal_qc/test/prepareDESYfiles.py,sha256=uRir2fv0oGqB6hKnIqRltDW-oLz1tR2SDvVkMVxCfKI,4106
|
|
42
|
-
petal_qc/test/reportFromJSon.py,sha256=
|
|
45
|
+
petal_qc/test/reportFromJSon.py,sha256=raF83IArZusR5kh7Lg-Q_3SoHJuM5hPpnnLYgrKBHlQ,2366
|
|
46
|
+
petal_qc/test/testMitutoyo.py,sha256=xN0H13rmcpGbXDLBjccNL8ybdevu-j_gMnracY29ONg,228
|
|
43
47
|
petal_qc/test/test_Graphana.py,sha256=4wADxS_ObG9n4vsCvD1GwPQnx8bFUiUOS6ZwK83wTl8,1082
|
|
44
48
|
petal_qc/test/test_coreThermal.py,sha256=YRPK3DGG7Tz66K4Kka3euXgUDzW_JlIqSYicMBhb96E,1516
|
|
49
|
+
petal_qc/test/thermalReportFromJSon.py,sha256=UUi4MqCbpxVBdzLhUulYEMy3d9PH8dHwrTuCFL913vs,2832
|
|
45
50
|
petal_qc/thermal/CSVImage.py,sha256=Vt2kYmUsZWkQvxcF8fDda3HO1Rb29kPQHnEoHFCqWYo,2038
|
|
46
51
|
petal_qc/thermal/DESYdata.py,sha256=YAwxhnmA89uH1vZ_BjDo0VLATTGRngoBSFzYfLSJbZU,1904
|
|
47
52
|
petal_qc/thermal/DebugPlot.py,sha256=OmREFwNDAKgoObDmcgHrB4d8m3bf2znfsKVGsb5rBGQ,2119
|
|
48
53
|
petal_qc/thermal/IRBFile.py,sha256=_no8iUyuSQ41j34o3LVzUCjMYoviwjz02tsWvFsTUzA,23462
|
|
49
54
|
petal_qc/thermal/IRCore.py,sha256=sidf7HtrzEUcllv0E_o1Hks-2_2dl4Og_LWcwgPNRcE,3062
|
|
50
|
-
petal_qc/thermal/IRDataGetter.py,sha256=
|
|
51
|
-
petal_qc/thermal/IRPetal.py,sha256=
|
|
52
|
-
petal_qc/thermal/IRPetalParam.py,sha256=
|
|
55
|
+
petal_qc/thermal/IRDataGetter.py,sha256=px9nFTuDPuwaSkhfA3wT52_3UhwVdD1BtB494poqIp4,11639
|
|
56
|
+
petal_qc/thermal/IRPetal.py,sha256=Im3Xa1ADAzuCKLEzl9i40qOMvfLCGJ8dopA2jGVT7zU,41638
|
|
57
|
+
petal_qc/thermal/IRPetalParam.py,sha256=tIqZPWgkAHCFe0ISmMiVooajlGzMCVW7gfvvzRHpT58,4682
|
|
53
58
|
petal_qc/thermal/PetalColorMaps.py,sha256=6CvJHzRdojLHu3BROYSekHw8g_BJ1lJ_edyhovTIydU,3831
|
|
54
|
-
petal_qc/thermal/Petal_IR_Analysis.py,sha256=
|
|
55
|
-
petal_qc/thermal/PipeFit.py,sha256=
|
|
59
|
+
petal_qc/thermal/Petal_IR_Analysis.py,sha256=BrTii0GZ6KsNM65JUpfRNgOjsR1b2vFJUf0AyskTe3g,3998
|
|
60
|
+
petal_qc/thermal/PipeFit.py,sha256=tRZW8ES6M-GQjiMvDF56zYaZjJ5GutuomXpfjmfvBHQ,18842
|
|
61
|
+
petal_qc/thermal/PipeIterFit.py,sha256=DknchpsheJmZ263IaOaF23eRYu9JLR5N2yFJQF0d-W4,2756
|
|
56
62
|
petal_qc/thermal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
63
|
petal_qc/thermal/analyze_IRCore.py,sha256=-MsKGJR-5pJV93ipLau0FHQeconLhMPDuLQIT9LMWsU,21115
|
|
58
|
-
petal_qc/thermal/contours.py,sha256=
|
|
59
|
-
petal_qc/thermal/coreThermal.py,sha256=
|
|
60
|
-
petal_qc/thermal/create_IRCore.py,sha256=
|
|
61
|
-
petal_qc/thermal/create_core_report.py,sha256=
|
|
64
|
+
petal_qc/thermal/contours.py,sha256=PpB996qQ66U2Tqz1CyhQaSuYLtWIUh5ccAovJP3_QWw,10868
|
|
65
|
+
petal_qc/thermal/coreThermal.py,sha256=lBPyBm3Fo5uXBw6AIpzTY4Ku238Gr9lwm36Iihfbqp0,16203
|
|
66
|
+
petal_qc/thermal/create_IRCore.py,sha256=t2O8lg4AL2SK2OXgi7gxHxYEW95C6uiG2dbzk2fyS5Q,9494
|
|
67
|
+
petal_qc/thermal/create_core_report.py,sha256=32F7u7ffnLmGX5J_YP2oa8O_pI0euh9z3p0CTpA3-WM,6135
|
|
62
68
|
petal_qc/thermal/pipe_back.npz,sha256=yooZuVYtHU541HcV6Gh_5B0BqdYAVEvYAuVvMMSY7Jc,3632
|
|
63
69
|
petal_qc/thermal/pipe_front.npz,sha256=DuwruG9C2Z1rLigqWMApY4Orsf1SGUQGKy0Yan8Bk8A,3697
|
|
64
70
|
petal_qc/thermal/pipe_read.py,sha256=HrAtEbf8pMhJDETzkevodiTbuprIOh4yHv6PzpRoz7Q,5040
|
|
@@ -72,8 +78,8 @@ petal_qc/utils/docx_utils.py,sha256=zVmSKHDVE8cUwbXxqyPtgS0z62VCFya1DWklOpO1rCQ,
|
|
|
72
78
|
petal_qc/utils/fit_utils.py,sha256=3KUGWpBMV-bVDkQHWBigXot8chOpjAVBJ5H5b5dbdjk,5349
|
|
73
79
|
petal_qc/utils/readGraphana.py,sha256=YVOztJC3q3P7F0I9Ggeiu6Mv9rZLKgj3clkLCU7k4i4,1918
|
|
74
80
|
petal_qc/utils/utils.py,sha256=CqCsNIcEg6FQb3DN70tmqeLVLlQqsRfDzhfGevlnfBc,4035
|
|
75
|
-
petal_qc-0.0.
|
|
76
|
-
petal_qc-0.0.
|
|
77
|
-
petal_qc-0.0.
|
|
78
|
-
petal_qc-0.0.
|
|
79
|
-
petal_qc-0.0.
|
|
81
|
+
petal_qc-0.0.24.dist-info/METADATA,sha256=nLby_q8gC7mI-vVK6uvpnEU6JgDobb9ZRRp__BMI9CU,925
|
|
82
|
+
petal_qc-0.0.24.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
83
|
+
petal_qc-0.0.24.dist-info/entry_points.txt,sha256=8cW3MiDBs3BdBPIzf4YtkOjr-MhPKu9aWfc0BTYBhxQ,554
|
|
84
|
+
petal_qc-0.0.24.dist-info/top_level.txt,sha256=CCo1Xe6kLS79PruhsB6bk2CuL9VFtNdNpgJjYUs4jk4,9
|
|
85
|
+
petal_qc-0.0.24.dist-info/RECORD,,
|
|
@@ -9,4 +9,5 @@ doMetrology = petal_qc:doMetrology
|
|
|
9
9
|
petalCoreTestSummary = petal_qc:petalCoreTestSummary
|
|
10
10
|
petalReceptionTests = petal_qc:petalReceptionTests
|
|
11
11
|
petalqc_dashBoard = petal_qc:dashBoard
|
|
12
|
+
readReceptionTests = petal_qc:readReceptionTests
|
|
12
13
|
uploadPetalInformation = petal_qc:uploadPetalInformation
|
|
File without changes
|