Skip to content
Snippets Groups Projects

TrigMinBias: fix compiler warning

Merged Vakhtang Tsulaia requested to merge tsulaia/athena:master-compwarning into master
2 files
+ 3
3
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -30,8 +30,8 @@ StatusCode TrackCountHypoTool::decide(TrkCountsInfo &trkinfo) const
std::vector<int> counts;
trkinfo.counts->getDetail<std::vector<int>>("counts", counts);
if ( m_exclusive ) {
if ( counts[0] > ExclusivityThreshold ) {
ATH_MSG_DEBUG("Lowest pt tracks count " << counts[0] << " exceeds exclusivity cut, " << ExclusivityThreshold<<" rejecting");
if ( counts[0] > m_exclusivityThreshold ) {
ATH_MSG_DEBUG("Lowest pt tracks count " << counts[0] << " exceeds exclusivity cut, " << m_exclusivityThreshold<<" rejecting");
return StatusCode::SUCCESS;
}
}
Loading