Skip to content
Snippets Groups Projects

Implement new TrackState EDM used in KF

Merged Paul Gessinger requested to merge local_trajectory into master
1 file
+ 18
0
Compare changes
  • Side-by-side
  • Inline
@@ -130,6 +130,12 @@ namespace detail_lt {
Covariance
predictedCovariance() const;
bool
hasPredicted() const
{
return m_data.ipredicted != IndexData::kInvalid;
}
/// Track parameters vector.
Parameters
filtered() const;
@@ -138,6 +144,12 @@ namespace detail_lt {
Covariance
filteredCovariance() const;
bool
hasFiltered() const
{
return m_data.ifiltered != IndexData::kInvalid;
}
/// Track parameters vector.
Parameters
smoothed() const;
@@ -146,6 +158,12 @@ namespace detail_lt {
Covariance
smoothedCovariance() const;
bool
hasSmoothed() const
{
return m_data.ismoothed != IndexData::kInvalid;
}
bool
hasUncalibrated() const
{
Loading