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"
26#include "Acts/Propagator/DirectNavigator.hpp"
40 auto field = std::make_shared<ATLASMagneticFieldWrapper>();
43 Acts::SympyStepper stepper(field);
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"));
51 m_directFitter = std::make_unique<DirectFitter>(std::move(directPropagator),
52 logger().cloneWithSuffix(
"DirectKalmanFitter"));
56 logger().cloneWithSuffix(
"Navigator"));
57 Acts::Propagator<Acts::SympyStepper, Acts::Navigator> propagator(stepper,
59 logger().cloneWithSuffix(
"Prop"));
61 m_fitter = std::make_unique<Fitter>(std::move(propagator),
62 logger().cloneWithSuffix(
"KalmanFitter"));
80 configureMe = extensionTemplate;
82 configureMe.surfaceAccessor.connect<&detail::TrkMeasSurfaceAccessor::operator()>(&
m_trkSurfAcc);
90 configureMe = extensionTemplate;
92 configureMe.surfaceAccessor.connect<&detail::TrkPrepRawDataSurfaceAcc::operator()>(&
m_prdSurfAcc);
104 for (
const auto muonType : {MdtDriftCircleType, RpcStripType, TgcStripType, MMClusterType, sTgcStripType}) {
108 for (
const auto idType: {PixelClusterType, StripClusterType, HGTDClusterType}) {
113 configureMe = extensionTemplate;
114 configureMe.surfaceAccessor.connect<&detail::xAODUncalibMeasSurfAcc::operator()>(&
m_unalibMeasSurfAcc);
117 return StatusCode::SUCCESS;
123 const Acts::MagneticFieldContext& mfContext,
124 const Acts::CalibrationContext& calContext,
125 const Acts::Surface* surface,
129 const auto& kfExtensions =
m_kfExtensions.at(Acts::toUnderlying(slType));
131 Acts::PropagatorPlainOptions propagationOption(tgContext, mfContext);
135 kfExtensions, propagationOption,
141std::unique_ptr< MutableTrackContainer >
143 const Acts::BoundTrackParameters& initialParams,
144 const Acts::GeometryContext& tgContext,
145 const Acts::MagneticFieldContext& mfContext,
146 const Acts::CalibrationContext& calContext,
147 const Acts::Surface* targetSurface)
const{
148 ATH_MSG_DEBUG(
"--> entering KalmanFitter::fit(xAODMeasure...things,TP,)");
150 std::vector<Acts::SourceLink> sourceLinks;
151 sourceLinks.reserve(clusterList.size());
155 return fit(sourceLinks, initialParams, tgContext, mfContext, calContext, targetSurface);
158std::unique_ptr< MutableTrackContainer >
160 const Acts::BoundTrackParameters& initialParams,
161 const Acts::GeometryContext& tgContext,
162 const Acts::MagneticFieldContext& mfContext,
163 const Acts::CalibrationContext& calContext,
164 const Acts::Surface& targetSurface)
const {
166 std::vector<const xAOD::UncalibratedMeasurement*> measList;
169 const auto& sps = seed.sp();
171 const auto& measurements =
sp->measurements();
173 measList.push_back(umeas);
176 return fit(measList, initialParams, tgContext, mfContext, calContext, &targetSurface);
181 const TrackContainer::ConstTrackProxy& ,
183 const Acts::PerigeeSurface& )
const
185 ATH_MSG_ERROR(
"Track refit method not implemented in KalmanFitterTool yet");
186 return StatusCode::FAILURE;
189std::unique_ptr< MutableTrackContainer >
191 const Acts::BoundTrackParameters& initialParams,
192 const Acts::GeometryContext& tgContext,
193 const Acts::MagneticFieldContext& mfContext,
194 const Acts::CalibrationContext& calContext,
195 const Acts::Surface* targetSurface)
const {
197 if (sourceLinks.empty()) {
203 std::shared_ptr<Acts::Surface> pSurface{
nullptr};
205 pSurface = Acts::Surface::makeShared<Acts::PerigeeSurface>(Acts::Vector3::Zero());
206 targetSurface = pSurface.get();
211 Acts::KalmanFitterOptions kfOptions =
configureFit(tgContext, mfContext, calContext,
212 targetSurface, slType);
216 auto tracks = std::make_unique<MutableTrackContainer>(std::move(trackContainerBackEnd),
217 std::move(multiTrajBackEnd));
219 bool fitSuccess =
false;
222 std::vector<const Acts::Surface*> surfaces;
223 surfaces.reserve(sourceLinks.size());
226 std::ranges::for_each(sourceLinks, [
this, &surfaces](
const Acts::SourceLink& sl) {
232 std::ranges::for_each(sourceLinks, [
this, &surfaces](
const Acts::SourceLink& sl) {
238 std::ranges::for_each(sourceLinks, [
this, &surfaces](
const Acts::SourceLink& sl) {
244 ATH_MSG_ERROR(
"Unsupported source link type for KalmanFitterTool::fit");
248 fitSuccess =
m_directFitter->fit(sourceLinks.begin(), sourceLinks.end(),
249 initialParams, kfOptions, surfaces, *tracks.get()).ok();
253 fitSuccess =
m_fitter->fit(sourceLinks.begin(), sourceLinks.end(),
254 initialParams, kfOptions, *tracks.get()).ok();
263 for (
auto trkProxy : *tracks) {
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_VERBOSE(x)
std::unique_ptr< const Acts::Logger > makeActsAthenaLogger(IMessageSvc *svc, const std::string &name, int level, std::optional< std::string > parent_name)
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::ITrackingGeometrySvc *trackGeoSvc)
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.
void calibrate(const Acts::GeometryContext &gctx, const Acts::CalibrationContext &cctx, const Acts::SourceLink &sl, const MutableTrackStateBackend::TrackStateProxy trackState) const
: Interface method for the Acts fitter to calibrate the trajectory track states from the source link ...
Helper class to access the Acts::surface associated with an Uncalibrated xAOD measurement.
virtual void calibrateSourceLink(const Acts::GeometryContext &geoctx, const Acts::CalibrationContext &cctx, const Acts::SourceLink &link, ActsTrk::MutableTrackStateBackend::TrackStateProxy state) const =0
Function that's hooked to the calibration delegate of the implemented Acts fitters.
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
UncalibMeasType
Define the type of the uncalibrated measurement.
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