From 1f6b6c60071b2898d3f47cca650e6a423eb37f19 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Sat, 12 Sep 2026 10:12:34 +0000 Subject: [PATCH] Please consider the following formatting changes --- ALICE3/Core/FastTracker.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ALICE3/Core/FastTracker.cxx b/ALICE3/Core/FastTracker.cxx index 09941611510..c8b4eaa4e4c 100644 --- a/ALICE3/Core/FastTracker.cxx +++ b/ALICE3/Core/FastTracker.cxx @@ -374,7 +374,7 @@ int FastTracker::fastTrack(o2::track::TrackParCov inputTrack, o2::track::TrackPa ok = inputTrack.correctForMaterial(layers[il].getRadiationLength(), 0, applyAngularCorrection); } if (ok && mApplyElossCorrection && layers[il].getDensity() > 0) { // correct in small steps - for (int ise = xrhosteps; ise > 0; --ise) { + for (int ise = xrhosteps; ise > 0; --ise) { ok = inputTrack.correctForMaterial(0, -layers[il].getDensity() / xrhosteps, applyAngularCorrection); if (!ok) { break; @@ -467,9 +467,9 @@ int FastTracker::fastTrack(o2::track::TrackParCov inputTrack, o2::track::TrackPa // towards adding cluster: move to track alpha float alpha = inwardTrack.getAlpha(); - std::array xyz1 = { std::cos(alpha) * spacePoint[0] + std::sin(alpha) * spacePoint[1], - -std::sin(alpha) * spacePoint[0] + std::cos(alpha) * spacePoint[1], - spacePoint[2]}; + std::array xyz1 = {std::cos(alpha) * spacePoint[0] + std::sin(alpha) * spacePoint[1], + -std::sin(alpha) * spacePoint[0] + std::cos(alpha) * spacePoint[1], + spacePoint[2]}; if (!inwardTrack.propagateTo(xyz1[0], magneticField)) { continue; @@ -492,7 +492,7 @@ int FastTracker::fastTrack(o2::track::TrackParCov inputTrack, o2::track::TrackPa } } if (mApplyElossCorrection && layers[il].getDensity() > 0) { - for (int ise = xrhosteps; ise > 0; --ise) { // correct in small steps + for (int ise = xrhosteps; ise > 0; --ise) { // correct in small steps if (!inputTrack.correctForMaterial(0, layers[il].getDensity() / xrhosteps, applyAngularCorrection)) { return -7; } @@ -646,6 +646,6 @@ int FastTracker::fastTrack(o2::track::TrackParCov inputTrack, o2::track::TrackPa } // +-~-<*>-~-+-~-<*>-~-+-~-<*>-~-+-~-<*>-~-+-~-<*>-~-+-~-<*>-~-+-~-<*>-~-+-~-<*>-~-+ -} //namespace o2::fastsim +} // namespace o2::fastsim ClassImp(o2::fastsim::FastTracker);