Juggler
Juggling algorithms and event processing using gaudi framework
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
IndexSourceLink.hpp
Go to the documentation of this file.
1 // This file is part of the Acts project.
2 //
3 // Copyright (C) 2020 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 
12 #include "JugTrack/Index.hpp"
13 
14 #include "Acts/EventData/SourceLink.hpp"
15 #include "Acts/Surfaces/Surface.hpp"
16 
17 #include <cassert>
18 
19 namespace Jug {
20 
21  /// A source link that stores just an index.
22  ///
23  /// This is intentionally kept as barebones as possible. The source link
24  /// is just a reference and will be copied, moved around, etc. often.
25  /// Keeping it small and separate from the actual, potentially large,
26  /// measurement data should result in better overall performance.
27  /// Using an index instead of e.g. a pointer, means source link and
28  /// measurement are decoupled and the measurement represenation can be
29  /// easily changed without having to also change the source link.
30  class IndexSourceLink final : public Acts::SourceLink {
31  public:
32  /// Construct from geometry identifier and index.
33  constexpr IndexSourceLink(Acts::GeometryIdentifier gid, Index idx) : SourceLink(gid), m_index(idx) {}
34 
35  // Construct an invalid source link. Must be default constructible to
36  /// satisfy SourceLinkConcept.
37  IndexSourceLink() : SourceLink{Acts::GeometryIdentifier{}} {}
38  IndexSourceLink(const IndexSourceLink&) = default;
42 
43  /// Access the index.
44  constexpr Index index() const { return m_index; }
45 
46  public:
47  Index m_index;
48 
49  friend constexpr bool operator==(const IndexSourceLink& lhs, const IndexSourceLink& rhs)
50  {
51  return (lhs.geometryId() == rhs.geometryId()) and (lhs.m_index == rhs.m_index);
52  }
53  friend constexpr bool operator!=(const IndexSourceLink& lhs, const IndexSourceLink& rhs) { return not(lhs == rhs); }
54  };
55 
56  /// Container of index source links.
57  ///
58  /// Since the source links provide a `.geometryId()` accessor, they can be
59  /// stored in an ordered geometry container.
61  GeometryIdMultiset<std::reference_wrapper<const IndexSourceLink>>;
62 
63  /// Accessor for the above source link container
64  ///
65  /// It wraps up a few lookup methods to be used in the Combinatorial Kalman
66  /// Filter
68  GeometryIdMultisetAccessor<std::reference_wrapper<const IndexSourceLink>>;
69 
70 } // namespace Jug
Jug::Index
uint32_t Index
Definition: Index.hpp:21
Index.hpp
Jug::IndexSourceLinkAccessor
GeometryIdMultisetAccessor< IndexSourceLink > IndexSourceLinkAccessor
Accessor for the above source link container.
Definition: IndexSourceLink.hpp:66
Jug
Definition: DD4hepBField.h:22
Jug::IndexSourceLinkContainer
GeometryIdMultiset< IndexSourceLink > IndexSourceLinkContainer
Definition: IndexSourceLink.hpp:60
GeometryContainers.hpp