EIC Software
Reference for
EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
EIC Software
Deprecated List
Modules
Namespaces
Classes
Files
File List
acts
blob
sPHENIX
CI
Core
docs
Examples
Algorithms
Digitization
Fatras
Fitting
Geant4
Geant4DD4hep
Generators
GeneratorsPythia8
MaterialMapping
Printers
Propagation
TrackFinding
include
ActsExamples
TrackFinding
TrackFindingAlgorithm.hpp
TrackFindingOptions.hpp
TrkrClusterFindingAlgorithm.hpp
src
TruthTracking
Vertexing
Detectors
Framework
Io
Run
Scripts
Fatras
Plugins
Tests
thirdparty
BeastMagneticField
delphes_EIC
Doxygen_Assist
east
eic-smear
EicRoot
eicsmear-jetexample
eicsmeardetectors
EicToyModel
estarlight
Fun4All-lmon
fun4all_coresoftware
fun4all_eic_qa
fun4all_eic_tutorials
fun4all_eicdetectors
fun4all_eicmacros
fun4all_g4jleic
fun4all_GenFit
fun4all_macros
fun4all_tutorials
g4exampledetector
g4lblvtx
online_distribution
PEPSI
doxygen_mainpage.h
File Members
External Links
•
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
8
#include "
Acts/TrackFitting/GainMatrixSmoother.hpp
"
9
#include "
Acts/TrackFitting/GainMatrixUpdater.hpp
"
10
#include "
Acts/Geometry/GeometryIdentifier.hpp
"
11
#include "
Acts/MagneticField/ConstantBField.hpp
"
12
#include "
Acts/MagneticField/InterpolatedBFieldMap.hpp
"
13
#include "
Acts/MagneticField/SharedBField.hpp
"
14
#include "
Acts/Propagator/EigenStepper.hpp
"
15
#include "
Acts/Propagator/Navigator.hpp
"
16
#include "
Acts/Propagator/Propagator.hpp
"
17
#include "
Acts/Surfaces/Surface.hpp
"
18
#include "
Acts/Utilities/Helpers.hpp
"
19
#include "
Acts/Utilities/ParameterDefinitions.hpp
"
20
#include "
Acts/TrackFinding/CKFSourceLinkSelector.hpp
"
21
#include "
Acts/TrackFinding/CombinatorialKalmanFilter.hpp
"
22
#include "
Acts/Geometry/TrackingGeometry.hpp
"
23
24
#include "
ActsExamples/Plugins/BField/ScalableBField.hpp
"
25
#include "
ActsExamples/EventData/Track.hpp
"
26
#include "
ActsExamples/Framework/BareAlgorithm.hpp
"
27
#include "
ActsExamples/Plugins/BField/BFieldOptions.hpp
"
28
#include "
ActsExamples/EventData/TrkrClusterSourceLink.hpp
"
29
30
using
SourceLink
=
ActsExamples::TrkrClusterSourceLink
;
31
32
namespace
ActsExamples {
33
34
class
TrkrClusterFindingAlgorithm
:
public
BareAlgorithm
35
{
36
37
public
:
38
using
FinderResult
=
39
Acts::Result<Acts::CombinatorialKalmanFilterResult<SourceLink>
>;
40
using
CKFOptions
=
Acts::CombinatorialKalmanFilterOptions<Acts::CKFSourceLinkSelector>
;
41
using
FinderFunction
42
= std::function<FinderResult(const std::vector<SourceLink>&,
43
const
ActsExamples::TrackParameters
&,
44
const
CKFOptions
&)>;
45
46
static
FinderFunction
47
makeFinderFunction
(
48
std::shared_ptr<const Acts::TrackingGeometry>
trackingGeometry
,
49
Options::BFieldVariant
magneticField
);
50
51
struct
Config
52
{
53
FinderFunction
finder
;
54
};
55
56
TrkrClusterFindingAlgorithm
(
Config
cfg,
Acts::Logging::Level
lvl);
57
58
private
:
59
Config
m_cfg
;
60
61
};
62
63
64
}
acts
blob
sPHENIX
Examples
Algorithms
TrackFinding
include
ActsExamples
TrackFinding
TrkrClusterFindingAlgorithm.hpp
Built by
Jin Huang
. updated:
Mon Jan 22 2024 12:43:24
using
1.8.2 with
EIC GitHub integration