Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review 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
atlas
athena
Merge requests
!63948
Improve message of the expression parser if type information is missing.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Improve message of the expression parser if type information is missing.
goetz/athena:22.0_improve_error_messages_of_expression_parser
into
22.0
Overview
20
Commits
1
Pipelines
1
Changes
2
Closed
Goetz Gaycken
requested to merge
goetz/athena:22.0_improve_error_messages_of_expression_parser
into
22.0
1 year ago
Overview
18
Commits
1
Pipelines
1
Changes
2
Expand
Suggest to provide missing type information to property of the top level algorithm sequence, in case no type information is available for a certain variable.
Distinguish between missing type information and missing inheritance information.
0
0
Merge request reports
Compare
22.0
version 1
2fe7ea1a
1 year ago
22.0 (base)
and
latest version
latest version
2fe7ea1a
1 commit,
1 year ago
version 1
2fe7ea1a
1 commit,
1 year ago
2 files
+
21
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
PhysicsAnalysis/CommonTools/ExpressionEvaluation/Root/MultipleProxyLoader.cxx
+
11
−
1
Options
@@ -14,6 +14,7 @@
#include
<stdexcept>
#include
<iostream>
#include
<sstream>
namespace
ExpressionParsing
{
MultipleProxyLoader
::~
MultipleProxyLoader
()
@@ -53,7 +54,16 @@ namespace ExpressionParsing {
break
;
}
if
(
!
foundProxyLoader
)
{
throw
std
::
runtime_error
(
"MultipleProxyLoader: unable to find valid proxy loader for "
+
varname
);
std
::
stringstream
msg
;
msg
<<
"MultipleProxyLoader: unable to find valid proxy loader for "
<<
varname
<<
"."
<<
" If it is an xAOD element or container which is read from the input file"
<<
" this problem may occur if it is not accessed anywhere in the job via read handles."
<<
" The problem can be mitigated by providing the missing information in the property "
<<
" ExtraDataForDynamicConsumers of the sequence which has the property "
<<
" ProcessDynamicDataDependencies set to True."
<<
" The property takes a list of strings of the form
\'
type/container-name
\'
e.g."
<<
"
\'
xAOD::TrackParticleContainer/InDetTrackParticles
\'
."
;
throw
std
::
runtime_error
(
msg
.
str
());
}
return
result
;
}
Loading