EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TrkrClusterFindingAlgorithm.hpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file TrkrClusterFindingAlgorithm.hpp
1 
2 #include <iostream>
3 #include <map>
4 #include <random>
5 #include <stdexcept>
6 #include <boost/program_options.hpp>
7 
23 
29 
31 
32 namespace ActsExamples {
33 
35  {
36 
37  public:
38  using FinderResult =
41  using FinderFunction
42  = std::function<FinderResult(const std::vector<SourceLink>&,
44  const CKFOptions&)>;
45 
46  static FinderFunction
48  std::shared_ptr<const Acts::TrackingGeometry> trackingGeometry,
50 
51  struct Config
52  {
54  };
55 
57 
58  private:
60 
61  };
62 
63 
64 }