EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SeedFinder.hpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file SeedFinder.hpp
1 // This file is part of the Acts project.
2 //
3 // Copyright (C) 2020 CERN for the benefit of the Acts project
4 //
5 // This Source Code Form is subject to the terms of the Mozilla Public
6 // License, v. 2.0. If a copy of the MPL was not distributed with this
7 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 
9 #pragma once
10 
11 // CUDA plugin include(s).
13 
14 // Acts include(s).
15 #include "Acts/Seeding/Seed.hpp"
18 
19 namespace Acts {
20 namespace Cuda {
21 
22 template <typename external_spacepoint_t>
23 class SeedFinder {
25  // Public methods:
27 
28  public:
30  const SeedFilterConfig& seedFilterConfig,
31  const TripletFilterConfig& tripletFilterConfig);
32 
41  template <typename sp_range_t>
42  std::vector<Seed<external_spacepoint_t> > createSeedsForGroup(
43  sp_range_t bottomSPs, sp_range_t middleSPs, sp_range_t topSPs) const;
44 
45  private:
52 };
53 
54 } // namespace Cuda
55 } // namespace Acts
56 
57 // Include the template implementation.