#include "FPGATrackSimAlgorithms/TrackFitter.h"
#include "FPGATrackSimObjects/FPGATrackSimMultiTruth.h"
#include "GaudiKernel/MsgStream.h"
#include "AthenaKernel/getMessageSvc.h"
#include <numeric>
#include <memory>
#include <stdexcept>
Go to the source code of this file.
◆ getBestChi2()
◆ hasGoodFit()
| bool hasGoodFit |
( |
std::vector< FPGATrackSimTrack > const & | track_cands, |
|
|
float | minchi2 ) |
Definition at line 482 of file TrackFitter.cxx.
483{
485 {
486 if (
t.getChi2ndof() > 0 &&
t.getChi2ndof() < minchi2ndof)
487 return true;
488 }
489 return false;
490}