14#include "Acts/Surfaces/PerigeeSurface.hpp"
85 auto magneticField = std::make_unique<ATLASMagneticFieldWrapper>();
89 detail::Navigator::Config config{std::move(trackingGeometry)};
90 config.resolvePassive =
false;
91 config.resolveMaterial =
true;
92 config.resolveSensitive =
true;
100 std::vector<double> absEtaEdges;
103 absEtaEdges.reserve(2ul);
104 absEtaEdges.push_back(0.0);
105 absEtaEdges.push_back(std::numeric_limits<double>::infinity());
115 auto setCut = [](
auto &cfgVal,
const auto &
cuts,
size_t ind) ->
void
122 Acts::TrackSelector::EtaBinnedConfig trackSelectorCfg{std::move(absEtaEdges)};
125 assert(trackSelectorCfg.cutSets.size() == 1);
126 trackSelectorCfg.cutSets[0].absEtaMin =
m_absEtaMin;
127 trackSelectorCfg.cutSets[0].absEtaMax =
m_absEtaMax;
130 for (
auto &cfg : trackSelectorCfg.cutSets)
155 detail::CKF_config ckfConfig{
156 std::move(extrapolator),
159 Acts::TrackSelector{trackSelectorCfg}};
161 m_trackFinder = std::make_unique<CKF_pimpl>(std::move(ckfConfig));
167 return StatusCode::SUCCESS;
171 ATH_MSG_FATAL(
"execute() method from the base class was called! Implement proper execute() method in the derived class!");
173 return StatusCode::FAILURE;
179 return StatusCode::SUCCESS;
183 const EventContext &ctx,
198 measurementSelector->connect(&options.extensions.createTrackStates);
200 return measurementSelector;
204 const EventContext &ctx,
207 const Acts::PerigeeSurface* pSurface)
const {
208 Acts::PropagatorPlainOptions plainOptions{detContext.
geometry, detContext.
magField};
210 plainOptions.direction = Acts::Direction::Forward();
215 trackFinder().ckfExtensions, plainOptions, pSurface);
218 std::unique_ptr<ActsTrk::IMeasurementSelector> measurementSelector =
setMeasurementSelector(ctx, measurements, options);
220 Acts::PropagatorPlainOptions plainSecondOptions{detContext.
geometry, detContext.
magField};
222 plainSecondOptions.direction = plainOptions.direction.invert();
225 options.extensions, plainSecondOptions, pSurface);
226 secondOptions.targetSurface = pSurface;
227 secondOptions.skipPrePropagationUpdate =
true;
230 return {std::move(options), std::move(secondOptions), std::move(measurementSelector)};
236 return (!(std::abs(
eta) < trackSelectorCfg.absEtaEdges.back())) ? trackSelectorCfg.cutSets.back()
237 : (std::abs(
eta) < trackSelectorCfg.absEtaEdges.front()) ? trackSelectorCfg.cutSets.front()
238 : trackSelectorCfg.getCuts(
eta);
241 std::vector<typename detail::RecoTrackContainer::TrackProxy>
250 if (!secondInitialParameters.referenceSurface().insideBounds(secondInitialParameters.localPosition())) {
257 ATH_MSG_VERBOSE(
"Original parameters before inflation: \n" << secondInitialParameters);
259 auto inflatedCovariance = secondInitialParameters.covariance().value();
262 const auto& origSurface = secondInitialParameters.referenceSurface();
263 auto surfacePtr =
const_cast<Acts::Surface&
>(origSurface).shared_from_this();
265 Acts::BoundTrackParameters newParams(
266 std::static_pointer_cast<const Acts::Surface>(std::move(surfacePtr)),
267 secondInitialParameters.parameters(),
268 std::make_optional(inflatedCovariance),
269 secondInitialParameters.particleHypothesis());
270 secondInitialParameters = std::move(newParams);
272 ATH_MSG_VERBOSE(
"Inflated covariance matrix : \n" << secondInitialParameters.covariance().value());
275 auto rootBranch = tracksContainerTemp.makeTrack();
276 rootBranch.copyFromWithoutStates(trackProxy);
280 trackFinder().
ckf.findTracks(secondInitialParameters, options, tracksContainerTemp, rootBranch);
281 if (not secondResult.ok()) {
284 return secondResult.value();
288 if (trackState.hasReferenceSurface()) {
289 if (
const auto *actsDetElem =
dynamic_cast<const ISurfacePlacement*
>(trackState.referenceSurface().surfacePlacement())) {
290 switch (actsDetElem->detectorType()) {
306 const detail::RecoTrackContainer::TrackProxy &track,
307 const detail::RecoTrackContainer::TrackStateProxy &trackState,
308 const Acts::TrackSelector::EtaBinnedConfig &trackSelectorCfg,
309 const Acts::GeometryContext &tgContext,
311 const std::size_t typeIndex,
312 EventStats::value_type &event_stat_category_i)
const {
323 measurementIndex,
true);
327 return BranchStopperResult::Continue;
330 const auto ¶meters = trackState.hasFiltered() ? trackState.filtered()
331 : trackState.predicted();
332 double eta = -std::log(std::tan(0.5 * parameters[Acts::eBoundTheta]));
337 double pT = std::sin(parameters[Acts::eBoundTheta]) /
338 parameters[Acts::eBoundQOverP];
342 << pT <<
" after " << track.nMeasurements()
344 return BranchStopperResult::StopAndDrop;
350 !(std::abs(
eta) < trackSelectorCfg.absEtaEdges.back() +
354 <<
eta <<
" after " << track.nMeasurements()
356 return BranchStopperResult::StopAndDrop;
362 bool enoughMeasurements = (track.nMeasurements() >= minMeasurementsBranchStop);
363 bool tooManyHoles = (track.nHoles() > cutSet.maxHoles);
364 bool tooManyOutliers = (track.nOutliers() > cutSet.maxOutliers);
367 auto [enoughMeasurementsPS, tooManyHolesPS, tooManyOutliersPS] =
369 enoughMeasurements = enoughMeasurements && enoughMeasurementsPS;
370 tooManyHoles = tooManyHoles || tooManyHolesPS;
371 tooManyOutliers = tooManyOutliers || tooManyOutliersPS;
374 if (!(tooManyHoles || tooManyOutliers)) {
375 return BranchStopperResult::Continue;
378 if (!enoughMeasurements) {
384 << (enoughMeasurements ?
"keep" :
"drop")
385 <<
" branch with nHoles=" << track.nHoles() <<
" ("
389 <<
" hgtd), nOutliers=" << track.nOutliers() <<
" ("
393 <<
"), nMeasurements=" << track.nMeasurements() <<
" ("
399 << (enoughMeasurements ?
"keep" :
"drop")
400 <<
" branch with nHoles=" << track.nHoles()
401 <<
", nOutliers=" << track.nOutliers()
402 <<
", nMeasurements=" << track.nMeasurements());
405 return enoughMeasurements ? BranchStopperResult::StopAndKeep
406 : BranchStopperResult::StopAndDrop;
413 tracksContainer.addColumn<
unsigned int>(
"nPixelHits");
414 tracksContainer.addColumn<
unsigned int>(
"nStripHits");
415 tracksContainer.addColumn<
unsigned int>(
"nHgtdHits");
416 tracksContainer.addColumn<
unsigned int>(
"nPixelHoles");
417 tracksContainer.addColumn<
unsigned int>(
"nStripHoles");
418 tracksContainer.addColumn<
unsigned int>(
"nHgtdHoles");
419 tracksContainer.addColumn<
unsigned int>(
"nPixelOutliers");
420 tracksContainer.addColumn<
unsigned int>(
"nStripOutliers");
421 tracksContainer.addColumn<
unsigned int>(
"nHgtdOutliers");
440 const detail::RecoTrackContainer::TrackProxy &track,
443 if (typeFlags.isHole()) {
445 }
else if (typeFlags.isOutlier()) {
447 }
else if (typeFlags.isMeasurement()) {
451 if (typeFlags.isHole()) {
453 }
else if (typeFlags.isOutlier()) {
455 }
else if (typeFlags.isMeasurement()) {
459 if (typeFlags.isHole()) {
461 }
else if (typeFlags.isOutlier()) {
463 }
else if (typeFlags.isMeasurement()) {
473 ATH_MSG_WARNING(
"mismatched hit count: total (" << track.nMeasurements()
485 ATH_MSG_WARNING(
"mismatched outlier count: total (" << track.nOutliers()
493 bool enoughMeasurements =
true, tooManyHoles =
false, tooManyOutliers =
false;
495 std::size_t etaBin = (std::abs(
eta) < trackSelectorCfg.absEtaEdges.front()) ? 0
496 : (std::abs(
eta) >= trackSelectorCfg.absEtaEdges.back()) ? trackSelectorCfg.absEtaEdges.size() - 1
497 : trackSelectorCfg.binIndex(
eta);
498 auto cutMin = [etaBin](std::size_t val,
const std::vector<std::size_t> &cutSet) {
499 return !cutSet.empty() && (val < (etaBin < cutSet.size() ? cutSet[etaBin] : cutSet.back()));
501 auto cutMax = [etaBin](std::size_t val,
const std::vector<std::size_t> &cutSet) {
502 return !cutSet.empty() && (val > (etaBin < cutSet.size() ? cutSet[etaBin] : cutSet.back()));
515 return {enoughMeasurements, tooManyHoles, tooManyOutliers};
523 ATH_MSG_ERROR(
"Outlier chi2 cut off provided but number of elements does not agree with"
524 " chi2 cut off for measurements which however is required: "
526 return StatusCode::FAILURE;
531 chi2CutOffOutlier.push_back( std::make_pair(
static_cast<float>(elm),
534 : std::numeric_limits<float>::max()) );
542 return StatusCode::SUCCESS ;
556 ATH_MSG_FATAL(
"Eta bins for statistics counter not in ascending order.");
566 std::lock_guard<std::mutex>
lock(m_mutex);
567 std::size_t category_i = 0;
568 for (
const std::array<unsigned int, kNStat> &src_stat : event_stat)
570 std::array<std::size_t, kNStat> &dest_stat = m_stat[category_i++];
571 for (std::size_t i = 0; i < src_stat.size(); ++i)
573 assert(i < dest_stat.size());
574 dest_stat[i] += src_stat[i];
583 std::vector<std::string> stat_labels =
589 std::make_pair(
kNoTrack,
"Cannot find track"),
599 std::make_pair(
kNoSecond,
"Tracks failing second CKF"),
605 assert(stat_labels.size() ==
kNStat);
606 std::vector<std::string> categories;
609 categories.push_back(
"ALL");
611 std::vector<std::string> eta_labels;
613 for (std::size_t eta_bin_i = 0; eta_bin_i <
m_statEtaBins.size() + 2; ++eta_bin_i)
622 std::vector<std::size_t> stat =
628 std::size_t stat_stride =
632 std::size_t eta_stride =
636 std::stringstream table_out;
642 for (std::size_t stat_i = 0; stat_i <
kNStat; ++stat_i)
644 std::size_t dest_idx_offset = stat_i * stat_stride;
645 table_out <<
makeTable(stat, dest_idx_offset, eta_stride,
650 .dumpHeader(stat_i == 0)
651 .dumpFooter(stat_i + 1 ==
kNStat)
652 .separateLastRow(
true)
653 .minLabelWidth(max_label_width)
654 .labelPrefix(stat_labels.at(stat_i));
664 std::size_t dest_idx_offset = eta_bin_i * eta_stride;
665 table_out <<
makeTable(stat, dest_idx_offset, stat_stride,
668 eta_labels.at(eta_bin_i))
681 auto [ratio_labels, ratio_def] =
683 std::vector<TableUtils::SummandDefinition>{
719 for (std::size_t ratio_i = 0; ratio_i < ratio_labels.size(); ++ratio_i)
722 ratio_i * ratio_stride,
728 .dumpHeader(ratio_i == 0)
729 .dumpFooter(ratio_i + 1 == ratio_labels.size())
730 .separateLastRow(
true)
731 .minLabelWidth(max_label_width)
732 .labelPrefix(ratio_labels.at(ratio_i));
739 (
m_statEtaBins.size() + 1) * ratio_eta_stride + 0 * ratio_stride,
745 .minLabelWidth(max_label_width)
749 eta_labels.erase(eta_labels.end() - 1);
752 ratio_i * ratio_stride,
760 .separateLastRow(
false)
761 .minLabelWidth(max_label_width)
762 .labelPrefix(ratio_labels.at(ratio_i));
771 std::vector<float>::const_iterator bin_iter = std::upper_bound(
m_statEtaBins.begin(),
775 assert(category_i < m_stat.size());
780 std::size_t out = 0u;
785 assert(category_i < stat.size());
786 out += stat[category_i][counter_i];
793 double eta = -std::log(std::tan(0.5 * track.theta()));
794 auto [enoughMeasurementsPS, tooManyHolesPS, tooManyOutliersPS] =
selectCounts(track,
eta);
795 return enoughMeasurementsPS && !tooManyHolesPS && !tooManyOutliersPS;
Scalar eta() const
pseudorapidity method
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_VERBOSE(x)
#define ATH_MSG_WARNING(x)
virtual void lock()=0
Interface to allow an object to lock itself when made const in SG.
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)
Extension of the interface of the Acts::SurfacePlacementBase for ATLAS.
Gaudi::Property< std::vector< std::size_t > > m_maxStripHoles
Gaudi::Property< double > m_branchStopperAbsEtaMeasCut
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
Gaudi::Property< unsigned int > m_maxPropagationStep
static xAOD::UncalibMeasType measurementType(const detail::RecoTrackContainer::TrackStateProxy &trackState)
ToolHandle< ActsTrk::TrackStatePrinterTool > m_trackStatePrinter
Gaudi::Property< double > m_edgeHoleBorderWidth
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
Gaudi::Property< std::vector< double > > m_ptMax
Gaudi::Property< std::vector< double > > m_chi2CutOff
Gaudi::Property< double > m_seedRefitPtMinFactor
detail::RecoTrackContainer::TrackProxy TrkProxy
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
ToolHandle< ActsTrk::IPixelOnTrackCalibratorTool< detail::RecoTrackStateContainer > > m_pixelCalibTool
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
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< bool > m_recordMaterialStates
Gaudi::Property< std::vector< double > > m_d0Min
virtual StatusCode execute(const EventContext &ctx) const override
@ kNStoppedTracksMaxHoles
@ kNForcedSeedMeasurements
Gaudi::Property< std::vector< std::size_t > > m_maxHgtdOutliers
Gaudi::Property< std::vector< double > > m_z0Max
Gaudi::Property< double > m_absEtaMax
std::size_t computeStatSum(std::size_t seed_collection, EStat counter_i, const EventStats &stat) const
virtual StatusCode initialize() override
Gaudi::Property< std::vector< double > > m_z0Min
void checkCounts(const detail::RecoTrackContainer::TrackProxy &track) const
Gaudi::Property< bool > m_doBranchStopper
static void addCountsAndProperties(detail::RecoTrackContainer &tracksContainer, bool add_counts)
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
ToolHandle< ActsTrk::IStripOnTrackCalibratorTool< detail::RecoTrackStateContainer > > m_stripCalibTool
std::array< bool, 3 > selectCounts(const detail::RecoTrackContainer::TrackProxy &track, double eta) const
std::unique_ptr< CKF_pimpl > m_trackFinder
StatusCode initializeMeasurementSelector()
ServiceHandle< ActsTrk::ITrackingGeometrySvc > m_trackingGeometrySvc
TrackFindingDefaultOptions getDefaultOptions(const EventContext &ctx, const DetectorContextHolder &detContext, const detail::TrackFindingMeasurements &measurements, const Acts::PerigeeSurface *pSurface) const
Get CKF options for first and second pass + pointer to MeasurementSelector.
Acts::CombinatorialKalmanFilterOptions< detail::RecoTrackContainer > TrackFinderOptions
virtual StatusCode finalize() override
ContextUtility m_ctxProvider
Utility to fetch the geometry, magnetic field and calibration context in the event.
std::vector< std::array< unsigned int, kNStat > > EventStats
ToolHandle< ActsTrk::IHGTDOnTrackCalibratorTool< detail::RecoTrackStateContainer > > m_hgtdCalibTool
Gaudi::Property< double > m_twoWayinflateCovarianceFactor
std::size_t nSeedCollections() const
static void updateCounts(const detail::RecoTrackContainer::TrackProxy &track, Acts::ConstTrackStateTypeMap typeFlags, xAOD::UncalibMeasType detType)
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
Gaudi::Property< bool > m_inflateCovarianceTwoWay
Gaudi::Property< std::vector< double > > m_chi2OutlierCutOff
Acts::CombinatorialKalmanFilterBranchStopperResult BranchStopperResult
std::unique_ptr< ActsTrk::IMeasurementSelector > setMeasurementSelector(const EventContext &ctx, const detail::TrackFindingMeasurements &measurements, TrackFinderOptions &options) const
Setup and attach measurement selector to KF options.
bool selectCountsFinal(const detail::RecoTrackContainer::TrackProxy &track) const
Gaudi::Property< std::vector< std::string > > m_seedLabels
const MeasurementRangeList & measurementRanges() const
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
std::unique_ptr< ActsTrk::IMeasurementSelector > getMeasurementSelector(const EventContext &ctx, const ActsTrk::IPixelOnTrackCalibratorTool< detail::RecoTrackStateContainer > *pixelOnTrackCalibratorTool, const ActsTrk::IStripOnTrackCalibratorTool< detail::RecoTrackStateContainer > *stripOnTrackCalibratorTool, const ActsTrk::IHGTDOnTrackCalibratorTool< detail::RecoTrackStateContainer > *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, double edge_hole_border_width)
Acts::TrackContainer< Acts::VectorTrackContainer, Acts::VectorMultiTrajectory > RecoTrackContainer
RecoTrackStateContainer::ConstTrackStateProxy RecoConstTrackStateContainerProxy
Acts::CombinatorialKalmanFilter< Propagator, RecoTrackContainer > CKF
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.
static void addFitterTypeProperty(track_container_t &tracksContainer)
add fitter column to the track container
Acts::GeometryContext geometry
Acts::MagneticFieldContext magField
Acts::CalibrationContext calib
Acts::CombinatorialKalmanFilterExtensions< RecoTrackContainer > ckfExtensions
Acts::TrackSelector trackSelector