Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
atlas
athena
Commits
b66b0351
Commit
b66b0351
authored
Jun 09, 2021
by
Oliver Majersky
Browse files
Fix reading int-type metadata in AodMetaDataReader.py
parent
1ca6b90c
Changes
1
Hide whitespace changes
Inline
Side-by-side
PhysicsAnalysis/TopPhys/xAOD/TopConfiguration/python/AodMetaDataReader.py
View file @
b66b0351
...
...
@@ -26,7 +26,6 @@ if not __name__ == '__main__':
# supported types of meta-data values (storage type, member name in IOVPayloadContainer, display type)
payloadItemDescs
=
[
None
,
(
'bool'
,
'm_bool'
,
bool
),
(
'char'
,
'm_char'
,
int
),
(
'unsigned char'
,
'm_unsignedChar'
,
int
),
...
...
@@ -40,6 +39,8 @@ payloadItemDescs = [
(
'ULong64_t'
,
'm_unsignedLongLong'
,
int
),
(
'float'
,
'm_float'
,
float
),
(
'double'
,
'm_double'
,
float
),
# long double not actually part of the IOVPayloadContainer, but the enum AttrListTypes contains it -- so we must add it here
(
'long double'
,
'm_longDouble'
,
float
),
(
'std::string'
,
'm_string'
,
str
),
(
'ULong64_t'
,
'm_date'
,
int
),
(
'ULong64_t'
,
'm_timeStamp'
,
int
),
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment