Skip to content

Commit

Permalink
Merge CMSSW_10_5_X into CMSSW_10_5_DEVEL_X.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmsbuild committed Jan 29, 2019
2 parents 75d4ad8 + 902620c commit 7311c03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FastSimulation/Tracking/src/SeedFinderSelector.cc
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ bool SeedFinderSelector::pass(const std::vector<const FastTrackerRecHit *>& hits
for(auto& ntuplet : tripletresult)
ntuplet.reserve(3);
CAHitTriplGenerator_->hitNtuplets(ihd,tripletresult,*eventSetup_,*seedingLayer); //calling the function from the class, modifies tripletresult
return !tripletresult.empty();
return !tripletresult[0].empty();
}
}
//new for Phase1
Expand Down Expand Up @@ -267,7 +267,7 @@ bool SeedFinderSelector::pass(const std::vector<const FastTrackerRecHit *>& hits
for(auto& ntuplet : quadrupletresult)
ntuplet.reserve(4);
CAHitQuadGenerator_->hitNtuplets(ihd,quadrupletresult,*eventSetup_,*seedingLayer); //calling the function from the class, modifies quadrupletresult
return !quadrupletresult.empty();
return !quadrupletresult[0].empty();
}

return true;
Expand Down

0 comments on commit 7311c03

Please sign in to comment.