lstosa 0.11.2__py3-none-any.whl → 0.11.3__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.
- {lstosa-0.11.2.dist-info → lstosa-0.11.3.dist-info}/METADATA +1 -1
- {lstosa-0.11.2.dist-info → lstosa-0.11.3.dist-info}/RECORD +8 -8
- osa/_version.py +2 -2
- osa/job.py +4 -1
- {lstosa-0.11.2.dist-info → lstosa-0.11.3.dist-info}/LICENSE +0 -0
- {lstosa-0.11.2.dist-info → lstosa-0.11.3.dist-info}/WHEEL +0 -0
- {lstosa-0.11.2.dist-info → lstosa-0.11.3.dist-info}/entry_points.txt +0 -0
- {lstosa-0.11.2.dist-info → lstosa-0.11.3.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: lstosa
|
|
3
|
-
Version: 0.11.
|
|
3
|
+
Version: 0.11.3
|
|
4
4
|
Summary: Onsite analysis pipeline for the CTA LST-1
|
|
5
5
|
Author: María Láinez, José Enrique Ruiz, Lab Saha, Andrés Baquero, José Luis Contreras, Maximilian Linhoff
|
|
6
6
|
Author-email: Daniel Morcuende <dmorcuen@ucm.es>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
osa/__init__.py,sha256=crotf1NMTfNdZuCua_5T_jk3kvZrAAwVw4FPrfxv994,193
|
|
2
|
-
osa/_version.py,sha256=
|
|
2
|
+
osa/_version.py,sha256=3HI3wVakaLT6OqNDadrX8IIIRO-nmIN4eu3bFgy5iM8,513
|
|
3
3
|
osa/conftest.py,sha256=AdSHdWqjeMTgIeZEF8fdw6eSliySouivMWCPIqUV2os,24667
|
|
4
|
-
osa/job.py,sha256
|
|
4
|
+
osa/job.py,sha256=-W3t4_aP5dKRVy2BtyPE1eL4RRBfxIWYT_Ue88GrKXk,27866
|
|
5
5
|
osa/osadb.py,sha256=pkCuYbEG-moHG0uQHxwB7giQAv2XTld4HJ5gdn1F1hA,2422
|
|
6
6
|
osa/paths.py,sha256=_3-avNABr7I2koiOo4MMDymi98l7JdIj1zUVbTjHdYg,18011
|
|
7
7
|
osa/raw.py,sha256=ZNIsuqfx5ljoz_hwhSuafdKf-wr8-cxRJmel-A2endg,1337
|
|
@@ -76,9 +76,9 @@ osa/workflow/dl3.py,sha256=ZMXPrdJA0WOxDiHEW9sdM2vmYix8R3eSMTGc6o42yxg,9860
|
|
|
76
76
|
osa/workflow/stages.py,sha256=ILg91VyNXcy--si7CpDa1UFRiugqIH6nKl10Ru2zZVc,7422
|
|
77
77
|
osa/workflow/tests/test_dl3.py,sha256=81Vt4lNxNjdKi_ehzymqfFWFjncw7GuQcix9S0Yigaw,384
|
|
78
78
|
osa/workflow/tests/test_stages.py,sha256=aslfOIjf-rvf3r9N7NtimaOKkVB6K1M3bidgHOzRkMs,3985
|
|
79
|
-
lstosa-0.11.
|
|
80
|
-
lstosa-0.11.
|
|
81
|
-
lstosa-0.11.
|
|
82
|
-
lstosa-0.11.
|
|
83
|
-
lstosa-0.11.
|
|
84
|
-
lstosa-0.11.
|
|
79
|
+
lstosa-0.11.3.dist-info/LICENSE,sha256=h6iWot11EtMvaDaS_AvCHKLTNByO5wEbMyNj1c90y1c,1519
|
|
80
|
+
lstosa-0.11.3.dist-info/METADATA,sha256=8E9rqpM04-dAuH_l9y14_F_n3FojBSeIwQ8oJLk3xTA,7302
|
|
81
|
+
lstosa-0.11.3.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
82
|
+
lstosa-0.11.3.dist-info/entry_points.txt,sha256=CzDKpLjZZQm8jJBxOVpMR8Czpgg_Yh-k6IPETp30VZE,1048
|
|
83
|
+
lstosa-0.11.3.dist-info/top_level.txt,sha256=_Tj8zVHdrOoWZuuWTHbDpNofxW0imUmKdlXhnxsXJek,4
|
|
84
|
+
lstosa-0.11.3.dist-info/RECORD,,
|
osa/_version.py
CHANGED
osa/job.py
CHANGED
|
@@ -99,7 +99,10 @@ def are_all_jobs_correctly_finished(sequence_list):
|
|
|
99
99
|
flag = True
|
|
100
100
|
analysis_directory = Path(options.directory)
|
|
101
101
|
for sequence in sequence_list:
|
|
102
|
-
|
|
102
|
+
if sequence.type != "DATA":
|
|
103
|
+
continue
|
|
104
|
+
else:
|
|
105
|
+
history_files_list = analysis_directory.rglob(f"*{sequence.run}*.history")
|
|
103
106
|
|
|
104
107
|
if not options.test:
|
|
105
108
|
try:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|