File indexing completed on 2026-04-01 07:46:23
0001
0002
0003
0004
0005
0006
0007
0008
0009 #pragma once
0010
0011 #include "Acts/Propagator/MaterialInteractor.hpp"
0012 #include "Acts/Propagator/PropagatorStatistics.hpp"
0013 #include "Acts/Propagator/detail/SteppingLogger.hpp"
0014
0015 #include <vector>
0016
0017 namespace ActsExamples {
0018
0019 struct PropagationSummary {
0020 explicit PropagationSummary(Acts::BoundTrackParameters startParameters_)
0021 : startParameters(std::move(startParameters_)) {}
0022
0023
0024 Acts::BoundTrackParameters startParameters;
0025
0026
0027 std::size_t nSteps = 0;
0028
0029
0030 std::size_t nStepTrials = 0;
0031
0032
0033 double pathLength = 0;
0034
0035
0036 std::vector<Acts::detail::Step> steps;
0037
0038
0039 Acts::PropagatorStatistics statistics;
0040 };
0041
0042 using PropagationSummaries = std::vector<PropagationSummary>;
0043
0044
0045 using RecordedMaterial = Acts::MaterialInteractor::result_type;
0046
0047
0048
0049
0050 using RecordedMaterialTrack =
0051 std::pair<std::pair<Acts::Vector3, Acts::Vector3>, RecordedMaterial>;
0052
0053
0054 using PropagationOutput = std::pair<PropagationSummary, RecordedMaterial>;
0055
0056 }