EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TrkrClusterFittingAlgorithm.hpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file TrkrClusterFittingAlgorithm.hpp
1 #pragma once
2 
3 #include <iostream>
4 #include <map>
5 #include <random>
6 #include <stdexcept>
7 #include <boost/program_options.hpp>
8 
23 
29 
30 namespace ActsExamples {
31 
37 {
38  public:
40  using FitterResult
42  using FitterFunction
43  = std::function<FitterResult(
44  const std::vector<ActsExamples::TrkrClusterSourceLink>&,
45  const TrackParameters&,
47 
49  = std::function<FitterResult(
50  const std::vector<ActsExamples::TrkrClusterSourceLink>&,
51  const TrackParameters&,
53  const std::vector<const Acts::Surface*>&)>;
54 
55 
58  std::shared_ptr<const Acts::TrackingGeometry> trackingGeometry,
60 
63 
64  struct Config
65  {
68  };
69 
72 
73 
74 private:
76 };
77 
78 }