ATLAS Offline Software
Classes | Public Types | Public Member Functions | Public Attributes | Protected Types | Protected Member Functions | Static Protected Member Functions | Static Protected Attributes | List of all members
MeasurementSelectorBase< NMeasMax, DIMMAX, derived_t > Struct Template Reference

#include <MeasurementSelector.h>

Collaboration diagram for MeasurementSelectorBase< NMeasMax, DIMMAX, derived_t >:

Classes

struct  MatchingMeasurement
 
struct  MeasurementRange
 
struct  ProjectorBitSetMaker
 

Public Types

using Config = Acts::GeometryHierarchyMap< AtlasMeasurementSelectorCuts >
 
using traits = MeasurementSelectorTraits< derived_t >
 

Public Member Functions

std::tuple< std::size_t, std::pair< float, float > > getCuts (const Acts::Surface &surface, const T_BoundState &boundState, const Acts::Logger &logger) const
 

Public Attributes

Config m_config
 

Protected Types

using T_BoundState = typename MeasurementSelectorTraits< derived_t >::BoundState
 
using trajectory_t = typename MeasurementSelectorTraits< derived_t >::trajectory_t
 
using TrackStateProxy = typename MeasurementSelectorTraits< derived_t >::TrackStateProxy
 

Protected Member Functions

const derived_t & derived () const
 
template<std::size_t DIM, typename source_link_iterator_t , typename T_Container >
Acts::Result< boost::container::small_vector< typename TrackStateProxy::IndexType, s_maxBranchesPerSurface > > selectMeasurementsCreateTrackStates (const Acts::GeometryContext &geometryContext, const Acts::CalibrationContext &calibrationContext, const Acts::Surface &surface, const T_BoundState &boundState, const source_link_iterator_t &sourceLinkBegin, const source_link_iterator_t &sourceLinkEnd, std::size_t prevTip, trajectory_t &trajectory, const Acts::Logger &logger, const std::size_t numMeasurementsCut, const std::pair< float, float > &maxChi2Cut, const T_Container &container) const
 

Static Protected Member Functions

static void createStates (std::size_t n_new_states, const T_BoundState &boundState, std::size_t prevTip, trajectory_t &trajectory, const Acts::ProjectorBitset &projector_bitset, boost::container::small_vector< typename TrackStateProxy::IndexType, s_maxBranchesPerSurface > &track_states, const Acts::Logger &logger, bool outlier_states)
 
template<typename parameters_t >
static std::size_t getEtaBin (const parameters_t &boundParameters, const std::vector< float > &etaBins)
 

Static Protected Attributes

static constexpr std::size_t s_maxBranchesPerSurface = MeasurementSelectorTraits<derived_t>::s_maxBranchesPerSurface
 

Detailed Description

template<std::size_t NMeasMax, std::size_t DIMMAX, typename derived_t>
struct MeasurementSelectorBase< NMeasMax, DIMMAX, derived_t >

Definition at line 300 of file MeasurementSelector.h.

Member Typedef Documentation

◆ Config

template<std::size_t NMeasMax, std::size_t DIMMAX, typename derived_t >
using MeasurementSelectorBase< NMeasMax, DIMMAX, derived_t >::Config = Acts::GeometryHierarchyMap<AtlasMeasurementSelectorCuts>

Definition at line 302 of file MeasurementSelector.h.

◆ T_BoundState

template<std::size_t NMeasMax, std::size_t DIMMAX, typename derived_t >
using MeasurementSelectorBase< NMeasMax, DIMMAX, derived_t >::T_BoundState = typename MeasurementSelectorTraits<derived_t>::BoundState
protected

Definition at line 308 of file MeasurementSelector.h.

◆ TrackStateProxy

template<std::size_t NMeasMax, std::size_t DIMMAX, typename derived_t >
using MeasurementSelectorBase< NMeasMax, DIMMAX, derived_t >::TrackStateProxy = typename MeasurementSelectorTraits<derived_t>::TrackStateProxy
protected

Definition at line 310 of file MeasurementSelector.h.

◆ traits

template<std::size_t NMeasMax, std::size_t DIMMAX, typename derived_t >
using MeasurementSelectorBase< NMeasMax, DIMMAX, derived_t >::traits = MeasurementSelectorTraits<derived_t>

Definition at line 303 of file MeasurementSelector.h.

◆ trajectory_t

