Skip to content

Commit

Permalink
try fix exatrkx
Browse files Browse the repository at this point in the history
  • Loading branch information
andiwand committed Jul 1, 2024
1 parent 1defe7c commit 865ffbd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ ActsExamples::ProcessCode TrackFindingFromPrototrackAlgorithm::execute(
extensions.calibrator.connect<&MeasurementCalibratorAdapter::calibrate>(
&calibrator);
extensions.updater.connect<&Acts::GainMatrixUpdater::operator()<
typename TrackContainer::TrackStateBackendContainer>>(&kfUpdater);
typename TrackContainer::TrackStateContainerBackend>>(&kfUpdater);
extensions.measurementSelector.connect<&Acts::MeasurementSelector::select<
typename TrackContainer::TrackStateBackendContainer>>(&measSel);
typename TrackContainer::TrackStateContainerBackend>>(&measSel);

// The source link accessor
ProtoTrackSourceLinkAccessor sourceLinkAccessor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ static const auto pion = Acts::ParticleHypothesis::pion();
using TrackContainer = Acts::TrackContainer<Acts::VectorTrackContainer,
Acts::VectorMultiTrajectory,
Acts::detail::ValueHolder>;
using TrackStateBackendContainer =
using TrackStateContainerBackend =
typename TrackContainer::TrackStateContainerBackend;

struct Detector {
Expand Down Expand Up @@ -203,11 +203,11 @@ struct Fixture {
const {
Acts::CombinatorialKalmanFilterExtensions<TrackContainer> extensions;
extensions.calibrator.template connect<
&testSourceLinkCalibrator<TrackStateBackendContainer>>();
&testSourceLinkCalibrator<TrackStateContainerBackend>>();
extensions.updater.template connect<
&KalmanUpdater::operator()<TrackStateBackendContainer>>(&kfUpdater);
&KalmanUpdater::operator()<TrackStateContainerBackend>>(&kfUpdater);
extensions.measurementSelector.template connect<
&Acts::MeasurementSelector::select<TrackStateBackendContainer>>(
&Acts::MeasurementSelector::select<TrackStateContainerBackend>>(
&measSel);
return extensions;
}
Expand Down

0 comments on commit 865ffbd

Please sign in to comment.