Jpp 20.0.0-27-g39925593c-D
the software that should make you happy
Loading...
Searching...
No Matches
quality_sorter.cc
Go to the documentation of this file.
2
4
5/**
6 * Comparison of fit results.
7 *
8 * \param first first fit
9 * \param second second fit
10 * \return true if first fit has better quality than second; else false
11 */
12extern "C" bool qualitySorter(const JFit& first, const JFit& second)
13{
14 return first.getQ() > second.getQ();
15}
Data structure for track fit results with history and optional associated values.
bool qualitySorter(const JFit &first, const JFit &second)
Comparison of fit results.