ATLAS Offline Software
Loading...
Searching...
No Matches
GeometryRealmConvTool.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4
6
9
11// ACTS
12#include "Acts/Surfaces/StrawSurface.hpp"
13#include "Acts/Surfaces/PerigeeSurface.hpp"
14#include "Acts/Surfaces/PlaneSurface.hpp"
15
16#include "Acts/Surfaces/RectangleBounds.hpp"
17#include "Acts/Surfaces/TrapezoidBounds.hpp"
18#include "Acts/Surfaces/CylinderBounds.hpp"
19#include "Acts/Surfaces/DiscBounds.hpp"
20#include "Acts/Surfaces/LineBounds.hpp"
21#include "Acts/Surfaces/RadialBounds.hpp"
22#include "Acts/Surfaces/DiamondBounds.hpp"
23
24#include "Acts/Definitions/Units.hpp"
25#include "Acts/EventData/BoundTrackParameters.hpp"
26#include "Acts/EventData/VectorTrackContainer.hpp"
27#include "Acts/EventData/TransformationHelpers.hpp"
28#include "Acts/Geometry/TrackingGeometry.hpp"
29#include "Acts/Propagator/detail/JacobianEngine.hpp"
30#include "Acts/Surfaces/detail/PlanarHelper.hpp"
31
33#include "Acts/EventData/TrackStatePropMask.hpp"
34#include "Acts/EventData/SourceLink.hpp"
35
46
48
49using namespace Acts::UnitLiterals;
50using SurfacePtr_t = ActsTrk::GeometryRealmConvTool::SurfacePtr_t;
51
52namespace ActsTrk{
55 if (parent() != toolSvc()) {
56 ATH_MSG_ERROR("The tool is initialized as a private tool but should be public");
57 return StatusCode::FAILURE;
58 }
60 m_trackingGeometryTool->trackingGeometry()->visitSurfaces([&](const Acts::Surface *surface) {
61 // find acts surface with the same detector element ID
62 if (!surface->isSensitive()) {
63 return;
64 }
65 const auto *actsElement = dynamic_cast<const IDetectorElementBase*>(surface->surfacePlacement());
66 if (!actsElement) {
67 return;
68 }
69 // Conversion from Acts to ATLAS surface impossible for the TRT so the TRT
70 // surfaces are not stored in this map
71 if (actsElement->detectorType() == DetectorType::Trt) {
72 return;
73 }
74 auto [it, ok] = m_actsSurfaceMap.insert(std::make_pair(actsElement->identify(), surface->getSharedPtr()));
75 if (!ok) {
76 ATH_MSG_WARNING("ATLAS ID " << actsElement->identify()
77 << " has two ACTS surfaces: "
78 << it->second->geometryId() << " and "
79 << surface->geometryId());
80 }
81 });
83 return StatusCode::SUCCESS;
84 }
85 std::shared_ptr<Trk::SurfaceBounds>
86 GeometryRealmConvTool::translateBounds(const Acts::SurfaceBounds& bounds) const {
87 switch (bounds.type()) {
88 using enum Acts::SurfaceBounds::BoundsType;
89 case eRectangle:{
90 using ParEnum_t = Acts::RectangleBounds::BoundValues;
91 const auto& cBounds = static_cast<const Acts::RectangleBounds&>(bounds);
92 return std::make_shared<Trk::RectangleBounds>(cBounds.get(ParEnum_t::eMaxX),
93 cBounds.get(ParEnum_t::eMaxY));
94 } case eTrapezoid: {
95 using ParEnum_t = Acts::TrapezoidBounds::BoundValues;
96 const auto& cBounds = static_cast<const Acts::TrapezoidBounds&>(bounds);
97 return std::make_shared<Trk::TrapezoidBounds>(cBounds.get(ParEnum_t::eHalfLengthXnegY),
98 cBounds.get(ParEnum_t::eHalfLengthXposY),
99 cBounds.get(ParEnum_t::eHalfLengthY));
100 } case eDisc: {
101 using ParEnum_t = Acts::RadialBounds::BoundValues;
102 const auto& cBounds = static_cast<const Acts::RadialBounds&>(bounds);
103 return std::make_shared<Trk::DiscBounds>(cBounds.get(ParEnum_t::eMinR),
104 cBounds.get(ParEnum_t::eMaxR),
105 cBounds.get(ParEnum_t::eAveragePhi),
106 cBounds.get(ParEnum_t::eHalfPhiSector));
107 } case eCylinder: {
108 using ParEnum_t = Acts::CylinderBounds::BoundValues;
109 const auto& cBounds = static_cast<const Acts::CylinderBounds&>(bounds);
110 return std::make_shared<Trk::CylinderBounds>(cBounds.get(ParEnum_t::eR),
111 cBounds.get(ParEnum_t::eHalfPhiSector),
112 cBounds.get(ParEnum_t::eAveragePhi),
113 cBounds.get(ParEnum_t::eHalfLengthZ));
114 } case eLine: {
115 using ParEnum_t = Acts::LineBounds::BoundValues;
116 const auto& cBounds = static_cast<const Acts::LineBounds&>(bounds);
117 return std::make_shared<Trk::CylinderBounds>(cBounds.get(ParEnum_t::eR),
118 cBounds.get(ParEnum_t::eHalfLengthZ));
119 } case eDiamond: {
120 using ParEnum_t = Acts::DiamondBounds::BoundValues;
121 const auto& cBounds = static_cast<const Acts::DiamondBounds&>(bounds);
122 return std::make_shared<Trk::DiamondBounds>(cBounds.get(ParEnum_t::eHalfLengthXnegY),
123 cBounds.get(ParEnum_t::eHalfLengthXzeroY),
124 cBounds.get(ParEnum_t::eHalfLengthXposY),
125 cBounds.get(ParEnum_t::eHalfLengthYneg),
126 cBounds.get(ParEnum_t::eHalfLengthYpos));
127 } default:
128 break;
129 }
130 THROW_EXCEPTION("The bounds "<<bounds<<" cannot be translated");
131 return nullptr;
132 }
134 const Acts::Surface& surface) const {
135 const Acts::GeometryContext tgContext = m_trackingGeometryTool->getGeometryContext(ctx).context();
136 const Amg::Transform3D& trf{surface.localToGlobalTransform(tgContext)};
137 switch (surface.type()) {
138 using enum Acts::Surface::SurfaceType;
139 case Plane:
140 return SurfacePtr_t{new Trk::PlaneSurface(trf, translateBounds(surface.bounds()))};
141 case Cylinder:
142 return SurfacePtr_t{new Trk::CylinderSurface(trf,
143 std::dynamic_pointer_cast<Trk::CylinderBounds>(translateBounds(surface.bounds())))};
144 case Perigee:
145 return SurfacePtr_t{new Trk::PerigeeSurface(trf)};
146 case Disc:
147 return SurfacePtr_t{new Trk::DiscSurface(trf,
148 std::dynamic_pointer_cast<Trk::DiscBounds>(translateBounds(surface.bounds())))};
149 case Straw: {
150 auto bounds = std::dynamic_pointer_cast<Trk::CylinderBounds>(translateBounds(surface.bounds()));
151 return SurfacePtr_t{new Trk::StraightLineSurface(trf, bounds->r(), bounds->halflengthZ())};
152 } default:
153 break;
154 }
155 THROW_EXCEPTION("ActsToTrkConverterTool() - Surface cannot be translated "
156 <<surface.toString(tgContext));
157
158 return nullptr;
159 }
160
162 const Acts::Surface& actsSurface) const{
163 const auto *detEleBase= dynamic_cast<const IDetectorElementBase*>(actsSurface.surfacePlacement());
164 if (!detEleBase) {
165 return translateFreeSurface(ctx, actsSurface);
166 }
167 switch (detEleBase->detectorType()) {
168 using enum DetectorType;
169 case Pixel:
170 case Sct:
171 case Hgtd:
172 case Trt: {
173 const auto actsElement = dynamic_cast<const ActsDetectorElement*>(detEleBase);
174 if (actsElement) {
175 return SurfacePtr_t{&actsElement->atlasSurface()};
176 }
177 break;
178 } case Mdt:
179 case Rpc:
180 case Tgc:
181 case Csc:
182 case sTgc:
183 case Mm: {
184 const MuonGM::MuonDetectorManager* detMgr{nullptr};
185 if (!SG::get(detMgr, m_muonMgrKey, ctx).isSuccess() || !detMgr) {
186 THROW_EXCEPTION("Failed to retrieve the muon detector manager");
187 }
188 return SurfacePtr_t{&detMgr->getReadoutElement(detEleBase->identify())->surface(detEleBase->identify())};
189 } default:
190 break;
191 }
193 return translateFreeSurface(ctx, actsSurface);
194 }
195 std::shared_ptr<const Acts::Surface> GeometryRealmConvTool::convertSurfaceToActs(const Trk::Surface& atlasSurface) const {
196 Identifier atlasID = atlasSurface.associatedDetectorElementIdentifier();
197 auto it = m_actsSurfaceMap.find(atlasID);
198 if (it != m_actsSurfaceMap.end()) {
199 return it->second;
200 }
201 const Amg::Transform3D& trf{atlasSurface.transform()};
202 switch (atlasSurface.type()){
203 using enum Trk::SurfaceType;
204 case Plane:
205 return Acts::Surface::makeShared<Acts::PlaneSurface>(trf);
206 case Perigee:
207 return Acts::Surface::makeShared<Acts::PerigeeSurface>(trf);
208 case Line:
209 return Acts::Surface::makeShared<Acts::StrawSurface>(trf);
210 // TODO - implement the missing types?
211 default: {
212 break;
213 }
214 }
215 std::stringstream surfStr{};
216 atlasSurface.dump(surfStr);
217 throw std::domain_error(std::format("Failed to translate surface {:}", surfStr.str()));
218 }
219
220 Acts::BoundTrackParameters
222 const Trk::TrackParameters& atlasParameter,
223 Trk::ParticleHypothesis hypothesis) const {
224
225 std::shared_ptr<const Acts::Surface> actsSurface{};
226 Acts::BoundVector params{};
227 const Acts::GeometryContext tgContext = m_trackingGeometryTool->getGeometryContext(ctx).context();
228
229 // get the associated surface
230 try {
231 actsSurface = convertSurfaceToActs(atlasParameter.associatedSurface());
232 } catch (const std::exception &e) {
233 ATH_MSG_ERROR("Could not find ACTS detector surface for this TrackParameter:");
234 ATH_MSG_ERROR(atlasParameter);
235 throw; // Nothing we can do, so just pass exception on...
236 }
237
238 // Construct track parameters
239 const auto& atlasParam{atlasParameter.parameters()};
240 if (actsSurface->bounds().type() == Acts::SurfaceBounds::BoundsType::eAnnulus) {
241 // Annulus surfaces are constructed differently in Acts/Trk so we need to
242 // convert local coordinates
243 const Amg::Vector3D& position{atlasParameter.position()};
244 auto result = actsSurface->globalToLocal(tgContext, position, atlasParameter.momentum());
245 if (result.ok()) {
246 params << (*result)[0], (*result)[1], atlasParam[Trk::phi0],
247 atlasParam[Trk::theta],
248 atlasParameter.charge() / (atlasParameter.momentum().mag() * 1_MeV),
249 0.;
250 } else {
251 ATH_MSG_WARNING("Unable to convert annulus surface - globalToLocal failed");
252 }
253 } else {
254 params << atlasParam[Trk::locX], atlasParam[Trk::locY],
255 atlasParam[Trk::phi0], atlasParam[Trk::theta],
256 atlasParameter.charge() / (atlasParameter.momentum().mag() * 1_MeV), 0.;
257 }
258
259 std::optional<Acts::BoundMatrix> cov{};
260 if (atlasParameter.covariance()) {
261 cov = Acts::BoundMatrix::Identity();
262 cov->topLeftCorner(5, 5) = *atlasParameter.covariance();
263
264 // Convert the covariance matrix from MeV
265 // FIXME: This needs to handle the annulus case as well - currently the cov
266 // is wrong for annulus surfaces
267 for (int i = 0; i < cov->rows(); ++i) {
268 (*cov)(i, 4) = (*cov)(i, 4) / 1_MeV;
269 }
270 for (int i = 0; i < cov->cols(); ++i) {
271 (*cov)(4, i) = (*cov)(4, i) / 1_MeV;
272 }
273 }
274 return Acts::BoundTrackParameters{actsSurface, params, std::move(cov),
275 ParticleHypothesis::convert(hypothesis)};
276 }
277 std::unique_ptr<Trk::TrackParameters>
279 const Acts::BoundTrackParameters& actsParameter) const {
280
281
282 std::optional<AmgSymMatrix(5)> cov = std::nullopt;
283 if (actsParameter.covariance()) {
284 AmgSymMatrix(5) newcov(actsParameter.covariance()->topLeftCorner<5, 5>());
285 // Convert the covariance matrix to GeV
286 for (int i = 0; i < newcov.rows(); i++) {
287 newcov(i, 4) = newcov(i, 4) * 1_MeV;
288 }
289 for (int i = 0; i < newcov.cols(); i++) {
290 newcov(4, i) = newcov(4, i) * 1_MeV;
291 }
292 cov = newcov;
293 }
294
295 const Acts::Surface &actsSurface = actsParameter.referenceSurface();
296 SurfacePtr_t trkSurface = convertSurfaceToTrk(ctx, actsSurface);
297 switch (actsSurface.type()) {
298 case Acts::Surface::SurfaceType::Cone: {
299 const auto &coneSurface = static_cast<const Trk::ConeSurface&>(*trkSurface);
300 return std::make_unique<Trk::AtaCone>(
301 actsParameter.get<Acts::eBoundLoc0>(),
302 actsParameter.get<Acts::eBoundLoc1>(),
303 actsParameter.get<Acts::eBoundPhi>(),
304 actsParameter.get<Acts::eBoundTheta>(),
305 actsParameter.get<Acts::eBoundQOverP>() * 1_MeV, coneSurface, cov);
306 } case Acts::Surface::SurfaceType::Cylinder: {
307 const auto &cylSurface{static_cast<const Trk::CylinderSurface&>(*trkSurface)};
308 return std::make_unique<Trk::AtaCylinder>(
309 actsParameter.get<Acts::eBoundLoc0>(),
310 actsParameter.get<Acts::eBoundLoc1>(),
311 actsParameter.get<Acts::eBoundPhi>(),
312 actsParameter.get<Acts::eBoundTheta>(),
313 actsParameter.get<Acts::eBoundQOverP>() * 1_MeV, cylSurface, cov);
314 } case Acts::Surface::SurfaceType::Disc: {
315 if (trkSurface->type() == Trk::SurfaceType::Disc) {
316 const auto& discSurface{static_cast<const Trk::DiscSurface&>(*trkSurface)};
317 return std::make_unique<Trk::AtaDisc>(
318 actsParameter.get<Acts::eBoundLoc0>(),
319 actsParameter.get<Acts::eBoundLoc1>(),
320 actsParameter.get<Acts::eBoundPhi>(),
321 actsParameter.get<Acts::eBoundTheta>(),
322 actsParameter.get<Acts::eBoundQOverP>() * 1_MeV, discSurface, cov);
323 } else if (trkSurface->type() == Trk::SurfaceType::Plane) {
324 const Acts::GeometryContext tgContext = m_trackingGeometryTool->getGeometryContext(ctx).context();
325 auto& planeSurface{static_cast<const Trk::PlaneSurface&>(*trkSurface)};
326 // need to convert to plane position on plane surface (annulus bounds)
327 auto helperSurface = Acts::Surface::makeShared<Acts::PlaneSurface>(planeSurface.transform());
328
329 auto covpc = actsParameter.covariance().value();
331 Acts::FreeVector freePars = Acts::transformBoundToFreeParameters(actsSurface, tgContext,
332 actsParameter.parameters());
333
335 Acts::BoundVector targetPars = Acts::transformFreeToBoundParameters(freePars,
336 *helperSurface, tgContext).value();
337
338
339 Acts::FreeMatrix freeTransportJacobian{Acts::FreeMatrix::Identity()};
340
341 Acts::FreeVector freeToPathDerivatives{Acts::FreeVector::Zero()};
342 freeToPathDerivatives.head<3>() = freePars.segment<3>(Acts::eFreeDir0);
343
344 auto boundToFreeJacobian = actsSurface.boundToFreeJacobian(tgContext,
345 freePars.segment<3>(Acts::eFreePos0),
346 freePars.segment<3>(Acts::eFreeDir0));
347
348 Acts::BoundMatrix boundToBoundJac =
349 Acts::detail::boundToBoundTransportJacobian(tgContext, freePars,
350 boundToFreeJacobian, freeTransportJacobian,
351 freeToPathDerivatives, *helperSurface);
352
353 Acts::BoundMatrix targetCov{boundToBoundJac * covpc * boundToBoundJac.transpose()};
354
355 return std::make_unique<Trk::AtaPlane>(
356 targetPars[Acts::eBoundLoc0], targetPars[Acts::eBoundLoc1],
357 targetPars[Acts::eBoundPhi], targetPars[Acts::eBoundTheta],
358 targetPars[Acts::eBoundQOverP] * 1_MeV, planeSurface,
359 targetCov.topLeftCorner<5, 5>());
360 } else {
361 throw std::domain_error("Acts::DiscSurface is not associated with ATLAS disc or plane surface");
362 }
363 break;
364 } case Acts::Surface::SurfaceType::Perigee: {
365 const auto& perSurface = static_cast<const Trk::PerigeeSurface&>(*trkSurface);
366 return std::make_unique<Trk::Perigee>(
367 actsParameter.get<Acts::eBoundLoc0>(),
368 actsParameter.get<Acts::eBoundLoc1>(),
369 actsParameter.get<Acts::eBoundPhi>(),
370 actsParameter.get<Acts::eBoundTheta>(),
371 actsParameter.get<Acts::eBoundQOverP>() * 1_MeV, perSurface, cov);
372 } case Acts::Surface::SurfaceType::Plane: {
373 auto &plaSurface{static_cast<const Trk::PlaneSurface&>(*trkSurface)};
374 return std::make_unique<Trk::AtaPlane>(
375 actsParameter.get<Acts::eBoundLoc0>(),
376 actsParameter.get<Acts::eBoundLoc1>(),
377 actsParameter.get<Acts::eBoundPhi>(),
378 actsParameter.get<Acts::eBoundTheta>(),
379 actsParameter.get<Acts::eBoundQOverP>() * 1_MeV, plaSurface, cov);
380 } case Acts::Surface::SurfaceType::Straw: {
381 auto& lineSurface{static_cast<const Trk::StraightLineSurface&>(*trkSurface)};
382 return std::make_unique<Trk::AtaStraightLine>(
383 actsParameter.get<Acts::eBoundLoc0>(),
384 actsParameter.get<Acts::eBoundLoc1>(),
385 actsParameter.get<Acts::eBoundPhi>(),
386 actsParameter.get<Acts::eBoundTheta>(),
387 actsParameter.get<Acts::eBoundQOverP>() * 1_MeV, lineSurface, cov);
388 } case Acts::Surface::SurfaceType::Curvilinear: {
389 const Acts::GeometryContext tgContext = m_trackingGeometryTool->getGeometryContext(ctx).context();
390 return std::make_unique<Trk::CurvilinearParameters>(
391 actsParameter.position(tgContext), actsParameter.get<Acts::eBoundPhi>(),
392 actsParameter.get<Acts::eBoundTheta>(),
393 actsParameter.get<Acts::eBoundQOverP>() * 1_MeV, cov);
394 } case Acts::Surface::SurfaceType::Other: {
395 break;
396 }
397 }
398 throw std::domain_error("Surface type not found");
399 }
400}
Scalar mag() const
mag method
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
#define ATH_MSG_WARNING(x)
#define AmgSymMatrix(dim)
ActsTrk::GeometryRealmConvTool::SurfacePtr_t SurfacePtr_t
virtual std::shared_ptr< const Acts::Surface > convertSurfaceToActs(const Trk::Surface &atlasSurface) const override final
Translate the parsed Trk surface into an Acts surface.
virtual Acts::BoundTrackParameters convertTrackParametersToActs(const EventContext &ctx, const Trk::TrackParameters &atlasParameter, Trk::ParticleHypothesis hypothesis=Trk::pion) const override final
Translates the Trk track parameters into bound Acts track parameters with a particle hypothesis.
SurfacePtr_t translateFreeSurface(const EventContext &ctx, const Acts::Surface &surface) const
Translate a surface that is not associated with any detector element.
virtual std::unique_ptr< Trk::TrackParameters > convertTrackParametersToTrk(const EventContext &ctx, const Acts::BoundTrackParameters &actsParameters) const override final
Translates the bounded Acts track parameters to Trk parameters.
PublicToolHandle< ITrackingGeometryTool > m_trackingGeometryTool
SG::ReadCondHandleKey< MuonGM::MuonDetectorManager > m_muonMgrKey
Detector manager to fetch the legacy Trk surfaces.
std::shared_ptr< Trk::SurfaceBounds > translateBounds(const Acts::SurfaceBounds &bounds) const
Translate the Acts surface bounds to its equivalent in the Trk realm.
Gaudi::Property< bool > m_extractMuonSurfaces
virtual SurfacePtr_t convertSurfaceToTrk(const EventContext &ctx, const Acts::Surface &actsSurface) const override final
Translates the parsed Acts surface into a Trk::Surface via associated detector element.
std::unordered_map< Identifier, std::shared_ptr< const Acts::Surface > > m_actsSurfaceMap
virtual StatusCode initialize() override final
base class interface providing the bare minimal interface extension.
The MuonDetectorManager stores the transient representation of the Muon Spectrometer geometry and pro...
const MuonReadoutElement * getReadoutElement(const Identifier &id) const
Get any read out element.
Class for a conical surface in the ATLAS detector.
Definition ConeSurface.h:51
Class for a CylinderSurface in the ATLAS detector.
Class for a DiscSurface in the ATLAS detector.
Definition DiscSurface.h:54
const Amg::Vector3D & momentum() const
Access method for the momentum.
const Amg::Vector3D & position() const
Access method for the position.
double charge() const
Returns the charge.
virtual const Surface & associatedSurface() const override=0
Access to the Surface associated to the Parameters.
Class describing the Line to which the Perigee refers to.
Class for a planaer rectangular or trapezoidal surface in the ATLAS detector.
Class for a StraightLineSurface in the ATLAS detector to describe dirft tube and straw like detectors...
Abstract Base Class for tracking surfaces.
Definition Surface.h:79
virtual MsgStream & dump(MsgStream &sl) const
Output Method for MsgStream, to be overloaded by child classes.
Definition Surface.cxx:157
const Amg::Transform3D & transform() const
Returns HepGeom::Transform3D by reference.
Identifier associatedDetectorElementIdentifier() const
return Identifier of the associated Detector Element
virtual constexpr SurfaceType type() const =0
Returns the Surface type to avoid dynamic casts.
virtual const Surface & surface() const =0
Return surface associated with this detector element.
xAOD::ParticleHypothesis convert(Acts::ParticleHypothesis h)
The AlignStoreProviderAlg loads the rigid alignment corrections and pipes them through the readout ge...
DetectorType
Simple enum to Identify the Type of the ACTS sub detector.
@ Mm
Maybe not needed in the migration.
@ Tgc
Resitive Plate Chambers.
@ sTgc
Micromegas (NSW).
@ Rpc
Monitored Drift Tubes.
@ Csc
Thin gap champers.
@ Mdt
MuonSpectrometer.
Eigen::Affine3d Transform3D
Eigen::Matrix< double, 3, 1 > Vector3D
const T * get(const ReadCondHandleKey< T > &key, const EventContext &ctx)
Convenience function to retrieve an object given a ReadCondHandleKey.
SurfaceType
This enumerator simplifies the persistency & calculations,.
@ locY
local cartesian
Definition ParamDefs.h:38
@ locX
Definition ParamDefs.h:37
@ phi0
Definition ParamDefs.h:65
@ theta
Definition ParamDefs.h:66
ParticleHypothesis
Enumeration for Particle hypothesis respecting the interaction with material.
ParametersBase< TrackParametersDim, Charged > TrackParameters
#define THROW_EXCEPTION(MESSAGE)
Definition throwExcept.h:10