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. | |
![]() | |
![]() | |
virtual | ~AbstractProcessor ()=default |
void | set_next_processor (std::shared_ptr< AbstractProcessor< __m256i > > next_processor) |
Setter for next processor. | |
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.