ATLAS Offline Software
Loading...
Searching...
No Matches
TrackFindingMeasurements.icc
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3*/
4
5namespace ActsTrk::detail {
6
7 inline const ActsTrk::detail::MeasurementRangeList& TrackFindingMeasurements::measurementRanges() const {
8 return m_measurementRanges;
9 }
10
11 inline std::size_t TrackFindingMeasurements::nMeasurements() const {
12 return m_measurementsTotal;
13 }
14
15 inline const std::vector<std::size_t>& TrackFindingMeasurements::measurementOffsets() const {
16 return m_measurementOffsets;
17 }
18
19 inline const xAOD::UncalibratedMeasurementContainer* TrackFindingMeasurements::container(std::size_t typeIndex) const {
20 return m_containers.at(typeIndex);
21 }
22
23} // namespace ActsTrk::detail