-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a utility function to return a leading track of the Reconstructed…
…Particle
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#ifndef UTIL_ReconstructedParticleTools_H | ||
#define UTIL_ReconstructedParticleTools_H 1 | ||
|
||
#include "EVENT/ReconstructedParticle.h" | ||
#include "EVENT/Track.h" | ||
#include "TrackTools.h" | ||
|
||
namespace UTIL{ | ||
/** Extract the leading track in case of multiple tracks attached to a single ReconstructedParticle. | ||
* @author Bohdan Dudar | ||
* @version August 2022 | ||
*/ | ||
EVENT::Track* getLeadingTrack(const EVENT::ReconstructedParticle* particle, double bz){ | ||
const TrackVec& tracks = particle->getTracks(); | ||
if ( tracks.empty() ) return nullptr; | ||
auto sortByMomentum = [&bz, &getTrackMomentum](const EVENT::Track* a, const EVENT::Track* b) { return getTrackMomentum(a, bz) < getTrackMomentum(b, bz) }; | ||
EVENT::Track* leadingTrack = *std::max_element(tracks.begin(), tracks.end(), sortByMomentum); | ||
|
||
return leadingTrack; | ||
} | ||
|
||
#endif |