Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
mbtrack2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
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
PA
Collective Effects
mbtrack2
Commits
c104e493
Commit
c104e493
authored
4 years ago
by
Gamelin Alexis
Browse files
Options
Downloads
Patches
Plain Diff
ProfileMonitor : Bug fix
Fig bug for ProfileMonitor if dimension is not in list
parent
4950216f
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
tracking/monitors/monitors.py
+3
-3
3 additions, 3 deletions
tracking/monitors/monitors.py
with
3 additions
and
3 deletions
tracking/monitors/monitors.py
+
3
−
3
View file @
c104e493
...
...
@@ -148,7 +148,7 @@ class Monitor(Element, metaclass=ABCMeta):
for
key
,
value
in
dict_file
.
items
():
self
.
g
.
require_dataset
(
key
,
value
,
dtype
=
float
)
# create a dictionary which
# create a dictionary which
handle slices
slice_dict
=
{}
for
key
,
value
in
dict_file
.
items
():
slice_dict
[
key
]
=
[]
...
...
@@ -545,7 +545,7 @@ class ProfileMonitor(Monitor):
Methods
-------
track(object_to_save)
Save data
Save data
.
"""
def
__init__
(
self
,
bunch_number
,
dimensions
=
"
tau
"
,
n_bin
=
75
,
file_name
=
None
,
...
...
@@ -566,7 +566,7 @@ class ProfileMonitor(Monitor):
dict_buffer
=
{}
dict_file
=
{}
for
index
,
dim
in
enumerate
(
dimensions
):
for
index
,
dim
in
enumerate
(
self
.
dimensions
):
dict_buffer
.
update
({
dim
:
(
self
.
n_bin
[
index
],
buffer_size
)})
dict_buffer
.
update
({
dim
+
"
_bin
"
:
(
self
.
n_bin
[
index
]
+
1
,
buffer_size
)})
dict_file
.
update
({
dim
:
(
self
.
n_bin
[
index
],
total_size
)})
...
...
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