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
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
AMVFInfo.hpp
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file AMVFInfo.hpp
1
// This file is part of the Acts project.
2
//
3
// Copyright (C) 2019 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/Utilities/Definitions.hpp
"
13
#include "
Acts/Vertexing/Vertex.hpp
"
14
15
#include <map>
16
17
namespace
Acts {
18
20
template
<
typename
input_track_t>
21
struct
VertexInfo
{
22
VertexInfo
() =
default
;
23
24
VertexInfo
(
const
Acts::Vertex<input_track_t>
&
vtx
,
const
Acts::Vector4D
&
pos
)
25
:
constraintVertex
(vtx),
26
linPoint
(pos),
27
oldPosition
(pos),
28
seedPosition
(pos) {}
29
30
// The constraint vertex
31
Acts::Vertex<input_track_t>
constraintVertex
;
32
33
// The linearization point
34
Acts::Vector4D
linPoint
{Acts::Vector4D::Zero()};
35
36
// Old position from last iteration
37
Acts::Vector4D
oldPosition
{Acts::Vector4D::Zero()};
38
39
// The seed position
40
Acts::Vector4D
seedPosition
{Acts::Vector4D::Zero()};
41
42
// Needs relinearization bool
43
bool
relinearize
=
true
;
44
45
// Vector of all track currently held by vertex
46
std::vector<const input_track_t*>
trackLinks
;
47
48
std::map<const input_track_t*, const BoundTrackParameters>
ip3dParams
;
49
};
50
51
}
// namespace Acts
acts
blob
sPHENIX
Core
include
Acts
Vertexing
AMVFInfo.hpp
Built by
Jin Huang
. updated:
Mon Jan 22 2024 12:43:24
using
1.8.2 with
EIC GitHub integration