Skip to content
Snippets Groups Projects
Commit 274e66a6 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'gcc11.TrigTauHypo-20201218' into 'master'

TrigTauHypo: Fix gcc11 warnings.

See merge request atlas/athena!39317
parents ba52fe8f 753c771c
No related branches found
No related tags found
No related merge requests found
...@@ -276,7 +276,7 @@ HLT::ErrorCode EFHadCalibHypo::hltExecute(const HLT::TriggerElement* inputTE, bo ...@@ -276,7 +276,7 @@ HLT::ErrorCode EFHadCalibHypo::hltExecute(const HLT::TriggerElement* inputTE, bo
// Count only tracks with a certain pT: // Count only tracks with a certain pT:
if( fabs( (*trackIter2)->pt()) < m_maxPtInIso ) continue; if( fabs( (*trackIter2)->pt()) < m_maxPtInIso ) continue;
const Trk::TrackParameters * param_at_calo = 0; //const Trk::TrackParameters * param_at_calo = 0;
if( msgLvl() <= MSG::VERBOSE ){ if( msgLvl() <= MSG::VERBOSE ){
msg() << MSG::VERBOSE << "Extrapolating track to calo." << endmsg; msg() << MSG::VERBOSE << "Extrapolating track to calo." << endmsg;
...@@ -339,13 +339,13 @@ HLT::ErrorCode EFHadCalibHypo::hltExecute(const HLT::TriggerElement* inputTE, bo ...@@ -339,13 +339,13 @@ HLT::ErrorCode EFHadCalibHypo::hltExecute(const HLT::TriggerElement* inputTE, bo
countTracksOnDeltaR++; countTracksOnDeltaR++;
} }
if( msgLvl() <= MSG::VERBOSE ) //if( msgLvl() <= MSG::VERBOSE )
msg() << MSG::VERBOSE << "Extrapolated " // msg() << MSG::VERBOSE << "Extrapolated "
<< "eta = " << param_at_calo->position().eta() << " and " // << "eta = " << param_at_calo->position().eta() << " and "
<< "phi = " << param_at_calo->position().phi() // << "phi = " << param_at_calo->position().phi()
<< ", dR = " << dr << endmsg; // << ", dR = " << dr << endmsg;
delete param_at_calo; //delete param_at_calo;
} }
if( msgLvl() <= MSG::INFO ) if( msgLvl() <= MSG::INFO )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment