Skip to content

Commit

Permalink
closing parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
Federico Meloni committed Nov 27, 2024
1 parent 62f2f79 commit ab44fe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/Utils/src/FilterTracks.cc
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ void FilterTracks::processEvent( LCEvent * evt )
// Check if a TrackState at the calo surface exists
const std::vector<EVENT::TrackState*>& trackStates = trk->getTrackStates();
const auto foundCaloState = std::find_if(trackStates.begin(), trackStates.end(),
[](const auto ts) { return ts->getLocation() == EVENT::TrackState::AtCalorimeter}) != trackStates.end();
[](const auto ts) { return ts->getLocation() == EVENT::TrackState::AtCalorimeter; }) != trackStates.end();
if (_HasCaloState && !foundCaloState) { continue; }

if(_BarrelOnly == true) {
Expand Down

0 comments on commit ab44fe8

Please sign in to comment.