Skip to content
Snippets Groups Projects
Commit ad6eaa0b authored by Pedro Teixeira-Dias's avatar Pedro Teixeira-Dias
Browse files

Merge branch 'TrigMC-fix-dphi-cut-in-LbyL-noise-hypo' into '21.0-TrigMC'

fix dphi issue

See merge request atlas/athena!15506

Former-commit-id: 9604d4c96c71f690b38db038b48c595dee58d336
parents bcef5aa8 789c29f7
No related branches found
No related tags found
No related merge requests found
...@@ -59,7 +59,7 @@ HLT::ErrorCode LbyLTopoClusterHypo::hltExecute(const HLT::TriggerElement* output ...@@ -59,7 +59,7 @@ HLT::ErrorCode LbyLTopoClusterHypo::hltExecute(const HLT::TriggerElement* output
const double dPhi = HLT::deltaPhi( (*cl1Iter)->phi(), (*cl2Iter)->phi() ); const double dPhi = HLT::deltaPhi( (*cl1Iter)->phi(), (*cl2Iter)->phi() );
m_allDPhi.push_back( dPhi ); m_allDPhi.push_back( dPhi );
if ( dPhi > m_dPhiCut ) { if ( std::fabs(dPhi) > m_dPhiCut ) {
pass=true; pass=true;
ATH_MSG_DEBUG( "found pair of clusters matching criteria et/phi " ATH_MSG_DEBUG( "found pair of clusters matching criteria et/phi "
<< (*cl1Iter)->et() << "/" << (*cl1Iter)->phi() << " and " << (*cl1Iter)->et() << "/" << (*cl1Iter)->phi() << " and "
......
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