diff --git a/Trigger/TrigHypothesis/TrigMuonHypo/src/MucombHypo.cxx b/Trigger/TrigHypothesis/TrigMuonHypo/src/MucombHypo.cxx index ae805695173f95f9ffdacbdea4f175c421ec7be8..6e2c375a679e7254750eb4101710fd8dbad60d6f 100755 --- a/Trigger/TrigHypothesis/TrigMuonHypo/src/MucombHypo.cxx +++ b/Trigger/TrigHypothesis/TrigMuonHypo/src/MucombHypo.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration */ #include "GaudiKernel/MsgStream.h" @@ -193,7 +193,7 @@ HLT::ErrorCode MucombHypo::hltExecute(const HLT::TriggerElement* outputTE, bool m_id_Z0 = pMuon->idTrack()->z0(); //Get the Pt cut for that eta bin - float threshold = (m_id_eta != -9999) ? 0 : 99999999; + float threshold = (m_id_eta != -9999) ? 0 : 999999; float absEta = fabs(m_id_eta); for (std::vector<float>::size_type i = 0; i < m_bins; ++i) if (absEta > m_ptBins[i] && absEta < m_ptBins[i + 1]) threshold = m_ptThresholds[i]; diff --git a/Trigger/TrigHypothesis/TrigMuonHypo/src/MucombStauHypo.cxx b/Trigger/TrigHypothesis/TrigMuonHypo/src/MucombStauHypo.cxx index e15bdf7e1b67a18b917d4ae425e60e9910eb86f0..0b0755bcc7f724fd1a584eb89a181030e3bb14ec 100755 --- a/Trigger/TrigHypothesis/TrigMuonHypo/src/MucombStauHypo.cxx +++ b/Trigger/TrigHypothesis/TrigMuonHypo/src/MucombStauHypo.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration */ #include "GaudiKernel/MsgStream.h" @@ -218,7 +218,7 @@ HLT::ErrorCode MucombStauHypo::hltExecute(const HLT::TriggerElement* outputTE, m_id_Z0 = (track)? track->param()->z0()/10. : -9999; //Get the Pt cut for that eta bin - float threshold = (m_id_eta!=-9999)? 0 : 99999999; + float threshold = (m_id_eta!=-9999)? 0 : 999999; float absEta = fabs(m_id_eta); for (std::vector<float>::size_type i=0; i<m_bins; ++i) if ( absEta > m_ptBins[i] && absEta < m_ptBins[i+1] ) threshold = m_ptThresholds[i]; diff --git a/Trigger/TrigHypothesis/TrigMuonHypoMT/src/TrigmuCombHypoTool.cxx b/Trigger/TrigHypothesis/TrigMuonHypoMT/src/TrigmuCombHypoTool.cxx index 241fdda0aabfb10e8084b77e1040aeacd77a2ebd..b5ae07ca846df9d0d5680638e6244e67a259e0e9 100644 --- a/Trigger/TrigHypothesis/TrigMuonHypoMT/src/TrigmuCombHypoTool.cxx +++ b/Trigger/TrigHypothesis/TrigMuonHypoMT/src/TrigmuCombHypoTool.cxx @@ -132,7 +132,7 @@ bool TrigmuCombHypoTool::decideOnSingleObject(TrigmuCombHypoTool::CombinedMuonIn idZ0 = pMuon->idTrack()->z0(); //Get the Pt cut for that eta bin - float threshold = (idEta != -9999) ? 0 : 99999999; + float threshold = (idEta != -9999) ? 0 : 999999; float absEta = fabs(idEta); for (std::vector<float>::size_type i = 0; i < m_bins[cutIndex]; ++i) { if (absEta > m_ptBins[cutIndex][i] && absEta < m_ptBins[cutIndex][i + 1]) threshold = m_ptThresholds[cutIndex][i];