Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /acts/Examples/Algorithms/TrackFindingExaTrkX/src/createFeatures.hpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // This file is part of the ACTS project.
0002 //
0003 // Copyright (C) 2016 CERN for the benefit of the ACTS project
0004 //
0005 // This Source Code Form is subject to the terms of the Mozilla Public
0006 // License, v. 2.0. If a copy of the MPL was not distributed with this
0007 // file, You can obtain one at https://mozilla.org/MPL/2.0/.
0008 
0009 #pragma once
0010 
0011 #include "ActsExamples/TrackFindingExaTrkX/TrackFindingAlgorithmExaTrkX.hpp"
0012 
0013 namespace ActsExamples {
0014 
0015 std::vector<float> createFeatures(
0016     const SimSpacePointContainer &spacepoints,
0017     const std::optional<ClusterContainer> &clusters,
0018     const std::vector<TrackFindingAlgorithmExaTrkX::NodeFeature> &nodeFeatures,
0019     const std::vector<float> &featureScales);
0020 
0021 }