11#include "Acts/Definitions/Units.hpp"
12#include "Acts/Propagator/detail/JacobianEngine.hpp"
18#include "GaudiKernel/PhysicalConstants.h"
26#include <Acts/Definitions/TrackParametrization.hpp>
27#include <Acts/Utilities/Helpers.hpp>
28#include <Acts/Utilities/MathHelpers.hpp>
29#include <Acts/Definitions/Tolerance.hpp>
33 constexpr float toFloat(
const double x) {
35 if (Acts::abs(
x) < Acts::s_epsilon) {
38 constexpr double min = 3.*
static_cast<double>(std::numeric_limits<float>::min());
39 constexpr double max =
static_cast<double>(std::numeric_limits<float>::max());
40 const double clampedX = std::copysign(std::clamp(Acts::abs(
x),
min,
max),
x);
42 return static_cast<float>(clampedX);
44 template <
int nRowsMax,
int nMatSize>
45 inline void lowerTriangleToVector(
const Acts::SquareMatrix<nMatSize>& covMatrix,
46 std::vector<float>&
vec) {
48 static_assert(nRowsMax > 0);
49 static_assert(nMatSize > 0);
50 constexpr int nRows = std::min(nRowsMax, nMatSize);
52 vec.reserve(Acts::sumUpToN(nRows));
53 for (
int i = 0;
i <
nRows; ++
i) {
54 for (
int j = 0;
j <=
i; ++
j) {
60 template <
int nRowsMax,
int nMatSize>
61 inline void lowerTriangleToVectorScaleLastRow(
const Acts::SquareMatrix<nMatSize>& covMatrix,
62 std::vector<float>&
vec,
63 const double last_element_scale) {
65 static_assert(nRowsMax > 0);
66 static_assert(nMatSize > 0);
67 constexpr int nRows = std::min(nRowsMax, nMatSize);
68 vec.reserve(Acts::sumUpToN(nRows));
69 for (
int i = 0;
i <
nRows; ++
i) {
70 for (
int j = 0;
j <=
i; ++
j) {
72 (
i == Acts::eBoundQOverP ||
j == Acts::eBoundQOverP ?
73 last_element_scale : 1.);
74 vec.emplace_back(toFloat(covVal));
86 for (
unsigned short& elm : ret) {
108 cfg.resolvePassive =
false;
109 cfg.resolveMaterial =
true;
110 cfg.resolveSensitive =
true;
111 auto navigtor_logger =
logger->cloneWithSuffix(
"Navigator");
112 m_propagator = std::make_unique<Propagator>(
Stepper(std::make_shared<ATLASMagneticFieldWrapper>()),
113 Navigator(cfg, std::move(navigtor_logger)),
117 return StatusCode::SUCCESS;
121 const EventContext& ctx,
122 const ActsTrk::TrackContainer::ConstTrackProxy& track,
123 const Acts::Surface& perigeeSurface,
125 using namespace Acts::UnitLiterals;
142 std::vector<float> tmp_cov_vector;
143 std::vector<ActsTrk::TrackStateBackend::ConstTrackStateProxy::IndexType> tmp_param_state_idx;
144 tmp_param_state_idx.reserve(30);
146 std::vector<std::vector<float>> parametersVec;
150 Acts::BoundTrackParameters perigeeParam = [&] {
151 if (&perigeeSurface == &track.referenceSurface()) {
152 return track.createParametersAtReference();
158 Acts::BoundVector boundParams = perigeeParam.parameters();
160 boundParams[Acts::eBoundLoc1],
161 boundParams[Acts::eBoundPhi],
162 boundParams[Acts::eBoundTheta],
163 boundParams[Acts::eBoundQOverP] * 1_MeV);
165 if (perigeeParam.covariance().has_value()) {
166 lowerTriangleToVectorScaleLastRow<5>(perigeeParam.covariance().value(), tmp_cov_vector, 1_MeV);
181 const Acts::ParticleHypothesis& hypothesis = track.particleHypothesis();
183 constexpr float inv_1_MeV = 1 / 1_MeV;
189 gatherTrackSummaryData(track,
190 measurementToSummaryType,
197 std::array<std::tuple<uint8_t, uint8_t, uint8_t, bool>, 4> copy_summary {
218 for (
auto [src_region, dest_xaod_summary_layer, dest_xaod_summary_hits, add_outlier] : copy_summary) {
219 setSummaryValue(track_particle,
222 setSummaryValue(track_particle,
229 setSummaryValue(track_particle,
233 setSummaryValue(track_particle,
236 setSummaryValue(track_particle,
242 setSummaryValue(track_particle,
246 setSummaryValue(track_particle,
249 setSummaryValue(track_particle,
252 setSummaryValue(track_particle,
255 setSummaryValue(track_particle,
259 setSummaryValue(track_particle,
264 std::array<unsigned int, 4> expect_layer_pattern{};
275 : std::array<unsigned int, 4>{0u, 0u, 0u, 0u});
279 setSummaryValue(track_particle,
280 static_cast<uint8_t
>((expect_layer_pattern[0] & (1<<0)) != 0),
282 setSummaryValue(track_particle,
283 static_cast<uint8_t
>((expect_layer_pattern[0] & (1<<1)) != 0),
285 setSummaryValue(track_particle,
288 setSummaryValue(track_particle,
291 setSummaryValue(track_particle,
294 setSummaryValue(track_particle,
297 setSummaryValue(track_particle,
300 setSummaryValue(track_particle,
305 setSummaryValue(track_particle,
308 setSummaryValue(track_particle,
311 setSummaryValue(track_particle,
314 setSummaryValue(track_particle,
319 setSummaryValue(track_particle,
320 static_cast<uint8_t
>(biased_chi2_variance > 0.
321 ? std::min(
static_cast<unsigned int>(std::sqrt(biased_chi2_variance) * 100), 255u)
325 setSummaryValue(track_particle,
332 tmp_param_state_idx[1] = tmp_param_state_idx.back();
333 tmp_param_state_idx.erase(tmp_param_state_idx.begin() + 2, tmp_param_state_idx.end());
337 parametersVec.clear();
338 parametersVec.reserve(tmp_param_state_idx.size());
340 for (std::vector<ActsTrk::TrackStateBackend::ConstTrackStateProxy::IndexType>::const_reverse_iterator
341 idx_iter = tmp_param_state_idx.rbegin();
342 idx_iter != tmp_param_state_idx.rend();
344 ActsTrk::TrackStateBackend::ConstTrackStateProxy
345 state = track.container().trackStateContainer().getTrackState(*idx_iter);
346 const Acts::BoundTrackParameters actsParam = track.createParametersFromState(state);
348 Acts::Vector3 position = actsParam.position(gctx.
context());
349 Acts::Vector3 momentum = actsParam.momentum();
352 for (
unsigned int i = 0; i < momentum.rows(); ++i) {
353 momentum(i) *= inv_1_MeV;
356 if (actsParam.covariance()) {
358 Acts::GeometryContext tgContext = gctx.
context();
360 magnFieldVect.setZero();
361 fieldCache.
getField(position.data(), magnFieldVect.data());
364 using namespace Acts::UnitLiterals;
365 magnFieldVect *= 1000_T;
369 if (curvilinear_cov_result.has_value()) {
370 Acts::BoundMatrix& curvilinear_cov = curvilinear_cov_result.value();
373 for (
unsigned int col_i = 0; col_i < 4; ++col_i) {
374 curvilinear_cov(col_i, 4) *= 1_MeV;
375 curvilinear_cov(4, col_i) *= 1_MeV;
377 curvilinear_cov(4, 4) *= (1_MeV * 1_MeV);
379 std::size_t param_idx = parametersVec.size();
381 lowerTriangleToVector<5>(curvilinear_cov, tmp_cov_vector);
382 if (tmp_cov_vector.size() != 15) {
383 ATH_MSG_ERROR(
"Invalid size of lower triangle cov " << tmp_cov_vector.size() <<
" != 15"
384 <<
" input matrix : " << curvilinear_cov.rows() <<
" x " << curvilinear_cov.cols());
389 parametersVec.emplace_back(std::vector<float>{
390 static_cast<float>(position[0]),
static_cast<float>(position[1]),
static_cast<float>(position[2]),
391 static_cast<float>(momentum[0]),
static_cast<float>(momentum[1]),
static_cast<float>(momentum[2]) });
393 for (
const std::vector<float>& param : parametersVec) {
394 if (param.size() != 6) {
395 ATH_MSG_ERROR(
"Invalid size of param element " << param.size() <<
" != 6");
400 if( !parametersVec.empty() ) {
406 return StatusCode::SUCCESS;
410 const ActsTrk::TrackContainer::ConstTrackProxy& track,
411 const Acts::Surface& perigee_surface)
const {
412 const Acts::BoundTrackParameters trackParam = track.createParametersAtReference();
414 Acts::Result<Acts::BoundTrackParameters>
418 Acts::Direction::Backward(),
420 if (!perigeeParam.ok()) {
421 ATH_MSG_WARNING(
"Failed to extrapolate to perigee, started from \n" << trackParam <<
" " << trackParam.referenceSurface().name());
425 return perigeeParam.value();
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_WARNING(x)
std::vector< size_t > vec
std::unique_ptr< const Acts::Logger > makeActsAthenaLogger(IMessageSvc *svc, const std::string &name, int level, std::optional< std::string > parent_name)
#define ATLAS_THREAD_SAFE
Acts::GeometryContext context() const
Acts::BoundTrackParameters parametersAtPerigee(const EventContext &ctx, const ActsTrk::TrackContainer::ConstTrackProxy &track, const Acts::Surface &perigee_surface) const
Gaudi::Property< double > m_paramExtrapolationParLimit
ToolHandle< ActsTrk::IExtrapolationTool > m_extrapolationTool
Gaudi::Property< bool > m_firstAndLastParamOnly
Gaudi::Property< bool > m_expectIfPixelContributes
std::unique_ptr< Propagator > m_propagator
Gaudi::Property< double > m_pixelExpectLayerPathLimitInMM
Acts::EigenStepper<> Stepper
Gaudi::Property< int > m_trackFitter
PublicToolHandle< MuonR4::ITrackSummaryTool > m_muonSummaryTool
virtual StatusCode convert(xAOD::TrackParticle &trackParticle, const EventContext &ctx, const ActsTrk::TrackContainer::ConstTrackProxy &track, const Acts::Surface &perigeeSurface, const InDet::BeamSpotData *beamspotData=nullptr) const override
Gaudi::Property< unsigned long > m_patternRecognitionInfo
virtual StatusCode initialize() override
SG::ReadCondHandleKey< AtlasFieldCacheCondObj > m_fieldCacheCondObjInputKey
PublicToolHandle< ActsTrk::ITrackingGeometryTool > m_trackingGeometryTool
Acts::Navigator Navigator
Gaudi::Property< bool > m_computeExpectedLayerPattern
Helper class to gather hit summary information for e.g.
DetectorRegion
Regions for which hit counts are computed.
uint8_t contributingSharedHits(DetectorRegion region) const
return the number of shared hits in a certain detector region.
uint8_t sum(DetectorRegion region, uint8_t layer) const
return the total number of hits, outliers, and/or shared hits in the givrn detector region and layer.
uint8_t contributingOutlierHits(DetectorRegion region) const
return the number of outliers in a certain detector region.
uint8_t contributingHits(DetectorRegion region) const
return the number of hits in a certain detector region.
uint8_t contributingLayers(DetectorRegion region) const
return the number of layers contributing to the hit collection in the given detector region.
Helper class to gather statistics and compute the biased variance.
double biasedVariance() const
void getInitializedCache(MagField::AtlasFieldCache &cache) const
get B field cache for evaluation as a function of 2-d or 3-d position.
float beamTilt(int i) const noexcept
Returns the beam sigma for the i+3-th error matrix element (the 'tilt').
Local cache for magnetic field (based on MagFieldServices/AtlasFieldSvcTLS.h).
void getField(const double *ATH_RESTRICT xyz, double *ATH_RESTRICT bxyz, double *ATH_RESTRICT deriv=nullptr)
get B field value at given position xyz[3] is in mm, bxyz[3] is in kT if deriv[9] is given,...
void setTrackParameterCovarianceMatrix(unsigned int index, std::vector< float > &cov)
Set the cov matrix of the parameter at 'index', using a vector of floats.
void setTrackParameters(std::vector< std::vector< float > > ¶meters)
Set the parameters via the passed vector of vectors.
void setBeamlineTiltX(float tiltX)
void setParameterPosition(unsigned int index, ParameterPosition pos)
Set the 'position' (i.e. where it is in ATLAS) of the parameter at 'index', using the ParameterPositi...
void setFitQuality(float chiSquared, float numberDoF)
Set the 'Fit Quality' information.
void setBeamlineTiltY(float tiltY)
void setDefiningParameters(float d0, float z0, float phi0, float theta, float qOverP)
Set the defining parameters.
void setParticleHypothesis(const ParticleHypothesis hypo)
Method for setting the particle type, using the ParticleHypothesis enum.
void setSummaryValue(uint8_t &value, const SummaryType &information)
Set method for TrackSummary values.
void setTrackFitter(const TrackFitter fitter)
Method for setting the fitter, using the TrackFitter enum.
void setPatternRecognitionInfo(const std::bitset< xAOD::NumberOfTrackRecoInfo > &patternReco)
Method setting the pattern recognition algorithm, using a bitset.
void setDefiningParametersCovMatrixVec(const std::vector< float > &cov)
static Root::TMsgLogger logger("iLumiCalc")
xAOD::ParticleHypothesis convert(Acts::ParticleHypothesis h)
std::array< unsigned int, 4 > expectedLayerPattern(const EventContext &ctx, const ActsTrk::IExtrapolationTool &extrapolator, const Acts::BoundTrackParameters &perigee_parameters, double pathLimit)
Extrapolate from the perigee outwards and gather information which detector layers should have hits.
std::optional< Acts::BoundMatrix > convertActsBoundCovToCurvilinearParam(const Acts::GeometryContext &tgContext, const Acts::BoundTrackParameters ¶m, const Acts::Vector3 &magnFieldVect, const Acts::ParticleHypothesis &particle_hypothesis)
Convert the covariance of the given Acts track parameters into curvilinear parameterisation.
The AlignStoreProviderAlg loads the rigid alignment corrections and pipes them through the readout ge...
Eigen::Matrix< double, 3, 1 > Vector3D
unsigned int constexpr nRows
const T * get(const ReadCondHandleKey< T > &key, const EventContext &ctx)
Convenience function to retrieve an object given a ReadCondHandleKey.
float j(const xAOD::IParticle &, const xAOD::TrackMeasurementValidation &hit, const Eigen::Matrix3d &jab_inv)
TrackFitter
Enums to identify who created this track and which properties does it have.
TrackParticle_v1 TrackParticle
Reference the current persistent version:
SummaryType
Enumerates the different types of information stored in Summary.
@ numberOfInnermostPixelLayerSharedEndcapHits
number of Pixel 0th layer endcap hits shared by several tracks.
@ expectInnermostPixelLayerHit
Do we expect a 0th-layer barrel hit for this track?
@ numberOfPixelHoles
number of pixel layers on track with absence of hits [unit8_t].
@ numberOfInnermostPixelLayerEndcapHits
these are the hits in the 0th pixel layer endcap [unit8_t].
@ numberOfNextToInnermostPixelLayerSharedHits
number of Pixel 1st layer barrel hits shared by several tracks.
@ numberOfNextToInnermostPixelLayerSharedEndcapHits
number of Pixel 1st layer endcap hits shared by several tracks.
@ numberOfContribPixelLayers
number of contributing layers of the pixel detector [unit8_t].
@ standardDeviationOfChi2OS
100 times the standard deviation of the chi2 from the surfaces [unit8_t].
@ numberOfInnermostPixelLayerEndcapOutliers
number of 0th layer endcap outliers
@ numberOfInnermostPixelLayerSharedHits
number of Pixel 0th layer barrel hits shared by several tracks.
@ numberOfPixelOutliers
these are the pixel outliers, including the b-layer [unit8_t].
@ numberOfContribPixelBarrelFlatLayers
number of contributing barrel flat layers of the pixel detector [unit8_t].
@ numberOfTrackSummaryTypes
@ numberOfNextToInnermostPixelLayerHits
these are the hits in the 1st pixel barrel layer
@ numberOfContribPixelBarrelInclinedLayers
number of contributing barrel inclined layers of the pixel detector [unit8_t].
@ numberOfPixelEndcapHits
these are the pixel hits, in the endcap layers [unit8_t].
@ numberOfInnermostPixelLayerOutliers
number of 0th layer barrel outliers
@ numberOfOutliersOnTrack
number of measurements flaged as outliers in TSOS [unit8_t].
@ numberOfNextToInnermostPixelLayerEndcapHits
these are the hits in the 0.5th and 1st pixel layer endcap rings [unit8_t].
@ expectNextToInnermostPixelLayerHit
Do we expect a 1st-layer barrel hit for this track?
@ numberOfContribPixelEndcap
number of contributing endcap layers of the pixel detector [unit8_t].
@ numberOfNextToInnermostPixelLayerEndcapOutliers
number of 1st layer endcap disk outliers
@ numberOfSCTHits
number of hits in SCT [unit8_t].
@ numberOfPixelBarrelInclinedHits
these are the pixel hits, in the barrel inclined layers [unit8_t].
@ numberOfSCTOutliers
number of SCT outliers [unit8_t].
@ numberOfPixelBarrelFlatHits
these are the pixel hits, in the barrel flat layers [unit8_t].
@ numberOfInnermostPixelLayerHits
these are the hits in the 0th pixel barrel layer
@ numberOfPixelHits
these are the pixel hits, including the b-layer [unit8_t].
@ numberOfPixelSharedHits
number of Pixel all-layer hits shared by several tracks [unit8_t].
@ numberOfSCTSharedHits
number of SCT hits shared by several tracks [unit8_t].
@ numberOfNextToInnermostPixelLayerOutliers
number of 1st pixel layer barrel outliers
@ numberOfSCTHoles
number of SCT holes [unit8_t].
@ FirstMeasurement
Parameter defined at the position of the 1st measurement.
@ LastMeasurement
Parameter defined at the position of the last measurement.
static std::array< unsigned int, 4 > get(const track_proxy_t &track)
static bool exists(track_container_t &trackContainer)