├── .clang-format ├── .clang-tidy ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── setup.sh ├── .gersemirc ├── .gitattributes ├── .github ├── actions │ └── dependencies │ │ └── action.yml ├── dependabot.yml ├── issue_template.md ├── labeler.yml ├── pull_request_template.md ├── wip.yml └── workflows │ ├── analysis.yml │ ├── backport.yml │ ├── builds.yml │ ├── checks.yml │ ├── devcontainer-ci.yml │ ├── docs.yml │ ├── labels.yml │ ├── milestone.yml │ ├── pr-lint.yml │ ├── release.yml │ ├── remove-automerge-label.yml │ ├── report.yml │ ├── sonarcloud.yml │ ├── stale.yml │ ├── trigger_athena.yml │ └── update-pip-requirements.yml ├── .gitignore ├── .gitlab-ci.yml ├── .kodiak.toml ├── .merge-sentinel.yml ├── .policy.yml ├── .pre-commit-config.yaml ├── .zenodo.json ├── AUTHORS ├── Alignment ├── CMakeLists.txt ├── README.md ├── include │ └── ActsAlignment │ │ └── Kernel │ │ ├── Alignment.hpp │ │ ├── Alignment.ipp │ │ ├── AlignmentError.hpp │ │ ├── AlignmentMask.hpp │ │ └── detail │ │ └── AlignmentEngine.hpp └── src │ └── Kernel │ └── detail │ └── AlignmentEngine.cpp ├── CI ├── README.md ├── bump_versions.py ├── check_boost_eigen_versions.sh ├── check_boost_test_macro.sh ├── check_codegen_dependencies.sh ├── check_doxygen ├── check_end_of_file.py ├── check_format ├── check_format_local ├── check_fpe_masks.py ├── check_include_guards.py ├── check_license.py ├── check_math_macros.py ├── check_pragma_once.sh ├── check_smearing_config.py ├── check_spelling ├── check_type_t.py ├── check_unused_files.py ├── clang_tidy │ ├── check_clang_tidy.py │ ├── item.py │ ├── limits.yml │ ├── parse_clang_tidy.py │ ├── requirements.in │ ├── requirements.txt │ ├── run_clang_tidy.py │ └── run_clang_tidy.sh ├── cliff.toml ├── codespell_ignore.txt ├── ctest2junit.xsl ├── dependencies │ ├── download_geant4_datasets.py │ ├── download_models.sh │ ├── opengl.sh │ ├── parallel.sh │ ├── select_lockfile.py │ ├── setup.sh │ └── setup_spack.sh ├── fix_pragma.py ├── format_json.py ├── fpe_masks │ ├── requirements.in │ └── requirements.txt ├── get_next_milestone.py ├── git_hook_clang_format ├── headwind.yml ├── merge_hashes.py ├── missing_include_check.sh ├── perf_headwind.py ├── physmon │ ├── config │ │ ├── default.yml │ │ ├── info_only.yml │ │ ├── pythia8_ttbar.yml │ │ ├── simulation.yml │ │ ├── trackfitting_gsf.yml │ │ ├── trackfitting_gx2f.yml │ │ ├── trackfitting_kf.yml │ │ ├── tracksummary_ckf.yml │ │ ├── vertexing_4muon_50vertices.yml │ │ └── vertexing_ttbar_pu200.yml │ ├── phys_perf_mon.sh │ ├── physmon_common.py │ ├── reference │ │ ├── simulation │ │ │ ├── particles_fatras_hist.root │ │ │ ├── particles_geant4_hist.root │ │ │ ├── particles_ttbar_hist.root │ │ │ └── vertices_ttbar_hist.root │ │ ├── trackfinding_1muon │ │ │ ├── orthogonal │ │ │ │ ├── performance_finding_ckf.root │ │ │ │ ├── performance_fitting_ckf.root │ │ │ │ ├── performance_seeding.root │ │ │ │ └── tracksummary_ckf_hist.root │ │ │ ├── seeded │ │ │ │ ├── performance_finding_ckf.root │ │ │ │ ├── performance_fitting_ckf.root │ │ │ │ ├── performance_seeding.root │ │ │ │ └── tracksummary_ckf_hist.root │ │ │ ├── truth_estimated │ │ │ │ ├── performance_finding_ckf.root │ │ │ │ ├── performance_fitting_ckf.root │ │ │ │ ├── performance_seeding.root │ │ │ │ └── tracksummary_ckf_hist.root │ │ │ └── truth_smeared │ │ │ │ ├── performance_finding_ckf.root │ │ │ │ ├── performance_fitting_ckf.root │ │ │ │ └── tracksummary_ckf_hist.root │ │ ├── trackfinding_4muon_50vertices │ │ │ ├── performance_finding_ckf.root │ │ │ ├── performance_finding_ckf_ambi.root │ │ │ ├── performance_fitting_ckf.root │ │ │ ├── performance_seeding.root │ │ │ ├── performance_vertexing_amvf_gauss_notime_hist.root │ │ │ ├── performance_vertexing_amvf_grid_time_hist.root │ │ │ ├── performance_vertexing_ivf_notime_hist.root │ │ │ └── tracksummary_ckf_hist.root │ │ ├── trackfinding_ttbar_pu200 │ │ │ ├── performance_finding_ckf.root │ │ │ ├── performance_finding_ckf_ambi.root │ │ │ ├── performance_finding_ckf_ml_solver.root │ │ │ ├── performance_fitting_ckf.root │ │ │ ├── performance_seeding.root │ │ │ ├── performance_vertexing_amvf_gauss_notime_hist.root │ │ │ ├── performance_vertexing_amvf_grid_time_hist.root │ │ │ └── tracksummary_ckf_hist.root │ │ ├── trackfitting_gsf │ │ │ └── performance_trackfitting.root │ │ ├── trackfitting_gx2f │ │ │ └── performance_trackfitting.root │ │ ├── trackfitting_kf │ │ │ └── performance_trackfitting.root │ │ ├── trackrefitting_gsf │ │ │ └── performance_trackrefitting.root │ │ └── trackrefitting_kf │ │ │ └── performance_trackrefitting.root │ ├── setup.sh │ ├── summary.py │ └── workflows │ │ ├── physmon_simulation.py │ │ ├── physmon_simulation_gsf.py │ │ ├── physmon_trackfinding_1muon.py │ │ ├── physmon_trackfinding_4muon_50vertices.py │ │ ├── physmon_trackfinding_ttbar_pu200.py │ │ ├── physmon_trackfitting_gsf.py │ │ ├── physmon_trackfitting_gx2f.py │ │ ├── physmon_trackfitting_gx2f_vs_kf.py │ │ ├── physmon_trackfitting_kf.py │ │ ├── physmon_trackrefitting_gsf.py │ │ └── physmon_trackrefitting_kf.py ├── poetry.lock ├── pyproject.toml ├── release.sh ├── requirements.txt ├── root_event_diff_np.py ├── ssh_config ├── test_coverage.py └── util.py ├── CITATION.cff ├── CMakeLists.txt ├── CMakePresets.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── Core ├── ActsVersion.hpp.in ├── CMakeLists.txt ├── include │ └── Acts │ │ ├── AmbiguityResolution │ │ ├── AmbiguityNetworkConcept.hpp │ │ ├── AmbiguityResolutionML.hpp │ │ ├── GreedyAmbiguityResolution.hpp │ │ ├── GreedyAmbiguityResolution.ipp │ │ ├── ScoreBasedAmbiguityResolution.hpp │ │ └── ScoreBasedAmbiguityResolution.ipp │ │ ├── Clusterization │ │ ├── Clusterization.hpp │ │ ├── Clusterization.ipp │ │ ├── TimedClusterization.hpp │ │ └── TimedClusterization.ipp │ │ ├── Definitions │ │ ├── Algebra.hpp │ │ ├── Alignment.hpp │ │ ├── Common.hpp │ │ ├── Direction.hpp │ │ ├── ParticleData.hpp │ │ ├── PdgParticle.hpp │ │ ├── Tolerance.hpp │ │ ├── TrackParametrization.hpp │ │ └── Units.hpp │ │ ├── EventData │ │ ├── Charge.hpp │ │ ├── ChargeConcept.hpp │ │ ├── CompositeSpacePoint.hpp │ │ ├── CompositeSpacePointCalibrator.hpp │ │ ├── GenericBoundTrackParameters.hpp │ │ ├── GenericFreeTrackParameters.hpp │ │ ├── GenericParticleHypothesis.hpp │ │ ├── MeasurementHelpers.hpp │ │ ├── MultiComponentTrackParameters.hpp │ │ ├── MultiTrajectory.hpp │ │ ├── MultiTrajectory.ipp │ │ ├── MultiTrajectoryBackendConcept.hpp │ │ ├── MultiTrajectoryHelpers.hpp │ │ ├── ParticleHypothesis.hpp │ │ ├── ProxyAccessor.hpp │ │ ├── Seed.hpp │ │ ├── Seed.ipp │ │ ├── SeedContainer2.hpp │ │ ├── SeedContainer2.ipp │ │ ├── SeedProxy2.hpp │ │ ├── SourceLink.hpp │ │ ├── SpacePointColumnProxy2.hpp │ │ ├── SpacePointContainer.hpp │ │ ├── SpacePointContainer.ipp │ │ ├── SpacePointContainer2.hpp │ │ ├── SpacePointContainer2.ipp │ │ ├── SpacePointData.hpp │ │ ├── SpacePointData.ipp │ │ ├── SpacePointMutableData.hpp │ │ ├── SpacePointMutableData.ipp │ │ ├── SpacePointProxy.hpp │ │ ├── SpacePointProxy.ipp │ │ ├── SpacePointProxy2.hpp │ │ ├── SubspaceHelpers.hpp │ │ ├── TrackContainer.hpp │ │ ├── TrackContainerBackendConcept.hpp │ │ ├── TrackContainerFrontendConcept.hpp │ │ ├── TrackParameterHelpers.hpp │ │ ├── TrackParameters.hpp │ │ ├── TrackParametersConcept.hpp │ │ ├── TrackProxy.hpp │ │ ├── TrackProxyConcept.hpp │ │ ├── TrackStatePropMask.hpp │ │ ├── TrackStateProxy.hpp │ │ ├── TrackStateProxy.ipp │ │ ├── TrackStateProxyConcept.hpp │ │ ├── TrackStateType.hpp │ │ ├── TransformationHelpers.hpp │ │ ├── Types.hpp │ │ ├── Utils.hpp │ │ ├── VectorMultiTrajectory.hpp │ │ ├── VectorTrackContainer.hpp │ │ └── detail │ │ │ ├── CorrectedTransformationFreeToBound.hpp │ │ │ ├── CovarianceHelper.hpp │ │ │ ├── DynamicColumn.hpp │ │ │ ├── DynamicKeyIterator.hpp │ │ │ ├── GenerateParameters.hpp │ │ │ ├── MultiTrajectoryTestsCommon.hpp │ │ │ ├── ParameterTraits.hpp │ │ │ ├── PrintParameters.hpp │ │ │ ├── SpacePointContainer2Column.hpp │ │ │ ├── TestSourceLink.hpp │ │ │ ├── TestTrackState.hpp │ │ │ └── TrackParametersUtils.hpp │ │ ├── Geometry │ │ ├── ApproachDescriptor.hpp │ │ ├── Blueprint.hpp │ │ ├── BlueprintNode.hpp │ │ ├── BlueprintOptions.hpp │ │ ├── BoundarySurfaceFace.hpp │ │ ├── BoundarySurfaceT.hpp │ │ ├── CompositePortalLink.hpp │ │ ├── ConeLayer.hpp │ │ ├── ConeVolumeBounds.hpp │ │ ├── ContainerBlueprintNode.hpp │ │ ├── ConvexPolygonPortalShell.hpp │ │ ├── ConvexPolygonVolumeBounds.hpp │ │ ├── CuboidPortalShell.hpp │ │ ├── CuboidVolumeBounds.hpp │ │ ├── CuboidVolumeBuilder.hpp │ │ ├── CuboidVolumeStack.hpp │ │ ├── CutoutCylinderVolumeBounds.hpp │ │ ├── CylinderLayer.hpp │ │ ├── CylinderPortalShell.hpp │ │ ├── CylinderVolumeBounds.hpp │ │ ├── CylinderVolumeBuilder.hpp │ │ ├── CylinderVolumeHelper.hpp │ │ ├── CylinderVolumeStack.hpp │ │ ├── DetectorElementBase.hpp │ │ ├── DiscLayer.hpp │ │ ├── Extent.hpp │ │ ├── GenericApproachDescriptor.hpp │ │ ├── GenericCuboidVolumeBounds.hpp │ │ ├── GeometryContext.hpp │ │ ├── GeometryHierarchyMap.hpp │ │ ├── GeometryIdentifier.hpp │ │ ├── GeometryIdentifierBlueprintNode.hpp │ │ ├── GeometryObject.hpp │ │ ├── GeometryObjectSorter.hpp │ │ ├── GlueVolumesDescriptor.hpp │ │ ├── GridPortalLink.hpp │ │ ├── IConfinedTrackingVolumeBuilder.hpp │ │ ├── ILayerArrayCreator.hpp │ │ ├── ILayerBuilder.hpp │ │ ├── IReferenceGenerator.hpp │ │ ├── ISurfacesProvider.hpp │ │ ├── ITrackingGeometryBuilder.hpp │ │ ├── ITrackingVolumeArrayCreator.hpp │ │ ├── ITrackingVolumeBuilder.hpp │ │ ├── ITrackingVolumeHelper.hpp │ │ ├── IndexGrid.hpp │ │ ├── KDTreeTrackingGeometryBuilder.hpp │ │ ├── KdtSurfacesProvider.hpp │ │ ├── Layer.hpp │ │ ├── Layer.ipp │ │ ├── LayerArrayCreator.hpp │ │ ├── LayerBlueprintNode.hpp │ │ ├── LayerCreator.hpp │ │ ├── MaterialDesignatorBlueprintNode.hpp │ │ ├── MultiWireVolumeBuilder.hpp │ │ ├── NavigationLayer.hpp │ │ ├── NavigationPolicyFactory.hpp │ │ ├── PassiveLayerBuilder.hpp │ │ ├── PlaneLayer.hpp │ │ ├── Polyhedron.hpp │ │ ├── Portal.hpp │ │ ├── PortalError.hpp │ │ ├── PortalLinkBase.hpp │ │ ├── PortalShell.hpp │ │ ├── ProtoDetector.hpp │ │ ├── ProtoLayer.hpp │ │ ├── ProtoLayerHelper.hpp │ │ ├── ReferenceGenerators.hpp │ │ ├── StaticBlueprintNode.hpp │ │ ├── SurfaceArrayCreator.hpp │ │ ├── SurfaceBinningMatcher.hpp │ │ ├── TrackingGeometry.hpp │ │ ├── TrackingGeometryBuilder.hpp │ │ ├── TrackingGeometryVisitor.hpp │ │ ├── TrackingVolume.hpp │ │ ├── TrackingVolumeArrayCreator.hpp │ │ ├── TrackingVolumeVisitorConcept.hpp │ │ ├── TrapezoidPortalShell.hpp │ │ ├── TrapezoidVolumeBounds.hpp │ │ ├── TrivialPortalLink.hpp │ │ ├── Volume.hpp │ │ ├── VolumeAttachmentStrategy.hpp │ │ ├── VolumeBounds.hpp │ │ ├── VolumeResizeStrategy.hpp │ │ ├── VolumeStack.hpp │ │ └── detail │ │ │ ├── BoundDeduplicator.hpp │ │ │ └── TrackingGeometryPrintVisitor.hpp │ │ ├── MagneticField │ │ ├── BFieldMapUtils.hpp │ │ ├── ConstantBField.hpp │ │ ├── InterpolatedBFieldMap.hpp │ │ ├── MagneticFieldContext.hpp │ │ ├── MagneticFieldError.hpp │ │ ├── MagneticFieldProvider.hpp │ │ ├── MultiRangeBField.hpp │ │ ├── NullBField.hpp │ │ ├── SolenoidBField.hpp │ │ └── TextMagneticFieldIo.hpp │ │ ├── Material │ │ ├── AccumulatedMaterialSlab.hpp │ │ ├── AccumulatedSurfaceMaterial.hpp │ │ ├── AccumulatedVolumeMaterial.hpp │ │ ├── BinnedSurfaceMaterial.hpp │ │ ├── BinnedSurfaceMaterialAccumulater.hpp │ │ ├── GridSurfaceMaterial.hpp │ │ ├── GridSurfaceMaterialFactory.hpp │ │ ├── HomogeneousSurfaceMaterial.hpp │ │ ├── HomogeneousVolumeMaterial.hpp │ │ ├── IMaterialDecorator.hpp │ │ ├── ISurfaceMaterial.hpp │ │ ├── IVolumeMaterial.hpp │ │ ├── Interactions.hpp │ │ ├── InterpolatedMaterialMap.hpp │ │ ├── IntersectionMaterialAssigner.hpp │ │ ├── Material.hpp │ │ ├── MaterialComposition.hpp │ │ ├── MaterialGridHelper.hpp │ │ ├── MaterialInteraction.hpp │ │ ├── MaterialInteractionAssignment.hpp │ │ ├── MaterialMapUtils.hpp │ │ ├── MaterialMapper.hpp │ │ ├── MaterialSlab.hpp │ │ ├── MaterialValidater.hpp │ │ ├── PropagatorMaterialAssigner.hpp │ │ ├── ProtoSurfaceMaterial.hpp │ │ ├── ProtoVolumeMaterial.hpp │ │ ├── SurfaceMaterialMapper.hpp │ │ ├── TrackingGeometryMaterial.hpp │ │ ├── VolumeMaterialMapper.hpp │ │ ├── detail │ │ │ └── AverageMaterials.hpp │ │ └── interface │ │ │ ├── IAssignmentFinder.hpp │ │ │ └── ISurfaceMaterialAccumulater.hpp │ │ ├── Navigation │ │ ├── CylinderNavigationPolicy.hpp │ │ ├── INavigationPolicy.hpp │ │ ├── MultiLayerNavigationPolicy.hpp │ │ ├── MultiNavigationPolicy.hpp │ │ ├── NavigationDelegate.hpp │ │ ├── NavigationStream.hpp │ │ ├── SurfaceArrayNavigationPolicy.hpp │ │ └── TryAllNavigationPolicy.hpp │ │ ├── Propagator │ │ ├── ActorConcepts.hpp │ │ ├── ActorList.hpp │ │ ├── AtlasStepper.hpp │ │ ├── ConstrainedStep.hpp │ │ ├── DirectNavigator.hpp │ │ ├── EigenStepper.hpp │ │ ├── EigenStepper.ipp │ │ ├── EigenStepperDefaultExtension.hpp │ │ ├── EigenStepperDenseExtension.hpp │ │ ├── EigenStepperError.hpp │ │ ├── MaterialInteractor.hpp │ │ ├── MultiEigenStepperLoop.hpp │ │ ├── MultiStepperAborters.hpp │ │ ├── MultiStepperError.hpp │ │ ├── MultiStepperLoop.hpp │ │ ├── MultiStepperLoop.ipp │ │ ├── NavigationTarget.hpp │ │ ├── Navigator.hpp │ │ ├── NavigatorError.hpp │ │ ├── NavigatorOptions.hpp │ │ ├── NavigatorStatistics.hpp │ │ ├── Propagator.hpp │ │ ├── Propagator.ipp │ │ ├── PropagatorError.hpp │ │ ├── PropagatorOptions.hpp │ │ ├── PropagatorResult.hpp │ │ ├── PropagatorState.hpp │ │ ├── PropagatorStatistics.hpp │ │ ├── PropagatorTraits.hpp │ │ ├── RiddersPropagator.hpp │ │ ├── RiddersPropagator.ipp │ │ ├── StandardAborters.hpp │ │ ├── StepperConcept.hpp │ │ ├── StepperOptions.hpp │ │ ├── StepperStatistics.hpp │ │ ├── StraightLineStepper.hpp │ │ ├── SurfaceCollector.hpp │ │ ├── SympyStepper.hpp │ │ ├── TryAllNavigator.hpp │ │ ├── VoidNavigator.hpp │ │ ├── VolumeCollector.hpp │ │ └── detail │ │ │ ├── CovarianceEngine.hpp │ │ │ ├── JacobianEngine.hpp │ │ │ ├── LoopProtection.hpp │ │ │ ├── LoopStepperUtils.hpp │ │ │ ├── MaterialEffectsAccumulator.hpp │ │ │ ├── NavigationHelpers.hpp │ │ │ ├── ParameterTraits.hpp │ │ │ ├── PointwiseMaterialInteraction.hpp │ │ │ ├── SteppingHelper.hpp │ │ │ ├── SteppingLogger.hpp │ │ │ ├── SympyCovarianceEngine.hpp │ │ │ ├── SympyJacobianEngine.hpp │ │ │ ├── VolumeMaterialInteraction.hpp │ │ │ └── actor_list_implementation.hpp │ │ ├── Seeding │ │ ├── BinnedGroup.hpp │ │ ├── BinnedGroup.ipp │ │ ├── BinnedGroupIterator.hpp │ │ ├── BinnedGroupIterator.ipp │ │ ├── CandidatesForMiddleSp.hpp │ │ ├── CandidatesForMiddleSp.ipp │ │ ├── CombinatorialSeedSolver.hpp │ │ ├── CompositeSpacePointLineFitter.hpp │ │ ├── CompositeSpacePointLineFitter.ipp │ │ ├── CompositeSpacePointLineSeeder.hpp │ │ ├── CompositeSpacePointLineSeeder.ipp │ │ ├── EstimateTrackParamsFromSeed.hpp │ │ ├── GbtsDataStorage.hpp │ │ ├── GbtsGeometry.hpp │ │ ├── GbtsTrackingFilter.hpp │ │ ├── HoughTransformUtils.hpp │ │ ├── HoughTransformUtils.ipp │ │ ├── IExperimentCuts.hpp │ │ ├── Neighbour.hpp │ │ ├── PathSeeder.hpp │ │ ├── SeedConfirmationRangeConfig.hpp │ │ ├── SeedFilter.hpp │ │ ├── SeedFilter.ipp │ │ ├── SeedFilterConfig.hpp │ │ ├── SeedFinder.hpp │ │ ├── SeedFinder.ipp │ │ ├── SeedFinderConfig.hpp │ │ ├── SeedFinderGbts.hpp │ │ ├── SeedFinderGbtsConfig.hpp │ │ ├── SeedFinderOrthogonal.hpp │ │ ├── SeedFinderOrthogonal.ipp │ │ ├── SeedFinderOrthogonalConfig.hpp │ │ ├── SeedFinderUtils.hpp │ │ ├── SeedFinderUtils.ipp │ │ ├── SpacePointGrid.hpp │ │ └── detail │ │ │ ├── CompSpacePointAuxiliaries.hpp │ │ │ ├── CompSpacePointAuxiliaries.ipp │ │ │ ├── CylindricalSpacePointGrid.hpp │ │ │ ├── CylindricalSpacePointGrid.ipp │ │ │ ├── FastStrawLineFitter.hpp │ │ │ ├── FastStrawLineFitter.ipp │ │ │ └── UtilityFunctions.hpp │ │ ├── Seeding2 │ │ ├── BroadTripletSeedFilter.hpp │ │ ├── CylindricalSpacePointGrid2.hpp │ │ ├── CylindricalSpacePointKDTree.hpp │ │ ├── DoubletSeedFinder.hpp │ │ ├── ITripletSeedFilter.hpp │ │ ├── TripletSeedFinder.hpp │ │ ├── TripletSeeder.hpp │ │ └── detail │ │ │ └── CandidatesForMiddleSp2.hpp │ │ ├── SpacePointFormation │ │ ├── SpacePointBuilder.hpp │ │ ├── SpacePointBuilder.ipp │ │ ├── SpacePointBuilderConfig.hpp │ │ └── SpacePointBuilderOptions.hpp │ │ ├── SpacePointFormation2 │ │ ├── PixelSpacePointBuilder.hpp │ │ ├── SpacePointFormationError.hpp │ │ └── StripSpacePointBuilder.hpp │ │ ├── Surfaces │ │ ├── AnnulusBounds.hpp │ │ ├── BoundaryTolerance.hpp │ │ ├── ConeBounds.hpp │ │ ├── ConeSurface.hpp │ │ ├── ConvexPolygonBounds.hpp │ │ ├── ConvexPolygonBounds.ipp │ │ ├── CurvilinearSurface.hpp │ │ ├── CylinderBounds.hpp │ │ ├── CylinderSurface.hpp │ │ ├── DiamondBounds.hpp │ │ ├── DiscBounds.hpp │ │ ├── DiscSurface.hpp │ │ ├── DiscTrapezoidBounds.hpp │ │ ├── EllipseBounds.hpp │ │ ├── InfiniteBounds.hpp │ │ ├── LineBounds.hpp │ │ ├── LineSurface.hpp │ │ ├── PerigeeSurface.hpp │ │ ├── PlanarBounds.hpp │ │ ├── PlaneSurface.hpp │ │ ├── RadialBounds.hpp │ │ ├── RectangleBounds.hpp │ │ ├── RegularSurface.hpp │ │ ├── StrawSurface.hpp │ │ ├── Surface.hpp │ │ ├── SurfaceArray.hpp │ │ ├── SurfaceBounds.hpp │ │ ├── SurfaceConcept.hpp │ │ ├── SurfaceError.hpp │ │ ├── SurfaceMergingException.hpp │ │ ├── SurfaceVisitorConcept.hpp │ │ ├── TrapezoidBounds.hpp │ │ └── detail │ │ │ ├── AlignmentHelper.hpp │ │ │ ├── AnnulusBoundsHelper.hpp │ │ │ ├── FacesHelper.hpp │ │ │ ├── IntersectionHelper2D.hpp │ │ │ ├── LineHelper.hpp │ │ │ ├── MergeHelper.hpp │ │ │ ├── PlanarHelper.hpp │ │ │ └── VerticesHelper.hpp │ │ ├── TrackFinding │ │ ├── CombinatorialKalmanFilter.hpp │ │ ├── CombinatorialKalmanFilterError.hpp │ │ ├── CombinatorialKalmanFilterExtensions.hpp │ │ ├── GbtsConnector.hpp │ │ ├── MeasurementSelector.hpp │ │ ├── MeasurementSelector.ipp │ │ ├── RoiDescriptor.hpp │ │ ├── TrackParamsLookupAccumulator.hpp │ │ ├── TrackSelector.hpp │ │ ├── TrackStateCreator.hpp │ │ └── detail │ │ │ └── AmbiguityTrackClustering.hpp │ │ ├── TrackFitting │ │ ├── BetheHeitlerApprox.hpp │ │ ├── GainMatrixSmoother.hpp │ │ ├── GainMatrixUpdater.hpp │ │ ├── GaussianSumFitter.hpp │ │ ├── GlobalChiSquareFitter.hpp │ │ ├── GlobalChiSquareFitterError.hpp │ │ ├── GsfError.hpp │ │ ├── GsfMixtureReduction.hpp │ │ ├── GsfOptions.hpp │ │ ├── KalmanFitter.hpp │ │ ├── KalmanFitterError.hpp │ │ ├── MbfSmoother.hpp │ │ └── detail │ │ │ ├── GainMatrixUpdaterImpl.hpp │ │ │ ├── GsfActor.hpp │ │ │ ├── GsfComponentMerging.hpp │ │ │ ├── GsfUtils.hpp │ │ │ ├── KalmanGlobalCovariance.hpp │ │ │ ├── KalmanUpdateHelpers.hpp │ │ │ ├── SymmetricKlDistanceMatrix.hpp │ │ │ └── VoidFitterComponents.hpp │ │ ├── Utilities │ │ ├── AlgebraHelpers.hpp │ │ ├── AngleHelpers.hpp │ │ ├── AnnealingUtility.hpp │ │ ├── Any.hpp │ │ ├── AnyGridView.hpp │ │ ├── ArrayHelpers.hpp │ │ ├── Axis.hpp │ │ ├── AxisDefinitions.hpp │ │ ├── BinAdjustment.hpp │ │ ├── BinAdjustmentVolume.hpp │ │ ├── BinUtility.hpp │ │ ├── BinnedArray.hpp │ │ ├── BinnedArrayXD.hpp │ │ ├── BinningData.hpp │ │ ├── BinningType.hpp │ │ ├── BoundFactory.hpp │ │ ├── BoundingBox.hpp │ │ ├── BoundingBox.ipp │ │ ├── CalibrationContext.hpp │ │ ├── Concepts.hpp │ │ ├── DBScan.hpp │ │ ├── Delegate.hpp │ │ ├── Diagnostics.hpp │ │ ├── EigenConcepts.hpp │ │ ├── EnumBitwiseOperators.hpp │ │ ├── Enumerate.hpp │ │ ├── FiniteStateMachine.hpp │ │ ├── Frustum.hpp │ │ ├── Frustum.ipp │ │ ├── GraphViz.hpp │ │ ├── Grid.hpp │ │ ├── GridAccessHelpers.hpp │ │ ├── GridAxisGenerators.hpp │ │ ├── GridBinFinder.hpp │ │ ├── GridBinFinder.ipp │ │ ├── GridIterator.hpp │ │ ├── GridIterator.ipp │ │ ├── HashedString.hpp │ │ ├── Helpers.hpp │ │ ├── Holders.hpp │ │ ├── IAxis.hpp │ │ ├── Interpolation.hpp │ │ ├── Intersection.hpp │ │ ├── JacobianHelpers.hpp │ │ ├── JoinStrings.hpp │ │ ├── KDTree.hpp │ │ ├── Logger.hpp │ │ ├── MathHelpers.hpp │ │ ├── MultiIndex.hpp │ │ ├── OstreamFormatter.hpp │ │ ├── PointerTraits.hpp │ │ ├── ProtoAxis.hpp │ │ ├── RangeXD.hpp │ │ ├── Ray.hpp │ │ ├── Ray.ipp │ │ ├── Result.hpp │ │ ├── ScopedTimer.hpp │ │ ├── SpacePointUtility.hpp │ │ ├── StringHelpers.hpp │ │ ├── Table.hpp │ │ ├── ThrowAssert.hpp │ │ ├── TrackHelpers.hpp │ │ ├── TransformRange.hpp │ │ ├── TypeDispatcher.hpp │ │ ├── TypeList.hpp │ │ ├── TypeTag.hpp │ │ ├── TypeTraits.hpp │ │ ├── UnitVectors.hpp │ │ ├── VectorHelpers.hpp │ │ ├── Zip.hpp │ │ └── detail │ │ │ ├── ContainerConcepts.hpp │ │ │ ├── ContainerIterator.hpp │ │ │ ├── ContainerRange.hpp │ │ │ ├── ContainerSubset.hpp │ │ │ ├── ContextType.hpp │ │ │ ├── EigenCompat.hpp │ │ │ ├── Extendable.hpp │ │ │ ├── Line3DWithPartialDerivatives.hpp │ │ │ ├── Line3DWithPartialDerivatives.ipp │ │ │ ├── Polynomials.hpp │ │ │ ├── RealQuadraticEquation.hpp │ │ │ ├── TransformComparator.hpp │ │ │ ├── grid_helper.hpp │ │ │ ├── interpolation_impl.hpp │ │ │ └── periodic.hpp │ │ ├── Vertexing │ │ ├── AMVFInfo.hpp │ │ ├── AdaptiveGridDensityVertexFinder.hpp │ │ ├── AdaptiveGridTrackDensity.hpp │ │ ├── AdaptiveMultiVertexFinder.hpp │ │ ├── AdaptiveMultiVertexFitter.hpp │ │ ├── DummyVertexFitter.hpp │ │ ├── FsmwMode1dFinder.hpp │ │ ├── FullBilloirVertexFitter.hpp │ │ ├── GaussianGridTrackDensity.hpp │ │ ├── GaussianTrackDensity.hpp │ │ ├── GridDensityVertexFinder.hpp │ │ ├── HelicalTrackLinearizer.hpp │ │ ├── HoughVertexFinder.hpp │ │ ├── HoughVertexFinder.ipp │ │ ├── IVertexFinder.hpp │ │ ├── ImpactPointEstimator.hpp │ │ ├── IterativeVertexFinder.hpp │ │ ├── KalmanVertexUpdater.hpp │ │ ├── LinearizedTrack.hpp │ │ ├── LinearizerTrackParameters.hpp │ │ ├── NumericalTrackLinearizer.hpp │ │ ├── TrackAtVertex.hpp │ │ ├── TrackDensityVertexFinder.hpp │ │ ├── TrackLinearizer.hpp │ │ ├── Vertex.hpp │ │ ├── VertexingError.hpp │ │ ├── VertexingOptions.hpp │ │ ├── ZScanVertexFinder.hpp │ │ └── detail │ │ │ └── KalmanVertexUpdaterImpl.hpp │ │ └── Visualization │ │ ├── EventDataView3D.hpp │ │ ├── GeometryView3D.hpp │ │ ├── IVisualization3D.hpp │ │ ├── Interpolation3D.hpp │ │ ├── ObjVisualization3D.hpp │ │ ├── PlyVisualization3D.hpp │ │ ├── PlyVisualization3D.ipp │ │ └── ViewConfig.hpp ├── scripts │ └── print_units_physical_constants.py └── src │ ├── ActsVersion.cpp │ ├── AmbiguityResolution │ ├── CMakeLists.txt │ ├── GreedyAmbiguityResolution.cpp │ └── ScoreBasedAmbiguityResolution.cpp │ ├── Definitions │ ├── CMakeLists.txt │ ├── Common.cpp │ ├── Direction.cpp │ ├── ParticleData.cpp │ └── ParticleIdHelper.cpp │ ├── EventData │ ├── CMakeLists.txt │ ├── CorrectedTransformationFreeToBound.cpp │ ├── PrintParameters.cpp │ ├── SeedContainer2.cpp │ ├── SpacePointContainer2.cpp │ ├── TrackParameterHelpers.cpp │ ├── TrackParameters.cpp │ ├── TrackStatePropMask.cpp │ ├── TransformationHelpers.cpp │ ├── VectorMultiTrajectory.cpp │ └── VectorTrackContainer.cpp │ ├── Geometry │ ├── Blueprint.cpp │ ├── BlueprintNode.cpp │ ├── BlueprintOptions.cpp │ ├── CMakeLists.txt │ ├── CompositePortalLink.cpp │ ├── ConeLayer.cpp │ ├── ConeVolumeBounds.cpp │ ├── ContainerBlueprintNode.cpp │ ├── ConvexPolygonPortalShell.cpp │ ├── ConvexPolygonVolumeBounds.cpp │ ├── CuboidPortalShell.cpp │ ├── CuboidVolumeBounds.cpp │ ├── CuboidVolumeBuilder.cpp │ ├── CuboidVolumeStack.cpp │ ├── CutoutCylinderVolumeBounds.cpp │ ├── CylinderLayer.cpp │ ├── CylinderPortalShell.cpp │ ├── CylinderVolumeBounds.cpp │ ├── CylinderVolumeBuilder.cpp │ ├── CylinderVolumeHelper.cpp │ ├── CylinderVolumeStack.cpp │ ├── DiscLayer.cpp │ ├── Extent.cpp │ ├── GenericApproachDescriptor.cpp │ ├── GenericCuboidVolumeBounds.cpp │ ├── GeometryIdentifier.cpp │ ├── GeometryIdentifierBlueprintNode.cpp │ ├── GlueVolumesDescriptor.cpp │ ├── GridPortalLink.cpp │ ├── GridPortalLinkMerging.cpp │ ├── IndexGrid.cpp │ ├── KDTreeTrackingGeometryBuilder.cpp │ ├── Layer.cpp │ ├── LayerArrayCreator.cpp │ ├── LayerBlueprintNode.cpp │ ├── LayerCreator.cpp │ ├── MaterialDesignatorBlueprintNode.cpp │ ├── MultiWireVolumeBuilder.cpp │ ├── NavigationLayer.cpp │ ├── PassiveLayerBuilder.cpp │ ├── PlaneLayer.cpp │ ├── Polyhedron.cpp │ ├── Portal.cpp │ ├── PortalError.cpp │ ├── PortalLinkBase.cpp │ ├── ProtoDetector.cpp │ ├── ProtoLayer.cpp │ ├── ProtoLayerHelper.cpp │ ├── ReferenceGenerators.cpp │ ├── StaticBlueprintNode.cpp │ ├── SurfaceArrayCreator.cpp │ ├── TrackingGeometry.cpp │ ├── TrackingGeometryBuilder.cpp │ ├── TrackingGeometryVisitor.cpp │ ├── TrackingVolume.cpp │ ├── TrackingVolumeArrayCreator.cpp │ ├── TrapezoidPortalShell.cpp │ ├── TrapezoidVolumeBounds.cpp │ ├── TrivialPortalLink.cpp │ ├── Volume.cpp │ ├── VolumeAttachmentStrategy.cpp │ ├── VolumeBounds.cpp │ ├── VolumeResizeStrategy.cpp │ ├── VolumeStack.cpp │ └── detail │ │ ├── BoundDeduplicator.cpp │ │ ├── MaterialDesignator.hpp │ │ └── TrackingGeometryPrintVisitor.cpp │ ├── MagneticField │ ├── BFieldMapUtils.cpp │ ├── CMakeLists.txt │ ├── MagneticFieldError.cpp │ ├── MultiRangeBField.cpp │ ├── SolenoidBField.cpp │ └── TextMagneticFieldIo.cpp │ ├── Material │ ├── AccumulatedMaterialSlab.cpp │ ├── AccumulatedSurfaceMaterial.cpp │ ├── AccumulatedVolumeMaterial.cpp │ ├── AverageMaterials.cpp │ ├── BinnedSurfaceMaterial.cpp │ ├── BinnedSurfaceMaterialAccumulater.cpp │ ├── CMakeLists.txt │ ├── GridSurfaceMaterialFactory.cpp │ ├── HomogeneousSurfaceMaterial.cpp │ ├── HomogeneousVolumeMaterial.cpp │ ├── Interactions.cpp │ ├── IntersectionMaterialAssigner.cpp │ ├── Material.cpp │ ├── MaterialGridHelper.cpp │ ├── MaterialInteractionAssignment.cpp │ ├── MaterialMapUtils.cpp │ ├── MaterialMapper.cpp │ ├── MaterialSlab.cpp │ ├── MaterialValidater.cpp │ ├── ProtoVolumeMaterial.cpp │ ├── SurfaceMaterialMapper.cpp │ └── VolumeMaterialMapper.cpp │ ├── Navigation │ ├── CMakeLists.txt │ ├── CylinderNavigationPolicy.cpp │ ├── MultiLayerNavigationPolicy.cpp │ ├── MultiNavigationPolicy.cpp │ ├── NavigationStream.cpp │ ├── SurfaceArrayNavigationPolicy.cpp │ └── TryAllNavigationPolicy.cpp │ ├── Propagator │ ├── CMakeLists.txt │ ├── EigenStepperError.cpp │ ├── MultiStepperError.cpp │ ├── NavigatorError.cpp │ ├── PropagatorError.cpp │ ├── StraightLineStepper.cpp │ ├── SympyStepper.cpp │ ├── detail │ │ ├── CovarianceEngine.cpp │ │ ├── JacobianEngine.cpp │ │ ├── MaterialEffectsAccumulator.cpp │ │ ├── PointwiseMaterialInteraction.cpp │ │ ├── SympyCovarianceEngine.cpp │ │ ├── SympyJacobianEngine.cpp │ │ ├── generate_sympy_cov.py │ │ └── generate_sympy_jac.py │ └── generate_sympy_stepper.py │ ├── Seeding │ ├── CMakeLists.txt │ ├── CompSpacePointAuxiliaries.cpp │ ├── CompositeSpacePointLineFitter.cpp │ ├── EstimateTrackParamsFromSeed.cpp │ ├── FastStrawLineFitter.cpp │ ├── GbtsDataStorage.cpp │ ├── GbtsGeometry.cpp │ ├── GbtsTrackingFilter.cpp │ └── SeedFinderGbts.cpp │ ├── Seeding2 │ ├── BroadTripletSeedFilter.cpp │ ├── CMakeLists.txt │ ├── CylindricalSpacePointGrid2.cpp │ ├── CylindricalSpacePointKDTree.cpp │ ├── DoubletSeedFinder.cpp │ ├── TripletSeedFinder.cpp │ ├── TripletSeeder.cpp │ └── detail │ │ └── CandidatesForMiddleSp2.cpp │ ├── SpacePointFormation2 │ ├── CMakeLists.txt │ ├── PixelSpacePointBuilder.cpp │ ├── SpacePointFormationError.cpp │ └── StripSpacePointBuilder.cpp │ ├── Surfaces │ ├── AnnulusBounds.cpp │ ├── BoundaryTolerance.cpp │ ├── CMakeLists.txt │ ├── ConeBounds.cpp │ ├── ConeSurface.cpp │ ├── ConvexPolygonBounds.cpp │ ├── CurvilinearSurface.cpp │ ├── CylinderBounds.cpp │ ├── CylinderSurface.cpp │ ├── DiamondBounds.cpp │ ├── DiscSurface.cpp │ ├── DiscTrapezoidBounds.cpp │ ├── EllipseBounds.cpp │ ├── IntersectionHelper2D.cpp │ ├── LineBounds.cpp │ ├── LineSurface.cpp │ ├── PerigeeSurface.cpp │ ├── PlaneSurface.cpp │ ├── RadialBounds.cpp │ ├── RectangleBounds.cpp │ ├── RegularSurface.cpp │ ├── StrawSurface.cpp │ ├── Surface.cpp │ ├── SurfaceArray.cpp │ ├── SurfaceBounds.cpp │ ├── SurfaceError.cpp │ ├── TrapezoidBounds.cpp │ └── detail │ │ ├── AlignmentHelper.cpp │ │ ├── AnnulusBoundsHelper.cpp │ │ ├── MergeHelper.cpp │ │ └── VerticesHelper.cpp │ ├── TrackFinding │ ├── AmbiguityTrackClustering.cpp │ ├── CMakeLists.txt │ ├── CombinatorialKalmanFilterError.cpp │ ├── GbtsConnector.cpp │ ├── MeasurementSelector.cpp │ └── RoiDescriptor.cpp │ ├── TrackFitting │ ├── BetheHeitlerApprox.cpp │ ├── CMakeLists.txt │ ├── GainMatrixSmoother.cpp │ ├── GainMatrixUpdater.cpp │ ├── GainMatrixUpdaterImpl.cpp.in │ ├── GlobalChiSquareFitter.cpp │ ├── GlobalChiSquareFitterError.cpp │ ├── GsfError.cpp │ ├── GsfMixtureReduction.cpp │ ├── GsfUtils.cpp │ ├── KalmanFitterError.cpp │ └── MbfSmoother.cpp │ ├── Utilities │ ├── AnnealingUtility.cpp │ ├── AxisDefinitions.cpp │ ├── CMakeLists.txt │ ├── GraphViz.cpp │ ├── IAxis.cpp │ ├── Intersection.cpp │ ├── Logger.cpp │ ├── ProtoAxis.cpp │ ├── ScopedTimer.cpp │ ├── SpacePointUtility.cpp │ ├── TrackHelpers.cpp │ └── TransformComparator.cpp │ ├── Vertexing │ ├── AdaptiveGridDensityVertexFinder.cpp │ ├── AdaptiveGridTrackDensity.cpp │ ├── AdaptiveMultiVertexFinder.cpp │ ├── AdaptiveMultiVertexFitter.cpp │ ├── CMakeLists.txt │ ├── FsmwMode1dFinder.cpp │ ├── FullBilloirVertexFitter.cpp │ ├── GaussianGridTrackDensity.cpp │ ├── GaussianTrackDensity.cpp │ ├── GridDensityVertexFinder.cpp │ ├── HelicalTrackLinearizer.cpp │ ├── ImpactPointEstimator.cpp │ ├── IterativeVertexFinder.cpp │ ├── KalmanVertexUpdater.cpp │ ├── KalmanVertexUpdaterImpl3.cpp │ ├── KalmanVertexUpdaterImpl4.cpp │ ├── NumericalTrackLinearizer.cpp │ ├── TrackDensityVertexFinder.cpp │ ├── Vertex.cpp │ ├── VertexingError.cpp │ └── ZScanVertexFinder.cpp │ └── Visualization │ ├── CMakeLists.txt │ ├── EventDataView3D.cpp │ ├── GeometryView3D.cpp │ └── ObjVisualization3D.cpp ├── Examples ├── Algorithms │ ├── Alignment │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── Alignment │ │ │ │ └── AlignmentAlgorithm.hpp │ │ └── src │ │ │ ├── AlignmentAlgorithm.cpp │ │ │ └── AlignmentAlgorithmFunction.cpp │ ├── AmbiguityResolution │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── AmbiguityResolution │ │ │ │ ├── GreedyAmbiguityResolutionAlgorithm.hpp │ │ │ │ └── ScoreBasedAmbiguityResolutionAlgorithm.hpp │ │ └── src │ │ │ ├── GreedyAmbiguityResolutionAlgorithm.cpp │ │ │ └── ScoreBasedAmbiguityResolutionAlgorithm.cpp │ ├── CMakeLists.txt │ ├── Digitization │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── Digitization │ │ │ │ ├── DigitizationAlgorithm.hpp │ │ │ │ ├── DigitizationConfig.hpp │ │ │ │ ├── DigitizationConfigurator.hpp │ │ │ │ ├── DigitizationCoordinatesConverter.hpp │ │ │ │ ├── GeometricConfig.hpp │ │ │ │ ├── MeasurementCreation.hpp │ │ │ │ ├── ModuleClusters.hpp │ │ │ │ ├── MuonSpacePointDigitizer.hpp │ │ │ │ ├── Smearers.hpp │ │ │ │ └── SmearingConfig.hpp │ │ ├── scripts │ │ │ └── smearing-config.py │ │ └── src │ │ │ ├── DigitizationAlgorithm.cpp │ │ │ ├── DigitizationConfig.cpp │ │ │ ├── DigitizationConfigurator.cpp │ │ │ ├── DigitizationCoordinatesConverter.cpp │ │ │ ├── MeasurementCreation.cpp │ │ │ ├── ModuleClusters.cpp │ │ │ └── MuonSpacePointDigitizer.cpp │ ├── Fatras │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── Fatras │ │ │ │ └── FatrasSimulation.hpp │ │ └── src │ │ │ └── FatrasSimulation.cpp │ ├── Geant4 │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── Geant4 │ │ │ │ ├── AlgebraConverters.hpp │ │ │ │ ├── EventStore.hpp │ │ │ │ ├── Geant4ConstructionOptions.hpp │ │ │ │ ├── Geant4Manager.hpp │ │ │ │ ├── Geant4Simulation.hpp │ │ │ │ ├── MagneticFieldWrapper.hpp │ │ │ │ ├── MaterialPhysicsList.hpp │ │ │ │ ├── MaterialSteppingAction.hpp │ │ │ │ ├── ParticleKillAction.hpp │ │ │ │ ├── ParticleTrackingAction.hpp │ │ │ │ ├── PhysicsListFactory.hpp │ │ │ │ ├── RegionCreator.hpp │ │ │ │ ├── SensitiveSteppingAction.hpp │ │ │ │ ├── SensitiveSurfaceMapper.hpp │ │ │ │ ├── SimParticleTranslation.hpp │ │ │ │ └── SteppingActionList.hpp │ │ └── src │ │ │ ├── AlgebraConverters.cpp │ │ │ ├── Geant4Manager.cpp │ │ │ ├── Geant4Simulation.cpp │ │ │ ├── MagneticFieldWrapper.cpp │ │ │ ├── MaterialPhysicsList.cpp │ │ │ ├── MaterialSteppingAction.cpp │ │ │ ├── ParticleKillAction.cpp │ │ │ ├── ParticleTrackingAction.cpp │ │ │ ├── PhysicsListFactory.cpp │ │ │ ├── RegionCreator.cpp │ │ │ ├── SensitiveSteppingAction.cpp │ │ │ ├── SensitiveSurfaceMapper.cpp │ │ │ └── SimParticleTranslation.cpp │ ├── Generators │ │ ├── ActsExamples │ │ │ └── Generators │ │ │ │ ├── EventGenerator.cpp │ │ │ │ └── EventGenerator.hpp │ │ └── CMakeLists.txt │ ├── GeneratorsPythia8 │ │ ├── ActsExamples │ │ │ └── Generators │ │ │ │ ├── Pythia8ProcessGenerator.cpp │ │ │ │ └── Pythia8ProcessGenerator.hpp │ │ └── CMakeLists.txt │ ├── Jets │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── Jets │ │ │ │ └── TruthJetAlgorithm.hpp │ │ └── src │ │ │ └── TruthJetAlgorithm.cpp │ ├── MaterialMapping │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── MaterialMapping │ │ │ │ ├── CoreMaterialMapping.hpp │ │ │ │ ├── IMaterialWriter.hpp │ │ │ │ ├── MappingMaterialDecorator.hpp │ │ │ │ ├── MaterialMapping.hpp │ │ │ │ ├── MaterialMappingOptions.hpp │ │ │ │ └── MaterialValidation.hpp │ │ └── src │ │ │ ├── CoreMaterialMapping.cpp │ │ │ ├── MaterialMapping.cpp │ │ │ └── MaterialValidation.cpp │ ├── Printers │ │ ├── ActsExamples │ │ │ └── Printers │ │ │ │ ├── ParticlesPrinter.cpp │ │ │ │ ├── ParticlesPrinter.hpp │ │ │ │ ├── TrackParametersPrinter.cpp │ │ │ │ └── TrackParametersPrinter.hpp │ │ └── CMakeLists.txt │ ├── Propagation │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── Propagation │ │ │ │ ├── PropagationAlgorithm.hpp │ │ │ │ └── PropagatorInterface.hpp │ │ └── src │ │ │ └── PropagationAlgorithm.cpp │ ├── Traccc │ │ ├── CMakeLists.txt │ │ └── include │ │ │ └── ActsExamples │ │ │ └── Traccc │ │ │ ├── DetrayPropagator.hpp │ │ │ └── DetrayStore.hpp │ ├── TrackFinding │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── TrackFinding │ │ │ │ ├── AdaptiveHoughTransformSeeder.hpp │ │ │ │ ├── DefaultHoughFunctions.hpp │ │ │ │ ├── GbtsSeedingAlgorithm.hpp │ │ │ │ ├── GridTripletSeedingAlgorithm.hpp │ │ │ │ ├── HoughTransformSeeder.hpp │ │ │ │ ├── ITrackParamsLookupReader.hpp │ │ │ │ ├── ITrackParamsLookupWriter.hpp │ │ │ │ ├── MuonHoughSeeder.hpp │ │ │ │ ├── OrthogonalTripletSeedingAlgorithm.hpp │ │ │ │ ├── SeedingAlgorithm.hpp │ │ │ │ ├── SeedingAlgorithmHashing.hpp │ │ │ │ ├── SeedingOrthogonalAlgorithm.hpp │ │ │ │ ├── SpacePointMaker.hpp │ │ │ │ ├── TrackFindingAlgorithm.hpp │ │ │ │ ├── TrackParamsEstimationAlgorithm.hpp │ │ │ │ ├── TrackParamsLookupEstimation.hpp │ │ │ │ └── TrackParamsLookupTable.hpp │ │ └── src │ │ │ ├── AdaptiveHoughTransformSeeder.cpp │ │ │ ├── GbtsSeedingAlgorithm.cpp │ │ │ ├── GridTripletSeedingAlgorithm.cpp │ │ │ ├── HoughTransformSeeder.cpp │ │ │ ├── MuonHoughSeeder.cpp │ │ │ ├── OrthogonalTripletSeedingAlgorithm.cpp │ │ │ ├── SeedingAlgorithm.cpp │ │ │ ├── SeedingAlgorithmHashing.cpp │ │ │ ├── SeedingOrthogonalAlgorithm.cpp │ │ │ ├── SpacePointMaker.cpp │ │ │ ├── TrackFindingAlgorithm.cpp │ │ │ ├── TrackFindingAlgorithmFunction.cpp │ │ │ ├── TrackParamsEstimationAlgorithm.cpp │ │ │ └── TrackParamsLookupEstimation.cpp │ ├── TrackFindingGnn │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── TrackFindingGnn │ │ │ │ ├── PrototracksToParameters.hpp │ │ │ │ ├── TrackFindingAlgorithmGnn.hpp │ │ │ │ ├── TrackFindingFromPrototrackAlgorithm.hpp │ │ │ │ └── TruthGraphBuilder.hpp │ │ └── src │ │ │ ├── PrototracksToParameters.cpp │ │ │ ├── TrackFindingAlgorithmGnn.cpp │ │ │ ├── TrackFindingFromPrototrackAlgorithm.cpp │ │ │ ├── TruthGraphBuilder.cpp │ │ │ ├── createFeatures.cpp │ │ │ └── createFeatures.hpp │ ├── TrackFindingML │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── TrackFindingML │ │ │ │ ├── AmbiguityResolutionMLAlgorithm.hpp │ │ │ │ ├── SeedFilterDBScanClustering.hpp │ │ │ │ └── SeedFilterMLAlgorithm.hpp │ │ └── src │ │ │ ├── AmbiguityResolutionMLAlgorithm.cpp │ │ │ └── SeedFilterMLAlgorithm.cpp │ ├── TrackFitting │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── TrackFitting │ │ │ │ ├── RefittingAlgorithm.hpp │ │ │ │ ├── RefittingCalibrator.hpp │ │ │ │ ├── TrackFitterFunction.hpp │ │ │ │ └── TrackFittingAlgorithm.hpp │ │ └── src │ │ │ ├── GlobalChiSquareFitterFunction.cpp │ │ │ ├── GsfFitterFunction.cpp │ │ │ ├── KalmanFitterFunction.cpp │ │ │ ├── RefittingAlgorithm.cpp │ │ │ ├── RefittingCalibrator.cpp │ │ │ └── TrackFittingAlgorithm.cpp │ ├── TruthTracking │ │ ├── ActsExamples │ │ │ └── TruthTracking │ │ │ │ ├── HitSelector.cpp │ │ │ │ ├── HitSelector.hpp │ │ │ │ ├── ParticleSelector.cpp │ │ │ │ ├── ParticleSelector.hpp │ │ │ │ ├── ParticleTrackParamExtractor.cpp │ │ │ │ ├── ParticleTrackParamExtractor.hpp │ │ │ │ ├── TrackModifier.cpp │ │ │ │ ├── TrackModifier.hpp │ │ │ │ ├── TrackParameterSelector.cpp │ │ │ │ ├── TrackParameterSelector.hpp │ │ │ │ ├── TrackParameterSmearing.cpp │ │ │ │ ├── TrackParameterSmearing.hpp │ │ │ │ ├── TrackTruthMatcher.cpp │ │ │ │ ├── TrackTruthMatcher.hpp │ │ │ │ ├── TruthSeedingAlgorithm.cpp │ │ │ │ ├── TruthSeedingAlgorithm.hpp │ │ │ │ ├── TruthTrackFinder.cpp │ │ │ │ ├── TruthTrackFinder.hpp │ │ │ │ ├── TruthVertexFinder.cpp │ │ │ │ └── TruthVertexFinder.hpp │ │ └── CMakeLists.txt │ ├── Utilities │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── Utilities │ │ │ │ ├── MeasurementMapSelector.hpp │ │ │ │ ├── PrototracksToSeeds.hpp │ │ │ │ ├── PrototracksToTracks.hpp │ │ │ │ ├── SeedsToPrototracks.hpp │ │ │ │ ├── TrackSelectorAlgorithm.hpp │ │ │ │ ├── TracksToParameters.hpp │ │ │ │ ├── TracksToTrajectories.hpp │ │ │ │ └── TrajectoriesToPrototracks.hpp │ │ └── src │ │ │ ├── PrototracksToSeeds.cpp │ │ │ ├── PrototracksToTracks.cpp │ │ │ ├── SeedsToPrototracks.cpp │ │ │ ├── TrackSelectorAlgorithm.cpp │ │ │ ├── TracksToParameters.cpp │ │ │ ├── TracksToTrajectories.cpp │ │ │ └── TrajectoriesToPrototracks.cpp │ └── Vertexing │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── ActsExamples │ │ │ └── Vertexing │ │ │ ├── AdaptiveMultiVertexFinderAlgorithm.hpp │ │ │ ├── HoughVertexFinderAlgorithm.hpp │ │ │ ├── IterativeVertexFinderAlgorithm.hpp │ │ │ └── VertexFitterAlgorithm.hpp │ │ └── src │ │ ├── AdaptiveMultiVertexFinderAlgorithm.cpp │ │ ├── HoughVertexFinderAlgorithm.cpp │ │ ├── IterativeVertexFinderAlgorithm.cpp │ │ ├── TruthVertexSeeder.cpp │ │ ├── TruthVertexSeeder.hpp │ │ ├── VertexFitterAlgorithm.cpp │ │ └── VertexingHelpers.hpp ├── CMakeLists.txt ├── Configs │ ├── generic-alignment-geo.json │ ├── generic-digi-geometric-config.json │ ├── generic-digi-smearing-config.json │ ├── generic-input-config.json │ ├── generic-seeding-config.json │ ├── odd-digi-geometric-config.json │ ├── odd-digi-smearing-config-notime.json │ ├── odd-digi-smearing-config.json │ ├── odd-seeding-config.json │ ├── odd-strip-spacepoint-selection.json │ └── telescope-digi-smearing-config.json ├── Detectors │ ├── CMakeLists.txt │ ├── Common │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── DetectorCommons │ │ │ │ ├── Aligned.hpp │ │ │ │ ├── AlignmentContext.hpp │ │ │ │ ├── AlignmentDecorator.hpp │ │ │ │ ├── AlignmentGenerator.hpp │ │ │ │ ├── Detector.hpp │ │ │ │ └── StructureSelector.hpp │ │ └── src │ │ │ ├── AlignmentDecorator.cpp │ │ │ ├── Detector.cpp │ │ │ └── StructureSelector.cpp │ ├── DD4hepDetector │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── DD4hepDetector │ │ │ │ ├── AlignedDD4hepDetectorElement.hpp │ │ │ │ ├── DD4hepDetector.hpp │ │ │ │ ├── DDG4DetectorConstruction.hpp │ │ │ │ └── OpenDataDetector.hpp │ │ └── src │ │ │ ├── AlignedDD4hepDetectorElement.cpp │ │ │ ├── DD4hepDetector.cpp │ │ │ ├── DD4hepDetectorGeant4.cpp │ │ │ ├── DD4hepDetectorGeant4Stub.cpp │ │ │ ├── DDG4DetectorConstruction.cpp │ │ │ └── OpenDataDetector.cpp │ ├── Geant4Detector │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── Geant4Detector │ │ │ │ ├── GdmlDetector.hpp │ │ │ │ ├── GdmlDetectorConstruction.hpp │ │ │ │ └── Geant4Detector.hpp │ │ └── src │ │ │ ├── GdmlDetector.cpp │ │ │ ├── GdmlDetectorConstruction.cpp │ │ │ └── Geant4Detector.cpp │ ├── GenericDetector │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── GenericDetector │ │ │ │ ├── AlignedGenericDetector.hpp │ │ │ │ ├── GenericDetector.hpp │ │ │ │ ├── GenericDetectorElement.hpp │ │ │ │ ├── LayerBuilder.hpp │ │ │ │ └── ProtoLayerCreator.hpp │ │ └── src │ │ │ ├── AlignedGenericDetector.cpp │ │ │ ├── GenericDetector.cpp │ │ │ ├── GenericDetectorBuilder.cpp │ │ │ ├── GenericDetectorBuilder.hpp │ │ │ ├── GenericDetectorElement.cpp │ │ │ ├── LayerBuilder.cpp │ │ │ └── ProtoLayerCreator.cpp │ ├── GeoModelDetector │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── GeoModelDetector │ │ │ │ ├── AlignedGeoModelDetectorElement.hpp │ │ │ │ ├── GeoModelDetector.hpp │ │ │ │ ├── GeoModelGeant4DetectorConstruction.hpp │ │ │ │ └── GeoModelMuonMockupBuilder.hpp │ │ └── src │ │ │ ├── AlignedGeoModelDetectorElement.cpp │ │ │ ├── GeoModelDetector.cpp │ │ │ ├── GeoModelDetectorGeant4.cpp │ │ │ ├── GeoModelDetectorGeant4Stub.cpp │ │ │ ├── GeoModelGeant4DetectorConstruction.cpp │ │ │ └── GeoModelMuonMockupBuilder.cpp │ ├── ITkModuleSplitting │ │ ├── CMakeLists.txt │ │ └── include │ │ │ └── ActsExamples │ │ │ └── ITkModuleSplitting │ │ │ └── ITkModuleSplitting.hpp │ ├── MagneticField │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── MagneticField │ │ │ │ ├── MagneticField.hpp │ │ │ │ ├── ScalableBField.hpp │ │ │ │ └── ScalableBFieldService.hpp │ │ └── src │ │ │ └── ScalableBFieldService.cpp │ ├── MuonSpectrometerMockupDetector │ │ ├── CMakeLists.txt │ │ ├── MuonChamber.gdml │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── MuonSpectrometerMockupDetector │ │ │ │ └── GeoMuonMockupExperiment.hpp │ │ └── src │ │ │ └── GeoMuonMockupExperiment.cpp │ ├── TGeoDetector │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── TGeoDetector │ │ │ │ ├── AlignedTGeoDetectorElement.hpp │ │ │ │ ├── JsonTGeoDetectorConfig.hpp │ │ │ │ ├── TGeoDetector.hpp │ │ │ │ └── TGeoITkModuleSplitter.hpp │ │ └── src │ │ │ ├── AlignedTGeoDetectorElement.cpp │ │ │ ├── TGeoDetector.cpp │ │ │ └── TGeoITkModuleSplitter.cpp │ └── TelescopeDetector │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── ActsExamples │ │ │ └── TelescopeDetector │ │ │ ├── BuildTelescopeDetector.hpp │ │ │ ├── TelescopeDetector.hpp │ │ │ ├── TelescopeDetectorElement.hpp │ │ │ └── TelescopeG4DetectorConstruction.hpp │ │ └── src │ │ ├── BuildTelescopeDetector.cpp │ │ ├── TelescopeDetector.cpp │ │ ├── TelescopeDetectorElement.cpp │ │ ├── TelescopeDetectorGeant4.cpp │ │ ├── TelescopeDetectorGeant4Stub.cpp │ │ └── TelescopeG4DetectorConstruction.cpp ├── Framework │ ├── CMakeLists.txt │ ├── ML │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── EventData │ │ │ │ └── NeuralCalibrator.hpp │ │ └── src │ │ │ └── NeuralCalibrator.cpp │ ├── include │ │ └── ActsExamples │ │ │ ├── EventData │ │ │ ├── AverageSimHits.hpp │ │ │ ├── Cluster.hpp │ │ │ ├── ExtractedSimulationProcess.hpp │ │ │ ├── GeometryContainers.hpp │ │ │ ├── Graph.hpp │ │ │ ├── Index.hpp │ │ │ ├── IndexSourceLink.hpp │ │ │ ├── Measurement.hpp │ │ │ ├── MeasurementCalibration.hpp │ │ │ ├── MeasurementConcept.hpp │ │ │ ├── MuonHoughMaximum.hpp │ │ │ ├── MuonSegment.hpp │ │ │ ├── MuonSpacePoint.hpp │ │ │ ├── MuonSpacePointCalibrator.hpp │ │ │ ├── PropagationSummary.hpp │ │ │ ├── ProtoTrack.hpp │ │ │ ├── ProtoVertex.hpp │ │ │ ├── ScalingCalibrator.hpp │ │ │ ├── SimHit.hpp │ │ │ ├── SimParticle.hpp │ │ │ ├── SimSeed.hpp │ │ │ ├── SimSpacePoint.hpp │ │ │ ├── SimVertex.hpp │ │ │ ├── SpacePointContainer.hpp │ │ │ ├── Track.hpp │ │ │ ├── Trajectories.hpp │ │ │ ├── TruthMatching.hpp │ │ │ └── Vertex.hpp │ │ │ ├── Framework │ │ │ ├── AlgorithmContext.hpp │ │ │ ├── BufferedReader.hpp │ │ │ ├── DataHandle.hpp │ │ │ ├── IAlgorithm.hpp │ │ │ ├── IContextDecorator.hpp │ │ │ ├── IReader.hpp │ │ │ ├── IWriter.hpp │ │ │ ├── ProcessCode.hpp │ │ │ ├── RandomNumbers.hpp │ │ │ ├── SequenceElement.hpp │ │ │ ├── Sequencer.hpp │ │ │ ├── WhiteBoard.hpp │ │ │ └── WriterT.hpp │ │ │ ├── Utilities │ │ │ ├── EventDataTransforms.hpp │ │ │ ├── GroupBy.hpp │ │ │ ├── Helpers.hpp │ │ │ ├── MultiplicityGenerators.hpp │ │ │ ├── Options.hpp │ │ │ ├── ParametricParticleGenerator.hpp │ │ │ ├── Paths.hpp │ │ │ ├── Range.hpp │ │ │ ├── VertexGenerators.hpp │ │ │ └── tbbWrap.hpp │ │ │ └── Validation │ │ │ ├── DuplicationPlotTool.hpp │ │ │ ├── EffPlotTool.hpp │ │ │ ├── FakePlotTool.hpp │ │ │ ├── ResPlotTool.hpp │ │ │ ├── TrackClassification.hpp │ │ │ ├── TrackQualityPlotTool.hpp │ │ │ └── TrackSummaryPlotTool.hpp │ └── src │ │ ├── EventData │ │ ├── Measurement.cpp │ │ ├── MeasurementCalibration.cpp │ │ ├── MuonSpacePoint.cpp │ │ ├── MuonSpacePointCalibrator.cpp │ │ ├── ScalingCalibrator.cpp │ │ └── SimParticle.cpp │ │ ├── Framework │ │ ├── BufferedReader.cpp │ │ ├── DataHandle.cpp │ │ ├── IAlgorithm.cpp │ │ ├── RandomNumbers.cpp │ │ ├── SequenceElement.cpp │ │ ├── Sequencer.cpp │ │ └── WhiteBoard.cpp │ │ ├── Utilities │ │ ├── EventDataTransforms.cpp │ │ ├── Helpers.cpp │ │ ├── Options.cpp │ │ ├── ParametricParticleGenerator.cpp │ │ └── Paths.cpp │ │ └── Validation │ │ ├── DuplicationPlotTool.cpp │ │ ├── EffPlotTool.cpp │ │ ├── FakePlotTool.cpp │ │ ├── ResPlotTool.cpp │ │ ├── TrackClassification.cpp │ │ ├── TrackQualityPlotTool.cpp │ │ └── TrackSummaryPlotTool.cpp ├── HelloWorld │ ├── CMakeLists.txt │ ├── HelloData.hpp │ ├── HelloLoggerAlgorithm.cpp │ ├── HelloLoggerAlgorithm.hpp │ ├── HelloRandomAlgorithm.cpp │ ├── HelloRandomAlgorithm.hpp │ ├── HelloWhiteBoardAlgorithm.cpp │ ├── HelloWhiteBoardAlgorithm.hpp │ └── HelloWorld.cpp ├── Io │ ├── CMakeLists.txt │ ├── Csv │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── Io │ │ │ │ └── Csv │ │ │ │ ├── CsvBFieldWriter.hpp │ │ │ │ ├── CsvGnnGraphReader.hpp │ │ │ │ ├── CsvGnnGraphWriter.hpp │ │ │ │ ├── CsvInputOutput.hpp │ │ │ │ ├── CsvMeasurementReader.hpp │ │ │ │ ├── CsvMeasurementWriter.hpp │ │ │ │ ├── CsvMuonSegmentReader.hpp │ │ │ │ ├── CsvMuonSpacePointReader.hpp │ │ │ │ ├── CsvParticleReader.hpp │ │ │ │ ├── CsvParticleWriter.hpp │ │ │ │ ├── CsvProtoTrackWriter.hpp │ │ │ │ ├── CsvSeedWriter.hpp │ │ │ │ ├── CsvSimHitReader.hpp │ │ │ │ ├── CsvSimHitWriter.hpp │ │ │ │ ├── CsvSpacePointReader.hpp │ │ │ │ ├── CsvSpacePointWriter.hpp │ │ │ │ ├── CsvSpacePointsBucketWriter.hpp │ │ │ │ ├── CsvTrackParameterReader.hpp │ │ │ │ ├── CsvTrackParameterWriter.hpp │ │ │ │ ├── CsvTrackWriter.hpp │ │ │ │ ├── CsvTrackingGeometryWriter.hpp │ │ │ │ └── CsvVertexWriter.hpp │ │ └── src │ │ │ ├── CsvBFieldWriter.cpp │ │ │ ├── CsvGnnGraphReader.cpp │ │ │ ├── CsvGnnGraphWriter.cpp │ │ │ ├── CsvMeasurementReader.cpp │ │ │ ├── CsvMeasurementWriter.cpp │ │ │ ├── CsvMuonSegmentReader.cpp │ │ │ ├── CsvMuonSpacePointReader.cpp │ │ │ ├── CsvOutputData.hpp │ │ │ ├── CsvParticleReader.cpp │ │ │ ├── CsvParticleWriter.cpp │ │ │ ├── CsvProtoTrackWriter.cpp │ │ │ ├── CsvSeedWriter.cpp │ │ │ ├── CsvSimHitReader.cpp │ │ │ ├── CsvSimHitWriter.cpp │ │ │ ├── CsvSpacePointReader.cpp │ │ │ ├── CsvSpacePointWriter.cpp │ │ │ ├── CsvSpacePointsBucketWriter.cpp │ │ │ ├── CsvTrackParameterReader.cpp │ │ │ ├── CsvTrackParameterWriter.cpp │ │ │ ├── CsvTrackWriter.cpp │ │ │ ├── CsvTrackingGeometryWriter.cpp │ │ │ └── CsvVertexWriter.cpp │ ├── EDM4hep │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── Io │ │ │ │ └── EDM4hep │ │ │ │ ├── EDM4hepMeasurementInputConverter.hpp │ │ │ │ ├── EDM4hepMeasurementOutputConverter.hpp │ │ │ │ ├── EDM4hepMultiTrajectoryOutputConverter.hpp │ │ │ │ ├── EDM4hepParticleOutputConverter.hpp │ │ │ │ ├── EDM4hepSimHitOutputConverter.hpp │ │ │ │ ├── EDM4hepSimInputConverter.hpp │ │ │ │ ├── EDM4hepTrackInputConverter.hpp │ │ │ │ ├── EDM4hepTrackOutputConverter.hpp │ │ │ │ └── EDM4hepUtil.hpp │ │ └── src │ │ │ ├── EDM4hepMeasurementInputConverter.cpp │ │ │ ├── EDM4hepMeasurementOutputConverter.cpp │ │ │ ├── EDM4hepMultiTrajectoryOutputConverter.cpp │ │ │ ├── EDM4hepParticleOutputConverter.cpp │ │ │ ├── EDM4hepSimHitOutputConverter.cpp │ │ │ ├── EDM4hepSimInputConverter.cpp │ │ │ ├── EDM4hepTrackInputConverter.cpp │ │ │ ├── EDM4hepTrackOutputConverter.cpp │ │ │ └── EDM4hepUtil.cpp │ ├── HepMC3 │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── Io │ │ │ │ └── HepMC3 │ │ │ │ ├── HepMC3InputConverter.hpp │ │ │ │ ├── HepMC3Metadata.hpp │ │ │ │ ├── HepMC3OutputConverter.hpp │ │ │ │ ├── HepMC3Reader.hpp │ │ │ │ ├── HepMC3Util.hpp │ │ │ │ └── HepMC3Writer.hpp │ │ └── src │ │ │ ├── CompressedIO.h │ │ │ ├── HepMC3FactoryWrappers.cpp │ │ │ ├── HepMC3InputConverter.cpp │ │ │ ├── HepMC3Metadata.cpp │ │ │ ├── HepMC3OutputConverter.cpp │ │ │ ├── HepMC3Reader.cpp │ │ │ ├── HepMC3Util.cpp │ │ │ └── HepMC3Writer.cpp │ ├── Json │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── Io │ │ │ │ └── Json │ │ │ │ ├── JsonDigitizationConfig.hpp │ │ │ │ ├── JsonGeometryList.hpp │ │ │ │ ├── JsonMaterialWriter.hpp │ │ │ │ ├── JsonSurfacesWriter.hpp │ │ │ │ ├── JsonTrackParamsLookupReader.hpp │ │ │ │ └── JsonTrackParamsLookupWriter.hpp │ │ └── src │ │ │ ├── JsonDigitizationConfig.cpp │ │ │ ├── JsonGeometryList.cpp │ │ │ ├── JsonMaterialWriter.cpp │ │ │ └── JsonSurfacesWriter.cpp │ ├── Obj │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── Io │ │ │ │ └── Obj │ │ │ │ ├── ObjPropagationStepsWriter.hpp │ │ │ │ ├── ObjSimHitWriter.hpp │ │ │ │ └── ObjTrackingGeometryWriter.hpp │ │ └── src │ │ │ ├── ObjPropagationStepsWriter.cpp │ │ │ ├── ObjSimHitWriter.cpp │ │ │ └── ObjTrackingGeometryWriter.cpp │ ├── Podio │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── Io │ │ │ │ └── Podio │ │ │ │ ├── CollectionBaseWriteHandle.hpp │ │ │ │ ├── PodioInputConverter.hpp │ │ │ │ ├── PodioMeasurementInputConverter.hpp │ │ │ │ ├── PodioMeasurementOutputConverter.hpp │ │ │ │ ├── PodioOutputConverter.hpp │ │ │ │ ├── PodioReader.hpp │ │ │ │ └── PodioWriter.hpp │ │ └── src │ │ │ ├── CollectionBaseWriteHandle.cpp │ │ │ ├── PodioInputConverter.cpp │ │ │ ├── PodioMeasurementInputConverter.cpp │ │ │ ├── PodioMeasurementOutputConverter.cpp │ │ │ ├── PodioReader.cpp │ │ │ └── PodioWriter.cpp │ ├── Root │ │ ├── CMakeLists.txt │ │ ├── LinkDef.hpp │ │ ├── include │ │ │ └── ActsExamples │ │ │ │ └── Io │ │ │ │ └── Root │ │ │ │ ├── RootAthenaDumpReader.hpp │ │ │ │ ├── RootAthenaNTupleReader.hpp │ │ │ │ ├── RootBFieldWriter.hpp │ │ │ │ ├── RootMaterialTrackReader.hpp │ │ │ │ ├── RootMaterialTrackWriter.hpp │ │ │ │ ├── RootMaterialWriter.hpp │ │ │ │ ├── RootMeasurementWriter.hpp │ │ │ │ ├── RootMuonSpacePointReader.hpp │ │ │ │ ├── RootMuonSpacePointWriter.hpp │ │ │ │ ├── RootNuclearInteractionParametersWriter.hpp │ │ │ │ ├── RootParticleReader.hpp │ │ │ │ ├── RootParticleWriter.hpp │ │ │ │ ├── RootPropagationStepsWriter.hpp │ │ │ │ ├── RootPropagationSummaryWriter.hpp │ │ │ │ ├── RootSeedWriter.hpp │ │ │ │ ├── RootSimHitReader.hpp │ │ │ │ ├── RootSimHitWriter.hpp │ │ │ │ ├── RootSpacepointWriter.hpp │ │ │ │ ├── RootTrackFinderNTupleWriter.hpp │ │ │ │ ├── RootTrackFinderPerformanceWriter.hpp │ │ │ │ ├── RootTrackFitterPerformanceWriter.hpp │ │ │ │ ├── RootTrackParameterWriter.hpp │ │ │ │ ├── RootTrackStatesWriter.hpp │ │ │ │ ├── RootTrackSummaryReader.hpp │ │ │ │ ├── RootTrackSummaryWriter.hpp │ │ │ │ ├── RootUtility.hpp │ │ │ │ ├── RootVertexNTupleWriter.hpp │ │ │ │ ├── RootVertexReader.hpp │ │ │ │ ├── RootVertexWriter.hpp │ │ │ │ └── detail │ │ │ │ └── NuclearInteractionParametrisation.hpp │ │ └── src │ │ │ ├── RootAthenaDumpReader.cpp │ │ │ ├── RootAthenaNTupleReader.cpp │ │ │ ├── RootBFieldWriter.cpp │ │ │ ├── RootMaterialTrackReader.cpp │ │ │ ├── RootMaterialTrackWriter.cpp │ │ │ ├── RootMaterialWriter.cpp │ │ │ ├── RootMeasurementWriter.cpp │ │ │ ├── RootMuonSpacePointReader.cpp │ │ │ ├── RootMuonSpacePointWriter.cpp │ │ │ ├── RootNuclearInteractionParametersWriter.cpp │ │ │ ├── RootParticleReader.cpp │ │ │ ├── RootParticleWriter.cpp │ │ │ ├── RootPropagationStepsWriter.cpp │ │ │ ├── RootPropagationSummaryWriter.cpp │ │ │ ├── RootSeedWriter.cpp │ │ │ ├── RootSimHitReader.cpp │ │ │ ├── RootSimHitWriter.cpp │ │ │ ├── RootSpacepointWriter.cpp │ │ │ ├── RootTrackFinderNTupleWriter.cpp │ │ │ ├── RootTrackFinderPerformanceWriter.cpp │ │ │ ├── RootTrackFitterPerformanceWriter.cpp │ │ │ ├── RootTrackParameterWriter.cpp │ │ │ ├── RootTrackStatesWriter.cpp │ │ │ ├── RootTrackSummaryReader.cpp │ │ │ ├── RootTrackSummaryWriter.cpp │ │ │ ├── RootVertexNTupleWriter.cpp │ │ │ ├── RootVertexReader.cpp │ │ │ ├── RootVertexWriter.cpp │ │ │ └── detail │ │ │ └── NuclearInteractionParametrisation.cpp │ └── Svg │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── ActsExamples │ │ │ └── Io │ │ │ └── Svg │ │ │ ├── SvgDefaults.hpp │ │ │ ├── SvgPointWriter.hpp │ │ │ └── SvgTrackingGeometryWriter.hpp │ │ └── src │ │ └── SvgTrackingGeometryWriter.cpp ├── README.md └── Scripts │ ├── Benchmarking │ ├── CKF_timing_vs_mu.py │ ├── CKF_timing_vs_mu.sh │ ├── KF_timing.py │ ├── KF_timing.sh │ ├── propagation_timing.py │ └── propagation_timing.sh │ ├── CMakeLists.txt │ ├── Detectors │ └── TGeoDetector │ │ └── tgeo-response2json.py │ ├── Digitization │ └── error_parameterisation.py │ ├── GsfDebugger │ ├── README.md │ ├── make_gsf_verbose_log.py │ ├── requirements.txt │ └── src │ │ ├── drawers.py │ │ ├── main.py │ │ ├── processors.py │ │ └── widgets.py │ ├── MaterialMapping │ ├── CMakeLists.txt │ ├── GeometryVisualisationAndMaterialHandling.py │ ├── Mat_map.C │ ├── Mat_map_detector_plot.C │ ├── Mat_map_detector_plot_ratio.C │ ├── Mat_map_surface_plot.C │ ├── Mat_map_surface_plot_1D.C │ ├── Mat_map_surface_plot_dist.C │ ├── Mat_map_surface_plot_ratio.C │ ├── MaterialComposition.cpp │ ├── configureMap.py │ ├── materialComposition.C │ ├── materialPlotHelper.cpp │ ├── materialPlotHelper.hpp │ ├── material_comparison.py │ ├── material_mapping_check.py │ └── writeMapConfig.py │ ├── Optimization │ ├── Optuna_tuning.py │ ├── Orion_tuning.py │ └── ckf.py │ ├── Python │ ├── Auto-tuning │ │ └── Orion │ │ │ ├── launchMaterialAutoTuning.sh │ │ │ └── material_mapping_optimisation.py │ ├── MLAmbiguityResolution │ │ ├── ambiguity_solver_full_chain.py │ │ ├── ambiguity_solver_network.py │ │ ├── ambiguity_solver_perf.py │ │ ├── duplicateClassifier.onnx │ │ ├── match_good_track-seed.py │ │ ├── seedDuplicateClassifier.onnx │ │ ├── seed_filter_full_chain.py │ │ ├── seed_solver_network.py │ │ ├── train_ambiguity_solver.py │ │ └── train_seed_solver.py │ ├── bfield_writing.py │ ├── blueprint.py │ ├── ckf_tracks.py │ ├── detector_creation.py │ ├── digitization.py │ ├── digitization_config.py │ ├── fatras.py │ ├── full_chain_itk.py │ ├── full_chain_itk_Gbts.py │ ├── full_chain_odd.py │ ├── full_chain_odd_LRT.py │ ├── full_chain_test.py │ ├── geant4.py │ ├── geant4_parallel.py │ ├── geometry.py │ ├── geomodel.py │ ├── geomodel_G4.py │ ├── geomodel_vol.py │ ├── gnn.py │ ├── gnn4itk_example.py │ ├── gnn_module_map_odd.py │ ├── hashing_seeding.py │ ├── hepmc3_merge.py │ ├── itk.py │ ├── itk_seeding.py │ ├── material_mapping.py │ ├── material_mapping_core.py │ ├── material_mapping_itk.py │ ├── material_recording.py │ ├── material_validation.py │ ├── material_validation_core.py │ ├── material_validation_itk.py │ ├── muon_hough.py │ ├── particle_gun.py │ ├── propagation.py │ ├── pythia8.py │ ├── python_algorithm.py │ ├── reader_and_seeding.py │ ├── seeding.py │ ├── strip_spacepoints.py │ ├── telescope_simulation.py │ ├── telescope_track_params_lookup_generation.py │ ├── truth_jet_test.py │ ├── truth_tracking_gsf.py │ ├── truth_tracking_gsf_refitting.py │ ├── truth_tracking_gx2f.py │ ├── truth_tracking_kalman.py │ ├── truth_tracking_kalman_refitting.py │ ├── truth_tracking_telescope.py │ ├── vertex_fitting.py │ └── volume_association_test.py │ ├── TrackingPerformance │ ├── CMakeLists.txt │ ├── CommonUtils.h │ ├── ResidualsAndPulls.cpp │ ├── TrackSummary.cpp │ ├── TreeReader.h │ ├── boundParamResolution.C │ ├── defineReconstructionPerformance.C │ ├── reconstructionPerformance.C │ └── trackSummaryAnalysis.C │ ├── compareAssignedRealPos.C │ ├── compareDistributions.C │ ├── compareHistograms.C │ ├── compareHitHistograms.C │ ├── compareRootFiles.C │ ├── compareRootFiles.hpp │ ├── errorOfHistograms.C │ ├── fullMaterial.C │ ├── generic_plotter.py │ ├── layerMaterial.C │ ├── momentumDistributions.C │ ├── printBField.C │ ├── printHits.C │ ├── requirements.in │ ├── requirements.txt │ ├── testReproducibility.sh │ └── vertex_mu_scan.py ├── Fatras ├── CMakeLists.txt ├── Geant4 │ ├── CMakeLists.txt │ ├── include │ │ └── ActsFatras │ │ │ └── Geant4 │ │ │ ├── DummyDetectorConstruction.hpp │ │ │ ├── Geant4Decay.hpp │ │ │ └── PDGtoG4Converter.hpp │ └── src │ │ ├── DummyDetectorConstruction.cpp │ │ ├── Geant4Decay.cpp │ │ └── PDGtoG4Converter.cpp ├── README.md ├── include │ └── ActsFatras │ │ ├── Digitization │ │ ├── ChannelMerger.hpp │ │ ├── Channelizer.hpp │ │ ├── DigitizationData.hpp │ │ ├── DigitizationError.hpp │ │ ├── PlanarSurfaceDrift.hpp │ │ ├── PlanarSurfaceMask.hpp │ │ ├── Segmentizer.hpp │ │ └── UncorrelatedHitSmearer.hpp │ │ ├── EventData │ │ ├── Barcode.hpp │ │ ├── Hit.hpp │ │ ├── Particle.hpp │ │ ├── ParticleOutcome.hpp │ │ └── ProcessType.hpp │ │ ├── Kernel │ │ ├── ContinuousProcess.hpp │ │ ├── InteractionList.hpp │ │ ├── PointLikeProcess.hpp │ │ ├── Simulation.hpp │ │ ├── SimulationResult.hpp │ │ └── detail │ │ │ ├── SimulationActor.hpp │ │ │ └── SimulationError.hpp │ │ ├── Physics │ │ ├── Decay │ │ │ └── NoDecay.hpp │ │ ├── ElectroMagnetic │ │ │ ├── BetheBloch.hpp │ │ │ ├── BetheHeitler.hpp │ │ │ ├── PhotonConversion.hpp │ │ │ ├── Scattering.hpp │ │ │ └── detail │ │ │ │ ├── GaussianMixture.hpp │ │ │ │ ├── GeneralMixture.hpp │ │ │ │ └── Highland.hpp │ │ └── StandardInteractions.hpp │ │ ├── Selectors │ │ ├── KinematicCasts.hpp │ │ ├── ParticleSelectors.hpp │ │ ├── SelectorHelpers.hpp │ │ ├── SurfaceSelectors.hpp │ │ └── detail │ │ │ └── combine_selectors.hpp │ │ └── Utilities │ │ ├── LandauDistribution.hpp │ │ └── detail │ │ └── FpeSafeGammaDistribution.hpp ├── scripts │ └── generate_particle_data_table.py └── src │ ├── Digitization │ ├── DigitizationError.cpp │ ├── PlanarSurfaceDrift.cpp │ ├── PlanarSurfaceMask.cpp │ └── Segmentizer.cpp │ ├── EventData │ ├── Particle.cpp │ ├── ParticleOutcome.cpp │ └── ProcessType.cpp │ ├── Kernel │ └── SimulationError.cpp │ ├── Physics │ ├── BetheHeitler.cpp │ ├── PhotonConversion.cpp │ └── StandardInteractions.cpp │ └── Utilities │ └── LandauDistribution.cpp ├── LICENSE ├── Plugins ├── ActSVG │ ├── CMakeLists.txt │ ├── include │ │ └── ActsPlugins │ │ │ └── ActSVG │ │ │ ├── EventDataSvgConverter.hpp │ │ │ ├── GridSvgConverter.hpp │ │ │ ├── IndexedSurfacesSvgConverter.hpp │ │ │ ├── LayerSvgConverter.hpp │ │ │ ├── SurfaceArraySvgConverter.hpp │ │ │ ├── SurfaceSvgConverter.hpp │ │ │ ├── SvgUtils.hpp │ │ │ └── TrackingGeometrySvgConverter.hpp │ └── src │ │ ├── EventDataSvgConverter.cpp │ │ ├── LayerSvgConverter.cpp │ │ ├── SurfaceArraySvgConverter.cpp │ │ ├── SurfaceSvgConverter.cpp │ │ └── TrackingGeometrySvgConverter.cpp ├── CMakeLists.txt ├── Covfie │ ├── CMakeLists.txt │ ├── include │ │ └── ActsPlugins │ │ │ └── Covfie │ │ │ └── FieldConversion.hpp │ └── src │ │ └── FieldConversion.cpp ├── DD4hep │ ├── CMakeLists.txt │ ├── include │ │ └── ActsPlugins │ │ │ └── DD4hep │ │ │ ├── ConvertDD4hepDetector.hpp │ │ │ ├── DD4hepBinningHelpers.hpp │ │ │ ├── DD4hepConversionHelpers.hpp │ │ │ ├── DD4hepDetectorElement.hpp │ │ │ ├── DD4hepDetectorSurfaceFactory.hpp │ │ │ ├── DD4hepFieldAdapter.hpp │ │ │ ├── DD4hepLayerBuilder.hpp │ │ │ ├── DD4hepMaterialHelpers.hpp │ │ │ └── DD4hepVolumeBuilder.hpp │ └── src │ │ ├── ConvertDD4hepDetector.cpp │ │ ├── DD4hepBinningHelpers.cpp │ │ ├── DD4hepDetectorElement.cpp │ │ ├── DD4hepDetectorSurfaceFactory.cpp │ │ ├── DD4hepFieldAdapter.cpp │ │ ├── DD4hepLayerBuilder.cpp │ │ ├── DD4hepMaterialHelpers.cpp │ │ └── DD4hepVolumeBuilder.cpp ├── Detray │ ├── CMakeLists.txt │ ├── include │ │ └── ActsPlugins │ │ │ └── Detray │ │ │ ├── DetrayConversionUtils.hpp │ │ │ └── DetrayPayloadConverter.hpp │ └── src │ │ ├── DetrayConversionUtils.cpp │ │ ├── DetrayConverter.cpp │ │ ├── DetrayGeometryConverter.cpp │ │ ├── DetrayMaterial.cpp │ │ ├── DetrayMaterialConverter.cpp │ │ ├── DetrayNavigation.cpp │ │ ├── DetrayPayloadConverter.cpp │ │ └── DetraySurfaceGridsConverter.cpp ├── EDM4hep │ ├── CMakeLists.txt │ ├── edm.yml │ ├── include │ │ └── ActsPlugins │ │ │ └── EDM4hep │ │ │ ├── EDM4hepUtil.hpp │ │ │ ├── PodioDynamicColumns.hpp │ │ │ ├── PodioTrackContainer.hpp │ │ │ ├── PodioTrackStateContainer.hpp │ │ │ ├── PodioUtil.hpp │ │ │ └── TrackerHitCompatibility.hpp │ └── src │ │ ├── EDM4hepUtil.cpp │ │ └── PodioUtil.cpp ├── FastJet │ ├── CMakeLists.txt │ ├── include │ │ └── ActsPlugins │ │ │ └── FastJet │ │ │ └── Jets.hpp │ └── src │ │ └── Jets.cpp ├── FpeMonitoring │ ├── CMakeLists.txt │ ├── include │ │ └── ActsPlugins │ │ │ └── FpeMonitoring │ │ │ └── FpeMonitor.hpp │ └── src │ │ └── FpeMonitor.cpp ├── Geant4 │ ├── CMakeLists.txt │ ├── include │ │ └── ActsPlugins │ │ │ └── Geant4 │ │ │ ├── Geant4Converters.hpp │ │ │ ├── Geant4DetectorElement.hpp │ │ │ ├── Geant4DetectorSurfaceFactory.hpp │ │ │ ├── Geant4PhysicalVolumeSelectors.hpp │ │ │ └── Geant4SurfaceProvider.hpp │ └── src │ │ ├── Geant4Converters.cpp │ │ ├── Geant4DetectorElement.cpp │ │ ├── Geant4DetectorSurfaceFactory.cpp │ │ └── Geant4PhysicalVolumeSelectors.cpp ├── GeoModel │ ├── CMakeLists.txt │ ├── include │ │ └── ActsPlugins │ │ │ └── GeoModel │ │ │ ├── GeoModelConversionError.hpp │ │ │ ├── GeoModelConverters.hpp │ │ │ ├── GeoModelDetectorElement.hpp │ │ │ ├── GeoModelDetectorElementITk.hpp │ │ │ ├── GeoModelDetectorObjectFactory.hpp │ │ │ ├── GeoModelMaterialConverter.hpp │ │ │ ├── GeoModelReader.hpp │ │ │ ├── GeoModelToDetectorVolume.hpp │ │ │ ├── GeoModelTree.hpp │ │ │ ├── IGeoShapeConverter.hpp │ │ │ └── detail │ │ │ ├── GenericGeoShapeConverter.hpp │ │ │ ├── GeoBoxConverter.hpp │ │ │ ├── GeoIntersectionAnnulusConverter.hpp │ │ │ ├── GeoModelBinningHelper.hpp │ │ │ ├── GeoModelExtentHelper.hpp │ │ │ ├── GeoPolygonConverter.hpp │ │ │ ├── GeoShiftConverter.hpp │ │ │ ├── GeoSubtractionConverter.hpp │ │ │ ├── GeoTrdConverter.hpp │ │ │ ├── GeoTubeConverter.hpp │ │ │ └── GeoUnionDoubleTrdConverter.hpp │ └── src │ │ ├── GeoModelConversionError.cpp │ │ ├── GeoModelDetectorElement.cpp │ │ ├── GeoModelDetectorElementITk.cpp │ │ ├── GeoModelDetectorObjectFactory.cpp │ │ ├── GeoModelMaterialConverter.cpp │ │ ├── GeoModelReader.cpp │ │ ├── GeoModelToDetectorVolume.cpp │ │ ├── GeoModelTree.cpp │ │ └── detail │ │ ├── GeoBoxConverter.cpp │ │ ├── GeoIntersectionAnnulusConverter.cpp │ │ ├── GeoModelBinningHelper.cpp │ │ ├── GeoModelExtentHelper.cpp │ │ ├── GeoPolygonConverter.cpp │ │ ├── GeoShiftConverter.cpp │ │ ├── GeoSubtractionConverter.cpp │ │ ├── GeoTrdConverter.cpp │ │ ├── GeoTubeConverter.cpp │ │ └── GeoUnionDoubleTrdConverter.cpp ├── Gnn │ ├── CMakeLists.txt │ ├── README.md │ ├── include │ │ └── ActsPlugins │ │ │ └── Gnn │ │ │ ├── BoostTrackBuilding.hpp │ │ │ ├── CudaTrackBuilding.hpp │ │ │ ├── GnnPipeline.hpp │ │ │ ├── GraphStoreHook.hpp │ │ │ ├── ModuleMapCuda.hpp │ │ │ ├── OnnxEdgeClassifier.hpp │ │ │ ├── Stages.hpp │ │ │ ├── Tensor.hpp │ │ │ ├── TensorRTEdgeClassifier.hpp │ │ │ ├── TorchEdgeClassifier.hpp │ │ │ ├── TorchMetricLearning.hpp │ │ │ ├── TruthGraphMetricsHook.hpp │ │ │ └── detail │ │ │ ├── CantorEdge.hpp │ │ │ ├── ConnectedComponents.cuh │ │ │ ├── CudaUtils.cuh │ │ │ ├── CudaUtils.hpp │ │ │ ├── JunctionRemoval.hpp │ │ │ ├── ModuleMapUtils.cuh │ │ │ ├── NvtxUtils.hpp │ │ │ ├── TensorVectorConversion.hpp │ │ │ ├── Utils.hpp │ │ │ └── buildEdges.hpp │ └── src │ │ ├── BoostTrackBuilding.cpp │ │ ├── CudaTrackBuilding.cu │ │ ├── GnnPipeline.cpp │ │ ├── GraphStoreHook.cpp │ │ ├── JunctionRemoval.cu │ │ ├── ModuleMapCuda.cu │ │ ├── OnnxEdgeClassifier.cpp │ │ ├── Tensor.cpp │ │ ├── Tensor.cu │ │ ├── TensorRTEdgeClassifier.cpp │ │ ├── TorchEdgeClassifier.cpp │ │ ├── TorchMetricLearning.cpp │ │ ├── TruthGraphMetricsHook.cpp │ │ ├── buildEdges.cpp │ │ ├── printCudaMemInfo.hpp │ │ └── runSessionWithIoBinding.hpp ├── Hashing │ ├── CMakeLists.txt │ └── include │ │ └── ActsPlugins │ │ └── Hashing │ │ ├── AnnoyForwardDeclarations.hpp │ │ ├── HashingAlgorithm.hpp │ │ ├── HashingAlgorithm.ipp │ │ ├── HashingAlgorithmConfig.hpp │ │ ├── HashingAnnoy.hpp │ │ ├── HashingAnnoy.ipp │ │ ├── HashingTraining.hpp │ │ ├── HashingTraining.ipp │ │ └── HashingTrainingConfig.hpp ├── Json │ ├── CMakeLists.txt │ ├── include │ │ ├── Acts │ │ │ └── Plugins │ │ │ │ └── Json │ │ │ │ ├── ActsJson.hpp │ │ │ │ ├── GeometryHierarchyMapJsonConverter.hpp │ │ │ │ └── UtilitiesJsonConverter.hpp │ │ └── ActsPlugins │ │ │ └── Json │ │ │ ├── ActsJson.hpp │ │ │ ├── AlgebraJsonConverter.hpp │ │ │ ├── AmbiguityConfigJsonConverter.hpp │ │ │ ├── DefinitionsJsonConverter.hpp │ │ │ ├── DetrayJsonHelper.hpp │ │ │ ├── ExtentJsonConverter.hpp │ │ │ ├── GeometryHierarchyMapJsonConverter.hpp │ │ │ ├── GeometryIdentifierJsonConverter.hpp │ │ │ ├── GeometryJsonKeys.hpp │ │ │ ├── GridJsonConverter.hpp │ │ │ ├── ITrackingGeometryJsonDecorator.hpp │ │ │ ├── IVolumeMaterialJsonDecorator.hpp │ │ │ ├── IndexedGridJsonHelper.hpp │ │ │ ├── JsonDetectorElement.hpp │ │ │ ├── JsonMaterialDecorator.hpp │ │ │ ├── JsonSurfacesReader.hpp │ │ │ ├── MaterialJsonConverter.hpp │ │ │ ├── MaterialMapJsonConverter.hpp │ │ │ ├── PortalJsonConverter.hpp │ │ │ ├── ProtoAxisJsonConverter.hpp │ │ │ ├── Seeding2ConfigJsonConverter.hpp │ │ │ ├── SurfaceBoundsJsonConverter.hpp │ │ │ ├── SurfaceJsonConverter.hpp │ │ │ ├── TrackParametersJsonConverter.hpp │ │ │ ├── UtilitiesJsonConverter.hpp │ │ │ ├── VolumeBoundsJsonConverter.hpp │ │ │ └── VolumeJsonConverter.hpp │ └── src │ │ ├── AlgebraJsonConverter.cpp │ │ ├── AmbiguityConfigJsonConverter.cpp │ │ ├── DefinitionsJsonConverter.cpp │ │ ├── DetrayJsonHelper.cpp │ │ ├── ExtentJsonConverter.cpp │ │ ├── GeometryIdentifierJsonConverter.cpp │ │ ├── GridJsonConverter.cpp │ │ ├── JsonDetectorElement.cpp │ │ ├── JsonMaterialDecorator.cpp │ │ ├── JsonSurfacesReader.cpp │ │ ├── MaterialJsonConverter.cpp │ │ ├── MaterialMapJsonConverter.cpp │ │ ├── ProtoAxisJsonConverter.cpp │ │ ├── Seeding2ConfigJsonConverter.cpp │ │ ├── SurfaceBoundsJsonConverter.cpp │ │ ├── SurfaceJsonConverter.cpp │ │ ├── UtilitiesJsonConverter.cpp │ │ ├── VolumeBoundsJsonConverter.cpp │ │ └── VolumeJsonConverter.cpp ├── Onnx │ ├── CMakeLists.txt │ ├── include │ │ └── ActsPlugins │ │ │ └── Onnx │ │ │ ├── AmbiguityTrackClassifier.hpp │ │ │ ├── MLTrackClassifier.hpp │ │ │ ├── OnnxRuntimeBase.hpp │ │ │ └── SeedClassifier.hpp │ └── src │ │ ├── MLTrackClassifier.cpp │ │ └── OnnxRuntimeBase.cpp └── Root │ ├── CMakeLists.txt │ ├── include │ └── ActsPlugins │ │ └── Root │ │ ├── ITGeoDetectorElementSplitter.hpp │ │ ├── ITGeoIdentifierProvider.hpp │ │ ├── RootMagneticFieldIo.hpp │ │ ├── RootMaterialDecorator.hpp │ │ ├── RootMaterialMapIo.hpp │ │ ├── RootMaterialTrackIo.hpp │ │ ├── RootMeasurementIo.hpp │ │ ├── RootSpacePointIo.hpp │ │ ├── TGeoCylinderDiscSplitter.hpp │ │ ├── TGeoDetectorElement.hpp │ │ ├── TGeoLayerBuilder.hpp │ │ ├── TGeoMaterialConverter.hpp │ │ ├── TGeoParser.hpp │ │ ├── TGeoPrimitivesHelper.hpp │ │ ├── TGeoSurfaceConverter.hpp │ │ └── detail │ │ └── RootBranchPtr.hpp │ └── src │ ├── RootMagneticFieldIo.cpp │ ├── RootMaterialDecorator.cpp │ ├── RootMaterialMapIo.cpp │ ├── RootMaterialTrackIo.cpp │ ├── RootMeasurementIo.cpp │ ├── RootSpacePointIo.cpp │ ├── TGeoCylinderDiscSplitter.cpp │ ├── TGeoDetectorElement.cpp │ ├── TGeoLayerBuilder.cpp │ ├── TGeoMaterialConverter.cpp │ ├── TGeoParser.cpp │ ├── TGeoPrimitivesHelper.cpp │ └── TGeoSurfaceConverter.cpp ├── Python ├── CMakeLists.txt ├── Core │ ├── CMakeLists.txt │ ├── python │ │ ├── __init__.py │ │ └── _adapter.py │ ├── setup.sh.in │ └── src │ │ ├── CoreModuleEntry.cpp │ │ ├── Definitions.cpp │ │ ├── Geometry.cpp │ │ ├── GeometryGen1.cpp │ │ ├── GeometryGen3.cpp │ │ ├── MagneticField.cpp │ │ ├── Material.cpp │ │ ├── Navigation.cpp │ │ ├── Propagation.cpp │ │ ├── Seeding.cpp │ │ ├── Surfaces.cpp │ │ ├── TrackFinding.cpp │ │ ├── Utilities.cpp │ │ └── Visualization.cpp ├── Examples │ ├── CMakeLists.txt │ ├── python │ │ ├── __init__.py │ │ ├── example.py.in │ │ ├── hepmc3 │ │ │ ├── __init__.py │ │ │ └── __main__.py │ │ ├── hepmc_normalize.py │ │ ├── itk.py │ │ ├── mockupbuilder.py │ │ ├── odd.py │ │ ├── reconstruction.py │ │ ├── simulation.py │ │ └── tgeo_aux.py.in │ ├── src │ │ ├── AmbiguityResolution.cpp │ │ ├── Detector.cpp │ │ ├── Digitization.cpp │ │ ├── ExampleAlgorithms.cpp │ │ ├── ExamplesModuleEntry.cpp │ │ ├── Framework.cpp │ │ ├── Generators.cpp │ │ ├── Input.cpp │ │ ├── MaterialMapping.cpp │ │ ├── Obj.cpp │ │ ├── Output.cpp │ │ ├── Propagation.cpp │ │ ├── TrackFinding.cpp │ │ ├── TrackFitting.cpp │ │ ├── TruthTracking.cpp │ │ ├── Utilities.cpp │ │ ├── Vertexing.cpp │ │ └── plugins │ │ │ ├── Alignment.cpp │ │ │ ├── DD4hep.cpp │ │ │ ├── EDM4hep.cpp │ │ │ ├── Geant4.cpp │ │ │ ├── GeoModel.cpp │ │ │ ├── Gnn.cpp │ │ │ ├── Hashing.cpp │ │ │ ├── HepMC3.cpp │ │ │ ├── Json.cpp │ │ │ ├── Onnx.cpp │ │ │ ├── Pythia8.cpp │ │ │ ├── Root.cpp │ │ │ ├── Svg.cpp │ │ │ ├── TGeo.cpp │ │ │ ├── Traccc.cpp │ │ │ └── TruthJet.cpp │ └── tests │ │ ├── conftest.py │ │ ├── geometry-volume-map.json │ │ ├── helpers │ │ ├── __init__.py │ │ └── hash_root.py │ │ ├── requirements.in │ │ ├── requirements.txt │ │ ├── root_file_hashes.txt │ │ ├── test_algorithms.py │ │ ├── test_alignmentdecorator.py │ │ ├── test_base.py │ │ ├── test_blueprint.py │ │ ├── test_covfie.py │ │ ├── test_detectors.py │ │ ├── test_edm4hep.py │ │ ├── test_event_data.py │ │ ├── test_examples.py │ │ ├── test_fpe.py │ │ ├── test_generators.py │ │ ├── test_geometry.py │ │ ├── test_hepmc3.py │ │ ├── test_logging.py │ │ ├── test_magnetic_field.py │ │ ├── test_material.py │ │ ├── test_misc.py │ │ ├── test_navigation.py │ │ ├── test_propagation.py │ │ ├── test_reader.py │ │ └── test_writer.py ├── Plugins │ ├── CMakeLists.txt │ ├── python │ │ └── plugin.py.in │ └── src │ │ ├── Covfie.cpp │ │ ├── DD4hep.cpp │ │ ├── Detray.cpp │ │ ├── Geant4.cpp │ │ ├── GeoModel.cpp │ │ ├── Hashing.cpp │ │ ├── Json.cpp │ │ ├── Root.cpp │ │ ├── Svg.cpp │ │ └── TGeo.cpp └── Utilities │ ├── CMakeLists.txt │ └── include │ └── ActsPython │ └── Utilities │ ├── Helpers.hpp │ └── Macros.hpp ├── README.md ├── Tests ├── Benchmarks │ ├── AnnulusBoundsBenchmark.cpp │ ├── AtlasStepperBenchmark.cpp │ ├── BinUtilityBenchmark.cpp │ ├── BoundaryToleranceBenchmark.cpp │ ├── CMakeLists.txt │ ├── EigenStepperBenchmark.cpp │ ├── RayFrustumBenchmark.cpp │ ├── SolenoidFieldBenchmark.cpp │ ├── SourceLinkBenchmark.cpp │ ├── StepperBenchmark.cpp │ ├── StepperBenchmarkCommons.hpp │ ├── StraightLineStepperBenchmark.cpp │ ├── SurfaceIntersectionBenchmark.cpp │ ├── SympyStepperBenchmark.cpp │ └── TrackEdmBenchmark.cpp ├── CMakeLists.txt ├── CommonHelpers │ ├── CMakeLists.txt │ ├── include │ │ └── ActsTests │ │ │ └── CommonHelpers │ │ │ ├── Assertions.hpp │ │ │ ├── BenchmarkTools.hpp │ │ │ ├── CubicTrackingGeometry.hpp │ │ │ ├── CylindricalTrackingGeometry.hpp │ │ │ ├── DataDirectory.hpp │ │ │ ├── DetectorElementStub.hpp │ │ │ ├── FloatComparisons.hpp │ │ │ ├── LineSurfaceStub.hpp │ │ │ ├── MeasurementsCreator.hpp │ │ │ ├── PredefinedMaterials.hpp │ │ │ ├── TemporaryDirectory.hpp │ │ │ ├── TestSpacePoint.hpp │ │ │ └── WhiteBoardUtilities.hpp │ └── src │ │ ├── CubicTrackingGeometry.cpp │ │ ├── CylindricalTrackingGeometry.cpp │ │ ├── DataDirectory.cpp │ │ └── DetectorElementStub.cpp ├── Data │ ├── README.md │ ├── event000000001-MuonDriftCircle.csv │ ├── event000000001-MuonSimHit.csv │ ├── geometry-hierarchy-map.json │ ├── material-map.json │ ├── panda.root │ ├── vertexing_event_mu20_beamspot.csv │ ├── vertexing_event_mu20_tracks.csv │ └── vertexing_event_mu20_vertices_AMVF.csv ├── DownstreamProject │ ├── CMakeLists.txt │ ├── README.md │ └── ShowActsVersion.cpp ├── DownstreamProjectNodeps │ ├── CMakeLists.txt │ ├── README.md │ └── ShowActsVersion.cpp ├── IntegrationTests │ ├── CMakeLists.txt │ ├── Fatras │ │ ├── CMakeLists.txt │ │ └── FatrasSimulationTests.cpp │ ├── InterpolatedSolenoidBFieldTest.cpp │ ├── Magfield.ipynb │ ├── NavigatorConsistency.cpp │ ├── PrintDataDirectory.cpp │ ├── PropagationAtlasConstant.cpp │ ├── PropagationBentTracks.cpp │ ├── PropagationCompareAtlasEigenConstant.cpp │ ├── PropagationCompareEigenStraightLine.cpp │ ├── PropagationDatasets.hpp │ ├── PropagationEigenConstant.cpp │ ├── PropagationEigenDenseConstant.cpp │ ├── PropagationStraightLine.cpp │ ├── PropagationSympyConstant.cpp │ ├── PropagationSympyDenseConstant.cpp │ ├── PropagationTests.hpp │ └── README.md └── UnitTests │ ├── Alignment │ ├── CMakeLists.txt │ └── Kernel │ │ ├── AlignmentTests.cpp │ │ └── CMakeLists.txt │ ├── Benchmarks │ ├── BenchmarkTools.cpp │ └── CMakeLists.txt │ ├── CMakeLists.txt │ ├── Core │ ├── AmbiguityResolution │ │ ├── CMakeLists.txt │ │ └── ScoreBasedAmbiguityResolutionTest.cpp │ ├── CMakeLists.txt │ ├── Clusterization │ │ ├── CMakeLists.txt │ │ ├── ClusterizationTests1D.cpp │ │ ├── ClusterizationTests2D.cpp │ │ └── TimedClusterizationTests.cpp │ ├── Definitions │ │ ├── CMakeLists.txt │ │ ├── DirectionTests.cpp │ │ └── UnitsTests.cpp │ ├── EventData │ │ ├── BoundTrackParametersTests.cpp │ │ ├── CMakeLists.txt │ │ ├── ChargeTests.cpp │ │ ├── CorrectedTransformFreeToBoundTests.cpp │ │ ├── CurvilinearTrackParametersTests.cpp │ │ ├── FreeTrackParametersTests.cpp │ │ ├── MeasurementHelpersTests.cpp │ │ ├── MultiComponentBoundTrackParametersTests.cpp │ │ ├── MultiTrajectoryHelpersTests.cpp │ │ ├── MultiTrajectoryTests.cpp │ │ ├── ParticleHypothesisTests.cpp │ │ ├── SeedContainer2Tests.cpp │ │ ├── SeedEdmTests.cpp │ │ ├── SourceLinkTests.cpp │ │ ├── SpacePointContainer2Tests.cpp │ │ ├── SpacePointContainerEdmTests.cpp │ │ ├── SubspaceHelpersTests.cpp │ │ ├── TrackParameterHelpersTests.cpp │ │ ├── TrackParametersDatasets.hpp │ │ ├── TrackStatePropMaskTests.cpp │ │ ├── TrackTests.cpp │ │ ├── TrackTestsExtra.cpp │ │ └── TransformHelpersTests.cpp │ ├── Geometry │ │ ├── AlignmentContextTests.cpp │ │ ├── BlueprintApiTests.cpp │ │ ├── BlueprintTests.cpp │ │ ├── CMakeLists.txt │ │ ├── ConeLayerTests.cpp │ │ ├── ConeVolumeBoundsTests.cpp │ │ ├── ConvexPolygonPortalShellTests.cpp │ │ ├── ConvexPolygonVolumeBoundsTests.cpp │ │ ├── CuboidPortalShellTests.cpp │ │ ├── CuboidVolumeBoundsTests.cpp │ │ ├── CuboidVolumeBuilderTests.cpp │ │ ├── CuboidVolumeStackTests.cpp │ │ ├── CutoutCylinderVolumeBoundsTests.cpp │ │ ├── CylinderLayerTests.cpp │ │ ├── CylinderPortalShellTests.cpp │ │ ├── CylinderVolumeBoundsTests.cpp │ │ ├── CylinderVolumeBuilderTests.cpp │ │ ├── CylinderVolumeStackTests.cpp │ │ ├── DiscLayerTests.cpp │ │ ├── ExtentTests.cpp │ │ ├── GenericApproachDescriptorTests.cpp │ │ ├── GenericCuboidVolumeBoundsTests.cpp │ │ ├── GeometryHierarchyMapTests.cpp │ │ ├── GeometryIdentifierTests.cpp │ │ ├── IndexGridFillerTests.cpp │ │ ├── IndexGridTests.cpp │ │ ├── KDTreeTrackingGeometryBuilderTests.cpp │ │ ├── LayerCreatorTests.cpp │ │ ├── LayerStub.hpp │ │ ├── LayerTests.cpp │ │ ├── NavigationLayerTests.cpp │ │ ├── PlaneLayerTests.cpp │ │ ├── PolyhedronTests.cpp │ │ ├── PortalLinkTests.cpp │ │ ├── PortalTests.cpp │ │ ├── ProtoDetectorTests.cpp │ │ ├── ProtoLayerHelperTests.cpp │ │ ├── ProtoLayerTests.cpp │ │ ├── ReferenceGeneratorsTests.cpp │ │ ├── SimpleGeometryTests.cpp │ │ ├── SurfaceArrayCreatorTests.cpp │ │ ├── SurfaceBinningMatcherTests.cpp │ │ ├── TrackingGeometryClosureTests.cpp │ │ ├── TrackingGeometryCreationTests.cpp │ │ ├── TrackingGeometryGeometryIdTests.cpp │ │ ├── TrackingVolumeCreation.hpp │ │ ├── TrackingVolumeTests.cpp │ │ ├── TrapezoidPortalShellTests.cpp │ │ ├── TrapezoidVolumeBoundsTests.cpp │ │ ├── VolumeBoundsTests.cpp │ │ └── VolumeTests.cpp │ ├── MagneticField │ │ ├── CMakeLists.txt │ │ ├── ConstantBFieldTests.cpp │ │ ├── InterpolatedBFieldMapTests.cpp │ │ ├── MagneticFieldProviderTests.cpp │ │ ├── MultiRangeBFieldTests.cpp │ │ ├── SolenoidBFieldTests.cpp │ │ └── TextMagneticFieldIoTests.cpp │ ├── Material │ │ ├── AccumulatedMaterialSlabTests.cpp │ │ ├── AccumulatedSurfaceMaterialTests.cpp │ │ ├── AccumulatedVolumeMaterialTests.cpp │ │ ├── AverageMaterialsTests.cpp │ │ ├── BinnedSurfaceMaterialAccumulaterTests.cpp │ │ ├── BinnedSurfaceMaterialTests.cpp │ │ ├── CMakeLists.txt │ │ ├── GridSurfaceMaterialTests.cpp │ │ ├── HomogeneousSurfaceMaterialTests.cpp │ │ ├── HomogeneousVolumeMaterialTests.cpp │ │ ├── ISurfaceMaterialTests.cpp │ │ ├── InteractionsTests.cpp │ │ ├── InterpolatedMaterialMapTests.cpp │ │ ├── IntersectionMaterialAssignerTests.cpp │ │ ├── MaterialCompositionTests.cpp │ │ ├── MaterialGridHelperTests.cpp │ │ ├── MaterialInteractionAssignmentTests.cpp │ │ ├── MaterialMapperTests.cpp │ │ ├── MaterialSlabTests.cpp │ │ ├── MaterialTests.cpp │ │ ├── MaterialValidaterTests.cpp │ │ ├── PropagatorMaterialAssignerTests.cpp │ │ ├── ProtoSurfaceMaterialTests.cpp │ │ ├── ProtoVolumeMaterialTests.cpp │ │ ├── SurfaceMaterialMapperTests.cpp │ │ └── VolumeMaterialMapperTests.cpp │ ├── Navigation │ │ ├── CMakeLists.txt │ │ ├── MultiWireNavigationTests.cpp │ │ ├── NavigationPolicyTests.cpp │ │ └── NavigationStreamTests.cpp │ ├── Propagator │ │ ├── AtlasStepperTests.cpp │ │ ├── BoundToCurvilinearConversionTests.cpp │ │ ├── CMakeLists.txt │ │ ├── ConstrainedStepTests.cpp │ │ ├── CovarianceEngineTests.cpp │ │ ├── DirectNavigatorTests.cpp │ │ ├── EigenStepperTests.cpp │ │ ├── ExtrapolatorTests.cpp │ │ ├── JacobianEngineTests.cpp │ │ ├── JacobianTests.cpp │ │ ├── KalmanExtrapolatorTests.cpp │ │ ├── LoopProtectionTests.cpp │ │ ├── MaterialCollectionTests.cpp │ │ ├── MultiEigenStepperLoopTests.cpp │ │ ├── MultiStepperTests.hpp │ │ ├── MultiSympyStepperLoopTests.cpp │ │ ├── NavigatorTests.cpp │ │ ├── PropagatorTests.cpp │ │ ├── StraightLineStepperTests.cpp │ │ ├── SympyStepperTests.cpp │ │ └── VolumeMaterialInteractionTests.cpp │ ├── Seeding │ │ ├── ATLASCuts.hpp │ │ ├── BinnedGroupTest.cpp │ │ ├── CMakeLists.txt │ │ ├── CandidatesForMiddleSpTests.cpp │ │ ├── EstimateTrackParamsFromSeedTest.cpp │ │ ├── FastStrawLineFitTests.cpp │ │ ├── HoughTransformTest.cpp │ │ ├── PathSeederTest.cpp │ │ ├── SeedFinderTest.cpp │ │ ├── SpacePoint.hpp │ │ ├── SpacePointContainer.hpp │ │ ├── StrawHitGeneratorHelper.hpp │ │ ├── StrawLineFitterTest.cpp │ │ ├── StrawLineResidualTest.cpp │ │ ├── StrawLineSeederTest.cpp │ │ ├── UtilityFunctionsTests.cpp │ │ └── sp.txt │ ├── SpacePointFormation │ │ ├── CMakeLists.txt │ │ └── SpacePointBuilderTests.cpp │ ├── Surfaces │ │ ├── AlignmentHelperTests.cpp │ │ ├── AnnulusBoundsTests.cpp │ │ ├── BoundaryToleranceTests.cpp │ │ ├── BoundsRegressionTests.cpp │ │ ├── CMakeLists.txt │ │ ├── ConeBoundsTests.cpp │ │ ├── ConeSurfaceTests.cpp │ │ ├── ConvexPolygonBoundsTests.cpp │ │ ├── CurvilinearSurfaceTests.cpp │ │ ├── CylinderBoundsTests.cpp │ │ ├── CylinderSurfaceTests.cpp │ │ ├── DiamondBoundsTests.cpp │ │ ├── DiscSurfaceTests.cpp │ │ ├── DiscTrapezoidBoundsTests.cpp │ │ ├── EllipseBoundsTests.cpp │ │ ├── InfiniteBoundsTests.cpp │ │ ├── IntersectionHelper2DTests.cpp │ │ ├── LineBoundsTests.cpp │ │ ├── LineIntersectionTests.cpp │ │ ├── LineSurfaceTests.cpp │ │ ├── PerigeeSurfaceTests.cpp │ │ ├── PlaneSurfaceTests.cpp │ │ ├── PolyhedronSurfacesTests.cpp │ │ ├── RadialBoundsTests.cpp │ │ ├── RectangleBoundsTests.cpp │ │ ├── StrawSurfaceTests.cpp │ │ ├── SurfaceArrayTests.cpp │ │ ├── SurfaceBoundsTests.cpp │ │ ├── SurfaceIntersectionTests.cpp │ │ ├── SurfaceLocalToGlobalRoundtripTests.cpp │ │ ├── SurfaceStub.hpp │ │ ├── SurfaceTests.cpp │ │ ├── TrapezoidBoundsTests.cpp │ │ └── VerticesHelperTests.cpp │ ├── TrackFinding │ │ ├── CMakeLists.txt │ │ ├── CombinatorialKalmanFilterTests.cpp │ │ ├── TrackParamsLookupAccumulatorTests.cpp │ │ └── TrackSelectorTests.cpp │ ├── TrackFitting │ │ ├── CMakeLists.txt │ │ ├── FitterTestsCommon.hpp │ │ ├── GainMatrixSmootherTests.cpp │ │ ├── GainMatrixUpdaterTests.cpp │ │ ├── GsfComponentMergingTests.cpp │ │ ├── GsfMixtureReductionTests.cpp │ │ ├── GsfTests.cpp │ │ ├── Gx2fTests.cpp │ │ ├── KalmanFitterTests.cpp │ │ └── MbfSmootherTests.cpp │ ├── Utilities │ │ ├── AlgebraHelpersTests.cpp │ │ ├── AngleHelpersTests.cpp │ │ ├── AnnealingUtilityTests.cpp │ │ ├── AnyGridViewTests.cpp │ │ ├── AnyTests.cpp │ │ ├── AxesTests.cpp │ │ ├── BFieldMapUtilsTests.cpp │ │ ├── BinAdjustmentTests.cpp │ │ ├── BinAdjustmentVolumeTests.cpp │ │ ├── BinUtilityTests.cpp │ │ ├── BinningDataTests.cpp │ │ ├── BoundingBoxTest.cpp │ │ ├── CMakeLists.txt │ │ ├── ContextTypeTests.cpp │ │ ├── DBScanTests.cpp │ │ ├── DelegateTests.cpp │ │ ├── ExtendableTests.cpp │ │ ├── FiniteStateMachineTests.cpp │ │ ├── FrustumTest.cpp │ │ ├── GraphVizTests.cpp │ │ ├── GridAccessHelpersTests.cpp │ │ ├── GridAxisGeneratorsTests.cpp │ │ ├── GridBinFinderTests.cpp │ │ ├── GridIterationTests.cpp │ │ ├── GridTests.cpp │ │ ├── HashedStringTests.cpp │ │ ├── HelpersTests.cpp │ │ ├── InterpolationTests.cpp │ │ ├── IntersectionTests.cpp │ │ ├── JoinStringsTests.cpp │ │ ├── KDTreeTests.cpp │ │ ├── LineWithPartialTests.cpp │ │ ├── LoggerTests.cpp │ │ ├── MaterialMapUtilsTests.cpp │ │ ├── MathHelpersTests.cpp │ │ ├── MultiIndexTests.cpp │ │ ├── ParticleDataTests.cpp │ │ ├── PeriodicTests.cpp │ │ ├── PointerConceptTest.cpp │ │ ├── PolynomialTests.cpp │ │ ├── ProtoAxisTests.cpp │ │ ├── Range1DTests.cpp │ │ ├── RangeXDTests.cpp │ │ ├── RayTest.cpp │ │ ├── RealQuadraticEquationTests.cpp │ │ ├── ResultTests.cpp │ │ ├── TableTests.cpp │ │ ├── TrackHelpersTests.cpp │ │ ├── TransformComparatorTests.cpp │ │ ├── TransformRangeTests.cpp │ │ ├── TypeDispatcherTests.cpp │ │ ├── TypeListTests.cpp │ │ ├── UnitVectorsTests.cpp │ │ ├── VectorHelpersTests.cpp │ │ └── ZipTests.cpp │ ├── VersionTests.cpp │ ├── Vertexing │ │ ├── AdaptiveGridTrackDensityTests.cpp │ │ ├── AdaptiveMultiVertexFinderTests.cpp │ │ ├── AdaptiveMultiVertexFitterTests.cpp │ │ ├── CMakeLists.txt │ │ ├── FullBilloirVertexFitterTests.cpp │ │ ├── GaussianGridTrackDensityTests.cpp │ │ ├── GridDensityVertexFinderTests.cpp │ │ ├── HoughVertexFinderTests.cpp │ │ ├── ImpactPointEstimatorTests.cpp │ │ ├── IterativeVertexFinderTests.cpp │ │ ├── KalmanVertexUpdaterTests.cpp │ │ ├── LinearizedTrackFactoryTests.cpp │ │ ├── TrackDensityVertexFinderTests.cpp │ │ ├── VertexingDataHelper.hpp │ │ └── ZScanVertexFinderTests.cpp │ └── Visualization │ │ ├── CMakeLists.txt │ │ ├── EventDataView3DBase.hpp │ │ ├── EventDataView3DTests.cpp │ │ ├── Interpolation3DTests.cpp │ │ ├── PrimitivesView3DBase.hpp │ │ ├── PrimitivesView3DTests.cpp │ │ ├── SurfaceView3DBase.hpp │ │ ├── SurfaceView3DTests.cpp │ │ ├── TrackingGeometryView3DBase.hpp │ │ ├── TrackingGeometryView3DTests.cpp │ │ ├── Visualization3DTester.hpp │ │ ├── Visualization3DTests.cpp │ │ ├── VolumeView3DBase.hpp │ │ └── VolumeView3DTests.cpp │ ├── Examples │ ├── Algorithms │ │ ├── Alignment │ │ │ ├── AlignmentGroupingTests.cpp │ │ │ └── CMakeLists.txt │ │ ├── CMakeLists.txt │ │ └── Digitization │ │ │ ├── CMakeLists.txt │ │ │ └── ModuleClustersTests.cpp │ ├── CMakeLists.txt │ ├── EventData │ │ ├── CMakeLists.txt │ │ ├── MeasurementTests.cpp │ │ └── MuonSpacePointIdTests.cpp │ ├── Framework │ │ ├── CMakeLists.txt │ │ └── DataHandleTest.cpp │ └── Io │ │ ├── CMakeLists.txt │ │ ├── Csv │ │ ├── CMakeLists.txt │ │ └── MeasurementReaderWriterTests.cpp │ │ ├── Json │ │ ├── CMakeLists.txt │ │ └── JsonDigitizationConfigTests.cpp │ │ └── Root │ │ ├── CMakeLists.txt │ │ └── SimhitReaderWriterTests.cpp │ ├── Fatras │ ├── CMakeLists.txt │ ├── Digitization │ │ ├── BoundRandomValues.hpp │ │ ├── CMakeLists.txt │ │ ├── ChannelMergerTests.cpp │ │ ├── ChannelizerTests.cpp │ │ ├── DigitizationCsvOutput.hpp │ │ ├── PlanarSurfaceDriftTests.cpp │ │ ├── PlanarSurfaceMaskTests.cpp │ │ ├── PlanarSurfaceTestBeds.hpp │ │ ├── SegmentizerTests.cpp │ │ └── UncorrelatedHitSmearerTests.cpp │ ├── EventData │ │ ├── BarcodeTests.cpp │ │ ├── CMakeLists.txt │ │ ├── HitTests.cpp │ │ └── ParticleTests.cpp │ ├── Kernel │ │ ├── CMakeLists.txt │ │ ├── ContinuousProcessTests.cpp │ │ ├── InteractionListTests.cpp │ │ ├── PointLikeProcessTests.cpp │ │ ├── SimulationActorTests.cpp │ │ └── TupleIndexOfTests.cpp │ ├── Physics │ │ ├── BetheBlochTests.cpp │ │ ├── BetheHeitlerTests.cpp │ │ ├── CMakeLists.txt │ │ ├── Dataset.hpp │ │ ├── PhotonConversionTests.cpp │ │ └── ScatteringTests.cpp │ ├── Selectors │ │ ├── CMakeLists.txt │ │ ├── Dataset.hpp │ │ ├── KinematicCastsTests.cpp │ │ ├── ParticleSelectorsTests.cpp │ │ └── SelectorHelpersTests.cpp │ └── Utilities │ │ ├── CMakeLists.txt │ │ └── FpeSafeGammaDistributionTests.cpp │ └── Plugins │ ├── ActSVG │ ├── CMakeLists.txt │ ├── GridSvgConverterTests.cpp │ ├── LayerSvgConverterTests.cpp │ ├── SurfaceSvgConverterTests.cpp │ └── TrackingGeometrySvgConverterTests.cpp │ ├── CMakeLists.txt │ ├── Covfie │ ├── CMakeLists.txt │ └── CovfieFieldConversionTest.cpp │ ├── DD4hep │ ├── CMakeLists.txt │ ├── DD4hepCylindricalDetectorGen3Tests.cpp │ ├── DD4hepDetectorElementTests.cpp │ ├── DD4hepDetectorSurfaceFactoryTests.cpp │ ├── DD4hepTestsHelper.cpp │ ├── DD4hepTestsHelper.hpp │ ├── LayerFactory.cpp │ ├── PrimitivesFactory.cpp │ └── XMLFragments.hpp │ ├── Detray │ ├── CMakeLists.txt │ ├── DetrayMaterialConversionTests.cpp │ └── DetrayPayloadConverterTests.cpp │ ├── EDM4hep │ ├── CMakeLists.txt │ ├── ConvertTrackEDM4hepTest.cpp │ ├── PodioTrackContainerTest.cpp │ └── PodioTrackStateContainerTest.cpp │ ├── FastJet │ ├── CMakeLists.txt │ └── JetsTests.cpp │ ├── FpeMonitoring │ ├── CMakeLists.txt │ └── FpeMonitorTests.cpp │ ├── Geant4 │ ├── CMakeLists.txt │ ├── Geant4ConvertersTests.cpp │ ├── Geant4DetectorElementTests.cpp │ ├── Geant4DetectorSurfaceFactoryTests.cpp │ └── Geant4PhysicalVolumeSelectorsTests.cpp │ ├── GeoModel │ ├── CMakeLists.txt │ ├── GeoBoxConverterTests.cpp │ ├── GeoBoxToVolumeTest.cpp │ ├── GeoDetectorObjectTest.cpp │ ├── GeoModelDetectorElementITkTests.cpp │ ├── GeoModelDetectorElementTests.cpp │ ├── GeoPolyConverterTests.cpp │ ├── GeoSubConverterTest.cpp │ ├── GeoTrdConverterTests.cpp │ ├── GeoTrdToVolumeTests.cpp │ └── GeoTubeToVolumeTest.cpp │ ├── Gnn │ ├── CMakeLists.txt │ ├── ConnectedComponentCudaTests.cu │ ├── GnnBoostTrackBuildingTests.cpp │ ├── GnnEdgeBuildingTest.cpp │ ├── GnnMetricHookTests.cpp │ ├── GnnTensorConversionTests.cpp │ ├── JunctionRemovalTests.cu │ └── TensorTests.cpp │ ├── Hashing │ ├── AnnoyTest.cpp │ ├── CMakeLists.txt │ ├── HashingSeedingTest.cpp │ └── SpacePoint.hpp │ ├── Json │ ├── AlgebraJsonConverterTests.cpp │ ├── CMakeLists.txt │ ├── EqualityHelpers.hpp │ ├── ExtentJsonConverterTests.cpp │ ├── GeometryHierarchyMapJsonConverterTests.cpp │ ├── GeometryIdentifierJsonConverterTests.cpp │ ├── GridJsonConverterTests.cpp │ ├── JsonSurfacesReaderTests.cpp │ ├── MaterialJsonConverterTests.cpp │ ├── MaterialMapJsonConverterTests.cpp │ ├── ProtoAxisJsonConverterTests.cpp │ ├── SurfaceBoundsJsonConverterTests.cpp │ ├── SurfaceJsonConverterTests.cpp │ ├── TrackParametersJsonConverterTests.cpp │ ├── UtilitiesJsonConverterTests.cpp │ └── VolumeBoundsJsonConverterTests.cpp │ └── Root │ ├── CMakeLists.txt │ ├── RootMagneticFieldIoTests.cpp │ ├── RootMaterialMapIoTests.cpp │ ├── RootMeasurementIoTests.cpp │ ├── TGeoArb8ConversionTests.cpp │ ├── TGeoBBoxConversionTests.cpp │ ├── TGeoLayerBuilderTests.cpp │ ├── TGeoMaterialConverterTests.cpp │ ├── TGeoParserTests.cpp │ ├── TGeoPrimitivesHelperTests.cpp │ ├── TGeoTrd1ConversionTests.cpp │ ├── TGeoTrd2ConversionTests.cpp │ └── TGeoTubeConversionTests.cpp ├── cmake ├── ActsCodegen.cmake ├── ActsCompilerOptions.cmake ├── ActsComponentsHelpers.cmake ├── ActsConfig.cmake.in ├── ActsCreatePackageConfig.cmake ├── ActsCreateSetup.cmake ├── ActsExternSources.cmake ├── ActsFunctions.cmake ├── ActsGenerateNonCompileTest.cmake ├── ActsOptionHelpers.cmake ├── ActsRetrieveVersion.cmake ├── ActsStaticAnalysis.cmake ├── ActsTargetLinkLibrariesSystem.cmake ├── FindFastJet.cmake ├── FindFilesystem.cmake ├── FindPythia8.cmake ├── FindSphinx.cmake ├── FindTBB.cmake ├── FindTensorRT.cmake ├── FindZSTD.cmake ├── Findonnxruntime.cmake ├── assert_include │ ├── Eigen │ │ ├── Core │ │ ├── Dense │ │ └── Geometry │ ├── assert.h │ └── cassert ├── setup.sh.in ├── setup_withdeps.sh.in └── src │ └── format.cpp ├── codecov.yml ├── codegen ├── README.md ├── pyproject.toml ├── requirements.txt └── src │ └── codegen │ ├── __init__.py │ └── sympy_common.py ├── docs ├── .gitignore ├── old │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Doxyfile │ ├── SolenoidField.ipynb │ ├── _extensions │ │ ├── lazy_autodoc.py │ │ └── warnings_filter.py │ ├── _static │ │ └── custom.css │ ├── acts_project.md │ ├── authors.rst │ ├── codeguide.md │ ├── conf.py │ ├── contribution │ │ ├── clang_tidy.md │ │ ├── contribution.md │ │ ├── documentation_build.md │ │ ├── documentation_cheatsheet.md │ │ ├── figures │ │ │ ├── physmon │ │ │ │ ├── physmon_artifact.png │ │ │ │ ├── physmon_checks.png │ │ │ │ ├── physmon_report.png │ │ │ │ └── physmon_run.png │ │ │ └── release │ │ │ │ ├── milestone_drop.png │ │ │ │ ├── milestones.png │ │ │ │ ├── next_milestone.png │ │ │ │ └── select_all_closed.png │ │ ├── guide.rst │ │ ├── physmon.md │ │ ├── profiling.md │ │ ├── release.md │ │ ├── root_hash_checks.md │ │ └── run_formatting.md │ ├── core │ │ ├── core.rst │ │ ├── definitions │ │ │ └── units.md │ │ ├── eventdata │ │ │ ├── figures │ │ │ │ ├── ckf_tree.svg │ │ │ │ ├── edm_chain.svg │ │ │ │ ├── edm_diagram.svg │ │ │ │ └── proxy.svg │ │ │ ├── index.md │ │ │ ├── measurements.md │ │ │ ├── parametrization.md │ │ │ ├── particle_hypothesis.md │ │ │ └── tracks.md │ │ ├── figures │ │ │ ├── bfield │ │ │ │ ├── field_cell.svg │ │ │ │ └── quiver.png │ │ │ └── material │ │ │ │ ├── MaterialAssignment.jpg │ │ │ │ └── MaterialAveraging.jpg │ │ ├── geometry │ │ │ ├── concepts.md │ │ │ ├── construction.md │ │ │ ├── figures │ │ │ │ ├── CylinderBounds.png │ │ │ │ ├── CylinderLayer.png │ │ │ │ ├── CylinderVolumeBounds.png │ │ │ │ ├── DetectorElement.png │ │ │ │ ├── DiscBounds.png │ │ │ │ ├── DiscLayerEB.png │ │ │ │ ├── GlueingABC.png │ │ │ │ ├── GlueingBC.png │ │ │ │ ├── LayerArray.png │ │ │ │ ├── NavigationABC.png │ │ │ │ ├── PlaneBounds.png │ │ │ │ └── VolumeBounds.png │ │ │ ├── geometry_id.md │ │ │ ├── index.md │ │ │ ├── layerless │ │ │ │ ├── building.md │ │ │ │ └── layerless.md │ │ │ ├── legacy │ │ │ │ ├── building.md │ │ │ │ ├── layers.md │ │ │ │ ├── legacy.md │ │ │ │ └── volumes.md │ │ │ ├── material.md │ │ │ └── surfaces.md │ │ ├── howto │ │ │ ├── index.md │ │ │ └── material_mapping.md │ │ ├── magnetic_field.md │ │ ├── material.md │ │ ├── misc │ │ │ ├── figures │ │ │ │ └── AxisBoundaryTypes.svg │ │ │ ├── grid_axis.md │ │ │ ├── index.md │ │ │ └── logging.md │ │ ├── propagation.md │ │ ├── reconstruction │ │ │ ├── figures │ │ │ │ ├── gsf_bethe_heitler_approx.svg │ │ │ │ └── gsf_overview.svg │ │ │ ├── index.md │ │ │ ├── pattern_recognition │ │ │ │ ├── figures │ │ │ │ │ └── seeding │ │ │ │ │ │ ├── 3Dcoordinates.svg │ │ │ │ │ │ ├── impactParameter.svg │ │ │ │ │ │ ├── r-zCoordinates.svg │ │ │ │ │ │ ├── tripletsFormation.svg │ │ │ │ │ │ └── x-yCoordinates.svg │ │ │ │ ├── pattern_recognition.md │ │ │ │ ├── seeding.md │ │ │ │ └── track_finding.md │ │ │ ├── preprocessing │ │ │ │ ├── clustering.md │ │ │ │ ├── preprocessing.md │ │ │ │ └── spacepoint_formation.md │ │ │ ├── track_fitting.md │ │ │ └── vertexing.md │ │ └── visualization │ │ │ ├── 3d.md │ │ │ ├── figures │ │ │ ├── AngularError.png │ │ │ ├── CartesianError.png │ │ │ ├── CylinderLayer.png │ │ │ └── Parameters.png │ │ │ ├── index.md │ │ │ └── svg.md │ ├── examples │ │ ├── alignment.md │ │ ├── examples.rst │ │ ├── full_chain_odd.md │ │ ├── howto │ │ │ ├── add_new_algorithm.md │ │ │ ├── analysis_apps.rst │ │ │ ├── digitization_config.md │ │ │ ├── figures │ │ │ │ ├── analysis_apps │ │ │ │ │ ├── aa_mc_stacked_x0.gif │ │ │ │ │ ├── aa_rp_layers.png │ │ │ │ │ ├── aa_ts_d0.png │ │ │ │ │ └── aa_ts_nhits.png │ │ │ │ ├── gsf_debugger │ │ │ │ │ ├── gsf_debugger_0.jpg │ │ │ │ │ ├── gsf_debugger_1.jpg │ │ │ │ │ ├── gsf_debugger_2.jpg │ │ │ │ │ ├── gsf_debugger_4.jpg │ │ │ │ │ └── gsf_debugger_5.jpg │ │ │ │ └── materialMapping │ │ │ │ │ ├── approach_layers.png │ │ │ │ │ ├── boundaries.png │ │ │ │ │ ├── layers_for_volume_17.png │ │ │ │ │ └── volumes_and_layers.png │ │ │ ├── gsf_debugger.md │ │ │ ├── howto.md │ │ │ ├── material_mapping.rst │ │ │ └── run_ckf_auto_tuning.rst │ │ └── python_bindings.rst │ ├── fatras │ │ └── fatras.md │ ├── figures │ │ ├── acts_logo_colored.svg │ │ ├── acts_logo_white.svg │ │ ├── doxygen │ │ │ ├── ConeBounds.gif │ │ │ ├── CylinderBounds.gif │ │ │ ├── CylinderSurface.png │ │ │ ├── Cylinder_Merging.svg │ │ │ ├── DiamondBounds.svg │ │ │ ├── DiscBounds.gif │ │ │ ├── DiscSurface.png │ │ │ ├── Disc_Merging.svg │ │ │ ├── EllipseBounds.png │ │ │ ├── LineSurface.png │ │ │ ├── PlaneSurface.png │ │ │ ├── RectangleBounds.gif │ │ │ ├── SignOfDriftCircleD0.gif │ │ │ └── TrapezoidBounds.gif │ │ └── tracking │ │ │ ├── cca.svg │ │ │ ├── clustering.svg │ │ │ ├── finding.svg │ │ │ ├── geometry_detail.svg │ │ │ ├── kalman.svg │ │ │ ├── layer_barrel.svg │ │ │ ├── layer_ec.svg │ │ │ ├── multiple_scattering.svg │ │ │ ├── parameters.svg │ │ │ ├── perigee.svg │ │ │ ├── rk.svg │ │ │ ├── seeding.svg │ │ │ ├── segmentation.svg │ │ │ ├── sp_l2g.svg │ │ │ ├── surface_array.svg │ │ │ ├── tracking.svg │ │ │ ├── vertexing.svg │ │ │ └── vertexing_flowchart.svg │ ├── formats │ │ ├── formats.rst │ │ └── json_geometry_hierarchy_map.rst │ ├── getting_started.md │ ├── glossary.md │ ├── index.rst │ ├── known-warnings.txt │ ├── license.rst │ ├── misc │ │ ├── misc.rst │ │ └── spack.md │ ├── plugins │ │ ├── MLAlgorithms.md │ │ ├── dd4hep.md │ │ ├── figures │ │ │ ├── DD4hepPlugin_DetElementStructure.jpg │ │ │ └── tgeo │ │ │ │ ├── TGeoBBox_PlaneSurface.png │ │ │ │ ├── TGeoTrd1_PlaneSurface.png │ │ │ │ ├── TGeoTrd2_PlaneSurface_xz.png │ │ │ │ ├── TGeoTrd2_PlaneSurface_yz.png │ │ │ │ ├── TGeoTube_CylinderSurface.png │ │ │ │ └── TGeoTube_DiscSurface.png │ │ ├── geant4.md │ │ ├── gnn.md │ │ ├── json.md │ │ ├── plugins.rst │ │ └── root.rst │ ├── requirements.in │ ├── requirements.txt │ ├── tracking.md │ ├── versioning.rst │ ├── white_paper_index_template.md.j2 │ ├── white_paper_template.md.j2 │ ├── white_papers.py │ ├── white_papers.toml │ └── white_papers │ │ ├── figures │ │ ├── billoir-covariances.png │ │ ├── correction-for-transport-jacobian.png │ │ ├── gaussian-track-densities.png │ │ ├── line-surface-jacobian.png │ │ ├── overleaf_compiler.png │ │ ├── overleaf_import_github.png │ │ └── whitepaper-template.png │ │ └── how_to_add.md └── parse_cmake_options.py ├── pytest.ini ├── readthedocs.yml ├── sonar-project.properties ├── thirdparty ├── Annoy │ ├── 0001-Modify-annoy.patch │ └── CMakeLists.txt ├── FRNN │ ├── CMakeLists.txt │ └── CMakeLists.txt.in ├── ModuleMapGraph │ ├── CMakeLists.txt │ └── README.md ├── OpenDataDetector │ └── CMakeLists.txt ├── README.md ├── actsvg │ ├── CMakeLists.txt │ └── README.md ├── algebra-plugins │ ├── CMakeLists.txt │ └── README.md ├── covfie │ ├── CMakeLists.txt │ └── README.md ├── detray │ ├── CMakeLists.txt │ └── README.md ├── eigen3 │ └── CMakeLists.txt ├── nlohmann_json │ └── CMakeLists.txt ├── pybind11 │ └── CMakeLists.txt ├── traccc │ ├── CMakeLists.txt │ └── README.md └── vecmem │ ├── CMakeLists.txt │ └── README.md └── version_number /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.devcontainer/setup.sh -------------------------------------------------------------------------------- /.gersemirc: -------------------------------------------------------------------------------- 1 | definitions: 2 | - cmake/ 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ipp gitlab-language=c++ 2 | -------------------------------------------------------------------------------- /.github/actions/dependencies/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/actions/dependencies/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/wip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/wip.yml -------------------------------------------------------------------------------- /.github/workflows/analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/workflows/analysis.yml -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/builds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/workflows/builds.yml -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.github/workflows/devcontainer-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/workflows/devcontainer-ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/workflows/labels.yml -------------------------------------------------------------------------------- /.github/workflows/milestone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/workflows/milestone.yml -------------------------------------------------------------------------------- /.github/workflows/pr-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/workflows/pr-lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/remove-automerge-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/workflows/remove-automerge-label.yml -------------------------------------------------------------------------------- /.github/workflows/report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/workflows/report.yml -------------------------------------------------------------------------------- /.github/workflows/sonarcloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/workflows/sonarcloud.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/trigger_athena.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/workflows/trigger_athena.yml -------------------------------------------------------------------------------- /.github/workflows/update-pip-requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.github/workflows/update-pip-requirements.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.kodiak.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.kodiak.toml -------------------------------------------------------------------------------- /.merge-sentinel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.merge-sentinel.yml -------------------------------------------------------------------------------- /.policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.policy.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/.zenodo.json -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/AUTHORS -------------------------------------------------------------------------------- /Alignment/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Alignment/CMakeLists.txt -------------------------------------------------------------------------------- /Alignment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Alignment/README.md -------------------------------------------------------------------------------- /CI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/README.md -------------------------------------------------------------------------------- /CI/bump_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/bump_versions.py -------------------------------------------------------------------------------- /CI/check_boost_eigen_versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/check_boost_eigen_versions.sh -------------------------------------------------------------------------------- /CI/check_boost_test_macro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/check_boost_test_macro.sh -------------------------------------------------------------------------------- /CI/check_codegen_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/check_codegen_dependencies.sh -------------------------------------------------------------------------------- /CI/check_doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/check_doxygen -------------------------------------------------------------------------------- /CI/check_end_of_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/check_end_of_file.py -------------------------------------------------------------------------------- /CI/check_format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/check_format -------------------------------------------------------------------------------- /CI/check_format_local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/check_format_local -------------------------------------------------------------------------------- /CI/check_fpe_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/check_fpe_masks.py -------------------------------------------------------------------------------- /CI/check_include_guards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/check_include_guards.py -------------------------------------------------------------------------------- /CI/check_license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/check_license.py -------------------------------------------------------------------------------- /CI/check_math_macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/check_math_macros.py -------------------------------------------------------------------------------- /CI/check_pragma_once.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/check_pragma_once.sh -------------------------------------------------------------------------------- /CI/check_smearing_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/check_smearing_config.py -------------------------------------------------------------------------------- /CI/check_spelling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/check_spelling -------------------------------------------------------------------------------- /CI/check_type_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/check_type_t.py -------------------------------------------------------------------------------- /CI/check_unused_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/check_unused_files.py -------------------------------------------------------------------------------- /CI/clang_tidy/check_clang_tidy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/clang_tidy/check_clang_tidy.py -------------------------------------------------------------------------------- /CI/clang_tidy/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/clang_tidy/item.py -------------------------------------------------------------------------------- /CI/clang_tidy/limits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/clang_tidy/limits.yml -------------------------------------------------------------------------------- /CI/clang_tidy/parse_clang_tidy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/clang_tidy/parse_clang_tidy.py -------------------------------------------------------------------------------- /CI/clang_tidy/requirements.in: -------------------------------------------------------------------------------- 1 | pyyaml 2 | rich 3 | pydantic 4 | codereport 5 | -------------------------------------------------------------------------------- /CI/clang_tidy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/clang_tidy/requirements.txt -------------------------------------------------------------------------------- /CI/clang_tidy/run_clang_tidy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/clang_tidy/run_clang_tidy.py -------------------------------------------------------------------------------- /CI/clang_tidy/run_clang_tidy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/clang_tidy/run_clang_tidy.sh -------------------------------------------------------------------------------- /CI/cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/cliff.toml -------------------------------------------------------------------------------- /CI/codespell_ignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/codespell_ignore.txt -------------------------------------------------------------------------------- /CI/ctest2junit.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/ctest2junit.xsl -------------------------------------------------------------------------------- /CI/dependencies/download_geant4_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/dependencies/download_geant4_datasets.py -------------------------------------------------------------------------------- /CI/dependencies/download_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/dependencies/download_models.sh -------------------------------------------------------------------------------- /CI/dependencies/opengl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/dependencies/opengl.sh -------------------------------------------------------------------------------- /CI/dependencies/parallel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/dependencies/parallel.sh -------------------------------------------------------------------------------- /CI/dependencies/select_lockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/dependencies/select_lockfile.py -------------------------------------------------------------------------------- /CI/dependencies/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/dependencies/setup.sh -------------------------------------------------------------------------------- /CI/dependencies/setup_spack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/dependencies/setup_spack.sh -------------------------------------------------------------------------------- /CI/fix_pragma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/fix_pragma.py -------------------------------------------------------------------------------- /CI/format_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/format_json.py -------------------------------------------------------------------------------- /CI/fpe_masks/requirements.in: -------------------------------------------------------------------------------- 1 | gidgethub 2 | typer 3 | rich 4 | aiohttp 5 | -------------------------------------------------------------------------------- /CI/fpe_masks/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/fpe_masks/requirements.txt -------------------------------------------------------------------------------- /CI/get_next_milestone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/get_next_milestone.py -------------------------------------------------------------------------------- /CI/git_hook_clang_format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/git_hook_clang_format -------------------------------------------------------------------------------- /CI/headwind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/headwind.yml -------------------------------------------------------------------------------- /CI/merge_hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/merge_hashes.py -------------------------------------------------------------------------------- /CI/missing_include_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/missing_include_check.sh -------------------------------------------------------------------------------- /CI/perf_headwind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/perf_headwind.py -------------------------------------------------------------------------------- /CI/physmon/config/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/physmon/config/default.yml -------------------------------------------------------------------------------- /CI/physmon/config/info_only.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/physmon/config/info_only.yml -------------------------------------------------------------------------------- /CI/physmon/config/pythia8_ttbar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/physmon/config/pythia8_ttbar.yml -------------------------------------------------------------------------------- /CI/physmon/config/simulation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/physmon/config/simulation.yml -------------------------------------------------------------------------------- /CI/physmon/config/trackfitting_gsf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/physmon/config/trackfitting_gsf.yml -------------------------------------------------------------------------------- /CI/physmon/config/trackfitting_gx2f.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/physmon/config/trackfitting_gx2f.yml -------------------------------------------------------------------------------- /CI/physmon/config/trackfitting_kf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/physmon/config/trackfitting_kf.yml -------------------------------------------------------------------------------- /CI/physmon/config/tracksummary_ckf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/physmon/config/tracksummary_ckf.yml -------------------------------------------------------------------------------- /CI/physmon/config/vertexing_ttbar_pu200.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/physmon/config/vertexing_ttbar_pu200.yml -------------------------------------------------------------------------------- /CI/physmon/phys_perf_mon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/physmon/phys_perf_mon.sh -------------------------------------------------------------------------------- /CI/physmon/physmon_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/physmon/physmon_common.py -------------------------------------------------------------------------------- /CI/physmon/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/physmon/setup.sh -------------------------------------------------------------------------------- /CI/physmon/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/physmon/summary.py -------------------------------------------------------------------------------- /CI/physmon/workflows/physmon_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/physmon/workflows/physmon_simulation.py -------------------------------------------------------------------------------- /CI/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/poetry.lock -------------------------------------------------------------------------------- /CI/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/pyproject.toml -------------------------------------------------------------------------------- /CI/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/release.sh -------------------------------------------------------------------------------- /CI/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/requirements.txt -------------------------------------------------------------------------------- /CI/root_event_diff_np.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/root_event_diff_np.py -------------------------------------------------------------------------------- /CI/ssh_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/ssh_config -------------------------------------------------------------------------------- /CI/test_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/test_coverage.py -------------------------------------------------------------------------------- /CI/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CI/util.py -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /Core/ActsVersion.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/ActsVersion.hpp.in -------------------------------------------------------------------------------- /Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/CMakeLists.txt -------------------------------------------------------------------------------- /Core/include/Acts/Definitions/Algebra.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Definitions/Algebra.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Definitions/Alignment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Definitions/Alignment.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Definitions/Common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Definitions/Common.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Definitions/Direction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Definitions/Direction.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Definitions/PdgParticle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Definitions/PdgParticle.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Definitions/Tolerance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Definitions/Tolerance.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Definitions/Units.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Definitions/Units.hpp -------------------------------------------------------------------------------- /Core/include/Acts/EventData/Charge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/EventData/Charge.hpp -------------------------------------------------------------------------------- /Core/include/Acts/EventData/ChargeConcept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/EventData/ChargeConcept.hpp -------------------------------------------------------------------------------- /Core/include/Acts/EventData/ProxyAccessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/EventData/ProxyAccessor.hpp -------------------------------------------------------------------------------- /Core/include/Acts/EventData/Seed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/EventData/Seed.hpp -------------------------------------------------------------------------------- /Core/include/Acts/EventData/Seed.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/EventData/Seed.ipp -------------------------------------------------------------------------------- /Core/include/Acts/EventData/SeedProxy2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/EventData/SeedProxy2.hpp -------------------------------------------------------------------------------- /Core/include/Acts/EventData/SourceLink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/EventData/SourceLink.hpp -------------------------------------------------------------------------------- /Core/include/Acts/EventData/TrackProxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/EventData/TrackProxy.hpp -------------------------------------------------------------------------------- /Core/include/Acts/EventData/Types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/EventData/Types.hpp -------------------------------------------------------------------------------- /Core/include/Acts/EventData/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/EventData/Utils.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/Blueprint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/Blueprint.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/BlueprintNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/BlueprintNode.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/ConeLayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/ConeLayer.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/CylinderLayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/CylinderLayer.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/DiscLayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/DiscLayer.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/Extent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/Extent.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/GeometryObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/GeometryObject.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/GridPortalLink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/GridPortalLink.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/ILayerBuilder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/ILayerBuilder.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/IndexGrid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/IndexGrid.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/Layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/Layer.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/Layer.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/Layer.ipp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/LayerCreator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/LayerCreator.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/PlaneLayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/PlaneLayer.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/Polyhedron.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/Polyhedron.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/Portal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/Portal.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/PortalError.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/PortalError.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/PortalLinkBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/PortalLinkBase.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/PortalShell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/PortalShell.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/ProtoDetector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/ProtoDetector.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/ProtoLayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/ProtoLayer.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/TrackingVolume.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/TrackingVolume.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/Volume.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/Volume.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/VolumeBounds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/VolumeBounds.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Geometry/VolumeStack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Geometry/VolumeStack.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Material/Interactions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Material/Interactions.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Material/Material.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Material/Material.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Propagator/ActorList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Propagator/ActorList.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Propagator/Navigator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Propagator/Navigator.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Seeding/BinnedGroup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Seeding/BinnedGroup.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Seeding/BinnedGroup.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Seeding/BinnedGroup.ipp -------------------------------------------------------------------------------- /Core/include/Acts/Seeding/GbtsGeometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Seeding/GbtsGeometry.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Seeding/Neighbour.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Seeding/Neighbour.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Seeding/PathSeeder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Seeding/PathSeeder.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Seeding/SeedFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Seeding/SeedFilter.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Seeding/SeedFilter.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Seeding/SeedFilter.ipp -------------------------------------------------------------------------------- /Core/include/Acts/Seeding/SeedFinder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Seeding/SeedFinder.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Seeding/SeedFinder.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Seeding/SeedFinder.ipp -------------------------------------------------------------------------------- /Core/include/Acts/Surfaces/ConeBounds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Surfaces/ConeBounds.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Surfaces/ConeSurface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Surfaces/ConeSurface.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Surfaces/DiscBounds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Surfaces/DiscBounds.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Surfaces/DiscSurface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Surfaces/DiscSurface.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Surfaces/LineBounds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Surfaces/LineBounds.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Surfaces/LineSurface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Surfaces/LineSurface.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Surfaces/Surface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Surfaces/Surface.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/Any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/Any.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/Axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/Axis.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/BinUtility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/BinUtility.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/Concepts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/Concepts.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/DBScan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/DBScan.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/Delegate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/Delegate.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/Enumerate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/Enumerate.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/Frustum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/Frustum.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/Frustum.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/Frustum.ipp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/GraphViz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/GraphViz.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/Grid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/Grid.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/Helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/Helpers.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/Holders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/Holders.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/IAxis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/IAxis.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/KDTree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/KDTree.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/Logger.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/MultiIndex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/MultiIndex.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/ProtoAxis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/ProtoAxis.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/RangeXD.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/RangeXD.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/Ray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/Ray.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/Ray.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/Ray.ipp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/Result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/Result.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/Table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/Table.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/TypeList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/TypeList.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/TypeTag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/TypeTag.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/TypeTraits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/TypeTraits.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Utilities/Zip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Utilities/Zip.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Vertexing/AMVFInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Vertexing/AMVFInfo.hpp -------------------------------------------------------------------------------- /Core/include/Acts/Vertexing/Vertex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/include/Acts/Vertexing/Vertex.hpp -------------------------------------------------------------------------------- /Core/src/ActsVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/ActsVersion.cpp -------------------------------------------------------------------------------- /Core/src/Definitions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Definitions/CMakeLists.txt -------------------------------------------------------------------------------- /Core/src/Definitions/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Definitions/Common.cpp -------------------------------------------------------------------------------- /Core/src/Definitions/Direction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Definitions/Direction.cpp -------------------------------------------------------------------------------- /Core/src/Definitions/ParticleData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Definitions/ParticleData.cpp -------------------------------------------------------------------------------- /Core/src/Definitions/ParticleIdHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Definitions/ParticleIdHelper.cpp -------------------------------------------------------------------------------- /Core/src/EventData/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/EventData/CMakeLists.txt -------------------------------------------------------------------------------- /Core/src/EventData/PrintParameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/EventData/PrintParameters.cpp -------------------------------------------------------------------------------- /Core/src/EventData/SeedContainer2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/EventData/SeedContainer2.cpp -------------------------------------------------------------------------------- /Core/src/EventData/TrackParameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/EventData/TrackParameters.cpp -------------------------------------------------------------------------------- /Core/src/EventData/TrackStatePropMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/EventData/TrackStatePropMask.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/Blueprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/Blueprint.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/BlueprintNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/BlueprintNode.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/BlueprintOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/BlueprintOptions.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/CMakeLists.txt -------------------------------------------------------------------------------- /Core/src/Geometry/CompositePortalLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/CompositePortalLink.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/ConeLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/ConeLayer.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/ConeVolumeBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/ConeVolumeBounds.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/CuboidPortalShell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/CuboidPortalShell.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/CuboidVolumeBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/CuboidVolumeBounds.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/CuboidVolumeBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/CuboidVolumeBuilder.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/CuboidVolumeStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/CuboidVolumeStack.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/CylinderLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/CylinderLayer.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/CylinderPortalShell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/CylinderPortalShell.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/CylinderVolumeBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/CylinderVolumeBounds.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/CylinderVolumeHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/CylinderVolumeHelper.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/CylinderVolumeStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/CylinderVolumeStack.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/DiscLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/DiscLayer.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/Extent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/Extent.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/GeometryIdentifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/GeometryIdentifier.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/GridPortalLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/GridPortalLink.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/IndexGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/IndexGrid.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/Layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/Layer.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/LayerArrayCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/LayerArrayCreator.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/LayerBlueprintNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/LayerBlueprintNode.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/LayerCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/LayerCreator.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/NavigationLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/NavigationLayer.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/PassiveLayerBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/PassiveLayerBuilder.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/PlaneLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/PlaneLayer.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/Polyhedron.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/Polyhedron.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/Portal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/Portal.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/PortalError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/PortalError.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/PortalLinkBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/PortalLinkBase.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/ProtoDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/ProtoDetector.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/ProtoLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/ProtoLayer.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/ProtoLayerHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/ProtoLayerHelper.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/ReferenceGenerators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/ReferenceGenerators.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/StaticBlueprintNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/StaticBlueprintNode.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/SurfaceArrayCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/SurfaceArrayCreator.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/TrackingGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/TrackingGeometry.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/TrackingVolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/TrackingVolume.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/TrapezoidPortalShell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/TrapezoidPortalShell.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/TrivialPortalLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/TrivialPortalLink.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/Volume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/Volume.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/VolumeBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/VolumeBounds.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/VolumeResizeStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/VolumeResizeStrategy.cpp -------------------------------------------------------------------------------- /Core/src/Geometry/VolumeStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Geometry/VolumeStack.cpp -------------------------------------------------------------------------------- /Core/src/MagneticField/BFieldMapUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/MagneticField/BFieldMapUtils.cpp -------------------------------------------------------------------------------- /Core/src/MagneticField/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/MagneticField/CMakeLists.txt -------------------------------------------------------------------------------- /Core/src/MagneticField/SolenoidBField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/MagneticField/SolenoidBField.cpp -------------------------------------------------------------------------------- /Core/src/Material/AverageMaterials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Material/AverageMaterials.cpp -------------------------------------------------------------------------------- /Core/src/Material/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Material/CMakeLists.txt -------------------------------------------------------------------------------- /Core/src/Material/Interactions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Material/Interactions.cpp -------------------------------------------------------------------------------- /Core/src/Material/Material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Material/Material.cpp -------------------------------------------------------------------------------- /Core/src/Material/MaterialGridHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Material/MaterialGridHelper.cpp -------------------------------------------------------------------------------- /Core/src/Material/MaterialMapUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Material/MaterialMapUtils.cpp -------------------------------------------------------------------------------- /Core/src/Material/MaterialMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Material/MaterialMapper.cpp -------------------------------------------------------------------------------- /Core/src/Material/MaterialSlab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Material/MaterialSlab.cpp -------------------------------------------------------------------------------- /Core/src/Material/MaterialValidater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Material/MaterialValidater.cpp -------------------------------------------------------------------------------- /Core/src/Material/ProtoVolumeMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Material/ProtoVolumeMaterial.cpp -------------------------------------------------------------------------------- /Core/src/Material/VolumeMaterialMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Material/VolumeMaterialMapper.cpp -------------------------------------------------------------------------------- /Core/src/Navigation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Navigation/CMakeLists.txt -------------------------------------------------------------------------------- /Core/src/Navigation/NavigationStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Navigation/NavigationStream.cpp -------------------------------------------------------------------------------- /Core/src/Propagator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Propagator/CMakeLists.txt -------------------------------------------------------------------------------- /Core/src/Propagator/EigenStepperError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Propagator/EigenStepperError.cpp -------------------------------------------------------------------------------- /Core/src/Propagator/MultiStepperError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Propagator/MultiStepperError.cpp -------------------------------------------------------------------------------- /Core/src/Propagator/NavigatorError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Propagator/NavigatorError.cpp -------------------------------------------------------------------------------- /Core/src/Propagator/PropagatorError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Propagator/PropagatorError.cpp -------------------------------------------------------------------------------- /Core/src/Propagator/SympyStepper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Propagator/SympyStepper.cpp -------------------------------------------------------------------------------- /Core/src/Seeding/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Seeding/CMakeLists.txt -------------------------------------------------------------------------------- /Core/src/Seeding/FastStrawLineFitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Seeding/FastStrawLineFitter.cpp -------------------------------------------------------------------------------- /Core/src/Seeding/GbtsDataStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Seeding/GbtsDataStorage.cpp -------------------------------------------------------------------------------- /Core/src/Seeding/GbtsGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Seeding/GbtsGeometry.cpp -------------------------------------------------------------------------------- /Core/src/Seeding/GbtsTrackingFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Seeding/GbtsTrackingFilter.cpp -------------------------------------------------------------------------------- /Core/src/Seeding/SeedFinderGbts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Seeding/SeedFinderGbts.cpp -------------------------------------------------------------------------------- /Core/src/Seeding2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Seeding2/CMakeLists.txt -------------------------------------------------------------------------------- /Core/src/Seeding2/DoubletSeedFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Seeding2/DoubletSeedFinder.cpp -------------------------------------------------------------------------------- /Core/src/Seeding2/TripletSeedFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Seeding2/TripletSeedFinder.cpp -------------------------------------------------------------------------------- /Core/src/Seeding2/TripletSeeder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Seeding2/TripletSeeder.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/AnnulusBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/AnnulusBounds.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/BoundaryTolerance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/BoundaryTolerance.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/CMakeLists.txt -------------------------------------------------------------------------------- /Core/src/Surfaces/ConeBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/ConeBounds.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/ConeSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/ConeSurface.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/ConvexPolygonBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/ConvexPolygonBounds.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/CurvilinearSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/CurvilinearSurface.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/CylinderBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/CylinderBounds.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/CylinderSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/CylinderSurface.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/DiamondBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/DiamondBounds.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/DiscSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/DiscSurface.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/DiscTrapezoidBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/DiscTrapezoidBounds.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/EllipseBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/EllipseBounds.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/IntersectionHelper2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/IntersectionHelper2D.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/LineBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/LineBounds.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/LineSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/LineSurface.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/PerigeeSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/PerigeeSurface.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/PlaneSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/PlaneSurface.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/RadialBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/RadialBounds.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/RectangleBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/RectangleBounds.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/RegularSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/RegularSurface.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/StrawSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/StrawSurface.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/Surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/Surface.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/SurfaceArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/SurfaceArray.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/SurfaceBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/SurfaceBounds.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/SurfaceError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/SurfaceError.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/TrapezoidBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/TrapezoidBounds.cpp -------------------------------------------------------------------------------- /Core/src/Surfaces/detail/MergeHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Surfaces/detail/MergeHelper.cpp -------------------------------------------------------------------------------- /Core/src/TrackFinding/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/TrackFinding/CMakeLists.txt -------------------------------------------------------------------------------- /Core/src/TrackFinding/GbtsConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/TrackFinding/GbtsConnector.cpp -------------------------------------------------------------------------------- /Core/src/TrackFinding/RoiDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/TrackFinding/RoiDescriptor.cpp -------------------------------------------------------------------------------- /Core/src/TrackFitting/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/TrackFitting/CMakeLists.txt -------------------------------------------------------------------------------- /Core/src/TrackFitting/GsfError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/TrackFitting/GsfError.cpp -------------------------------------------------------------------------------- /Core/src/TrackFitting/GsfUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/TrackFitting/GsfUtils.cpp -------------------------------------------------------------------------------- /Core/src/TrackFitting/MbfSmoother.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/TrackFitting/MbfSmoother.cpp -------------------------------------------------------------------------------- /Core/src/Utilities/AnnealingUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Utilities/AnnealingUtility.cpp -------------------------------------------------------------------------------- /Core/src/Utilities/AxisDefinitions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Utilities/AxisDefinitions.cpp -------------------------------------------------------------------------------- /Core/src/Utilities/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Utilities/CMakeLists.txt -------------------------------------------------------------------------------- /Core/src/Utilities/GraphViz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Utilities/GraphViz.cpp -------------------------------------------------------------------------------- /Core/src/Utilities/IAxis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Utilities/IAxis.cpp -------------------------------------------------------------------------------- /Core/src/Utilities/Intersection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Utilities/Intersection.cpp -------------------------------------------------------------------------------- /Core/src/Utilities/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Utilities/Logger.cpp -------------------------------------------------------------------------------- /Core/src/Utilities/ProtoAxis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Utilities/ProtoAxis.cpp -------------------------------------------------------------------------------- /Core/src/Utilities/ScopedTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Utilities/ScopedTimer.cpp -------------------------------------------------------------------------------- /Core/src/Utilities/SpacePointUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Utilities/SpacePointUtility.cpp -------------------------------------------------------------------------------- /Core/src/Utilities/TrackHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Utilities/TrackHelpers.cpp -------------------------------------------------------------------------------- /Core/src/Utilities/TransformComparator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Utilities/TransformComparator.cpp -------------------------------------------------------------------------------- /Core/src/Vertexing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Vertexing/CMakeLists.txt -------------------------------------------------------------------------------- /Core/src/Vertexing/FsmwMode1dFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Vertexing/FsmwMode1dFinder.cpp -------------------------------------------------------------------------------- /Core/src/Vertexing/KalmanVertexUpdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Vertexing/KalmanVertexUpdater.cpp -------------------------------------------------------------------------------- /Core/src/Vertexing/Vertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Vertexing/Vertex.cpp -------------------------------------------------------------------------------- /Core/src/Vertexing/VertexingError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Vertexing/VertexingError.cpp -------------------------------------------------------------------------------- /Core/src/Vertexing/ZScanVertexFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Vertexing/ZScanVertexFinder.cpp -------------------------------------------------------------------------------- /Core/src/Visualization/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Visualization/CMakeLists.txt -------------------------------------------------------------------------------- /Core/src/Visualization/EventDataView3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Visualization/EventDataView3D.cpp -------------------------------------------------------------------------------- /Core/src/Visualization/GeometryView3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Core/src/Visualization/GeometryView3D.cpp -------------------------------------------------------------------------------- /Examples/Algorithms/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Algorithms/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Algorithms/Fatras/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Algorithms/Fatras/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Algorithms/Geant4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Algorithms/Geant4/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Algorithms/Jets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Algorithms/Jets/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Algorithms/Traccc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Algorithms/Traccc/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Configs/generic-input-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Configs/generic-input-config.json -------------------------------------------------------------------------------- /Examples/Configs/odd-seeding-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Configs/odd-seeding-config.json -------------------------------------------------------------------------------- /Examples/Detectors/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Detectors/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Detectors/Common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Detectors/Common/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Detectors/Common/src/Detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Detectors/Common/src/Detector.cpp -------------------------------------------------------------------------------- /Examples/Framework/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Framework/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Framework/ML/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Framework/ML/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Framework/src/Utilities/Paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Framework/src/Utilities/Paths.cpp -------------------------------------------------------------------------------- /Examples/HelloWorld/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/HelloWorld/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/HelloWorld/HelloData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/HelloWorld/HelloData.hpp -------------------------------------------------------------------------------- /Examples/HelloWorld/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/HelloWorld/HelloWorld.cpp -------------------------------------------------------------------------------- /Examples/Io/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Io/Csv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Csv/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Io/Csv/src/CsvBFieldWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Csv/src/CsvBFieldWriter.cpp -------------------------------------------------------------------------------- /Examples/Io/Csv/src/CsvGnnGraphReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Csv/src/CsvGnnGraphReader.cpp -------------------------------------------------------------------------------- /Examples/Io/Csv/src/CsvGnnGraphWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Csv/src/CsvGnnGraphWriter.cpp -------------------------------------------------------------------------------- /Examples/Io/Csv/src/CsvOutputData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Csv/src/CsvOutputData.hpp -------------------------------------------------------------------------------- /Examples/Io/Csv/src/CsvParticleReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Csv/src/CsvParticleReader.cpp -------------------------------------------------------------------------------- /Examples/Io/Csv/src/CsvParticleWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Csv/src/CsvParticleWriter.cpp -------------------------------------------------------------------------------- /Examples/Io/Csv/src/CsvSeedWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Csv/src/CsvSeedWriter.cpp -------------------------------------------------------------------------------- /Examples/Io/Csv/src/CsvSimHitReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Csv/src/CsvSimHitReader.cpp -------------------------------------------------------------------------------- /Examples/Io/Csv/src/CsvSimHitWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Csv/src/CsvSimHitWriter.cpp -------------------------------------------------------------------------------- /Examples/Io/Csv/src/CsvTrackWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Csv/src/CsvTrackWriter.cpp -------------------------------------------------------------------------------- /Examples/Io/Csv/src/CsvVertexWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Csv/src/CsvVertexWriter.cpp -------------------------------------------------------------------------------- /Examples/Io/EDM4hep/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/EDM4hep/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Io/EDM4hep/src/EDM4hepUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/EDM4hep/src/EDM4hepUtil.cpp -------------------------------------------------------------------------------- /Examples/Io/HepMC3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/HepMC3/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Io/HepMC3/src/CompressedIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/HepMC3/src/CompressedIO.h -------------------------------------------------------------------------------- /Examples/Io/HepMC3/src/HepMC3Metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/HepMC3/src/HepMC3Metadata.cpp -------------------------------------------------------------------------------- /Examples/Io/HepMC3/src/HepMC3Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/HepMC3/src/HepMC3Reader.cpp -------------------------------------------------------------------------------- /Examples/Io/HepMC3/src/HepMC3Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/HepMC3/src/HepMC3Util.cpp -------------------------------------------------------------------------------- /Examples/Io/HepMC3/src/HepMC3Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/HepMC3/src/HepMC3Writer.cpp -------------------------------------------------------------------------------- /Examples/Io/Json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Json/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Io/Json/src/JsonGeometryList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Json/src/JsonGeometryList.cpp -------------------------------------------------------------------------------- /Examples/Io/Obj/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Obj/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Io/Obj/src/ObjSimHitWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Obj/src/ObjSimHitWriter.cpp -------------------------------------------------------------------------------- /Examples/Io/Podio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Podio/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Io/Podio/src/PodioReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Podio/src/PodioReader.cpp -------------------------------------------------------------------------------- /Examples/Io/Podio/src/PodioWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Podio/src/PodioWriter.cpp -------------------------------------------------------------------------------- /Examples/Io/Root/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Root/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Io/Root/LinkDef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Root/LinkDef.hpp -------------------------------------------------------------------------------- /Examples/Io/Root/src/RootBFieldWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Root/src/RootBFieldWriter.cpp -------------------------------------------------------------------------------- /Examples/Io/Root/src/RootSeedWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Root/src/RootSeedWriter.cpp -------------------------------------------------------------------------------- /Examples/Io/Root/src/RootSimHitReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Root/src/RootSimHitReader.cpp -------------------------------------------------------------------------------- /Examples/Io/Root/src/RootSimHitWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Root/src/RootSimHitWriter.cpp -------------------------------------------------------------------------------- /Examples/Io/Root/src/RootVertexReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Root/src/RootVertexReader.cpp -------------------------------------------------------------------------------- /Examples/Io/Root/src/RootVertexWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Root/src/RootVertexWriter.cpp -------------------------------------------------------------------------------- /Examples/Io/Svg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Io/Svg/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/README.md -------------------------------------------------------------------------------- /Examples/Scripts/Benchmarking/KF_timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Benchmarking/KF_timing.py -------------------------------------------------------------------------------- /Examples/Scripts/Benchmarking/KF_timing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Benchmarking/KF_timing.sh -------------------------------------------------------------------------------- /Examples/Scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/CMakeLists.txt -------------------------------------------------------------------------------- /Examples/Scripts/GsfDebugger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/GsfDebugger/README.md -------------------------------------------------------------------------------- /Examples/Scripts/GsfDebugger/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/GsfDebugger/src/main.py -------------------------------------------------------------------------------- /Examples/Scripts/MaterialMapping/Mat_map.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/MaterialMapping/Mat_map.C -------------------------------------------------------------------------------- /Examples/Scripts/Optimization/ckf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Optimization/ckf.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/bfield_writing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/bfield_writing.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/blueprint.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/ckf_tracks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/ckf_tracks.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/digitization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/digitization.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/fatras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/fatras.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/full_chain_itk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/full_chain_itk.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/full_chain_odd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/full_chain_odd.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/full_chain_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/full_chain_test.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/geant4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/geant4.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/geant4_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/geant4_parallel.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/geometry.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/geomodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/geomodel.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/geomodel_G4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/geomodel_G4.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/geomodel_vol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/geomodel_vol.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/gnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/gnn.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/gnn4itk_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/gnn4itk_example.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/hashing_seeding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/hashing_seeding.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/hepmc3_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/hepmc3_merge.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/itk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/itk.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/itk_seeding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/itk_seeding.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/muon_hough.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/muon_hough.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/particle_gun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/particle_gun.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/propagation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/propagation.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/pythia8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/pythia8.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/seeding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/seeding.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/truth_jet_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/truth_jet_test.py -------------------------------------------------------------------------------- /Examples/Scripts/Python/vertex_fitting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/Python/vertex_fitting.py -------------------------------------------------------------------------------- /Examples/Scripts/compareAssignedRealPos.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/compareAssignedRealPos.C -------------------------------------------------------------------------------- /Examples/Scripts/compareDistributions.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/compareDistributions.C -------------------------------------------------------------------------------- /Examples/Scripts/compareHistograms.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/compareHistograms.C -------------------------------------------------------------------------------- /Examples/Scripts/compareHitHistograms.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/compareHitHistograms.C -------------------------------------------------------------------------------- /Examples/Scripts/compareRootFiles.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/compareRootFiles.C -------------------------------------------------------------------------------- /Examples/Scripts/compareRootFiles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/compareRootFiles.hpp -------------------------------------------------------------------------------- /Examples/Scripts/errorOfHistograms.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/errorOfHistograms.C -------------------------------------------------------------------------------- /Examples/Scripts/fullMaterial.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/fullMaterial.C -------------------------------------------------------------------------------- /Examples/Scripts/generic_plotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/generic_plotter.py -------------------------------------------------------------------------------- /Examples/Scripts/layerMaterial.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/layerMaterial.C -------------------------------------------------------------------------------- /Examples/Scripts/momentumDistributions.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/momentumDistributions.C -------------------------------------------------------------------------------- /Examples/Scripts/printBField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/printBField.C -------------------------------------------------------------------------------- /Examples/Scripts/printHits.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/printHits.C -------------------------------------------------------------------------------- /Examples/Scripts/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/requirements.in -------------------------------------------------------------------------------- /Examples/Scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/requirements.txt -------------------------------------------------------------------------------- /Examples/Scripts/testReproducibility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/testReproducibility.sh -------------------------------------------------------------------------------- /Examples/Scripts/vertex_mu_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Examples/Scripts/vertex_mu_scan.py -------------------------------------------------------------------------------- /Fatras/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Fatras/CMakeLists.txt -------------------------------------------------------------------------------- /Fatras/Geant4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Fatras/Geant4/CMakeLists.txt -------------------------------------------------------------------------------- /Fatras/Geant4/src/Geant4Decay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Fatras/Geant4/src/Geant4Decay.cpp -------------------------------------------------------------------------------- /Fatras/Geant4/src/PDGtoG4Converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Fatras/Geant4/src/PDGtoG4Converter.cpp -------------------------------------------------------------------------------- /Fatras/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Fatras/README.md -------------------------------------------------------------------------------- /Fatras/src/Digitization/Segmentizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Fatras/src/Digitization/Segmentizer.cpp -------------------------------------------------------------------------------- /Fatras/src/EventData/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Fatras/src/EventData/Particle.cpp -------------------------------------------------------------------------------- /Fatras/src/EventData/ParticleOutcome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Fatras/src/EventData/ParticleOutcome.cpp -------------------------------------------------------------------------------- /Fatras/src/EventData/ProcessType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Fatras/src/EventData/ProcessType.cpp -------------------------------------------------------------------------------- /Fatras/src/Kernel/SimulationError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Fatras/src/Kernel/SimulationError.cpp -------------------------------------------------------------------------------- /Fatras/src/Physics/BetheHeitler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Fatras/src/Physics/BetheHeitler.cpp -------------------------------------------------------------------------------- /Fatras/src/Physics/PhotonConversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Fatras/src/Physics/PhotonConversion.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugins/ActSVG/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/ActSVG/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/ActSVG/src/LayerSvgConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/ActSVG/src/LayerSvgConverter.cpp -------------------------------------------------------------------------------- /Plugins/ActSVG/src/SurfaceSvgConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/ActSVG/src/SurfaceSvgConverter.cpp -------------------------------------------------------------------------------- /Plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/Covfie/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Covfie/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/Covfie/src/FieldConversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Covfie/src/FieldConversion.cpp -------------------------------------------------------------------------------- /Plugins/DD4hep/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/DD4hep/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/DD4hep/src/DD4hepFieldAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/DD4hep/src/DD4hepFieldAdapter.cpp -------------------------------------------------------------------------------- /Plugins/DD4hep/src/DD4hepLayerBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/DD4hep/src/DD4hepLayerBuilder.cpp -------------------------------------------------------------------------------- /Plugins/DD4hep/src/DD4hepVolumeBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/DD4hep/src/DD4hepVolumeBuilder.cpp -------------------------------------------------------------------------------- /Plugins/Detray/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Detray/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/Detray/src/DetrayConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Detray/src/DetrayConverter.cpp -------------------------------------------------------------------------------- /Plugins/Detray/src/DetrayMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Detray/src/DetrayMaterial.cpp -------------------------------------------------------------------------------- /Plugins/Detray/src/DetrayNavigation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Detray/src/DetrayNavigation.cpp -------------------------------------------------------------------------------- /Plugins/EDM4hep/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/EDM4hep/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/EDM4hep/edm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/EDM4hep/edm.yml -------------------------------------------------------------------------------- /Plugins/EDM4hep/src/EDM4hepUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/EDM4hep/src/EDM4hepUtil.cpp -------------------------------------------------------------------------------- /Plugins/EDM4hep/src/PodioUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/EDM4hep/src/PodioUtil.cpp -------------------------------------------------------------------------------- /Plugins/FastJet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/FastJet/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/FastJet/src/Jets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/FastJet/src/Jets.cpp -------------------------------------------------------------------------------- /Plugins/FpeMonitoring/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/FpeMonitoring/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/FpeMonitoring/src/FpeMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/FpeMonitoring/src/FpeMonitor.cpp -------------------------------------------------------------------------------- /Plugins/Geant4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Geant4/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/Geant4/src/Geant4Converters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Geant4/src/Geant4Converters.cpp -------------------------------------------------------------------------------- /Plugins/GeoModel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/GeoModel/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/GeoModel/src/GeoModelReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/GeoModel/src/GeoModelReader.cpp -------------------------------------------------------------------------------- /Plugins/GeoModel/src/GeoModelTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/GeoModel/src/GeoModelTree.cpp -------------------------------------------------------------------------------- /Plugins/Gnn/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Gnn/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/Gnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Gnn/README.md -------------------------------------------------------------------------------- /Plugins/Gnn/src/BoostTrackBuilding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Gnn/src/BoostTrackBuilding.cpp -------------------------------------------------------------------------------- /Plugins/Gnn/src/CudaTrackBuilding.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Gnn/src/CudaTrackBuilding.cu -------------------------------------------------------------------------------- /Plugins/Gnn/src/GnnPipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Gnn/src/GnnPipeline.cpp -------------------------------------------------------------------------------- /Plugins/Gnn/src/GraphStoreHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Gnn/src/GraphStoreHook.cpp -------------------------------------------------------------------------------- /Plugins/Gnn/src/JunctionRemoval.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Gnn/src/JunctionRemoval.cu -------------------------------------------------------------------------------- /Plugins/Gnn/src/ModuleMapCuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Gnn/src/ModuleMapCuda.cu -------------------------------------------------------------------------------- /Plugins/Gnn/src/OnnxEdgeClassifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Gnn/src/OnnxEdgeClassifier.cpp -------------------------------------------------------------------------------- /Plugins/Gnn/src/Tensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Gnn/src/Tensor.cpp -------------------------------------------------------------------------------- /Plugins/Gnn/src/Tensor.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Gnn/src/Tensor.cu -------------------------------------------------------------------------------- /Plugins/Gnn/src/TensorRTEdgeClassifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Gnn/src/TensorRTEdgeClassifier.cpp -------------------------------------------------------------------------------- /Plugins/Gnn/src/TorchEdgeClassifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Gnn/src/TorchEdgeClassifier.cpp -------------------------------------------------------------------------------- /Plugins/Gnn/src/TorchMetricLearning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Gnn/src/TorchMetricLearning.cpp -------------------------------------------------------------------------------- /Plugins/Gnn/src/TruthGraphMetricsHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Gnn/src/TruthGraphMetricsHook.cpp -------------------------------------------------------------------------------- /Plugins/Gnn/src/buildEdges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Gnn/src/buildEdges.cpp -------------------------------------------------------------------------------- /Plugins/Gnn/src/printCudaMemInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Gnn/src/printCudaMemInfo.hpp -------------------------------------------------------------------------------- /Plugins/Hashing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Hashing/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/Json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Json/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/Json/src/AlgebraJsonConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Json/src/AlgebraJsonConverter.cpp -------------------------------------------------------------------------------- /Plugins/Json/src/DetrayJsonHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Json/src/DetrayJsonHelper.cpp -------------------------------------------------------------------------------- /Plugins/Json/src/ExtentJsonConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Json/src/ExtentJsonConverter.cpp -------------------------------------------------------------------------------- /Plugins/Json/src/GridJsonConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Json/src/GridJsonConverter.cpp -------------------------------------------------------------------------------- /Plugins/Json/src/JsonDetectorElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Json/src/JsonDetectorElement.cpp -------------------------------------------------------------------------------- /Plugins/Json/src/JsonMaterialDecorator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Json/src/JsonMaterialDecorator.cpp -------------------------------------------------------------------------------- /Plugins/Json/src/JsonSurfacesReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Json/src/JsonSurfacesReader.cpp -------------------------------------------------------------------------------- /Plugins/Json/src/MaterialJsonConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Json/src/MaterialJsonConverter.cpp -------------------------------------------------------------------------------- /Plugins/Json/src/SurfaceJsonConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Json/src/SurfaceJsonConverter.cpp -------------------------------------------------------------------------------- /Plugins/Json/src/VolumeJsonConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Json/src/VolumeJsonConverter.cpp -------------------------------------------------------------------------------- /Plugins/Onnx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Onnx/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/Onnx/src/MLTrackClassifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Onnx/src/MLTrackClassifier.cpp -------------------------------------------------------------------------------- /Plugins/Onnx/src/OnnxRuntimeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Onnx/src/OnnxRuntimeBase.cpp -------------------------------------------------------------------------------- /Plugins/Root/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Root/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/Root/src/RootMagneticFieldIo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Root/src/RootMagneticFieldIo.cpp -------------------------------------------------------------------------------- /Plugins/Root/src/RootMaterialDecorator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Root/src/RootMaterialDecorator.cpp -------------------------------------------------------------------------------- /Plugins/Root/src/RootMaterialMapIo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Root/src/RootMaterialMapIo.cpp -------------------------------------------------------------------------------- /Plugins/Root/src/RootMaterialTrackIo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Root/src/RootMaterialTrackIo.cpp -------------------------------------------------------------------------------- /Plugins/Root/src/RootMeasurementIo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Root/src/RootMeasurementIo.cpp -------------------------------------------------------------------------------- /Plugins/Root/src/RootSpacePointIo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Root/src/RootSpacePointIo.cpp -------------------------------------------------------------------------------- /Plugins/Root/src/TGeoDetectorElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Root/src/TGeoDetectorElement.cpp -------------------------------------------------------------------------------- /Plugins/Root/src/TGeoLayerBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Root/src/TGeoLayerBuilder.cpp -------------------------------------------------------------------------------- /Plugins/Root/src/TGeoMaterialConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Root/src/TGeoMaterialConverter.cpp -------------------------------------------------------------------------------- /Plugins/Root/src/TGeoParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Root/src/TGeoParser.cpp -------------------------------------------------------------------------------- /Plugins/Root/src/TGeoPrimitivesHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Root/src/TGeoPrimitivesHelper.cpp -------------------------------------------------------------------------------- /Plugins/Root/src/TGeoSurfaceConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Plugins/Root/src/TGeoSurfaceConverter.cpp -------------------------------------------------------------------------------- /Python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/CMakeLists.txt -------------------------------------------------------------------------------- /Python/Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Core/CMakeLists.txt -------------------------------------------------------------------------------- /Python/Core/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Core/python/__init__.py -------------------------------------------------------------------------------- /Python/Core/python/_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Core/python/_adapter.py -------------------------------------------------------------------------------- /Python/Core/setup.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Core/setup.sh.in -------------------------------------------------------------------------------- /Python/Core/src/CoreModuleEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Core/src/CoreModuleEntry.cpp -------------------------------------------------------------------------------- /Python/Core/src/Definitions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Core/src/Definitions.cpp -------------------------------------------------------------------------------- /Python/Core/src/Geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Core/src/Geometry.cpp -------------------------------------------------------------------------------- /Python/Core/src/GeometryGen1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Core/src/GeometryGen1.cpp -------------------------------------------------------------------------------- /Python/Core/src/GeometryGen3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Core/src/GeometryGen3.cpp -------------------------------------------------------------------------------- /Python/Core/src/MagneticField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Core/src/MagneticField.cpp -------------------------------------------------------------------------------- /Python/Core/src/Material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Core/src/Material.cpp -------------------------------------------------------------------------------- /Python/Core/src/Navigation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Core/src/Navigation.cpp -------------------------------------------------------------------------------- /Python/Core/src/Propagation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Core/src/Propagation.cpp -------------------------------------------------------------------------------- /Python/Core/src/Seeding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Core/src/Seeding.cpp -------------------------------------------------------------------------------- /Python/Core/src/Surfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Core/src/Surfaces.cpp -------------------------------------------------------------------------------- /Python/Core/src/TrackFinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Core/src/TrackFinding.cpp -------------------------------------------------------------------------------- /Python/Core/src/Utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Core/src/Utilities.cpp -------------------------------------------------------------------------------- /Python/Core/src/Visualization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Core/src/Visualization.cpp -------------------------------------------------------------------------------- /Python/Examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/CMakeLists.txt -------------------------------------------------------------------------------- /Python/Examples/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/python/__init__.py -------------------------------------------------------------------------------- /Python/Examples/python/example.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/python/example.py.in -------------------------------------------------------------------------------- /Python/Examples/python/hepmc3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/python/hepmc3/__init__.py -------------------------------------------------------------------------------- /Python/Examples/python/hepmc3/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/python/hepmc3/__main__.py -------------------------------------------------------------------------------- /Python/Examples/python/hepmc_normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/python/hepmc_normalize.py -------------------------------------------------------------------------------- /Python/Examples/python/itk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/python/itk.py -------------------------------------------------------------------------------- /Python/Examples/python/mockupbuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/python/mockupbuilder.py -------------------------------------------------------------------------------- /Python/Examples/python/odd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/python/odd.py -------------------------------------------------------------------------------- /Python/Examples/python/reconstruction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/python/reconstruction.py -------------------------------------------------------------------------------- /Python/Examples/python/simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/python/simulation.py -------------------------------------------------------------------------------- /Python/Examples/python/tgeo_aux.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/python/tgeo_aux.py.in -------------------------------------------------------------------------------- /Python/Examples/src/Detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/Detector.cpp -------------------------------------------------------------------------------- /Python/Examples/src/Digitization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/Digitization.cpp -------------------------------------------------------------------------------- /Python/Examples/src/ExampleAlgorithms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/ExampleAlgorithms.cpp -------------------------------------------------------------------------------- /Python/Examples/src/Framework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/Framework.cpp -------------------------------------------------------------------------------- /Python/Examples/src/Generators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/Generators.cpp -------------------------------------------------------------------------------- /Python/Examples/src/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/Input.cpp -------------------------------------------------------------------------------- /Python/Examples/src/MaterialMapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/MaterialMapping.cpp -------------------------------------------------------------------------------- /Python/Examples/src/Obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/Obj.cpp -------------------------------------------------------------------------------- /Python/Examples/src/Output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/Output.cpp -------------------------------------------------------------------------------- /Python/Examples/src/Propagation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/Propagation.cpp -------------------------------------------------------------------------------- /Python/Examples/src/TrackFinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/TrackFinding.cpp -------------------------------------------------------------------------------- /Python/Examples/src/TrackFitting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/TrackFitting.cpp -------------------------------------------------------------------------------- /Python/Examples/src/TruthTracking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/TruthTracking.cpp -------------------------------------------------------------------------------- /Python/Examples/src/Utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/Utilities.cpp -------------------------------------------------------------------------------- /Python/Examples/src/Vertexing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/Vertexing.cpp -------------------------------------------------------------------------------- /Python/Examples/src/plugins/Alignment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/plugins/Alignment.cpp -------------------------------------------------------------------------------- /Python/Examples/src/plugins/DD4hep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/plugins/DD4hep.cpp -------------------------------------------------------------------------------- /Python/Examples/src/plugins/EDM4hep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/plugins/EDM4hep.cpp -------------------------------------------------------------------------------- /Python/Examples/src/plugins/Geant4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/plugins/Geant4.cpp -------------------------------------------------------------------------------- /Python/Examples/src/plugins/GeoModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/plugins/GeoModel.cpp -------------------------------------------------------------------------------- /Python/Examples/src/plugins/Gnn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/plugins/Gnn.cpp -------------------------------------------------------------------------------- /Python/Examples/src/plugins/Hashing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/plugins/Hashing.cpp -------------------------------------------------------------------------------- /Python/Examples/src/plugins/HepMC3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/plugins/HepMC3.cpp -------------------------------------------------------------------------------- /Python/Examples/src/plugins/Json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/plugins/Json.cpp -------------------------------------------------------------------------------- /Python/Examples/src/plugins/Onnx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/plugins/Onnx.cpp -------------------------------------------------------------------------------- /Python/Examples/src/plugins/Pythia8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/plugins/Pythia8.cpp -------------------------------------------------------------------------------- /Python/Examples/src/plugins/Root.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/plugins/Root.cpp -------------------------------------------------------------------------------- /Python/Examples/src/plugins/Svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/plugins/Svg.cpp -------------------------------------------------------------------------------- /Python/Examples/src/plugins/TGeo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/plugins/TGeo.cpp -------------------------------------------------------------------------------- /Python/Examples/src/plugins/Traccc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/plugins/Traccc.cpp -------------------------------------------------------------------------------- /Python/Examples/src/plugins/TruthJet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/src/plugins/TruthJet.cpp -------------------------------------------------------------------------------- /Python/Examples/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/conftest.py -------------------------------------------------------------------------------- /Python/Examples/tests/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/helpers/__init__.py -------------------------------------------------------------------------------- /Python/Examples/tests/helpers/hash_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/helpers/hash_root.py -------------------------------------------------------------------------------- /Python/Examples/tests/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/requirements.in -------------------------------------------------------------------------------- /Python/Examples/tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/requirements.txt -------------------------------------------------------------------------------- /Python/Examples/tests/root_file_hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/root_file_hashes.txt -------------------------------------------------------------------------------- /Python/Examples/tests/test_algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/test_algorithms.py -------------------------------------------------------------------------------- /Python/Examples/tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/test_base.py -------------------------------------------------------------------------------- /Python/Examples/tests/test_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/test_blueprint.py -------------------------------------------------------------------------------- /Python/Examples/tests/test_covfie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/test_covfie.py -------------------------------------------------------------------------------- /Python/Examples/tests/test_detectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/test_detectors.py -------------------------------------------------------------------------------- /Python/Examples/tests/test_edm4hep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/test_edm4hep.py -------------------------------------------------------------------------------- /Python/Examples/tests/test_event_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/test_event_data.py -------------------------------------------------------------------------------- /Python/Examples/tests/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/test_examples.py -------------------------------------------------------------------------------- /Python/Examples/tests/test_fpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/test_fpe.py -------------------------------------------------------------------------------- /Python/Examples/tests/test_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/test_generators.py -------------------------------------------------------------------------------- /Python/Examples/tests/test_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/test_geometry.py -------------------------------------------------------------------------------- /Python/Examples/tests/test_hepmc3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/test_hepmc3.py -------------------------------------------------------------------------------- /Python/Examples/tests/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/test_logging.py -------------------------------------------------------------------------------- /Python/Examples/tests/test_material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/test_material.py -------------------------------------------------------------------------------- /Python/Examples/tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/test_misc.py -------------------------------------------------------------------------------- /Python/Examples/tests/test_navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/test_navigation.py -------------------------------------------------------------------------------- /Python/Examples/tests/test_propagation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/test_propagation.py -------------------------------------------------------------------------------- /Python/Examples/tests/test_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/test_reader.py -------------------------------------------------------------------------------- /Python/Examples/tests/test_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Examples/tests/test_writer.py -------------------------------------------------------------------------------- /Python/Plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Plugins/CMakeLists.txt -------------------------------------------------------------------------------- /Python/Plugins/python/plugin.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Plugins/python/plugin.py.in -------------------------------------------------------------------------------- /Python/Plugins/src/Covfie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Plugins/src/Covfie.cpp -------------------------------------------------------------------------------- /Python/Plugins/src/DD4hep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Plugins/src/DD4hep.cpp -------------------------------------------------------------------------------- /Python/Plugins/src/Detray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Plugins/src/Detray.cpp -------------------------------------------------------------------------------- /Python/Plugins/src/Geant4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Plugins/src/Geant4.cpp -------------------------------------------------------------------------------- /Python/Plugins/src/GeoModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Plugins/src/GeoModel.cpp -------------------------------------------------------------------------------- /Python/Plugins/src/Hashing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Plugins/src/Hashing.cpp -------------------------------------------------------------------------------- /Python/Plugins/src/Json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Plugins/src/Json.cpp -------------------------------------------------------------------------------- /Python/Plugins/src/Root.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Plugins/src/Root.cpp -------------------------------------------------------------------------------- /Python/Plugins/src/Svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Plugins/src/Svg.cpp -------------------------------------------------------------------------------- /Python/Plugins/src/TGeo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Plugins/src/TGeo.cpp -------------------------------------------------------------------------------- /Python/Utilities/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Python/Utilities/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/README.md -------------------------------------------------------------------------------- /Tests/Benchmarks/AtlasStepperBenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/Benchmarks/AtlasStepperBenchmark.cpp -------------------------------------------------------------------------------- /Tests/Benchmarks/BinUtilityBenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/Benchmarks/BinUtilityBenchmark.cpp -------------------------------------------------------------------------------- /Tests/Benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/Benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/Benchmarks/EigenStepperBenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/Benchmarks/EigenStepperBenchmark.cpp -------------------------------------------------------------------------------- /Tests/Benchmarks/RayFrustumBenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/Benchmarks/RayFrustumBenchmark.cpp -------------------------------------------------------------------------------- /Tests/Benchmarks/SourceLinkBenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/Benchmarks/SourceLinkBenchmark.cpp -------------------------------------------------------------------------------- /Tests/Benchmarks/StepperBenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/Benchmarks/StepperBenchmark.cpp -------------------------------------------------------------------------------- /Tests/Benchmarks/SympyStepperBenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/Benchmarks/SympyStepperBenchmark.cpp -------------------------------------------------------------------------------- /Tests/Benchmarks/TrackEdmBenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/Benchmarks/TrackEdmBenchmark.cpp -------------------------------------------------------------------------------- /Tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/CommonHelpers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/CommonHelpers/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/CommonHelpers/src/DataDirectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/CommonHelpers/src/DataDirectory.cpp -------------------------------------------------------------------------------- /Tests/Data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/Data/README.md -------------------------------------------------------------------------------- /Tests/Data/event000000001-MuonSimHit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/Data/event000000001-MuonSimHit.csv -------------------------------------------------------------------------------- /Tests/Data/geometry-hierarchy-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/Data/geometry-hierarchy-map.json -------------------------------------------------------------------------------- /Tests/Data/material-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/Data/material-map.json -------------------------------------------------------------------------------- /Tests/Data/panda.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/Data/panda.root -------------------------------------------------------------------------------- /Tests/Data/vertexing_event_mu20_tracks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/Data/vertexing_event_mu20_tracks.csv -------------------------------------------------------------------------------- /Tests/DownstreamProject/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/DownstreamProject/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/DownstreamProject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/DownstreamProject/README.md -------------------------------------------------------------------------------- /Tests/DownstreamProjectNodeps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/DownstreamProjectNodeps/README.md -------------------------------------------------------------------------------- /Tests/IntegrationTests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/IntegrationTests/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/IntegrationTests/Magfield.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/IntegrationTests/Magfield.ipynb -------------------------------------------------------------------------------- /Tests/IntegrationTests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/IntegrationTests/README.md -------------------------------------------------------------------------------- /Tests/UnitTests/Alignment/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Kernel) 2 | -------------------------------------------------------------------------------- /Tests/UnitTests/Benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/UnitTests/Benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/UnitTests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/UnitTests/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/UnitTests/Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/UnitTests/Core/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/UnitTests/Core/Seeding/ATLASCuts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/UnitTests/Core/Seeding/ATLASCuts.hpp -------------------------------------------------------------------------------- /Tests/UnitTests/Core/Seeding/sp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/UnitTests/Core/Seeding/sp.txt -------------------------------------------------------------------------------- /Tests/UnitTests/Core/Utilities/RayTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/UnitTests/Core/Utilities/RayTest.cpp -------------------------------------------------------------------------------- /Tests/UnitTests/Core/VersionTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/UnitTests/Core/VersionTests.cpp -------------------------------------------------------------------------------- /Tests/UnitTests/Examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/UnitTests/Examples/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/UnitTests/Examples/Io/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/UnitTests/Examples/Io/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/UnitTests/Fatras/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/UnitTests/Fatras/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/UnitTests/Fatras/Physics/Dataset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/UnitTests/Fatras/Physics/Dataset.hpp -------------------------------------------------------------------------------- /Tests/UnitTests/Plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/UnitTests/Plugins/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/UnitTests/Plugins/Gnn/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/Tests/UnitTests/Plugins/Gnn/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/ActsCodegen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/ActsCodegen.cmake -------------------------------------------------------------------------------- /cmake/ActsCompilerOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/ActsCompilerOptions.cmake -------------------------------------------------------------------------------- /cmake/ActsComponentsHelpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/ActsComponentsHelpers.cmake -------------------------------------------------------------------------------- /cmake/ActsConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/ActsConfig.cmake.in -------------------------------------------------------------------------------- /cmake/ActsCreatePackageConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/ActsCreatePackageConfig.cmake -------------------------------------------------------------------------------- /cmake/ActsCreateSetup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/ActsCreateSetup.cmake -------------------------------------------------------------------------------- /cmake/ActsExternSources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/ActsExternSources.cmake -------------------------------------------------------------------------------- /cmake/ActsFunctions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/ActsFunctions.cmake -------------------------------------------------------------------------------- /cmake/ActsGenerateNonCompileTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/ActsGenerateNonCompileTest.cmake -------------------------------------------------------------------------------- /cmake/ActsOptionHelpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/ActsOptionHelpers.cmake -------------------------------------------------------------------------------- /cmake/ActsRetrieveVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/ActsRetrieveVersion.cmake -------------------------------------------------------------------------------- /cmake/ActsStaticAnalysis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/ActsStaticAnalysis.cmake -------------------------------------------------------------------------------- /cmake/ActsTargetLinkLibrariesSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/ActsTargetLinkLibrariesSystem.cmake -------------------------------------------------------------------------------- /cmake/FindFastJet.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/FindFastJet.cmake -------------------------------------------------------------------------------- /cmake/FindFilesystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/FindFilesystem.cmake -------------------------------------------------------------------------------- /cmake/FindPythia8.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/FindPythia8.cmake -------------------------------------------------------------------------------- /cmake/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/FindSphinx.cmake -------------------------------------------------------------------------------- /cmake/FindTBB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/FindTBB.cmake -------------------------------------------------------------------------------- /cmake/FindTensorRT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/FindTensorRT.cmake -------------------------------------------------------------------------------- /cmake/FindZSTD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/FindZSTD.cmake -------------------------------------------------------------------------------- /cmake/Findonnxruntime.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/Findonnxruntime.cmake -------------------------------------------------------------------------------- /cmake/assert_include/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/assert_include/Eigen/Core -------------------------------------------------------------------------------- /cmake/assert_include/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/assert_include/Eigen/Dense -------------------------------------------------------------------------------- /cmake/assert_include/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/assert_include/Eigen/Geometry -------------------------------------------------------------------------------- /cmake/assert_include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/assert_include/assert.h -------------------------------------------------------------------------------- /cmake/assert_include/cassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/assert_include/cassert -------------------------------------------------------------------------------- /cmake/setup.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/setup.sh.in -------------------------------------------------------------------------------- /cmake/setup_withdeps.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/setup_withdeps.sh.in -------------------------------------------------------------------------------- /cmake/src/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/cmake/src/format.cpp -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/codecov.yml -------------------------------------------------------------------------------- /codegen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/codegen/README.md -------------------------------------------------------------------------------- /codegen/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/codegen/pyproject.toml -------------------------------------------------------------------------------- /codegen/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/codegen/requirements.txt -------------------------------------------------------------------------------- /codegen/src/codegen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codegen/src/codegen/sympy_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/codegen/src/codegen/sympy_common.py -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/old/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/.gitignore -------------------------------------------------------------------------------- /docs/old/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/CMakeLists.txt -------------------------------------------------------------------------------- /docs/old/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/Doxyfile -------------------------------------------------------------------------------- /docs/old/SolenoidField.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/SolenoidField.ipynb -------------------------------------------------------------------------------- /docs/old/_extensions/lazy_autodoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/_extensions/lazy_autodoc.py -------------------------------------------------------------------------------- /docs/old/_extensions/warnings_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/_extensions/warnings_filter.py -------------------------------------------------------------------------------- /docs/old/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/_static/custom.css -------------------------------------------------------------------------------- /docs/old/acts_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/acts_project.md -------------------------------------------------------------------------------- /docs/old/authors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/authors.rst -------------------------------------------------------------------------------- /docs/old/codeguide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/codeguide.md -------------------------------------------------------------------------------- /docs/old/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/conf.py -------------------------------------------------------------------------------- /docs/old/contribution/clang_tidy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/contribution/clang_tidy.md -------------------------------------------------------------------------------- /docs/old/contribution/contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/contribution/contribution.md -------------------------------------------------------------------------------- /docs/old/contribution/guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/contribution/guide.rst -------------------------------------------------------------------------------- /docs/old/contribution/physmon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/contribution/physmon.md -------------------------------------------------------------------------------- /docs/old/contribution/profiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/contribution/profiling.md -------------------------------------------------------------------------------- /docs/old/contribution/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/contribution/release.md -------------------------------------------------------------------------------- /docs/old/contribution/root_hash_checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/contribution/root_hash_checks.md -------------------------------------------------------------------------------- /docs/old/contribution/run_formatting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/contribution/run_formatting.md -------------------------------------------------------------------------------- /docs/old/core/core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/core.rst -------------------------------------------------------------------------------- /docs/old/core/definitions/units.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/definitions/units.md -------------------------------------------------------------------------------- /docs/old/core/eventdata/figures/proxy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/eventdata/figures/proxy.svg -------------------------------------------------------------------------------- /docs/old/core/eventdata/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/eventdata/index.md -------------------------------------------------------------------------------- /docs/old/core/eventdata/measurements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/eventdata/measurements.md -------------------------------------------------------------------------------- /docs/old/core/eventdata/parametrization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/eventdata/parametrization.md -------------------------------------------------------------------------------- /docs/old/core/eventdata/tracks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/eventdata/tracks.md -------------------------------------------------------------------------------- /docs/old/core/figures/bfield/quiver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/figures/bfield/quiver.png -------------------------------------------------------------------------------- /docs/old/core/geometry/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/geometry/concepts.md -------------------------------------------------------------------------------- /docs/old/core/geometry/construction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/geometry/construction.md -------------------------------------------------------------------------------- /docs/old/core/geometry/geometry_id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/geometry/geometry_id.md -------------------------------------------------------------------------------- /docs/old/core/geometry/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/geometry/index.md -------------------------------------------------------------------------------- /docs/old/core/geometry/legacy/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/geometry/legacy/building.md -------------------------------------------------------------------------------- /docs/old/core/geometry/legacy/layers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/geometry/legacy/layers.md -------------------------------------------------------------------------------- /docs/old/core/geometry/legacy/legacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/geometry/legacy/legacy.md -------------------------------------------------------------------------------- /docs/old/core/geometry/legacy/volumes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/geometry/legacy/volumes.md -------------------------------------------------------------------------------- /docs/old/core/geometry/material.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/geometry/material.md -------------------------------------------------------------------------------- /docs/old/core/geometry/surfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/geometry/surfaces.md -------------------------------------------------------------------------------- /docs/old/core/howto/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/howto/index.md -------------------------------------------------------------------------------- /docs/old/core/howto/material_mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/howto/material_mapping.md -------------------------------------------------------------------------------- /docs/old/core/magnetic_field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/magnetic_field.md -------------------------------------------------------------------------------- /docs/old/core/material.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/material.md -------------------------------------------------------------------------------- /docs/old/core/misc/grid_axis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/misc/grid_axis.md -------------------------------------------------------------------------------- /docs/old/core/misc/index.md: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | 3 | :::{toctree} 4 | :maxdepth: 1 5 | grid_axis 6 | logging 7 | ::: 8 | -------------------------------------------------------------------------------- /docs/old/core/misc/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/misc/logging.md -------------------------------------------------------------------------------- /docs/old/core/propagation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/propagation.md -------------------------------------------------------------------------------- /docs/old/core/reconstruction/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/reconstruction/index.md -------------------------------------------------------------------------------- /docs/old/core/reconstruction/vertexing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/reconstruction/vertexing.md -------------------------------------------------------------------------------- /docs/old/core/visualization/3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/visualization/3d.md -------------------------------------------------------------------------------- /docs/old/core/visualization/index.md: -------------------------------------------------------------------------------- 1 | # Visualization 2 | 3 | :::{toctree} 4 | :maxdepth: 1 5 | 3d 6 | svg 7 | ::: 8 | -------------------------------------------------------------------------------- /docs/old/core/visualization/svg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/core/visualization/svg.md -------------------------------------------------------------------------------- /docs/old/examples/alignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/examples/alignment.md -------------------------------------------------------------------------------- /docs/old/examples/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/examples/examples.rst -------------------------------------------------------------------------------- /docs/old/examples/full_chain_odd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/examples/full_chain_odd.md -------------------------------------------------------------------------------- /docs/old/examples/howto/analysis_apps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/examples/howto/analysis_apps.rst -------------------------------------------------------------------------------- /docs/old/examples/howto/gsf_debugger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/examples/howto/gsf_debugger.md -------------------------------------------------------------------------------- /docs/old/examples/howto/howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/examples/howto/howto.md -------------------------------------------------------------------------------- /docs/old/examples/python_bindings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/examples/python_bindings.rst -------------------------------------------------------------------------------- /docs/old/fatras/fatras.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/fatras/fatras.md -------------------------------------------------------------------------------- /docs/old/figures/acts_logo_colored.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/acts_logo_colored.svg -------------------------------------------------------------------------------- /docs/old/figures/acts_logo_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/acts_logo_white.svg -------------------------------------------------------------------------------- /docs/old/figures/doxygen/ConeBounds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/doxygen/ConeBounds.gif -------------------------------------------------------------------------------- /docs/old/figures/doxygen/DiamondBounds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/doxygen/DiamondBounds.svg -------------------------------------------------------------------------------- /docs/old/figures/doxygen/DiscBounds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/doxygen/DiscBounds.gif -------------------------------------------------------------------------------- /docs/old/figures/doxygen/DiscSurface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/doxygen/DiscSurface.png -------------------------------------------------------------------------------- /docs/old/figures/doxygen/Disc_Merging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/doxygen/Disc_Merging.svg -------------------------------------------------------------------------------- /docs/old/figures/doxygen/EllipseBounds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/doxygen/EllipseBounds.png -------------------------------------------------------------------------------- /docs/old/figures/doxygen/LineSurface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/doxygen/LineSurface.png -------------------------------------------------------------------------------- /docs/old/figures/doxygen/PlaneSurface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/doxygen/PlaneSurface.png -------------------------------------------------------------------------------- /docs/old/figures/tracking/cca.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/tracking/cca.svg -------------------------------------------------------------------------------- /docs/old/figures/tracking/clustering.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/tracking/clustering.svg -------------------------------------------------------------------------------- /docs/old/figures/tracking/finding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/tracking/finding.svg -------------------------------------------------------------------------------- /docs/old/figures/tracking/kalman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/tracking/kalman.svg -------------------------------------------------------------------------------- /docs/old/figures/tracking/layer_barrel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/tracking/layer_barrel.svg -------------------------------------------------------------------------------- /docs/old/figures/tracking/layer_ec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/tracking/layer_ec.svg -------------------------------------------------------------------------------- /docs/old/figures/tracking/parameters.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/tracking/parameters.svg -------------------------------------------------------------------------------- /docs/old/figures/tracking/perigee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/tracking/perigee.svg -------------------------------------------------------------------------------- /docs/old/figures/tracking/rk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/tracking/rk.svg -------------------------------------------------------------------------------- /docs/old/figures/tracking/seeding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/tracking/seeding.svg -------------------------------------------------------------------------------- /docs/old/figures/tracking/segmentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/tracking/segmentation.svg -------------------------------------------------------------------------------- /docs/old/figures/tracking/sp_l2g.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/tracking/sp_l2g.svg -------------------------------------------------------------------------------- /docs/old/figures/tracking/tracking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/tracking/tracking.svg -------------------------------------------------------------------------------- /docs/old/figures/tracking/vertexing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/figures/tracking/vertexing.svg -------------------------------------------------------------------------------- /docs/old/formats/formats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/formats/formats.rst -------------------------------------------------------------------------------- /docs/old/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/getting_started.md -------------------------------------------------------------------------------- /docs/old/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/glossary.md -------------------------------------------------------------------------------- /docs/old/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/index.rst -------------------------------------------------------------------------------- /docs/old/known-warnings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/known-warnings.txt -------------------------------------------------------------------------------- /docs/old/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/license.rst -------------------------------------------------------------------------------- /docs/old/misc/misc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/misc/misc.rst -------------------------------------------------------------------------------- /docs/old/misc/spack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/misc/spack.md -------------------------------------------------------------------------------- /docs/old/plugins/MLAlgorithms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/plugins/MLAlgorithms.md -------------------------------------------------------------------------------- /docs/old/plugins/dd4hep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/plugins/dd4hep.md -------------------------------------------------------------------------------- /docs/old/plugins/geant4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/plugins/geant4.md -------------------------------------------------------------------------------- /docs/old/plugins/gnn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/plugins/gnn.md -------------------------------------------------------------------------------- /docs/old/plugins/json.md: -------------------------------------------------------------------------------- 1 | # JSON 2 | -------------------------------------------------------------------------------- /docs/old/plugins/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/plugins/plugins.rst -------------------------------------------------------------------------------- /docs/old/plugins/root.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/plugins/root.rst -------------------------------------------------------------------------------- /docs/old/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/requirements.in -------------------------------------------------------------------------------- /docs/old/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/requirements.txt -------------------------------------------------------------------------------- /docs/old/tracking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/tracking.md -------------------------------------------------------------------------------- /docs/old/versioning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/versioning.rst -------------------------------------------------------------------------------- /docs/old/white_paper_index_template.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/white_paper_index_template.md.j2 -------------------------------------------------------------------------------- /docs/old/white_paper_template.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/white_paper_template.md.j2 -------------------------------------------------------------------------------- /docs/old/white_papers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/white_papers.py -------------------------------------------------------------------------------- /docs/old/white_papers.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/white_papers.toml -------------------------------------------------------------------------------- /docs/old/white_papers/how_to_add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/old/white_papers/how_to_add.md -------------------------------------------------------------------------------- /docs/parse_cmake_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/docs/parse_cmake_options.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/pytest.ini -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /thirdparty/Annoy/0001-Modify-annoy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/Annoy/0001-Modify-annoy.patch -------------------------------------------------------------------------------- /thirdparty/Annoy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/Annoy/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/FRNN/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/FRNN/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/FRNN/CMakeLists.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/FRNN/CMakeLists.txt.in -------------------------------------------------------------------------------- /thirdparty/ModuleMapGraph/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/ModuleMapGraph/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/ModuleMapGraph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/ModuleMapGraph/README.md -------------------------------------------------------------------------------- /thirdparty/OpenDataDetector/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/OpenDataDetector/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/README.md -------------------------------------------------------------------------------- /thirdparty/actsvg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/actsvg/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/actsvg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/actsvg/README.md -------------------------------------------------------------------------------- /thirdparty/algebra-plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/algebra-plugins/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/algebra-plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/algebra-plugins/README.md -------------------------------------------------------------------------------- /thirdparty/covfie/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/covfie/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/covfie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/covfie/README.md -------------------------------------------------------------------------------- /thirdparty/detray/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/detray/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/detray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/detray/README.md -------------------------------------------------------------------------------- /thirdparty/eigen3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/eigen3/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/nlohmann_json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/nlohmann_json/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/pybind11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/pybind11/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/traccc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/traccc/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/traccc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/traccc/README.md -------------------------------------------------------------------------------- /thirdparty/vecmem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/vecmem/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/vecmem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/thirdparty/vecmem/README.md -------------------------------------------------------------------------------- /version_number: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acts-project/acts/HEAD/version_number --------------------------------------------------------------------------------