Analysis Software
Documentation for
sPHENIX
simulation software
Home page
Related Pages
Modules
Namespaces
Classes
Files
Examples
External Links
File List
File Members
Analysis Software
Deprecated List
Modules
Namespaces
Classes
Files
File List
acts
blob
sPHENIX
Alignment
CI
cmake
Core
docs
Examples
Algorithms
Alignment
AmbiguityResolution
Digitization
Fatras
Geant4
Geant4HepMC
Generators
GeneratorsPythia8
Geometry
HepMC
MaterialMapping
Printers
Propagation
TrackFinding
TrackFindingExaTrkX
TrackFindingML
TrackFitting
TruthTracking
Utilities
Vertexing
include
ActsExamples
Vertexing
AdaptiveMultiVertexFinderAlgorithm.hpp
IterativeVertexFinderAlgorithm.hpp
SingleSeedVertexFinderAlgorithm.hpp
TutorialVertexFinderAlgorithm.hpp
VertexFitterAlgorithm.hpp
src
Detectors
Framework
Io
Python
Run
Scripts
Fatras
Plugins
Tests
acts-fatras
analysis
analysis_tpc_prototype
coresoftware
Doxygen_Assist
g4exampledetector
GenFit
JETSCAPE
KFParticle
macros
online_distribution
OnlMon
prototype
pythia6
rcdaq
RDBC
tutorials
doxygen_mainpage.h
File Members
Examples
External Links
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
SingleSeedVertexFinderAlgorithm.hpp
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file SingleSeedVertexFinderAlgorithm.hpp
1
// This file is part of the Acts project.
2
//
3
// Copyright (C) 2023 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
#include "
Acts/EventData/TrackParameters.hpp
"
12
#include "
Acts/Vertexing/Vertex.hpp
"
13
#include "
ActsExamples/EventData/SimSpacePoint.hpp
"
14
#include "
ActsExamples/Framework/DataHandle.hpp
"
15
#include "
ActsExamples/Framework/IAlgorithm.hpp
"
16
17
#include <string>
18
19
namespace
ActsExamples {
20
21
class
SingleSeedVertexFinderAlgorithm
final :
public
IAlgorithm
{
22
public
:
23
struct
Config
{
25
std::string
inputSpacepoints
;
27
std::string
outputVertices
;
28
};
29
30
SingleSeedVertexFinderAlgorithm
(
const
Config
&
cfg
,
Acts::Logging::Level
lvl);
31
36
ProcessCode
execute
(
const
AlgorithmContext
& ctx)
const
final
;
37
39
const
Config
&
config
()
const
{
return
m_cfg
; }
40
41
private
:
42
Config
m_cfg
;
43
44
ReadDataHandle<SimSpacePointContainer>
m_inputSpacepoints
{
this
,
45
"spacepoints"
};
46
WriteDataHandle<std::vector<Acts::Vertex<Acts::BoundTrackParameters>
>>
47
m_outputVertices
{
this
,
"fittedVertices"
};
48
};
49
50
}
// namespace ActsExamples
acts
blob
sPHENIX
Examples
Algorithms
Vertexing
include
ActsExamples
Vertexing
SingleSeedVertexFinderAlgorithm.hpp
Built by
Jin Huang
. updated:
Sat Feb 17 2024 22:17:37
using
1.8.2 with
sPHENIX GitHub integration