template<std::size_t NMeasMax, std::size_t DIMMAX, typename derived_t >
using MeasurementSelectorBase< NMeasMax, DIMMAX, derived_t >::trajectory_t = typename MeasurementSelectorTraits<derived_t>::trajectory_t
protected

Definition at line 309 of file MeasurementSelector.h.

Member Function Documentation

◆ createStates()

template<std::size_t NMeasMax, std::size_t DIMMAX, typename derived_t >
static void MeasurementSelectorBase< NMeasMax, DIMMAX, derived_t >::createStates ( std::size_t  n_new_states,
const T_BoundState boundState,
std::size_t  prevTip,
trajectory_t trajectory,
const Acts::ProjectorBitset &  projector_bitset,
boost::container::small_vector< typename TrackStateProxy::IndexType, s_maxBranchesPerSurface > &  track_states,
const Acts::Logger &  logger,
bool  outlier_states 
)
inlinestaticprotected

Definition at line 339 of file MeasurementSelector.h.

346  {
347  // create track states for all compatible measurement candidates
348  const auto &boundParams = derived_t::boundParams(boundState);
349  const auto &pathLength = derived_t::pathLength(boundState);
350 
351  using PM = Acts::TrackStatePropMask;
352 
353  track_states.reserve( n_new_states );
354  std::optional<TrackStateProxy> firstTrackState{
355  std::nullopt};
356  for (unsigned int state_i=0; state_i<n_new_states; ++state_i) {
357  PM mask = PM::Predicted | PM::Filtered | PM::Jacobian | PM::Calibrated;
358 
359  if (firstTrackState.has_value()) {
360  // subsequent track states don't need storage for these as they will
361  // be shared
362  mask &= ~PM::Predicted & ~PM::Jacobian;
363  }
364 
365  if (outlier_states) {
366  // outlier won't have separate filtered parameters
367  mask &= ~PM::Filtered;
368  }
369 
370  TrackStateProxy trackState = trajectory.makeTrackState(mask, prevTip);
371  ACTS_VERBOSE("Create SourceLink output track state #"
372  << trackState.index() << " with mask: " << mask);
373 
374  if (firstTrackState.has_value()) {
375  trackState.shareFrom(*firstTrackState, PM::Predicted);
376  trackState.shareFrom(*firstTrackState, PM::Jacobian);
377  }
378  else {
379  // only set these for first
380  trackState.predicted() = boundParams.parameters();
381  if (boundParams.covariance()) {
382  trackState.predictedCovariance() = *boundParams.covariance();
383  }
384  trackState.jacobian() = derived_t::boundJacobiMatrix(boundState);
385  firstTrackState = trackState;
386  }
387  trackState.pathLength() = pathLength;
388 
389  trackState.setReferenceSurface(boundParams.referenceSurface().getSharedPtr());
390  trackState.setProjectorBitset(projector_bitset);
391 
392  Acts::TrackStateType typeFlags = trackState.typeFlags();
393  if (trackState.referenceSurface().surfaceMaterial() != nullptr) {
394  typeFlags.set(Acts::TrackStateFlag::MaterialFlag);
395  }
396  typeFlags.set(Acts::TrackStateFlag::ParameterFlag);
397 
398  // @TODO these track states still need some additional processing. Should there be a special
399  // flag for this ?
400  track_states.push_back( trackState.index());
401  }
402  }

◆ derived()

template<std::size_t NMeasMax, std::size_t DIMMAX, typename derived_t >
const derived_t& MeasurementSelectorBase< NMeasMax, DIMMAX, derived_t >::derived ( ) const
inlineprotected

Definition at line 313 of file MeasurementSelector.h.

313 { return *static_cast<const derived_t *>(this); }

◆ getCuts()

template<std::size_t NMeasMax, std::size_t DIMMAX, typename derived_t >
std::tuple< std::size_t, std::pair<float,float> > MeasurementSelectorBase< NMeasMax, DIMMAX, derived_t >::getCuts ( const Acts::Surface &  surface,
const T_BoundState boundState,
const Acts::Logger &  logger 
) const
inline

Definition at line 664 of file MeasurementSelector.h.

