Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
lscsoft
gstlal
Commits
50ad8a51
Commit
50ad8a51
authored
Aug 01, 2019
by
cal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes to aggregator for reading calib state monitors
parent
490c03b9
Pipeline
#73098
failed with stages
in 1 minute and 6 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
gstlal-calibration/bin/gstlal_calibration_aggregator
gstlal-calibration/bin/gstlal_calibration_aggregator
+4
-3
No files found.
gstlal-calibration/bin/gstlal_calibration_aggregator
View file @
50ad8a51
...
...
@@ -147,9 +147,10 @@ if __name__ == '__main__':
data
[
topic
][
formatted_tag
][
'time'
].
append
(
message
.
value
[
'time'
])
data
[
topic
][
formatted_tag
][
'fields'
][
'data'
].
append
(
message
.
value
[
tag
])
elif
'statevector'
in
topic
:
tag
=
[
name
for
name
in
message
.
value
.
keys
()
if
name
in
statevector_tags
][
0
]
data
[
topic
][
tag
][
'time'
].
append
(
message
.
value
[
'time'
])
data
[
topic
][
tag
][
'fields'
][
'data'
].
append
(
message
.
value
[
tag
])
tags
=
[
name
for
name
in
message
.
value
.
keys
()
if
name
in
statevector_tags
]
for
tag
in
tags
:
data
[
topic
][
tag
][
'time'
].
append
(
message
.
value
[
'time'
])
data
[
topic
][
tag
][
'fields'
][
'data'
].
append
(
message
.
value
[
tag
])
except
KeyError
:
### no metrics
pass
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment