DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
ProcessorMetricArray.hpp
Go to the documentation of this file.
1
9#ifndef TPGLIBS_PROCESSORMETRICARRAY_HPP_
10#define TPGLIBS_PROCESSORMETRICARRAY_HPP_
11
12#include <cstddef>
13#include <immintrin.h>
14
15namespace tpglibs {
16
18template <typename signal_type_t>
20 signal_type_t* m_data;
21 std::size_t m_size;
22};
23
24} // namespace tpglibs
25
26#endif // TPGLIBS_PROCESSORMETRICARRAY_HPP_
Dynamic array of processor metrics, templated on signal type.
signal_type_t * m_data
Pointer to contiguous metric data.
std::size_t m_size
Number of metrics in the array.