File indexing completed on 2025-09-15 08:17:47
0001
0002
0003
0004 #include "TrackSeeding.h"
0005
0006 #include <Acts/Definitions/Algebra.hpp>
0007 #include <Acts/Definitions/Units.hpp>
0008 #if Acts_VERSION_MAJOR >= 37
0009 #include <Acts/EventData/SpacePointProxy.hpp>
0010 #endif
0011 #include <Acts/Seeding/SeedFinderUtils.hpp>
0012 #if Acts_VERSION_MAJOR >= 37
0013 #include <Acts/EventData/Seed.hpp>
0014 #else
0015 #include <Acts/Seeding/Seed.hpp>
0016 #endif
0017 #include <Acts/Seeding/SeedConfirmationRangeConfig.hpp>
0018 #include <Acts/Seeding/SeedFilter.hpp>
0019 #include <Acts/Seeding/SeedFilterConfig.hpp>
0020 #include <Acts/Seeding/SeedFinderConfig.hpp>
0021 #include <Acts/Seeding/SeedFinderOrthogonal.hpp>
0022 #include <Acts/Seeding/SeedFinderOrthogonalConfig.hpp>
0023 #include <Acts/Surfaces/PerigeeSurface.hpp>
0024 #include <Acts/Surfaces/Surface.hpp>
0025 #include <Acts/Utilities/KDTree.hpp> // IWYU pragma: keep FIXME KDTree missing in SeedFinderOrthogonal.hpp until Acts v23.0.0
0026 #include <Acts/Utilities/Result.hpp>
0027 #include <edm4eic/Cov6f.h>
0028 #include <edm4hep/Vector2f.h>
0029 #include <Eigen/Core>
0030 #include <Eigen/Geometry>
0031 #include <array>
0032 #include <cmath>
0033 #include <gsl/pointers>
0034 #include <limits>
0035 #include <tuple>
0036
0037 namespace eicrecon {
0038
0039 void TrackSeeding::init() {
0040
0041
0042 m_seedFilterConfig.maxSeedsPerSpM = m_cfg.maxSeedsPerSpM_filter;
0043 m_seedFilterConfig.deltaRMin = m_cfg.deltaRMin;
0044 m_seedFilterConfig.seedConfirmation = m_cfg.seedConfirmation;
0045 m_seedFilterConfig.deltaInvHelixDiameter = m_cfg.deltaInvHelixDiameter;
0046 m_seedFilterConfig.impactWeightFactor = m_cfg.impactWeightFactor;
0047 m_seedFilterConfig.zOriginWeightFactor = m_cfg.zOriginWeightFactor;
0048 m_seedFilterConfig.compatSeedWeight = m_cfg.compatSeedWeight;
0049 m_seedFilterConfig.compatSeedLimit = m_cfg.compatSeedLimit;
0050 m_seedFilterConfig.seedWeightIncrement = m_cfg.seedWeightIncrement;
0051
0052 m_seedFilterConfig.centralSeedConfirmationRange = Acts::SeedConfirmationRangeConfig{
0053 m_cfg.zMinSeedConfCentral, m_cfg.zMaxSeedConfCentral,
0054 m_cfg.rMaxSeedConfCentral, m_cfg.nTopForLargeRCentral,
0055 m_cfg.nTopForSmallRCentral, m_cfg.seedConfMinBottomRadiusCentral,
0056 m_cfg.seedConfMaxZOriginCentral, m_cfg.minImpactSeedConfCentral};
0057
0058 m_seedFilterConfig.forwardSeedConfirmationRange = Acts::SeedConfirmationRangeConfig{
0059 m_cfg.zMinSeedConfForward, m_cfg.zMaxSeedConfForward,
0060 m_cfg.rMaxSeedConfForward, m_cfg.nTopForLargeRForward,
0061 m_cfg.nTopForSmallRForward, m_cfg.seedConfMinBottomRadiusForward,
0062 m_cfg.seedConfMaxZOriginForward, m_cfg.minImpactSeedConfForward};
0063
0064 m_seedFilterConfig = m_seedFilterConfig.toInternalUnits();
0065
0066
0067 #if Acts_VERSION_MAJOR >= 37
0068 m_seedFinderConfig.seedFilter =
0069 std::make_unique<Acts::SeedFilter<proxy_type>>(m_seedFilterConfig);
0070 #else
0071 m_seedFinderConfig.seedFilter = std::make_unique<Acts::SeedFilter<eicrecon::SpacePoint>>(
0072 Acts::SeedFilter<eicrecon::SpacePoint>(m_seedFilterConfig));
0073 #endif
0074 m_seedFinderConfig.rMax = m_cfg.rMax;
0075 m_seedFinderConfig.rMin = m_cfg.rMin;
0076 m_seedFinderConfig.deltaRMinTopSP = m_cfg.deltaRMinTopSP;
0077 m_seedFinderConfig.deltaRMaxTopSP = m_cfg.deltaRMaxTopSP;
0078 m_seedFinderConfig.deltaRMinBottomSP = m_cfg.deltaRMinBottomSP;
0079 m_seedFinderConfig.deltaRMaxBottomSP = m_cfg.deltaRMaxBottomSP;
0080 m_seedFinderConfig.collisionRegionMin = m_cfg.collisionRegionMin;
0081 m_seedFinderConfig.collisionRegionMax = m_cfg.collisionRegionMax;
0082 m_seedFinderConfig.zMin = m_cfg.zMin;
0083 m_seedFinderConfig.zMax = m_cfg.zMax;
0084 m_seedFinderConfig.maxSeedsPerSpM = m_cfg.maxSeedsPerSpM;
0085 m_seedFinderConfig.cotThetaMax = m_cfg.cotThetaMax;
0086 m_seedFinderConfig.sigmaScattering = m_cfg.sigmaScattering;
0087 m_seedFinderConfig.radLengthPerSeed = m_cfg.radLengthPerSeed;
0088 m_seedFinderConfig.minPt = m_cfg.minPt;
0089 m_seedFinderConfig.impactMax = m_cfg.impactMax;
0090 m_seedFinderConfig.rMinMiddle = m_cfg.rMinMiddle;
0091 m_seedFinderConfig.rMaxMiddle = m_cfg.rMaxMiddle;
0092 m_seedFinderConfig.deltaPhiMax = m_cfg.deltaPhiMax;
0093
0094 m_seedFinderOptions.beamPos = Acts::Vector2(m_cfg.beamPosX, m_cfg.beamPosY);
0095 m_seedFinderOptions.bFieldInZ = m_cfg.bFieldInZ;
0096
0097 m_seedFinderConfig = m_seedFinderConfig.toInternalUnits().calculateDerivedQuantities();
0098 m_seedFinderOptions =
0099 m_seedFinderOptions.toInternalUnits().calculateDerivedQuantities(m_seedFinderConfig);
0100 }
0101
0102 void TrackSeeding::process(const Input& input, const Output& output) const {
0103
0104 const auto [trk_hits] = input;
0105 auto [trackparams] = output;
0106
0107 std::vector<const eicrecon::SpacePoint*> spacePoints = getSpacePoints(*trk_hits);
0108
0109 #if Acts_VERSION_MAJOR >= 37
0110 Acts::SeedFinderOrthogonal<proxy_type> finder(m_seedFinderConfig);
0111 #else
0112 Acts::SeedFinderOrthogonal<eicrecon::SpacePoint> finder(
0113 m_seedFinderConfig);
0114 #endif
0115
0116 #if Acts_VERSION_MAJOR >= 37
0117
0118 Acts::SpacePointContainerConfig spConfig;
0119
0120
0121 Acts::SpacePointContainerOptions spOptions;
0122 spOptions.beamPos = {0., 0.};
0123
0124 ActsExamples::SpacePointContainer container(spacePoints);
0125 Acts::SpacePointContainer<decltype(container), Acts::detail::RefHolder> spContainer(
0126 spConfig, spOptions, container);
0127
0128 std::vector<Acts::Seed<proxy_type>> seeds = finder.createSeeds(m_seedFinderOptions, spContainer);
0129
0130
0131 eicrecon::SeedContainer seedsToAdd;
0132 seedsToAdd.reserve(seeds.size());
0133 for (const auto& seed : seeds) {
0134 const auto& sps = seed.sp();
0135 seedsToAdd.emplace_back(*sps[0]->externalSpacePoint(), *sps[1]->externalSpacePoint(),
0136 *sps[2]->externalSpacePoint());
0137 seedsToAdd.back().setVertexZ(seed.z());
0138 seedsToAdd.back().setQuality(seed.seedQuality());
0139 }
0140
0141 addToTrackParams(*trackparams, seedsToAdd);
0142
0143 #else
0144
0145 std::function<std::tuple<Acts::Vector3, Acts::Vector2, std::optional<Acts::ActsScalar>>(
0146 const eicrecon::SpacePoint* sp)>
0147 create_coordinates = [](const eicrecon::SpacePoint* sp) {
0148 Acts::Vector3 position(sp->x(), sp->y(), sp->z());
0149 Acts::Vector2 variance(sp->varianceR(), sp->varianceZ());
0150 return std::make_tuple(position, variance, sp->t());
0151 };
0152
0153 eicrecon::SeedContainer seeds =
0154 finder.createSeeds(m_seedFinderOptions, spacePoints, create_coordinates);
0155
0156 addToTrackParams(*trackparams, seeds);
0157
0158 #endif
0159
0160 for (auto& sp : spacePoints) {
0161 delete sp;
0162 }
0163 }
0164
0165 std::vector<const eicrecon::SpacePoint*>
0166 TrackSeeding::getSpacePoints(const edm4eic::TrackerHitCollection& trk_hits) {
0167 std::vector<const eicrecon::SpacePoint*> spacepoints;
0168
0169 for (const auto hit : trk_hits) {
0170 const eicrecon::SpacePoint* sp = new SpacePoint(hit);
0171 spacepoints.push_back(sp);
0172 }
0173
0174 return spacepoints;
0175 }
0176
0177 void TrackSeeding::addToTrackParams(edm4eic::TrackParametersCollection& trackparams,
0178 SeedContainer& seeds) const {
0179
0180 for (auto& seed : seeds) {
0181 std::vector<std::pair<float, float>> xyHitPositions;
0182 std::vector<std::pair<float, float>> rzHitPositions;
0183 for (const auto& spptr : seed.sp()) {
0184 xyHitPositions.emplace_back(spptr->x(), spptr->y());
0185 rzHitPositions.emplace_back(spptr->r(), spptr->z());
0186 }
0187
0188 auto RX0Y0 = circleFit(xyHitPositions);
0189 float R = std::get<0>(RX0Y0);
0190 float X0 = std::get<1>(RX0Y0);
0191 float Y0 = std::get<2>(RX0Y0);
0192 if (!(std::isfinite(R) && std::isfinite(std::abs(X0)) && std::isfinite(std::abs(Y0)))) {
0193
0194 continue;
0195 }
0196 if (std::hypot(X0, Y0) < std::numeric_limits<decltype(std::hypot(X0, Y0))>::epsilon() ||
0197 !std::isfinite(std::hypot(X0, Y0))) {
0198
0199
0200 continue;
0201 }
0202
0203 auto slopeZ0 = lineFit(rzHitPositions);
0204 const auto xypos = findPCA(RX0Y0);
0205
0206
0207 int charge = determineCharge(xyHitPositions, xypos, RX0Y0);
0208
0209 float theta = atan(1. / std::get<0>(slopeZ0));
0210
0211 if (theta < 0) {
0212 theta += M_PI;
0213 }
0214 float eta = -log(tan(theta / 2.));
0215 float pt = R * m_cfg.bFieldInZ;
0216 float p = pt * cosh(eta);
0217 float qOverP = charge / p;
0218
0219
0220 auto xpos = xypos.first;
0221 auto ypos = xypos.second;
0222
0223 auto vxpos = -1. * charge * (ypos - Y0);
0224 auto vypos = charge * (xpos - X0);
0225
0226 auto phi = atan2(vypos, vxpos);
0227
0228 const float z0 = seed.z();
0229 auto perigee = Acts::Surface::makeShared<Acts::PerigeeSurface>(Acts::Vector3(0, 0, 0));
0230 Acts::Vector3 global(xypos.first, xypos.second, z0);
0231
0232
0233 Acts::Vector2 localpos;
0234 Acts::Vector3 direction(sin(theta) * cos(phi), sin(theta) * sin(phi), cos(theta));
0235
0236 auto local = perigee->globalToLocal(m_geoSvc->getActsGeometryContext(), global, direction);
0237
0238 if (!local.ok()) {
0239 continue;
0240 }
0241
0242 localpos = local.value();
0243
0244 auto trackparam = trackparams.create();
0245 trackparam.setType(-1);
0246 trackparam.setLoc({static_cast<float>(localpos(0)),
0247 static_cast<float>(localpos(1))});
0248 trackparam.setPhi(static_cast<float>(phi));
0249 trackparam.setTheta(theta);
0250 trackparam.setQOverP(qOverP);
0251 trackparam.setTime(10);
0252 edm4eic::Cov6f cov;
0253 cov(0, 0) = m_cfg.locaError / Acts::UnitConstants::mm;
0254 cov(1, 1) = m_cfg.locbError / Acts::UnitConstants::mm;
0255 cov(2, 2) = m_cfg.phiError / Acts::UnitConstants::rad;
0256 cov(3, 3) = m_cfg.thetaError / Acts::UnitConstants::rad;
0257 cov(4, 4) = m_cfg.qOverPError * Acts::UnitConstants::GeV;
0258 cov(5, 5) = m_cfg.timeError / Acts::UnitConstants::ns;
0259 trackparam.setCovariance(cov);
0260 }
0261 }
0262
0263 std::pair<float, float> TrackSeeding::findPCA(std::tuple<float, float, float>& circleParams) {
0264 const float R = std::get<0>(circleParams);
0265 const float X0 = std::get<1>(circleParams);
0266 const float Y0 = std::get<2>(circleParams);
0267
0268 const double R0 = std::hypot(X0, Y0);
0269
0270
0271 const double xmin = X0 * (1. - R / R0);
0272 const double ymin = Y0 * (1. - R / R0);
0273
0274 return std::make_pair(xmin, ymin);
0275 }
0276
0277 int TrackSeeding::determineCharge(std::vector<std::pair<float, float>>& positions,
0278 const std::pair<float, float>& PCA,
0279 std::tuple<float, float, float>& RX0Y0) {
0280
0281 const auto& firstpos = positions.at(0);
0282 auto hit_x = firstpos.first;
0283 auto hit_y = firstpos.second;
0284
0285 auto xpos = PCA.first;
0286 auto ypos = PCA.second;
0287
0288 float X0 = std::get<1>(RX0Y0);
0289 float Y0 = std::get<2>(RX0Y0);
0290
0291 Acts::Vector3 B_z(0, 0, 1);
0292 Acts::Vector3 radial(X0 - xpos, Y0 - ypos, 0);
0293 Acts::Vector3 hit(hit_x - xpos, hit_y - ypos, 0);
0294
0295 auto cross = radial.cross(hit);
0296
0297 float dot = cross.dot(B_z);
0298
0299 return copysign(1., -dot);
0300 }
0301
0302
0303
0304
0305
0306
0307
0308
0309
0310
0311
0312
0313
0314 std::tuple<float, float, float>
0315 TrackSeeding::circleFit(std::vector<std::pair<float, float>>& positions) {
0316
0317 double meanX = 0;
0318 double meanY = 0;
0319 double weight = 0;
0320
0321 for (const auto& [x, y] : positions) {
0322 meanX += x;
0323 meanY += y;
0324 ++weight;
0325 }
0326 meanX /= weight;
0327 meanY /= weight;
0328
0329
0330
0331 double Mxx = 0;
0332 double Myy = 0;
0333 double Mxy = 0;
0334 double Mxz = 0;
0335 double Myz = 0;
0336 double Mzz = 0;
0337
0338 for (auto& [x, y] : positions) {
0339 double Xi = x - meanX;
0340 double Yi = y - meanY;
0341 double Zi = std::pow(Xi, 2) + std::pow(Yi, 2);
0342
0343 Mxy += Xi * Yi;
0344 Mxx += Xi * Xi;
0345 Myy += Yi * Yi;
0346 Mxz += Xi * Zi;
0347 Myz += Yi * Zi;
0348 Mzz += Zi * Zi;
0349 }
0350 Mxx /= weight;
0351 Myy /= weight;
0352 Mxy /= weight;
0353 Mxz /= weight;
0354 Myz /= weight;
0355 Mzz /= weight;
0356
0357
0358
0359 const double Mz = Mxx + Myy;
0360 const double Cov_xy = Mxx * Myy - Mxy * Mxy;
0361 const double Var_z = Mzz - Mz * Mz;
0362 const double A3 = 4 * Mz;
0363 const double A2 = -3 * Mz * Mz - Mzz;
0364 const double A1 = Var_z * Mz + 4 * Cov_xy * Mz - Mxz * Mxz - Myz * Myz;
0365 const double A0 = Mxz * (Mxz * Myy - Myz * Mxy) + Myz * (Myz * Mxx - Mxz * Mxy) - Var_z * Cov_xy;
0366 const double A22 = A2 + A2;
0367 const double A33 = A3 + A3 + A3;
0368
0369
0370
0371
0372 static constexpr int iter_max = 99;
0373 double x = 0;
0374 double y = A0;
0375
0376
0377 for (int iter = 0; iter < iter_max; ++iter) {
0378 const double Dy = A1 + x * (A22 + A33 * x);
0379 const double xnew = x - y / Dy;
0380 if ((xnew == x) || (!std::isfinite(xnew))) {
0381 break;
0382 }
0383
0384 const double ynew = A0 + xnew * (A1 + xnew * (A2 + xnew * A3));
0385 if (std::abs(ynew) >= std::abs(y)) {
0386 break;
0387 }
0388
0389 x = xnew;
0390 y = ynew;
0391 }
0392
0393
0394 const double DET = std::pow(x, 2) - x * Mz + Cov_xy;
0395 const double Xcenter = (Mxz * (Myy - x) - Myz * Mxy) / DET / 2;
0396 const double Ycenter = (Myz * (Mxx - x) - Mxz * Mxy) / DET / 2;
0397
0398
0399 float X0 = Xcenter + meanX;
0400 float Y0 = Ycenter + meanY;
0401 float R = std::sqrt(std::pow(Xcenter, 2) + std::pow(Ycenter, 2) + Mz);
0402 return std::make_tuple(R, X0, Y0);
0403 }
0404
0405 std::tuple<float, float> TrackSeeding::lineFit(std::vector<std::pair<float, float>>& positions) {
0406 double xsum = 0;
0407 double x2sum = 0;
0408 double ysum = 0;
0409 double xysum = 0;
0410 for (const auto& [r, z] : positions) {
0411 xsum = xsum + r;
0412 ysum = ysum + z;
0413 x2sum = x2sum + std::pow(r, 2);
0414 xysum = xysum + r * z;
0415 }
0416
0417 const auto npts = positions.size();
0418 const double denominator = (x2sum * npts - std::pow(xsum, 2));
0419 const float a = (xysum * npts - xsum * ysum) / denominator;
0420 const float b = (x2sum * ysum - xsum * xysum) / denominator;
0421 return std::make_tuple(a, b);
0422 }
0423
0424 }