666  {
667  std::tuple< std::size_t, std::pair<float,float> > result;
668  std::size_t &numMeasurementsCut = std::get<0>(result);
669  std::pair<float,float> &maxChi2Cut = std::get<1>(result);
670  // Get geoID of this surface
671  auto geoID = surface.geometryId();
672  // Find the appropriate cuts
673  auto cuts = m_config.find(geoID);
674  if (cuts == m_config.end()) {
675  // indicats failure
676  numMeasurementsCut = 0;
677  }
678  else {
679  // num measurement Cut
680  // getchi2 cut
681  std::size_t eta_bin = getEtaBin(derived().boundParams(boundState), cuts->etaBins);
682  numMeasurementsCut = (!cuts->numMeasurementsCutOff.empty()
683  ? cuts->numMeasurementsCutOff[ std::min(cuts->numMeasurementsCutOff.size()-1, eta_bin) ]
684  : NMeasMax);
685  maxChi2Cut = ! cuts->chi2CutOff.empty()
686  ? cuts->chi2CutOff[ std::min(cuts->chi2CutOff.size()-1, eta_bin) ]
687  : std::make_pair<float,float>(std::numeric_limits<float>::max(),
689  ACTS_VERBOSE("Get cut for eta-bin="
690  << (eta_bin < cuts->etaBins.size() ? cuts->etaBins[eta_bin] : std::numeric_limits<float>::max())
691  << ": chi2 (max,max-outlier) " << maxChi2Cut.first << ", " << maxChi2Cut.second
692  << " max.meas." << numMeasurementsCut);
693  }
694  return result;
695  }

◆ getEtaBin()

template<std::size_t NMeasMax, std::size_t DIMMAX, typename derived_t >
template<typename parameters_t >
static std::size_t MeasurementSelectorBase< NMeasMax, DIMMAX, derived_t >::getEtaBin ( const parameters_t &  boundParameters,
const std::vector< float > &  etaBins 
)
inlinestaticprotected

Definition at line 645 of file MeasurementSelector.h.

646  {
647  if (etaBins.empty()) {
648  return 0u; // shortcut if no etaBins
649  }
650  const float eta = std::abs(std::atanh(std::cos(boundParameters.parameters()[Acts::eBoundTheta])));
651  std::size_t bin = 0;
652  for (auto etaBin : etaBins) {
653  if (etaBin >= eta) {
654  break;
655  }
656  bin++;
657  }
658  return bin;
659  }

◆ selectMeasurementsCreateTrackStates()

template<std::size_t NMeasMax, std::size_t DIMMAX, typename derived_t >
template<std::size_t DIM, typename source_link_iterator_t , typename T_Container >
Acts::Result<boost::container::small_vector< typename TrackStateProxy::IndexType, s_maxBranchesPerSurface> > MeasurementSelectorBase< NMeasMax, DIMMAX, derived_t >::selectMeasurementsCreateTrackStates ( const Acts::GeometryContext &  geometryContext,
const Acts::CalibrationContext &  calibrationContext,
const Acts::Surface &  surface,
const T_BoundState boundState,
const source_link_iterator_t &  sourceLinkBegin,
const source_link_iterator_t &  sourceLinkEnd,
std::size_t  prevTip,
trajectory_t trajectory,
const Acts::Logger &  logger,
const std::size_t  numMeasurementsCut,
const std::pair< float, float > &  maxChi2Cut,
const T_Container &  container 
) const
inlineprotected

Definition at line 448 of file MeasurementSelector.h.

459  {
460  Acts::Result<boost::container::small_vector< typename TrackStateProxy::IndexType, s_maxBranchesPerSurface> >
461  result = boost::container::small_vector< typename TrackStateProxy::IndexType, s_maxBranchesPerSurface>{};
462  using container_value_t = typename MeasurementSelectorTraits<derived_t>::template MeasurementContainerTraits<T_Container>::value_type;
463  using BaseElementType = std::remove_cv_t<std::remove_pointer_t< container_value_t > >;
464  // get calibrator
465  using TheMatchingMeasurement = MatchingMeasurement<DIM, container_value_t >;
466  using MeasCovPair = TheMatchingMeasurement::MeasCovPair;
467 
468  using Predicted = typename MeasurementSelectorTraits<derived_t>::template Predicted<DIM>;
469  using PredictedCovariance = typename MeasurementSelectorTraits<derived_t>::template PredictedCovariance<DIM>;
470 
471 
472 
473  // get prediction in the measurement domain
474  ParameterMapping::type<DIM> parameter_map = derived().template parameterMap<DIM>(geometryContext,
475  calibrationContext,
476  surface);
477  auto predicted
478  = std::make_pair( project<DIM, Predicted>(parameter_map,
479  derived().boundParams(boundState).parameters()),
480  project<DIM, PredictedCovariance>(parameter_map,
481  derived().boundParams(boundState).covariance().value()));
482 
483  // select n measurents with the smallest chi2.
484  auto preCalibrator = derived().template preCalibrator<DIM, BaseElementType>();
485  TopCollection<NMeasMax, TheMatchingMeasurement > selected_measurements(numMeasurementsCut);
486  {
487  for ( const auto &measurement : MeasurementRange<T_Container>(container, sourceLinkBegin, sourceLinkEnd) ) {
488  TheMatchingMeasurement &matching_measurement=selected_measurements.slot();
489  matching_measurement.m_measurement = preCalibrator(geometryContext,
490  calibrationContext,
491  derived().template forwardToCalibrator(measurement),
492  derived().boundParams(boundState));
493  matching_measurement.m_chi2 = computeChi2(matching_measurement.m_measurement.first,
494  matching_measurement.m_measurement.second,
495  predicted.first,
496  predicted.second);
497  // only consider measurements which pass the outlier chi2 cut
498  if (matching_measurement.m_chi2<maxChi2Cut.second) {
499  matching_measurement.m_sourceLink=measurement;
500  selected_measurements.acceptAndSort([](const TheMatchingMeasurement &a,
501  const TheMatchingMeasurement &b) {
502  return a.m_chi2 < b.m_chi2;
503  });
504  }
505  }
506  }
507 
508  // apply final calibration to n-best measurements
509  auto postCalibrator = derived().template postCalibrator<DIM, BaseElementType>();
510  using post_calib_meas_cov_pair_t
512  typename MeasurementSelectorTraits<derived_t>::template CalibratedMeasurementCovariance<DIM> >;
513 
514  // need extra temporary buffer if the types to store "measurements" during measurement selection
515  // and calibrated measurements after the measurement selection are not identical
516  static constexpr bool pre_and_post_calib_types_agree
518  typename MeasurementSelectorTraits<derived_t>::template PreSelectionMeasurement<DIM> >::value
519  && std::is_same< typename MeasurementSelectorTraits<derived_t>::template CalibratedMeasurementCovariance<DIM>,
520  typename MeasurementSelectorTraits<derived_t>::template PreSelectionMeasurementCovariance<DIM> >::value;
521 
522  using Empty = struct {};
523  typename std::conditional< !pre_and_post_calib_types_agree,
524  std::array< post_calib_meas_cov_pair_t, NMeasMax>, // @TODO could use boost static_vector instead
525  Empty>::type calibrated;
526  if (postCalibrator) {
528 
529  // apply final calibration, recompute chi2
531  idx: selected_measurements) {
532  TheMatchingMeasurement &a_selected_measurement = selected_measurements.getSlot(idx);
533 
534  // helper to select the destination storage which is the extra temporary buffer
535  // if the measurement storage types during and after selection are different.
536  post_calib_meas_cov_pair_t &calibrated_measurement
537  = [&calibrated, &a_selected_measurement, calibrated_meas_cov_i]() -> post_calib_meas_cov_pair_t & {
538  if constexpr(pre_and_post_calib_types_agree) {
539  (void) calibrated;
540  (void) calibrated_meas_cov_i;
541  return a_selected_measurement.m_measurement;
542  }
543  else {
544  (void) a_selected_measurement;
545  assert(calibrated_meas_cov_i < calibrated.size());
546  return calibrated[calibrated_meas_cov_i];
547  }
548  }();
549 
550  // apply the calibration
551  calibrated_measurement = postCalibrator(geometryContext,
552  calibrationContext,
553  derived().template forwardToCalibrator(a_selected_measurement.m_sourceLink.value()),
554  derived().boundParams(boundState));
555  // update chi2 using calibrated measurement
556  a_selected_measurement.m_chi2 = computeChi2(calibrated_measurement.first,
557  calibrated_measurement.second,
558  predicted.first,
559  predicted.second);
560  // ... and set outlier flag
561  a_selected_measurement.m_isOutLier = (a_selected_measurement.m_chi2 >= maxChi2Cut.first);
562  if constexpr(!pre_and_post_calib_types_agree) {
563  ++calibrated_meas_cov_i;
564  }
565  }
566  }
567  else {
568  // if no final calibration is performed only the outlier flag still needs to be set
570  idx: selected_measurements) {
571  TheMatchingMeasurement &a_selected_measurement = selected_measurements.getSlot(idx);
572  a_selected_measurement.m_isOutLier = (a_selected_measurement.m_chi2 >= maxChi2Cut.first);
573  }
574  }
575 
576  // First Create states without setting information about the calibrated measurement for the selected measurements
577  // @TODO first create state then copy measurements, or crete state by state and set measurements ?
578  // the lastter has the "advantage" that the outlier flag can be set individually
579  // the former has the advantage that part of the state creation code is independent of the
580  // the measuerement.
581  createStates( selected_measurements.size(),
582  boundState,
583  prevTip,
584  trajectory,
585  ProjectorBitSetMaker::create(parameter_map),
586  *result,
587  logger,
588  (!selected_measurements.empty()
589  ? selected_measurements.getSlot( *(selected_measurements.begin())).m_isOutLier
590  : false) );
591  assert( result->size() == selected_measurements.size() );
592 
593  // helper to determine whether calibrated storeage is to be used
594  auto use_calibrated_storage = [&postCalibrator]() -> bool {
595  if constexpr(pre_and_post_calib_types_agree) {
596  (void) postCalibrator;
597  return false;
598  }
599  else {
600  // this is only known during runtime
601  // but it should not be tested if the types agree.
602  return postCalibrator;
603  }
604  };
605 
606  // copy selected measurements to pre-created states
607  unsigned int state_i=0;
609  idx: selected_measurements) {
610  assert( state_i < result->size());
611  TrackStateProxy trackState( trajectory.getTrackState( (*result)[state_i] ) );
612  TheMatchingMeasurement &a_selected_measurement = selected_measurements.getSlot(idx);
613  trackState.setUncalibratedSourceLink(derived().makeSourceLink(std::move(a_selected_measurement.m_sourceLink.value())));
614  // flag outliers accordingly, so that they are handled correctly by the post processing
615  trackState.typeFlags().set( a_selected_measurement.m_isOutLier
616  ? Acts::TrackStateFlag::OutlierFlag
617  : Acts::TrackStateFlag::MeasurementFlag );
618  trackState.allocateCalibrated(DIM);
619  if (use_calibrated_storage()) {
620  // if the final clibration is performed after the selection then
621  // copy these measurements and covariances to the track states
622  assert( use_calibrated_storage() == !pre_and_post_calib_types_agree);
623  if constexpr(!pre_and_post_calib_types_agree) {
624  assert( state_i < calibrated.size());
625  trackState.template calibrated<DIM>()
626  = MeasurementSelectorMatrixTraits::matrixTypeCast<typename MeasurementSelectorTraits<derived_t>::MatrixFloatType>(calibrated[state_i].first);
627  trackState.template calibratedCovariance<DIM>()
628  = MeasurementSelectorMatrixTraits::matrixTypeCast<typename MeasurementSelectorTraits<derived_t>::MatrixFloatType>(calibrated[state_i].second);
629  trackState.chi2() = a_selected_measurement.m_chi2;
630  }
631  }
632  else {
633  trackState.template calibrated<DIM>()
634  = MeasurementSelectorMatrixTraits::matrixTypeCast<typename MeasurementSelectorTraits<derived_t>::MatrixFloatType>(a_selected_measurement.m_measurement.first);
635  trackState.template calibratedCovariance<DIM>()
636  = MeasurementSelectorMatrixTraits::matrixTypeCast<typename MeasurementSelectorTraits<derived_t>::MatrixFloatType>(a_selected_measurement.m_measurement.second);
637  trackState.chi2() = a_selected_measurement.m_chi2;
638  }
639  ++state_i;
640  }
641  return result;
642  }

