diff --git a/Examples/Framework/include/ActsExamples/Validation/EffPlotTool.hpp b/Examples/Framework/include/ActsExamples/Validation/EffPlotTool.hpp index a0c59026f59..9fd4c3b368f 100644 --- a/Examples/Framework/include/ActsExamples/Validation/EffPlotTool.hpp +++ b/Examples/Framework/include/ActsExamples/Validation/EffPlotTool.hpp @@ -48,7 +48,8 @@ class EffPlotTool { TEfficiency* trackEff_vs_DeltaR{ nullptr}; ///< Tracking efficiency vs distance to the closest truth ///< particle - TEfficiency* trackEff_vs_prodR{nullptr}; ///< Tracking efficiency vs production radius + TEfficiency* trackEff_vs_prodR{ + nullptr}; ///< Tracking efficiency vs production radius }; /// Constructor diff --git a/Examples/Framework/src/Validation/EffPlotTool.cpp b/Examples/Framework/src/Validation/EffPlotTool.cpp index 4495bbf12f2..fc9c1f56661 100644 --- a/Examples/Framework/src/Validation/EffPlotTool.cpp +++ b/Examples/Framework/src/Validation/EffPlotTool.cpp @@ -80,10 +80,9 @@ void ActsExamples::EffPlotTool::fill(EffPlotTool::EffPlotCache& effPlotCache, const auto t_pT = truthParticle.transverseMomentum(); const auto t_z0 = truthParticle.position().z(); const auto t_deltaR = deltaR; - const auto t_prodR = std::sqrt(truthParticle.position().x() * - truthParticle.position().x() + - truthParticle.position().y() * - truthParticle.position().y()); + const auto t_prodR = + std::sqrt(truthParticle.position().x() * truthParticle.position().x() + + truthParticle.position().y() * truthParticle.position().y()); PlotHelpers::fillEff(effPlotCache.trackEff_vs_pT, t_pT, status); PlotHelpers::fillEff(effPlotCache.trackEff_vs_eta, t_eta, status); diff --git a/Examples/Io/Root/src/RootTrackSummaryWriter.cpp b/Examples/Io/Root/src/RootTrackSummaryWriter.cpp index bf4ab859c64..325bb3aa45c 100644 --- a/Examples/Io/Root/src/RootTrackSummaryWriter.cpp +++ b/Examples/Io/Root/src/RootTrackSummaryWriter.cpp @@ -394,7 +394,6 @@ ProcessCode RootTrackSummaryWriter::writeT(const AlgorithmContext& ctx, m_t_d0.push_back(t_d0); m_t_z0.push_back(t_z0); m_t_prodR.push_back(t_prodR); - // Initialize the fitted track parameters info std::array param = {NaNfloat, NaNfloat, NaNfloat,