ATLAS Offline Software
Loading...
Searching...
No Matches
SegmentFittingAlg.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4
5#include "SegmentFittingAlg.h"
6
8
12#include <ActsInterop/Logger.h>
13
15
16#include <format>
17
18using namespace Acts;
19namespace MuonR4 {
20 using namespace SegmentFit;
21 using namespace MuonValR4;
22
24
27 ATH_CHECK(m_geoCtxKey.initialize());
28 ATH_CHECK(m_seedKey.initialize());
29 ATH_CHECK(m_outSegments.initialize());
30 ATH_CHECK(m_calibTool.retrieve());
31 ATH_CHECK(m_idHelperSvc.retrieve());
32 ATH_CHECK(m_visionTool.retrieve(EnableTool{!m_visionTool.empty()}));
34 m_ambiSolver = std::make_unique<SegmentAmbiSolver>(name(), std::move(cfg));
35
37 fitCfg.calibrator = m_calibTool.get();
38 fitCfg.visionTool = m_visionTool.get();
39 fitCfg.idHelperSvc = m_idHelperSvc.get();
40 fitCfg.fitT0 = m_doT0Fit;
41 fitCfg.recalibrate = m_recalibInFit;
42 fitCfg.useFastFitter = m_useFastFitter;
43 fitCfg.fastPreFitter = m_fastPreFitter;
44 fitCfg.useHessian = m_hessianResidual;
45
49
53 fitCfg.maxIter = m_maxIter;
54
55 m_fitter = std::make_unique<SegmentFit::SegmentLineFitter>(name(), std::move(fitCfg));
56
57 MdtSegmentSeedGenerator::Config genCfg{};
58 genCfg.hitPullCut = m_seedHitChi2;
59 genCfg.busyLayerLimit = m_busyLayerLimit;
60 genCfg.startWithPattern = m_tryPatternPars;
61 ATH_MSG_DEBUG("Seeder configuration: \n - "<<m_tryPatternPars
62 <<"\n - "<<m_seedHitChi2
63 <<"\n - "<<m_busyLayerLimit);
64 m_seeder = std::make_unique<SegmentFit::MdtSegmentSeedGenerator>(genCfg, makeActsAthenaLogger(this, name()));
65 genCfg.busyLayerLimit += 2;
66 m_seederBEE = std::make_unique<SegmentFit::MdtSegmentSeedGenerator>(genCfg, makeActsAthenaLogger(this, name()));
67
68 return StatusCode::SUCCESS;
69 }
70 StatusCode SegmentFittingAlg::execute(const EventContext& ctx) const {
71 const ActsTrk::GeometryContext* gctx{nullptr};
72 ATH_CHECK(SG::get(gctx, m_geoCtxKey, ctx));
73 const SegmentSeedContainer* segmentSeeds=nullptr;
74 ATH_CHECK(SG::get(segmentSeeds, m_seedKey, ctx));
75
76 SG::WriteHandle writeSegments{m_outSegments, ctx};
77 ATH_CHECK(writeSegments.record(std::make_unique<SegmentContainer>()));
78 SegmentVec_t allSegments{};
79 for (const SegmentSeed* seed : *segmentSeeds) {
80 SegmentVec_t segments = fitSegmentSeed(ctx, *gctx, seed);
81 if (m_visionTool.isEnabled() && segments.size() > 1) {
82 auto drawFinalReco = [this, &segments, &gctx, &ctx,&seed](const std::string& nameTag) {
83 PrimitiveVec segmentLines{};
84 double yLegend{0.85};
85 segmentLines.push_back(drawLabel(std::format("# segments: {:d}", segments.size()), 0.2, yLegend, 14));
86 yLegend-=0.04;
87 for (const std::unique_ptr<Segment>& seg : segments) {
88 const Parameters pars = localSegmentPars(*gctx, *seg);
89 const auto [pos, dir] = makeLine(pars);
90 segmentLines.emplace_back(drawLine(pars, -Gaudi::Units::m, Gaudi::Units::m, kRed));
91 std::stringstream signStream{};
92 signStream<<std::format("#chi^{{2}}/nDoF: {:.2f} ({:}), ", seg->chi2() / seg->nDoF(), seg->nDoF());
93 signStream<<std::format("y_{{0}}={:.2f}",pars[toUnderlying(ParamDefs::y0)])<<", ";
94 signStream<<std::format("#theta={:.2f}^{{#circ}}", pars[toUnderlying(ParamDefs::theta)]/ Gaudi::Units::deg )<<", ";
95 for (const Segment::MeasType& m : seg->measurements()) {
96 if (m->type() == xAOD::UncalibMeasType::MdtDriftCircleType && m->fitState() == CalibratedSpacePoint::State::Valid) {
97 signStream<<(SeedingAux::strawSign(pos, dir, *m) == -1 ? "L" : "R");
98 }
99 }
100 segmentLines.push_back(drawLabel(signStream.str(), 0.2, yLegend, 13));
101 yLegend-=0.03;
102 }
103
104 m_visionTool->visualizeBucket(ctx, *seed->parentBucket(), nameTag, std::move(segmentLines));
105 };
106 drawFinalReco("all segments");
107 const unsigned int nBeforeAmbi = segments.size();
108 segments = m_ambiSolver->resolveAmbiguity(*gctx, std::move(segments));
109 if (nBeforeAmbi != segments.size()) {
110 drawFinalReco("post ambiguity");
111 }
112 } else if (m_visionTool.isEnabled() && segments.empty() &&
113 std::ranges::count_if(seed->getHitsInMax(),[this](const SpacePoint* hit){
114 return m_visionTool->isLabeled(*hit);
115 })) {
116 m_visionTool->visualizeSeed(ctx, *seed, "Failed fit");
117 }
118 allSegments.insert(allSegments.end(), std::make_move_iterator(segments.begin()),
119 std::make_move_iterator(segments.end()));
120 }
121 resolveAmbiguities(*gctx, allSegments);
122 writeSegments->insert(writeSegments->end(),
123 std::make_move_iterator(allSegments.begin()),
124 std::make_move_iterator(allSegments.end()));
125 ATH_MSG_VERBOSE("Found in total "<<writeSegments->size()<<" segments. ");
126 return StatusCode::SUCCESS;
127 }
128
130 SegmentFittingAlg::fitSegmentSeed(const EventContext& ctx,
131 const ActsTrk::GeometryContext& gctx,
132 const SegmentSeed* patternSeed) const {
133
134 const Amg::Transform3D& locToGlob{patternSeed->msSector()->localToGlobalTransform(gctx)};
135 std::vector<std::unique_ptr<Segment>> segments{};
136
137 Acts::CalibrationContext cctx = ActsTrk::getCalibrationContext(ctx);
138
139 using State_t = MdtSegmentSeedGenerator::State_t;
140 State_t seedState{patternSeed->parameters(), patternSeed, m_calibTool.get(), m_recalibSeed};
141
142 const auto* seeder = patternSeed->parameters()[toUnderlying(ParamDefs::theta)] > 50 * Gaudi::Units::deg ?
143 m_seederBEE.get() : m_seeder.get();
144
146 if (m_visionTool.isEnabled()) {
147 PrimitiveVec seedLines{};
148 State_t drawMe{seedState};
149 while(auto s = seeder->nextSeed(cctx, drawMe)) {
150 seedLines.push_back(drawLine(s->parameters, -Gaudi::Units::m, Gaudi::Units::m, kViolet));
151 }
152 seedLines.push_back(drawLabel(std::format("possible seeds: {:d}", drawMe.nGenSeeds()), 0.2, 0.85, 14));
153 m_visionTool->visualizeSeed(ctx, *patternSeed, "pattern", std::move(seedLines));
154 }
155
156 ATH_MSG_VERBOSE("fitSegmentHits() - Start segment seed search");
157 while (auto seed = seeder->nextSeed(cctx, seedState)) {
158 auto segment = m_fitter->fitSegment(ctx, patternSeed, seed->parameters,
159 locToGlob, std::move(seed->hits));
160 if (segment) {
161 segments.push_back(std::move(segment));
162 }
163 }
164 ATH_MSG_VERBOSE("fitSegmentHits() - In total "<<segments.size()<<" segment were constructed ");
165 return segments;
166
167 }
168
170 SegmentVec_t& segmentCandidates) const {
171 if (segmentCandidates.empty()) {
172 return;
173 }
174 ATH_MSG_VERBOSE("Resolve ambiguities amongst "<<segmentCandidates.size()<<" segment candidates. ");
175 std::unordered_map<const MuonGMR4::SpectrometerSector*, SegmentVec_t> candidatesPerChamber{};
176
177 for (std::unique_ptr<Segment>& sortMe : segmentCandidates) {
178 const MuonGMR4::SpectrometerSector* chamb = sortMe->msSector();
179 candidatesPerChamber[chamb].push_back(std::move(sortMe));
180 }
181 segmentCandidates.clear();
182 for (auto& [chamber, resolveMe] : candidatesPerChamber) {
183 SegmentVec_t resolvedSegments = m_ambiSolver->resolveAmbiguity(gctx, std::move(resolveMe));
184 segmentCandidates.insert(segmentCandidates.end(),
185 std::make_move_iterator(resolvedSegments.begin()),
186 std::make_move_iterator(resolvedSegments.end()));
187 }
188 }
189}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_VERBOSE(x)
#define ATH_MSG_DEBUG(x)
std::unique_ptr< const Acts::Logger > makeActsAthenaLogger(IMessageSvc *svc, const std::string &name, int level, std::optional< std::string > parent_name)
A spectrometer sector forms the envelope of all chambers that are placed in the same MS sector & laye...
const Amg::Transform3D & localToGlobalTransform(const ActsTrk::GeometryContext &gctx) const
Returns the local -> global tarnsformation from the sector.
SeedingState< HitVec_t, CalibCont_t, SeederStateBase > State_t
Define the state holder object.
std::unique_ptr< SegmentFit::SegmentAmbiSolver > m_ambiSolver
Pointer to the ambiguity reosolution.
Gaudi::Property< unsigned > m_precHitCut
Minimum number of precision hits to accept the segment.
Gaudi::Property< bool > m_hessianResidual
Use the expliciit Hessian in the residual calculation.
virtual StatusCode initialize() override
Gaudi::Property< bool > m_recalibSeed
Toggle seed recalibration.
Gaudi::Property< double > m_seedHitChi2
Two mdt seeds are the same if their defining parameters match wihin.
Gaudi::Property< bool > m_useFastFitter
Use the fast Mdt fitter where possible.
ToolHandle< MuonValR4::IPatternVisualizationTool > m_visionTool
Pattern visualization tool.
Gaudi::Property< double > m_beamSpotL
Gaudi::Property< bool > m_recalibInFit
SG::WriteHandleKey< SegmentContainer > m_outSegments
SegmentVec_t fitSegmentSeed(const EventContext &ctx, const ActsTrk::GeometryContext &gctx, const SegmentSeed *seed) const
Fit the hits from the pattern seed to segment candidates.
Gaudi::Property< bool > m_fastPreFitter
The fast fitter is treated as a pre fitter.
std::unique_ptr< SegmentFit::MdtSegmentSeedGenerator > m_seederBEE
Pointer to the L-R segment seeder used for the BEE chambers -> increased hit occupancy.
void resolveAmbiguities(const ActsTrk::GeometryContext &gctx, SegmentVec_t &segmentCandidates) const
Resolve the ambiguity amongst the segment candidates within a spectrometer sector.
std::unique_ptr< SegmentFit::MdtSegmentSeedGenerator > m_seeder
Pointer to the L-R segment seeder.
ServiceHandle< Muon::IMuonIdHelperSvc > m_idHelperSvc
IdHelperSvc.
Gaudi::Property< bool > m_doBeamspotConstraint
Add beamline constraint.
ToolHandle< ISpacePointCalibrator > m_calibTool
Handle to the space point calibrator.
std::unique_ptr< SegmentFit::SegmentLineFitter > m_fitter
Pointer to the actual segment fitter.
std::vector< std::unique_ptr< Segment > > SegmentVec_t
SegmentFit::Parameters Parameters
Gaudi::Property< bool > m_doT0Fit
SG::ReadHandleKey< SegmentSeedContainer > m_seedKey
ReadHandle of the seeds.
Gaudi::Property< double > m_recoveryPull
Gaudi::Property< double > m_beamSpotR
Gaudi::Property< unsigned > m_maxIter
Tune the number of iterations.
virtual StatusCode execute(const EventContext &ctx) const override
SG::ReadHandleKey< ActsTrk::GeometryContext > m_geoCtxKey
Gaudi::Property< unsigned > m_busyLayerLimit
Cut on the number of hits per layer to use the layer for seeding.
Gaudi::Property< double > m_outlierRemovalCut
Cut on the segment chi2 / nDoF to launch the outlier removal.
Gaudi::Property< bool > m_tryPatternPars
Try first to fit the pattern parameters. Then proceed with the straw line tangents.
Representation of a segment seed (a fully processed hough maximum) produced by the hough transform.
Definition SegmentSeed.h:14
const Parameters & parameters() const
Returns the parameter array.
const MuonGMR4::SpectrometerSector * msSector() const
Returns the associated chamber.
std::unique_ptr< CalibratedSpacePoint > MeasType
Calibrated space point type.
The muon space point is the combination of two uncalibrated measurements one of them measures the eta...
StatusCode record(std::unique_ptr< T > data)
Record a const object to the store.
Acts::CalibrationContext getCalibrationContext(const EventContext &ctx)
The Acts::Calibration context is piped through the Acts fitters to (re)calibrate the Acts::SourceLink...
Eigen::Affine3d Transform3D
Parameters localSegmentPars(const xAOD::MuonSegment &seg)
Returns the localSegPars decoration from a xAODMuon::Segment.
std::pair< Amg::Vector3D, Amg::Vector3D > makeLine(const Parameters &pars)
Returns the parsed parameters into an Eigen line parametrization.
This header ties the generic definitions in this package.
MuonValR4::IPatternVisualizationTool::PrimitiveVec PrimitiveVec
DataVector< SegmentSeed > SegmentSeedContainer
std::unique_ptr< TLine > drawLine(const MuonR4::SegmentFit::Parameters &pars, const double lowEnd, const double highEnd, const int color=kRed+1, const int lineStyle=kDashed, const int view=objViewEta)
Draws a line from the segment fit parameters.
std::unique_ptr< TLatex > drawLabel(const std::string &text, const double xPos, const double yPos, const unsigned int fontSize=18, const bool useNDC=true)
Create a TLatex label,.
const T * get(const ReadCondHandleKey< T > &key, const EventContext &ctx)
Convenience function to retrieve an object given a ReadCondHandleKey.
Configuration object to stree the ambiguties.
const ISpacePointCalibrator * calibrator
Pointer to the calibrator.
bool doBeamSpot
Switch to insert a beamspot constraint if possible.
const Muon::IMuonIdHelperSvc * idHelperSvc
Pointer to the idHelperSvc.
unsigned nPrecHitCut
Minimum number of precision hits.
double outlierRemovalCut
Cut on the segment chi2 / nDoF to launch the outlier removal.
const MuonValR4::IPatternVisualizationTool * visionTool
Pointer to the visualization tool.
double recoveryPull
Maximum pull on a measurement to add it back on the line.
double beamSpotRadius
Parameters of the beamspot measurement.