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
Commits
fb5273dc
Commit
fb5273dc
authored
8 years ago
by
Jon Burr
Browse files
Options
Downloads
Patches
Plain Diff
Fixing const correctness
parent
1ccb38c9
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Trigger/TrigAlgorithms/TrigEFMissingET/src/EFMissingET.cxx
+4
-4
4 additions, 4 deletions
Trigger/TrigAlgorithms/TrigEFMissingET/src/EFMissingET.cxx
with
4 additions
and
4 deletions
Trigger/TrigAlgorithms/TrigEFMissingET/src/EFMissingET.cxx
+
4
−
4
View file @
fb5273dc
...
...
@@ -543,7 +543,7 @@ HLT::ErrorCode EFMissingET::makeMissingET(std::vector<std::vector<HLT::TriggerEl
// fetch topo. clusters for later use
if
(
m_doTopoClusters
&&
tes_in
.
size
()
>
0
)
{
// safe-guard
for
(
auto
&
te_in
:
tes_in
.
at
(
0
)
)
{
for
(
const
auto
&
te_in
:
tes_in
.
at
(
0
)
)
{
HLT
::
ErrorCode
status
=
getFeature
(
te_in
,
m_caloCluster
);
if
(
status
!=
HLT
::
OK
||
!
m_caloCluster
)
{
...
...
@@ -560,7 +560,7 @@ HLT::ErrorCode EFMissingET::makeMissingET(std::vector<std::vector<HLT::TriggerEl
// fetch jets for later use
if
(
m_doJets
&&
tes_in
.
size
()
>
0
)
{
// safe-guard
for
(
auto
&
te_in
:
tes_in
.
at
(
0
)
)
{
for
(
const
auto
&
te_in
:
tes_in
.
at
(
0
)
)
{
HLT
::
ErrorCode
status
=
getFeature
(
te_in
,
m_jets
);
if
(
status
!=
HLT
::
OK
||
!
m_jets
)
{
...
...
@@ -579,7 +579,7 @@ HLT::ErrorCode EFMissingET::makeMissingET(std::vector<std::vector<HLT::TriggerEl
//fetch tracks for later use
if
(
m_doJets
&&
m_doTracks
&&
tes_in
.
size
()
>
0
)
{
// safe-guard
for
(
auto
&
te_in
:
tes_in
.
at
(
1
)
)
{
for
(
const
auto
&
te_in
:
tes_in
.
at
(
1
)
)
{
HLT
::
ErrorCode
status
=
getFeature
(
te_in
,
m_tracks
);
if
(
status
!=
HLT
::
OK
||
!
m_tracks
)
{
...
...
@@ -600,7 +600,7 @@ HLT::ErrorCode EFMissingET::makeMissingET(std::vector<std::vector<HLT::TriggerEl
//fetch vertex for later use
if
(
m_doJets
&&
m_doTracks
&&
tes_in
.
size
()
>
0
)
{
// safe-guard
for
(
auto
&
te_in
:
tes_in
.
at
(
1
)
)
{
for
(
const
auto
&
te_in
:
tes_in
.
at
(
1
)
)
{
HLT
::
ErrorCode
status
=
getFeature
(
te_in
,
m_vertices
);
if
(
status
!=
HLT
::
OK
||
!
m_vertices
)
{
...
...
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