14#include "Acts/Surfaces/PerigeeSurface.hpp"
84 auto magneticField = std::make_unique<ATLASMagneticFieldWrapper>();
88 detail::Navigator::Config
config{trackingGeometry};
89 config.resolvePassive =
false;
90 config.resolveMaterial =
true;
91 config.resolveSensitive =
true;
99 std::vector<double> absEtaEdges;
102 absEtaEdges.reserve(2ul);
103 absEtaEdges.push_back(0.0);
104 absEtaEdges.push_back(std::numeric_limits<double>::infinity());
114 auto setCut = [](
auto &cfgVal,
const auto &cuts,
size_t ind) ->
void
118 cfgVal = (ind < cuts.size()) ? cuts[ind] : cuts[cuts.size() - 1];
121 Acts::TrackSelector::EtaBinnedConfig trackSelectorCfg{std::move(absEtaEdges)};
124 assert(trackSelectorCfg.cutSets.size() == 1);
125 trackSelectorCfg.cutSets[0].absEtaMin =
m_absEtaMin;
126 trackSelectorCfg.cutSets[0].absEtaMax =
m_absEtaMax;
129 for (
auto &cfg : trackSelectorCfg.cutSets)
131 setCut(cfg.phiMin,
m_phiMin, cutIndex);
132 setCut(cfg.phiMax,
m_phiMax, cutIndex);
133 setCut(cfg.etaMin,
m_etaMin, cutIndex);
134 setCut(cfg.etaMax,
m_etaMax, cutIndex);
135 setCut(cfg.ptMin,
m_ptMin, cutIndex);
136 setCut(cfg.ptMax,
m_ptMax, cutIndex);
137 setCut(cfg.loc0Min,
m_d0Min, cutIndex);
138 setCut(cfg.loc0Max,
m_d0Max, cutIndex);
139 setCut(cfg.loc1Min,
m_z0Min, cutIndex);
140 setCut(cfg.loc1Max,
m_z0Max, cutIndex);
145 setCut(cfg.maxChi2,
m_maxChi2, cutIndex);
155 std::move(extrapolator),
158 Acts::TrackSelector{trackSelectorCfg}};
160 m_trackFinder = std::make_unique<CKF_pimpl>(std::move(ckfConfig));
168 return StatusCode::SUCCESS;
172 ATH_MSG_FATAL(
"execute() method from the base class was called! Implement proper execute() method in the derived class!");
174 return StatusCode::FAILURE;
180 return StatusCode::SUCCESS;
196 measurementSelector->connect(&options.extensions.createTrackStates);
198 return measurementSelector;
204 const Acts::PerigeeSurface* pSurface)
const {
205 Acts::PropagatorPlainOptions plainOptions{detContext.
geometry, detContext.
magField};
207 plainOptions.direction = Acts::Direction::Forward();
212 trackFinder().ckfExtensions, plainOptions, pSurface);
214 std::unique_ptr<ActsTrk::IMeasurementSelector> measurementSelector =
setMeasurementSelector(measurements, options);
216 Acts::PropagatorPlainOptions plainSecondOptions{detContext.
geometry, detContext.
magField};
218 plainSecondOptions.direction = plainOptions.direction.invert();
221 options.extensions, plainSecondOptions, pSurface);
222 secondOptions.targetSurface = pSurface;
223 secondOptions.skipPrePropagationUpdate =
true;
225 return {std::move(options), std::move(secondOptions), std::move(measurementSelector)};
231 return (!(std::abs(
eta) < trackSelectorCfg.absEtaEdges.back())) ? trackSelectorCfg.cutSets.back()
232 : (std::abs(
eta) < trackSelectorCfg.absEtaEdges.front()) ? trackSelectorCfg.cutSets.front()
233 : trackSelectorCfg.getCuts(
eta);
236 std::vector<typename detail::RecoTrackContainer::TrackProxy>
245 if (!secondInitialParameters.referenceSurface().insideBounds(secondInitialParameters.localPosition())) {
249 auto rootBranch = tracksContainerTemp.makeTrack();
250 rootBranch.copyFromWithoutStates(trackProxy);
254 trackFinder().
ckf.findTracks(secondInitialParameters, options, tracksContainerTemp, rootBranch);
255 if (not secondResult.ok()) {
258 return secondResult.value();
262 if (trackState.hasReferenceSurface()) {
263 if (
const auto *actsDetElem =
dynamic_cast<const IDetectorElementBase *
>(trackState.referenceSurface().associatedDetectorElement())) {
264 switch (actsDetElem->detectorType()) {
280 const detail::RecoTrackContainer::TrackProxy &track,
281 const detail::RecoTrackContainer::TrackStateProxy &trackState,
282 const Acts::TrackSelector::EtaBinnedConfig &trackSelectorCfg,
283 const Acts::GeometryContext &tgContext,
285 const std::size_t typeIndex,
286 EventStats::value_type &event_stat_category_i)
const {
297 measurementIndex,
true);
301 return BranchStopperResult::Continue;
304 const auto ¶meters = trackState.hasFiltered() ? trackState.filtered()
305 : trackState.predicted();
306 double eta = -std::log(std::tan(0.5 * parameters[Acts::eBoundTheta]));
311 double pT = std::sin(parameters[Acts::eBoundTheta]) /
312 parameters[Acts::eBoundQOverP];
316 << pT <<
" after " << track.nMeasurements()
318 return BranchStopperResult::StopAndDrop;
324 !(std::abs(
eta) < trackSelectorCfg.absEtaEdges.back() +
328 <<
eta <<
" after " << track.nMeasurements()
330 return BranchStopperResult::StopAndDrop;
336 bool enoughMeasurements = (track.nMeasurements() >= minMeasurementsBranchStop);
337 bool tooManyHoles = (track.nHoles() > cutSet.maxHoles);
338 bool tooManyOutliers = (track.nOutliers() > cutSet.maxOutliers);
341 auto [enoughMeasurementsPS, tooManyHolesPS, tooManyOutliersPS] =
343 enoughMeasurements = enoughMeasurements && enoughMeasurementsPS;
344 tooManyHoles = tooManyHoles || tooManyHolesPS;
345 tooManyOutliers = tooManyOutliers || tooManyOutliersPS;
348 if (!(tooManyHoles || tooManyOutliers)) {
349 return BranchStopperResult::Continue;
352 if (!enoughMeasurements) {
358 << (enoughMeasurements ?
"keep" :
"drop")
359 <<
" branch with nHoles=" << track.nHoles() <<
" ("
363 <<
" hgtd), nOutliers=" << track.nOutliers() <<
" ("
367 <<
"), nMeasurements=" << track.nMeasurements() <<
" ("
373 << (enoughMeasurements ?
"keep" :
"drop")
374 <<
" branch with nHoles=" << track.nHoles()
375 <<
", nOutliers=" << track.nOutliers()
376 <<
", nMeasurements=" << track.nMeasurements());
379 return enoughMeasurements ? BranchStopperResult::StopAndKeep
380 : BranchStopperResult::StopAndDrop;
386 tracksContainer.addColumn<
unsigned int>(
"nPixelHits");
387 tracksContainer.addColumn<
unsigned int>(
"nStripHits");
388 tracksContainer.addColumn<
unsigned int>(
"nHgtdHits");
389 tracksContainer.addColumn<
unsigned int>(
"nPixelHoles");
390 tracksContainer.addColumn<
unsigned int>(
"nStripHoles");
391 tracksContainer.addColumn<
unsigned int>(
"nHgtdHoles");
392 tracksContainer.addColumn<
unsigned int>(
"nPixelOutliers");
393 tracksContainer.addColumn<
unsigned int>(
"nStripOutliers");
394 tracksContainer.addColumn<
unsigned int>(
"nHgtdOutliers");
411 const detail::RecoTrackContainer::TrackProxy &track,
414 if (typeFlags.test(Acts::TrackStateFlag::HoleFlag)) {
416 }
else if (typeFlags.test(Acts::TrackStateFlag::OutlierFlag)) {
418 }
else if (typeFlags.test(Acts::TrackStateFlag::MeasurementFlag)) {
422 if (typeFlags.test(Acts::TrackStateFlag::HoleFlag)) {
424 }
else if (typeFlags.test(Acts::TrackStateFlag::OutlierFlag)) {
426 }
else if (typeFlags.test(Acts::TrackStateFlag::MeasurementFlag)) {
430 if (typeFlags.test(Acts::TrackStateFlag::HoleFlag)) {
432 }
else if (typeFlags.test(Acts::TrackStateFlag::OutlierFlag)) {
434 }
else if (typeFlags.test(Acts::TrackStateFlag::MeasurementFlag)) {
444 ATH_MSG_WARNING(
"mismatched hit count: total (" << track.nMeasurements()
456 ATH_MSG_WARNING(
"mismatched outlier count: total (" << track.nOutliers()
464 bool enoughMeasurements =
true, tooManyHoles =
false, tooManyOutliers =
false;
466 std::size_t etaBin = (std::abs(
eta) < trackSelectorCfg.absEtaEdges.front()) ? 0
467 : (std::abs(
eta) >= trackSelectorCfg.absEtaEdges.back()) ? trackSelectorCfg.absEtaEdges.size() - 1
468 : trackSelectorCfg.binIndex(
eta);
469 auto cutMin = [etaBin](std::size_t val,
const std::vector<std::size_t> &cutSet) {
470 return !cutSet.empty() && (val < (etaBin < cutSet.size() ? cutSet[etaBin] : cutSet.back()));
472 auto cutMax = [etaBin](std::size_t val,
const std::vector<std::size_t> &cutSet) {
473 return !cutSet.empty() && (val > (etaBin < cutSet.size() ? cutSet[etaBin] : cutSet.back()));
486 return {enoughMeasurements, tooManyHoles, tooManyOutliers};
494 ATH_MSG_ERROR(
"Outlier chi2 cut off provided but number of elements does not agree with"
495 " chi2 cut off for measurements which however is required: "
497 return StatusCode::FAILURE;
502 chi2CutOffOutlier.push_back( std::make_pair(
static_cast<float>(elm),
505 : std::numeric_limits<float>::max()) );
513 return StatusCode::SUCCESS ;
527 ATH_MSG_FATAL(
"Eta bins for statistics counter not in ascending order.");
537 std::lock_guard<std::mutex> lock(m_mutex);
538 std::size_t category_i = 0;
539 for (
const std::array<unsigned int, kNStat> &src_stat : event_stat)
541 std::array<std::size_t, kNStat> &dest_stat = m_stat[category_i++];
542 for (std::size_t i = 0; i < src_stat.size(); ++i)
544 assert(i < dest_stat.size());
545 dest_stat[i] += src_stat[i];
554 std::vector<std::string> stat_labels =
560 std::make_pair(
kNoTrack,
"Cannot find track"),
568 std::make_pair(
kNoSecond,
"Tracks failing second CKF"),
574 assert(stat_labels.size() ==
kNStat);
575 std::vector<std::string> categories;
578 categories.push_back(
"ALL");
580 std::vector<std::string> eta_labels;
582 for (std::size_t eta_bin_i = 0; eta_bin_i <
m_statEtaBins.size() + 2; ++eta_bin_i)
591 std::vector<std::size_t> stat =
597 std::size_t stat_stride =
601 std::size_t eta_stride =
605 std::stringstream table_out;
611 for (std::size_t stat_i = 0; stat_i <
kNStat; ++stat_i)
613 std::size_t dest_idx_offset = stat_i * stat_stride;
614 table_out <<
makeTable(stat, dest_idx_offset, eta_stride,
619 .dumpHeader(stat_i == 0)
620 .dumpFooter(stat_i + 1 ==
kNStat)
621 .separateLastRow(
true)
622 .minLabelWidth(max_label_width)
623 .labelPrefix(stat_labels.at(stat_i));
633 std::size_t dest_idx_offset = eta_bin_i * eta_stride;
634 table_out <<
makeTable(stat, dest_idx_offset, stat_stride,
637 eta_labels.at(eta_bin_i))
650 auto [ratio_labels, ratio_def] =
652 std::vector<TableUtils::SummandDefinition>{
686 for (std::size_t ratio_i = 0; ratio_i < ratio_labels.size(); ++ratio_i)
689 ratio_i * ratio_stride,
695 .dumpHeader(ratio_i == 0)
696 .dumpFooter(ratio_i + 1 == ratio_labels.size())
697 .separateLastRow(
true)
698 .minLabelWidth(max_label_width)
699 .labelPrefix(ratio_labels.at(ratio_i));
706 (
m_statEtaBins.size() + 1) * ratio_eta_stride + 0 * ratio_stride,
712 .minLabelWidth(max_label_width)
716 eta_labels.erase(eta_labels.end() - 1);
717 constexpr std::size_t ratio_i = 3;
719 ratio_i * ratio_stride,
727 .separateLastRow(
false)
728 .minLabelWidth(max_label_width)
729 .labelPrefix(ratio_labels.at(ratio_i));
738 std::vector<float>::const_iterator bin_iter = std::upper_bound(
m_statEtaBins.begin(),
742 assert(category_i < m_stat.size());
747 std::size_t out = 0u;
752 assert(category_i < stat.size());
753 out += stat[category_i][counter_i];
760 double eta = -std::log(std::tan(0.5 * track.theta()));
761 auto [enoughMeasurementsPS, tooManyHolesPS, tooManyOutliersPS] =
selectCounts(track,
eta);
762 return enoughMeasurementsPS && !tooManyHolesPS && !tooManyOutliersPS;
Scalar eta() const
pseudorapidity method
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_WARNING(x)
TableUtils::StatTable< T > makeTable(const std::array< T, N > &counter, const std::array< std::string, N > &label)
std::unique_ptr< const Acts::Logger > makeActsAthenaLogger(IMessageSvc *svc, const std::string &name, int level, std::optional< std::string > parent_name)
base class interface providing the bare minimal interface extension.
Gaudi::Property< std::vector< std::size_t > > m_maxStripHoles
Gaudi::Property< double > m_branchStopperAbsEtaMeasCut
Acts::TrackProxy< Acts::VectorTrackContainer, Acts::VectorMultiTrajectory, Acts::detail::RefHolder, false > TrkProxy
Gaudi::Property< std::vector< float > > m_statEtaBins
Gaudi::Property< double > m_branchStopperPtMinFactor
Gaudi::Property< std::vector< std::size_t > > m_maxOutliers
Gaudi::Property< std::vector< std::size_t > > m_maxHgtdHoles
std::unique_ptr< const Acts::Logger > m_logger
logging instance
void printStatTables() const
Gaudi::Property< std::vector< double > > m_etaBins
Gaudi::Property< bool > m_doTwoWay
Gaudi::Property< bool > m_dumpAllStatEtaBins
Gaudi::Property< std::vector< size_t > > m_numMeasurementsCutOff
Gaudi::Property< std::vector< std::size_t > > m_maxSharedHits
std::unique_ptr< ActsTrk::IMeasurementSelector > setMeasurementSelector(const detail::TrackFindingMeasurements &measurements, TrackFinderOptions &options) const
Setup and attach measurement selector to KF options.
Gaudi::Property< unsigned int > m_maxPropagationStep
static xAOD::UncalibMeasType measurementType(const detail::RecoTrackContainer::TrackStateProxy &trackState)
ToolHandle< ActsTrk::TrackStatePrinterTool > m_trackStatePrinter
Gaudi::Property< std::vector< double > > m_etaMax
Gaudi::Property< std::vector< double > > m_ptMin
Gaudi::Property< std::vector< std::size_t > > m_minPixelHits
Gaudi::Property< std::vector< std::size_t > > m_maxStripOutliers
SG::WriteHandleKey< ActsTrk::TrackContainer > m_trackContainerKey
ToolHandle< ActsTrk::IOnTrackCalibratorTool< detail::RecoTrackStateContainer > > m_pixelCalibTool
Gaudi::Property< std::vector< double > > m_ptMax
Gaudi::Property< std::vector< double > > m_chi2CutOff
Gaudi::Property< std::vector< std::size_t > > m_maxPixelHoles
static constexpr BranchState s_branchState
void copyStats(const EventStats &event_stat) const
Gaudi::Property< std::vector< double > > m_phiMin
Gaudi::Property< double > m_branchStopperMeasCutReduce
Gaudi::Property< std::vector< std::uint32_t > > m_endOfWorldVolumeIds
CKF_pimpl & trackFinder()
Gaudi::Property< std::vector< std::size_t > > m_minStripHits
ActsTrk::MutableTrackContainerHandlesHelper m_tracksBackendHandlesHelper
std::size_t getStatCategory(std::size_t seed_collection, float eta) const
std::size_t seedCollectionStride() const
Gaudi::Property< double > m_branchStopperAbsEtaMaxExtra
ToolHandle< GenericMonitoringTool > m_monTool
static void addCounts(detail::RecoTrackContainer &tracksContainer)
std::vector< typename detail::RecoTrackContainer::TrackProxy > doTwoWayTrackFinding(const detail::RecoTrackStateContainerProxy &firstMeasurement, const TrkProxy &trackProxy, detail::RecoTrackContainer &tracksContainerTemp, const TrackFinderOptions &options) const
Perform two-way track finding.
Gaudi::Property< std::vector< std::size_t > > m_absEtaMaxMeasurements
TrackFindingBaseAlg(const std::string &name, ISvcLocator *pSvcLocator)
Gaudi::Property< std::vector< double > > m_etaMin
Gaudi::Property< std::vector< double > > m_d0Min
virtual StatusCode execute(const EventContext &ctx) const override
PublicToolHandle< ActsTrk::ITrackingGeometryTool > m_trackingGeometryTool
ToolHandle< ActsTrk::IActsToTrkConverterTool > m_ATLASConverterTool
@ kNStoppedTracksMaxHoles
@ kNForcedSeedMeasurements
Gaudi::Property< std::vector< std::size_t > > m_maxHgtdOutliers
Gaudi::Property< std::vector< double > > m_z0Max
Gaudi::Property< double > m_absEtaMax
ToolHandle< ActsTrk::IExtrapolationTool > m_extrapolationTool
std::size_t computeStatSum(std::size_t seed_collection, EStat counter_i, const EventStats &stat) const
virtual StatusCode initialize() override
static void updateCounts(const detail::RecoTrackContainer::TrackProxy &track, Acts::ConstTrackStateType typeFlags, xAOD::UncalibMeasType detType)
Gaudi::Property< std::vector< double > > m_z0Min
void checkCounts(const detail::RecoTrackContainer::TrackProxy &track) const
Gaudi::Property< bool > m_doBranchStopper
Gaudi::Property< std::vector< std::size_t > > m_minMeasurements
Gaudi::Property< std::vector< double > > m_maxChi2
const Acts::Logger & logger() const
Private access to the logger.
Gaudi::Property< double > m_absEtaMin
BranchStopperResult stopBranch(const detail::RecoTrackContainer::TrackProxy &track, const detail::RecoTrackContainer::TrackStateProxy &trackState, const Acts::TrackSelector::EtaBinnedConfig &trackSelectorCfg, const Acts::GeometryContext &tgContext, const detail::MeasurementIndex &measurementIndex, const std::size_t typeIndex, EventStats::value_type &event_stat_category_i) const
Branch stopper.
static void initCounts(const detail::RecoTrackContainer::TrackProxy &track)
Gaudi::Property< std::vector< std::size_t > > m_maxPixelOutliers
const Acts::TrackSelector::Config & getCuts(double eta) const
Retrieves track selector configuration for given eta value.
Gaudi::Property< bool > m_checkCounts
Gaudi::Property< std::vector< std::size_t > > m_maxHoles
std::array< bool, 3 > selectCounts(const detail::RecoTrackContainer::TrackProxy &track, double eta) const
ToolHandle< ActsTrk::IOnTrackCalibratorTool< detail::RecoTrackStateContainer > > m_hgtdCalibTool
std::unique_ptr< CKF_pimpl > m_trackFinder
TrackFindingDefaultOptions getDefaultOptions(const DetectorContextHolder &detContext, const detail::TrackFindingMeasurements &measurements, const Acts::PerigeeSurface *pSurface) const
Get CKF options for first and second pass + pointer to MeasurementSelector.
StatusCode initializeMeasurementSelector()
Acts::CombinatorialKalmanFilterOptions< detail::RecoTrackContainer > TrackFinderOptions
virtual StatusCode finalize() override
std::vector< std::array< unsigned int, kNStat > > EventStats
ToolHandle< ActsTrk::IOnTrackCalibratorTool< detail::RecoTrackStateContainer > > m_stripCalibTool
detail::xAODUncalibMeasSurfAcc m_unalibMeasSurfAcc
std::size_t nSeedCollections() const
Gaudi::Property< bool > m_addCounts
Gaudi::Property< std::vector< std::size_t > > m_minHgtdHits
struct ActsTrk::TrackFindingBaseAlg::MeasurementSelectorConfig m_measurementSelectorConfig
Gaudi::Property< std::vector< double > > m_phiMax
Gaudi::Property< std::vector< std::size_t > > m_ptMinMeasurements
Gaudi::Property< std::vector< double > > m_d0Max
ToolHandle< ActsTrk::IFitterTool > m_fitterTool
Gaudi::Property< std::vector< double > > m_chi2OutlierCutOff
Acts::CombinatorialKalmanFilterBranchStopperResult BranchStopperResult
bool selectCountsFinal(const detail::RecoTrackContainer::TrackProxy &track) const
Gaudi::Property< std::vector< std::string > > m_seedLabels
const MeasurementRangeList & measurementRanges() const
Helper class to access the Acts::surface associated with an Uncalibrated xAOD measurement.
bool msgLvl(const MSG::Level lvl) const
An algorithm that can be simultaneously executed in multiple threads.
Acts::Result< void > gainMatrixUpdate(const Acts::GeometryContext &gctx, typename trajectory_t::TrackStateProxy trackState, const Acts::Logger &logger)
Acts::Propagator< Stepper, Navigator > Propagator
Acts::SympyStepper Stepper
Adapted from Acts Examples/Algorithms/TrackFinding/src/TrackFindingAlgorithmFunction....
Acts::Navigator Navigator
RecoTrackStateContainer::TrackStateProxy RecoTrackStateContainerProxy
Acts::TrackContainer< Acts::VectorTrackContainer, Acts::VectorMultiTrajectory > RecoTrackContainer
RecoTrackStateContainer::ConstTrackStateProxy RecoConstTrackStateContainerProxy
Acts::CombinatorialKalmanFilter< Propagator, RecoTrackContainer > CKF
std::unique_ptr< ActsTrk::IMeasurementSelector > getMeasurementSelector(const ActsTrk::IOnBoundStateCalibratorTool *pixelOnTrackCalibratorTool, const ActsTrk::IOnBoundStateCalibratorTool *stripOnTrackCalibratorTool, const ActsTrk::IOnBoundStateCalibratorTool *hgtdOnTrackCalibratorTool, const ActsTrk::detail::MeasurementRangeList &measurementRanges, const std::vector< float > &etaBinsf, const std::vector< std::pair< float, float > > &chi2CutOffOutlier, const std::vector< size_t > &numMeasurementsCutOff)
The AlignStoreProviderAlg loads the rigid alignment corrections and pipes them through the readout ge...
std::string prefixFromTrackContainerName(const std::string &tracks)
Parse TrackContainer name to get the prefix for backends The name has to contain XYZTracks,...
@ Pixel
Inner detector legacy.
std::tuple< std::vector< std::string >, std::vector< RatioDefinition > > splitRatioDefinitionsAndLabels(std::initializer_list< std::tuple< std::string, RatioDefinition > > a_ratio_list)
SummandDefinition defineSummand(T counter_idx, int multiplier)
std::size_t maxLabelWidth(const T_Collection &col)
RatioDefinition defineSimpleRatio(T numerator, T denominator)
std::vector< std::string > makeLabelVector(T_index n_entries, std::initializer_list< std::pair< T_index, T_string > > a_list)
constexpr std::size_t subCategoryStride(const std::size_t categories, const std::size_t sub_categories, const std::size_t n_counter)
constexpr std::size_t counterStride(const std::size_t categories, const std::size_t sub_categories, const std::size_t n_counter)
std::string makeEtaBinLabel(const std::vector< float > &eta_bins, std::size_t eta_bin_i, bool abs_eta=false)
std::tuple< std::string, RatioDefinition > makeRatioDefinition(std::string &&name, std::vector< SummandDefinition > &&numerator, std::vector< SummandDefinition > &&denominator)
std::vector< float > computeRatios(const std::vector< RatioDefinition > &ratio_def, const std::size_t categories, const std::size_t sub_categories, const std::vector< std::size_t > &counter)
constexpr std::size_t ratioStride(const std::size_t categories, const std::size_t sub_categories, const std::vector< RatioDefinition > &ratio_def)
std::vector< T_Output > createCounterArrayWithProjections(const std::size_t categories, const std::size_t sub_categories, const std::vector< std::array< T_Input, N > > &input_counts)
UncalibMeasType
Define the type of the uncalibrated measurement.
Acts::GeometryContext geometry
Acts::MagneticFieldContext magField
Acts::CalibrationContext calib
Acts::CombinatorialKalmanFilterExtensions< RecoTrackContainer > ckfExtensions
Acts::TrackSelector trackSelector