Member Data Documentation

◆ m_config

template<std::size_t NMeasMax, std::size_t DIMMAX, typename derived_t >
Config MeasurementSelectorBase< NMeasMax, DIMMAX, derived_t >::m_config

Definition at line 305 of file MeasurementSelector.h.

◆ s_maxBranchesPerSurface

template<std::size_t NMeasMax, std::size_t DIMMAX, typename derived_t >
constexpr std::size_t MeasurementSelectorBase< NMeasMax, DIMMAX, derived_t >::s_maxBranchesPerSurface = MeasurementSelectorTraits<derived_t>::s_maxBranchesPerSurface
staticconstexprprotected

Definition at line 311 of file MeasurementSelector.h.


The documentation for this struct was generated from the following file:
MeasurementSelectorBase::TrackStateProxy
typename MeasurementSelectorTraits< derived_t >::TrackStateProxy TrackStateProxy
Definition: MeasurementSelector.h:310
ParameterMapping::type
std::array< unsigned char, N > type
Definition: MeasurementSelector.h:127
get_generator_info.result
result
Definition: get_generator_info.py:21
max
#define max(a, b)
Definition: cfImp.cxx:41
eta
Scalar eta() const
pseudorapidity method
Definition: AmgMatrixBasePlugin.h:79
ConvertOldUJHistosToNewHistos.etaBins
list etaBins
Definition: ConvertOldUJHistosToNewHistos.py:145
taskman.template
dictionary template
Definition: taskman.py:317
bin
Definition: BinsDiffFromStripMedian.h:43
athena.value
value
Definition: athena.py:122
TopCollection::IndexType
unsigned short IndexType
Definition: MeasurementSelector.h:213
drawFromPickle.cos
cos
Definition: drawFromPickle.py:36
Trk::u
@ u
Enums for curvilinear frames.
Definition: ParamDefs.h:83
python.utils.AtlRunQueryLookup.mask
string mask
Definition: AtlRunQueryLookup.py:460
MeasurementSelectorBase::derived
const derived_t & derived() const
Definition: MeasurementSelector.h:313
python.setupRTTAlg.size
int size
Definition: setupRTTAlg.py:39
xAOD::etaBin
setSAddress setEtaMS setDirPhiMS setDirZMS setBarrelRadius setEndcapAlpha setEndcapRadius setInterceptInner setEtaMap etaBin
Definition: L2StandAloneMuon_v1.cxx:148
MeasurementSelectorBase::ProjectorBitSetMaker::create
static Acts::ProjectorBitset create(const ParameterMapping::type< N > &parameter_map)
Definition: MeasurementSelector.h:319
plotBeamSpotVert.cuts
string cuts
Definition: plotBeamSpotVert.py:93
TopCollection::begin
std::array< IndexType, N+1 >::const_iterator begin()
Definition: MeasurementSelector.h:271
TopCollection::getSlot
const PayloadType & getSlot(IndexType idx) const
Definition: MeasurementSelector.h:235
min
#define min(a, b)
Definition: cfImp.cxx:40
doL1CaloHVCorrections.eta_bin
eta_bin
Definition: doL1CaloHVCorrections.py:368
TopCollection::size
IndexType size() const
Definition: MeasurementSelector.h:268
plotBeamSpotMon.b
b
Definition: plotBeamSpotMon.py:77
plotBeamSpotVxVal.bin
int bin
Definition: plotBeamSpotVxVal.py:83
MeasurementSelectorBase::getEtaBin
static std::size_t getEtaBin(const parameters_t &boundParameters, const std::vector< float > &etaBins)
Definition: MeasurementSelector.h:645
MeasurementSelectorTraits
Definition: MeasurementSelector.h:44
a
TList * a
Definition: liststreamerinfos.cxx:10
python.CaloScaleNoiseConfig.type
type
Definition: CaloScaleNoiseConfig.py:78
MeasurementSelectorBase::createStates
static void createStates(std::size_t n_new_states, const T_BoundState &boundState, std::size_t prevTip, trajectory_t &trajectory, const Acts::ProjectorBitset &projector_bitset, boost::container::small_vector< typename TrackStateProxy::IndexType, s_maxBranchesPerSurface > &track_states, const Acts::Logger &logger, bool outlier_states)
Definition: MeasurementSelector.h:339
LArNewCalib_DelayDump_OFC_Cali.idx
idx
Definition: LArNewCalib_DelayDump_OFC_Cali.py:69
physics_parameters.parameters
parameters
Definition: physics_parameters.py:144
computeChi2
double computeChi2(const measurement_vector_t &a, const measurement_cov_matrix_t &a_cov, const predicted_vector_t &b, const predicted_cov_matrix_t &b_cov)
Definition: MeasurementSelector.h:181
TopCollection
Definition: MeasurementSelector.h:212
Trk::TrackState::TrackStateType
TrackStateType
enum describing the role of track states during cleaning and outlier removal.
Definition: TrackStateDefs.h:51
MeasurementSelectorBase::m_config
Config m_config
Definition: MeasurementSelector.h:305
python.iconfTool.gui.pad.logger
logger
Definition: pad.py:14
TopCollection::empty
bool empty() const
Definition: MeasurementSelector.h:264