#include <algorithm>
#include <iostream>
#include <fstream>
#include <cmath>
#include "FPGATrackSimObjects/FPGATrackSimMultiTruth.h"
#include "GaudiKernel/MsgStream.h"
#include "AthenaKernel/getMessageSvc.h"
#include "FPGATrackSimAlgorithms/TrackFitter.h"
Go to the source code of this file.
◆ getBestChi2()
◆ hasGoodFit()
| bool hasGoodFit |
( |
std::vector< FPGATrackSimTrack > const & | track_cands, |
|
|
float | minchi2 ) |
Definition at line 549 of file TrackFitter.cxx.
550{
552 {
553 if (
t.getChi2ndof() > 0 &&
t.getChi2ndof() < minchi2ndof)
554 return true;
555 }
556 return false;
557}