Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
km3mon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
km3py
km3mon
Commits
05f34ee7
Commit
05f34ee7
authored
5 years ago
by
Tamas Gal
Browse files
Options
Downloads
Patches
Plain Diff
Rename variable for clarity
parent
9716d97d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/online_reco.py
+26
-29
26 additions, 29 deletions
scripts/online_reco.py
with
26 additions
and
29 deletions
scripts/online_reco.py
+
26
−
29
View file @
05f34ee7
...
...
@@ -38,17 +38,18 @@ class IO_OLINEDistributions(kp.Module):
self
.
plots_path
=
self
.
require
(
'
plots_path
'
)
self
.
max_events
=
self
.
get
(
'
max_events
'
,
default
=
5000
)
self
.
zeniths
=
deque
(
maxlen
=
self
.
max_events
)
self
.
qualities
=
deque
(
maxlen
=
self
.
max_events
)
self
.
interval
=
60
self
.
zeniths
=
deque
(
maxlen
=
self
.
max_events
)
self
.
qualities
=
deque
(
maxlen
=
self
.
max_events
)
self
.
plot_
interval
=
60
# [s]
threading
.
Thread
(
target
=
self
.
plot
).
start
()
def
process
(
self
,
blob
):
track
=
blob
[
'
RecoTrack
'
]
if
track
.
status
==
1
:
if
track
.
status
==
1
:
zenith
=
np
.
cos
(
kp
.
math
.
angle_between
([
0
,
0
,
-
1
],
[
track
.
dx
,
track
.
dy
,
track
.
dz
]))
kp
.
math
.
angle_between
([
0
,
0
,
-
1
],
[
track
.
dx
,
track
.
dy
,
track
.
dz
]))
self
.
zeniths
.
append
(
zenith
)
self
.
qualities
.
append
(
track
.
Q
)
...
...
@@ -57,23 +58,21 @@ class IO_OLINEDistributions(kp.Module):
def
plot
(
self
):
while
True
:
time
.
sleep
(
self
.
interval
)
time
.
sleep
(
self
.
plot_
interval
)
self
.
create_zenith_plot
()
self
.
create_quality_plot
()
def
create_quality_plot
(
self
):
n
=
len
(
self
.
qualities
)
plt
.
clf
()
fig
,
ax
=
plt
.
subplots
(
figsize
=
(
16
,
8
))
ax
.
hist
(
self
.
qualities
,
bins
=
100
,
label
=
"
JGandalf (last %d events)
"
%
n
,
histtype
=
"
step
"
,
normed
=
True
,
lw
=
3
)
ax
.
hist
(
self
.
qualities
,
bins
=
100
,
label
=
"
JGandalf (last %d events)
"
%
n
,
histtype
=
"
step
"
,
normed
=
True
,
lw
=
3
)
ax
.
set_title
(
"
Quality distribution of online track reconstructions
\n
%s UTC
"
%
datetime
.
utcnow
().
strftime
(
"
%c
"
))
...
...
@@ -91,13 +90,12 @@ class IO_OLINEDistributions(kp.Module):
plt
.
clf
()
fig
,
ax
=
plt
.
subplots
(
figsize
=
(
16
,
8
))
ax
.
hist
(
self
.
zeniths
,
bins
=
180
,
label
=
"
JGandalf (last %d events)
"
%
n
,
histtype
=
"
step
"
,
normed
=
True
,
lw
=
3
)
ax
.
hist
(
self
.
zeniths
,
bins
=
180
,
label
=
"
JGandalf (last %d events)
"
%
n
,
histtype
=
"
step
"
,
normed
=
True
,
lw
=
3
)
ax
.
set_title
(
"
Zenith distribution of online track reconstructions
\n
%s UTC
"
%
datetime
.
utcnow
().
strftime
(
"
%c
"
))
...
...
@@ -120,13 +118,12 @@ def main():
ligier_port
=
int
(
args
[
'
-p
'
])
pipe
=
kp
.
Pipeline
()
pipe
.
attach
(
kp
.
io
.
ch
.
CHPump
,
host
=
ligier_ip
,
port
=
ligier_port
,
tags
=
'
IO_OLINE
'
,
timeout
=
60
*
60
*
24
*
7
,
max_queue
=
2000
)
pipe
.
attach
(
kp
.
io
.
ch
.
CHPump
,
host
=
ligier_ip
,
port
=
ligier_port
,
tags
=
'
IO_OLINE
'
,
timeout
=
60
*
60
*
24
*
7
,
max_queue
=
2000
)
pipe
.
attach
(
kp
.
io
.
daq
.
DAQProcessor
)
pipe
.
attach
(
IO_OLINEDistributions
,
plots_path
=
plots_path
)
pipe
.
drain
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment