ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
ECCE @ EIC Software
Deprecated List
Modules
Namespaces
Classes
Files
File List
acts
blob
master
CI
Core
include
Acts
EventData
Fitter
Geometry
MagneticField
Material
Propagator
Seeding
BinFinder.hpp
BinFinder.ipp
BinnedSPGroup.hpp
BinnedSPGroup.ipp
IExperimentCuts.hpp
InternalSeed.hpp
InternalSpacePoint.hpp
Seed.hpp
SeedFilter.hpp
SeedFilter.ipp
Seedfinder.hpp
Seedfinder.ipp
SeedfinderConfig.hpp
SpacePointGrid.hpp
SpacePointGrid.ipp
Surfaces
TrackFinder
Utilities
Vertexing
Visualization
src
doc
Examples
Fatras
Plugins
Tests
thirdparty
analysis
coresoftware
Doxygen_Assist
ecce-detectors
fun4all_eicdetectors
geant4
macros
online_distribution
tutorials
doxygen_mainpage.h
File Members
External Links
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
Seed.hpp
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file Seed.hpp
1
// This file is part of the Acts project.
2
//
3
// Copyright (C) 2018 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 <vector>
12
13
namespace
Acts {
14
template
<
typename
SpacePo
int
>
15
class
Seed
{
17
// Public methods:
19
20
public
:
21
Seed
(
const
SpacePoint
&
b
,
const
SpacePoint
&
m
,
const
SpacePoint
&
u
,
22
float
vertex);
23
Seed
(
const
Seed
&) =
default
;
24
Seed
&
operator=
(
const
Seed
&);
25
26
const
std::vector<const SpacePoint*>&
sp
()
const
{
return
m_spacepoints
; }
27
double
z
()
const
{
return
m_zvertex
; }
28
29
private
:
30
std::vector<const SpacePoint*>
m_spacepoints
;
31
float
m_zvertex
;
32
};
33
35
// Constructors
37
38
template
<
typename
SpacePo
int
>
39
Seed<SpacePoint>::Seed
(
const
SpacePoint
&
b
,
const
SpacePoint
&
m
,
40
const
SpacePoint
&
u
,
float
vertex) {
41
m_zvertex = vertex;
42
m_spacepoints.push_back(&b);
43
m_spacepoints.push_back(&m);
44
m_spacepoints.push_back(&u);
45
}
46
47
}
// namespace Acts
acts
blob
master
Core
include
Acts
Seeding
Seed.hpp
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:24:21
using
1.8.2 with
ECCE GitHub integration