DUNE-DAQ
DUNE Trigger and Data Acquisition software
|
AVX signal processor: Calculates the running sum of the signal's absolute value. More...
#include <AVXAbsRunSumProcessor.hpp>
Public Member Functions | |
__m256i | process (const __m256i &signal) override |
Calculate and store the running sum with absolute values. | |
![]() | |
__m256i | process (const __m256i &signal) override |
Calculate and store the running sum. | |
void | configure (const nlohmann::json &config, const int16_t *plane_numbers) override |
Configures the R factor and S factor according to plane. | |
![]() | |
void | save_metric_to_store_buffer () override |
Save metrics to store buffer; no-op for basic AVXProcessor. | |
ProcessorMetricArray< __m256i > | read_from_metric_store_buffer () override |
Read metrics from store buffer; returns empty for basic AVXProcessor. | |
![]() | |
virtual | ~AbstractProcessor ()=default |
void | set_next_processor (std::shared_ptr< AbstractProcessor< __m256i > > next_processor) |
Setter for next processor. | |
virtual std::vector< std::string > | get_metric_items () |
Returns the string name of metrics recorded (stored and can be read) for this processor. | |
virtual void | attach_to_metric_collector (ProcessorMetricCollector< signal_type_t > &collector, size_t pipeline_id) |
Register this processor and next processor with the metric collector. | |
Additional Inherited Members | |
![]() | |
using | signal_type_t |
Signal type to process on. General __m256i. | |
AVX signal processor: Calculates the running sum of the signal's absolute value.
Look to AVXRunSumProcessor for details on the running sum calculation.
Definition at line 20 of file AVXAbsRunSumProcessor.hpp.
|
overridevirtual |
Calculate and store the running sum with absolute values.
signal | The input signal to process on. |
Reimplemented from tpglibs::AVXProcessor.
Definition at line 15 of file AVXAbsRunSumProcessor.cpp.