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 
12 #include "Acts/Plugins/Cuda/Seeding/Kernels.cuh"
18 
19 #include <array>
20 #include <list>
21 #include <map>
22 #include <memory>
23 #include <set>
24 #include <string>
25 #include <utility>
26 #include <vector>
27 
28 namespace Acts {
29 
30 template <typename external_spacepoint_t>
31 class Seedfinder<external_spacepoint_t, Acts::Cuda> {
33  // Public methods:
35 
36  public:
38 
39  ~Seedfinder() = default;
42  Seedfinder() = delete;
47 
56  template <typename sp_range_t>
57  std::vector<Seed<external_spacepoint_t> > createSeedsForGroup(
58  sp_range_t bottomSPs, sp_range_t middleSPs, sp_range_t topSPs) const;
59 
60  private:
62 };
63 
64 } // namespace Acts
65