Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Peter Sherwood
athena
Commits
fd395e7f
Commit
fd395e7f
authored
4 years ago
by
Michele Renda
Committed by
Adam Edward Barton
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix ATEAM-636
parent
c1468b61
No related branches found
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
Tools/PyUtils/python/MetaReader.py
+9
-5
9 additions, 5 deletions
Tools/PyUtils/python/MetaReader.py
with
9 additions
and
5 deletions
Tools/PyUtils/python/MetaReader.py
+
9
−
5
View file @
fd395e7f
...
...
@@ -189,7 +189,9 @@ def read_metadata(filenames, file_type = None, mode = 'lite', promote = None, me
# assign the corresponding persistent class based of the name of the metadata container
if
regexEventStreamInfo
.
match
(
class_name
):
if
class_name
.
endswith
(
'
_p2
'
):
if
class_name
.
endswith
(
'
_p1
'
):
persistent_instances
[
name
]
=
ROOT
.
EventStreamInfo_p1
()
elif
class_name
.
endswith
(
'
_p2
'
):
persistent_instances
[
name
]
=
ROOT
.
EventStreamInfo_p2
()
else
:
persistent_instances
[
name
]
=
ROOT
.
EventStreamInfo_p3
()
...
...
@@ -730,15 +732,17 @@ def promote_keys(meta_dict):
if
key
in
md
[
'
metadata_items
'
]
and
regexEventStreamInfo
.
match
(
md
[
'
metadata_items
'
][
key
]):
md
.
update
(
md
[
key
])
if
len
(
md
[
'
eventTypes
'
]):
if
'
eventTypes
'
in
md
and
len
(
md
[
'
eventTypes
'
]):
et
=
md
[
'
eventTypes
'
][
0
]
md
[
'
mc_event_number
'
]
=
et
.
get
(
'
mc_event_number
'
,
md
[
'
runNumbers
'
][
0
])
md
[
'
mc_channel_number
'
]
=
et
.
get
(
'
mc_channel_number
'
,
0
)
md
[
'
eventTypes
'
]
=
et
[
'
type
'
]
md
[
'
lumiBlockNumbers
'
]
=
md
[
'
lumiBlockNumbers
'
]
md
[
'
processingTags
'
]
=
md
[
key
][
'
processingTags
'
]
if
'
lumiBlockNumbers
'
in
md
[
key
]:
md
[
'
lumiBlockNumbers
'
]
=
md
[
key
][
'
lumiBlockNumbers
'
]
if
'
processingTags
'
in
md
[
key
]:
md
[
'
processingTags
'
]
=
md
[
key
][
'
processingTags
'
]
meta_dict
[
filename
].
pop
(
key
)
break
...
...
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