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
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
Seedfinder.hpp
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file Seedfinder.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 "
Acts/Seeding/InternalSeed.hpp
"
12
#include "
Acts/Seeding/InternalSpacePoint.hpp
"
13
#include "
Acts/Seeding/SeedfinderConfig.hpp
"
14
15
#include <array>
16
#include <list>
17
#include <map>
18
#include <memory>
19
#include <set>
20
#include <string>
21
#include <utility>
22
#include <vector>
23
24
namespace
Acts {
25
struct
LinCircle
{
26
float
Zo
;
27
float
cotTheta
;
28
float
iDeltaR
;
29
float
Er
;
30
float
U
;
31
float
V
;
32
};
33
template
<
typename
external_spacepo
int
_t>
34
class
Seedfinder
{
36
// Public methods:
38
39
public
:
42
Seedfinder
(
Acts::SeedfinderConfig<external_spacepoint_t>
config
);
43
~Seedfinder
() =
default
;
46
Seedfinder
() =
delete
;
47
Seedfinder
(
const
Seedfinder<external_spacepoint_t>
&) =
delete
;
48
Seedfinder<external_spacepoint_t>
&
operator=
(
49
const
Seedfinder<external_spacepoint_t>
&) =
delete
;
51
60
template
<
typename
sp_range_t>
61
std::vector<Seed<external_spacepoint_t>>
createSeedsForGroup
(
62
sp_range_t bottomSPs, sp_range_t middleSPs, sp_range_t topSPs)
const
;
63
64
private
:
65
void
transformCoordinates
(
66
std::vector<
const
InternalSpacePoint<external_spacepoint_t>
*>& vec,
67
const
InternalSpacePoint<external_spacepoint_t>
& spM,
bool
bottom,
68
std::vector<LinCircle>& linCircleVec)
const
;
69
70
Acts::SeedfinderConfig<external_spacepoint_t>
m_config
;
71
};
72
73
}
// namespace Acts
74
75
#include "
Acts/Seeding/Seedfinder.ipp
"
acts
blob
master
Core
include
Acts
Seeding
Seedfinder.hpp
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:24:21
using
1.8.2 with
ECCE GitHub integration