ATLAS Offline Software
Loading...
Searching...
No Matches
KalmanFitterTool.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3*/
4
6
7// ACTS
8#include "Acts/Propagator/SympyStepper.hpp"
9#include "Acts/Propagator/Navigator.hpp"
10#include "Acts/Propagator/Propagator.hpp"
11#include "Acts/Surfaces/PerigeeSurface.hpp"
12#include "Acts/Surfaces/Surface.hpp"
13#include "Acts/TrackFitting/KalmanFitter.hpp"
14#include "Acts/Utilities/Helpers.hpp"
15#include "Acts/Utilities/Logger.hpp"
16#include "Acts/Utilities/CalibrationContext.hpp"
17#include "Acts/EventData/VectorTrackContainer.hpp"
18
21
22// PACKAGE
24#include "ActsInterop/Logger.h"
25
26#include "Acts/Propagator/DirectNavigator.hpp"
27
28namespace ActsTrk {
29
30
32
33 ATH_MSG_DEBUG(name() << "::" << __FUNCTION__);
36 ATH_CHECK(m_geometryConvTool.retrieve());
37 ATH_CHECK(m_ROTcreator.retrieve(EnableTool{!m_ROTcreator.empty()}));
38 m_logger = makeActsAthenaLogger(this, "KalmanRefit");
39
40 auto field = std::make_shared<ATLASMagneticFieldWrapper>();
41
42 // Fitter
43 Acts::SympyStepper stepper(field);
45 // Direct Fitter
46 Acts::DirectNavigator directNavigator( logger().cloneWithSuffix("DirectNavigator") );
47 Acts::Propagator<Acts::SympyStepper, Acts::DirectNavigator> directPropagator(std::move(stepper),
48 std::move(directNavigator),
49 logger().cloneWithSuffix("DirectPropagator"));
50
51 m_directFitter = std::make_unique<DirectFitter>(std::move(directPropagator),
52 logger().cloneWithSuffix("DirectKalmanFitter"));
53
54 } else {
55 Acts::Navigator navigator( Acts::Navigator::Config{ m_trackingGeometryTool->trackingGeometry() },
56 logger().cloneWithSuffix("Navigator"));
57 Acts::Propagator<Acts::SympyStepper, Acts::Navigator> propagator(stepper,
58 std::move(navigator),
59 logger().cloneWithSuffix("Prop"));
60
61 m_fitter = std::make_unique<Fitter>(std::move(propagator),
62 logger().cloneWithSuffix("KalmanFitter"));
63 }
64
66 m_outlierFinder.StateChiSquaredPerNumberDoFCut = m_option_outlierChi2Cut;
68
69 FitterExtension_t extensionTemplate{};
70 extensionTemplate.outlierFinder.connect<&detail::FitterHelperFunctions::ATLASOutlierFinder::operator()<MutableTrackStateBackend>>(&m_outlierFinder);
71 extensionTemplate.reverseFilteringLogic.connect<&detail::FitterHelperFunctions::ReverseFilteringLogic::operator()<MutableTrackStateBackend>>(&m_reverseFilteringLogic);
74
76 {
78
80 configureMe = extensionTemplate;
82 configureMe.surfaceAccessor.connect<&detail::TrkMeasSurfaceAccessor::operator()>(&m_trkSurfAcc);
83 }
85 {
88
90 configureMe = extensionTemplate;
92 configureMe.surfaceAccessor.connect<&detail::TrkPrepRawDataSurfaceAcc::operator()>(&m_prdSurfAcc);
93 }
95 {
98
100 configureMe = extensionTemplate;
101 configureMe.surfaceAccessor.connect<&detail::xAODUncalibMeasSurfAcc::operator()>(&m_unalibMeasSurfAcc);
102 configureMe.calibrator.connect<&xAODUnCalibrator_t::calibrate>(&m_uncalibMeasCalibrator);
103 }
104 return StatusCode::SUCCESS;
105}
106
107
109 KalmanFitterTool::configureFit(const Acts::GeometryContext& tgContext,
110 const Acts::MagneticFieldContext& mfContext,
111 const Acts::CalibrationContext& calContext,
112 const Acts::Surface* surface,
113 detail::SourceLinkType slType) const {
114
115
116 const auto& kfExtensions = m_kfExtensions[Acts::toUnderlying(slType)];
117
118 Acts::PropagatorPlainOptions propagationOption(tgContext, mfContext);
119 propagationOption.maxSteps = m_option_maxPropagationStep;
120 // Set the KalmanFitter options
121 return FitterOptions_t{tgContext, mfContext, calContext,
122 kfExtensions, propagationOption,
123 surface};
124}
125
126// fit a set of PrepRawData objects
127// --------------------------------
128std::unique_ptr< MutableTrackContainer >
129KalmanFitterTool::fit(const std::vector< const xAOD::UncalibratedMeasurement*> & clusterList,
130 const Acts::BoundTrackParameters& initialParams,
131 const Acts::GeometryContext& tgContext,
132 const Acts::MagneticFieldContext& mfContext,
133 const Acts::CalibrationContext& calContext,
134 const Acts::Surface* targetSurface) const{
135 ATH_MSG_DEBUG("--> entering KalmanFitter::fit(xAODMeasure...things,TP,)");
136
137 std::vector<Acts::SourceLink> sourceLinks;
138 sourceLinks.reserve(clusterList.size());
139
140 detail::MeasurementCalibratorBase::pack(clusterList, sourceLinks);
141
142 return fit(sourceLinks, initialParams, tgContext, mfContext, calContext, targetSurface);
143}
144
145std::unique_ptr< MutableTrackContainer >
147 const Acts::BoundTrackParameters& initialParams,
148 const Acts::GeometryContext& tgContext,
149 const Acts::MagneticFieldContext& mfContext,
150 const Acts::CalibrationContext& calContext,
151 const Acts::Surface& targetSurface) const {
152
153 std::vector<const xAOD::UncalibratedMeasurement*> measList;
154 measList.reserve(6);
155
156 const auto& sps = seed.sp();
157 for (const xAOD::SpacePoint* sp : sps) {
158 const auto& measurements = sp->measurements();
159 for (const xAOD::UncalibratedMeasurement *umeas : measurements) {
160 measList.push_back(umeas);
161 }
162 }
163 return fit(measList, initialParams, tgContext, mfContext, calContext, &targetSurface);
164}
165
166 StatusCode
167 KalmanFitterTool::fit(const EventContext& /*ctx*/,
168 const TrackContainer::ConstTrackProxy& /*track*/,
169 MutableTrackContainer& /*trackContainer*/,
170 const Acts::PerigeeSurface& /*pSurface*/) const
171 {
172 ATH_MSG_ERROR("Track refit method not implemented in KalmanFitterTool yet");
173 return StatusCode::FAILURE;
174 }
175
176std::unique_ptr< MutableTrackContainer >
177KalmanFitterTool::fit(const std::vector<Acts::SourceLink>& sourceLinks,
178 const Acts::BoundTrackParameters& initialParams,
179 const Acts::GeometryContext& tgContext,
180 const Acts::MagneticFieldContext& mfContext,
181 const Acts::CalibrationContext& calContext,
182 const Acts::Surface* targetSurface) const {
183
184 if (sourceLinks.empty()) {
185 ATH_MSG_DEBUG("No measurements given. Nothing to do");
186 return nullptr;
187 }
188
189 // Construct a perigee surface as the target surface if none is provided
190 std::shared_ptr<Acts::Surface> pSurface{nullptr};
191 if (!targetSurface){
192 pSurface = Acts::Surface::makeShared<Acts::PerigeeSurface>(Acts::Vector3::Zero());
193 targetSurface = pSurface.get();
194 }
195
197
198 Acts::KalmanFitterOptions kfOptions = configureFit(tgContext, mfContext, calContext,
199 targetSurface, slType);
200
201 ActsTrk::MutableTrackBackend trackContainerBackEnd;
202 ActsTrk::MutableTrackStateBackend multiTrajBackEnd;
203 auto tracks = std::make_unique<MutableTrackContainer>(std::move(trackContainerBackEnd),
204 std::move(multiTrajBackEnd));
205
206 bool fitSuccess = false;
208
209 std::vector<const Acts::Surface*> surfaces;
210 surfaces.reserve(sourceLinks.size());
211 switch (slType) {
213 std::ranges::for_each(sourceLinks, [this, &surfaces](const Acts::SourceLink& sl) {
214 surfaces.push_back(m_trkSurfAcc(sl));
215 });
216 break;
217 }
219 std::ranges::for_each(sourceLinks, [this, &surfaces](const Acts::SourceLink& sl) {
220 surfaces.push_back(m_prdSurfAcc(sl));
221 });
222 break;
223 }
225 std::ranges::for_each(sourceLinks, [this, &surfaces](const Acts::SourceLink& sl) {
226 surfaces.push_back(m_unalibMeasSurfAcc(sl));
227 });
228 break;
229 }
230 default:
231 ATH_MSG_ERROR("Unsupported source link type for KalmanFitterTool::fit");
232 return nullptr;
233 }
234
235 fitSuccess = m_directFitter->fit(sourceLinks.begin(), sourceLinks.end(),
236 initialParams, kfOptions, surfaces, *tracks.get()).ok();
237
238 } else {
239
240 fitSuccess = m_fitter->fit(sourceLinks.begin(), sourceLinks.end(),
241 initialParams, kfOptions, *tracks.get()).ok();
242 }
243
244 if (!fitSuccess) {
245 ATH_MSG_VERBOSE("Kalman Fitter on Seed has failed");
246 return nullptr;
247 }
248
250 for (auto trkProxy : *tracks) {
252 }
253
254 return tracks;
255}
256
257}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
#define ATH_MSG_VERBOSE(x)
#define ATH_MSG_DEBUG(x)
static Double_t sp
std::unique_ptr< const Acts::Logger > makeActsAthenaLogger(IMessageSvc *svc, const std::string &name, int level, std::optional< std::string > parent_name)
ActsTrk::detail::FitterHelperFunctions::ReverseFilteringLogic m_reverseFilteringLogic
Acts::KalmanFitterExtensions< MutableTrackStateBackend > FitterExtension_t
Abbrivation of the fitter extensions.
detail::TrkPrepRawDataCalibrator m_prdCalibrator
Calibrator for the Trk::PrepRawData track states (legacy EDM).
Gaudi::Property< bool > m_useDirectNavigation
detail::TrkPrepRawDataSurfaceAcc m_prdSurfAcc
Surface accessor for the Trk::PrepRawData track states (legacy EDM).
detail::xAODUncalibMeasSurfAcc m_unalibMeasSurfAcc
Accessor to fetch surfaces from the xAOD::UncalibratedMeasurements (Phase-II EDM).
virtual std::unique_ptr< ActsTrk::MutableTrackContainer > fit(const std::vector< const xAOD::UncalibratedMeasurement * > &clusterList, const Acts::BoundTrackParameters &initialParams, const Acts::GeometryContext &tgContext, const Acts::MagneticFieldContext &mfContext, const Acts::CalibrationContext &calContext, const Acts::Surface *targetSurface=nullptr) const override
fit a set of xAOD uncalibrated Measurements
std::unique_ptr< const Acts::Logger > m_logger
logging instance
std::unique_ptr< Fitter > m_fitter
ActsTrk::detail::FitterHelperFunctions::ATLASOutlierFinder m_outlierFinder
ToolHandle< Trk::IRIO_OnTrackCreator > m_ROTcreator
std::array< FitterExtension_t, s_nExtensions > m_kfExtensions
PublicToolHandle< IGeometryRealmConvTool > m_geometryConvTool
detail::TrkMeasSurfaceAccessor m_trkSurfAcc
Accessor to fetch surfaces from the Trk::MeasurementBase track states (legacy EDM).
Acts::KalmanFitterOptions< MutableTrackStateBackend > FitterOptions_t
Abbrivation of the configuration to launch the fit.
Gaudi::Property< double > m_option_outlierChi2Cut
PublicToolHandle< ITrackingGeometryTool > m_trackingGeometryTool
std::unique_ptr< DirectFitter > m_directFitter
const Acts::Logger & logger() const
Private access to the logger.
detail::TrkMeasurementCalibrator m_trkCalibrator
Calibrator for the Trk::MeasurementBase track states (legacy EDM).
virtual StatusCode initialize() override
xAODUnCalibrator_t m_uncalibMeasCalibrator
ToolHandle< IExtrapolationTool > m_extrapolationTool
Gaudi::Property< double > m_option_ReverseFilteringPt
Gaudi::Property< int > m_option_maxPropagationStep
FitterOptions_t configureFit(const Acts::GeometryContext &tgContext, const Acts::MagneticFieldContext &mfContext, const Acts::CalibrationContext &calContext, const Acts::Surface *surface, detail::SourceLinkType slType) const
Helper method to pack the last information (Calibration, Alignment, B-Field, etc.) for the fit.
static Acts::SourceLink pack(const Ptr_t &measurement)
Pack the measurement type pointer to an Acts::SourceLink including the intermediate conversion into a...
static SourceLinkType getType(const Acts::SourceLink &sl)
Returns the enumeration corresponding to the object type cached within the Acts::SourceLink.
void calibrate(const Acts::GeometryContext &geoctx, const Acts::CalibrationContext &cctx, const Acts::SourceLink &link, TrackStateProxy state) const
static OnTrackCalibrator NoCalibration(const ActsTrk::ITrackingGeometryTool *trackGeoTool)
Helper class to access the Acts::Surface for a given Acts::SourceLink which is poiniting to a Trk::Me...
void calibrate(const Acts::GeometryContext &gctx, const Acts::CalibrationContext &cctx, const Acts::SourceLink &sl, proxy_t trackState) const
Calibrator delegate implementation to calibrate the ActsTrk fit from Trk::MeasurementBase objects.
Class to calibrate the Acts track states with uncalibrated Trk::PrepRaw data objects.
void calibrate(const Acts::GeometryContext &gctx, const Acts::CalibrationContext &cctx, const Acts::SourceLink &sl, proxy_t trackState) const
Calibrator delegate implementation to calibrate the ActsTrk fit from Trk::PrepRawData objects.
Helper class to access the Acts::surface associated with a Trk::PrepRawData measurement.
Helper class to access the Acts::surface associated with an Uncalibrated xAOD measurement.
Acts::Result< void > gainMatrixUpdate(const Acts::GeometryContext &gctx, typename trajectory_t::TrackStateProxy trackState, const Acts::Logger &logger)
Acts::Result< void > mbfSmoother(const Acts::GeometryContext &gctx, trajectory_t &trajectory, size_t entryIndex, const Acts::Logger &logger)
SourceLinkType
Enumeration to distinguish between the ATLAS EDM -> Acts::SourceLink variants.
@ xAODUnCalibMeas
UnCalibrated Trk::PrepRawData objects.
@ TrkPrepRawData
Calibrated Trk::MeasurementBase objects.
The AlignStoreProviderAlg loads the rigid alignment corrections and pipes them through the readout ge...
Acts::VectorMultiTrajectory MutableTrackStateBackend
Acts::TrackContainer< MutableTrackBackend, MutableTrackStateBackend, Acts::detail::ValueHolder > MutableTrackContainer
Acts::VectorTrackContainer MutableTrackBackend
UncalibratedMeasurement_v1 UncalibratedMeasurement
Define the version of the uncalibrated measurement class.
@ KalmanFitter
tracks produced by the Kalman Fitter
static void addFitterTypeProperty(track_container_t &tracksContainer)
add fitter column to the track container
static void setFitterType(trackproxy_t &trackProxy, xAOD::TrackFitter fitterType)
set fitter type of a track