#include <WFOperations.h>
|
template<class T > |
static float | estimateBaseline (T *a_wf, uint a_num) |
| this function averages the number of samples specified More...
|
|
template<class T > |
static float | estimateBaseline (T *a_wf, uint a_num, float &a_sigma) |
|
template<class T > |
static void | estimateBaselineDel (T *a_wf, uint a_num, float a_baseline, float &a_Dmax) |
|
template<class T > |
static float | estimateBaselineDel (T *a_wf, uint a_num, float &a_Dmax) |
|
template<class T > |
static float | getCFD (T *a_wf, uint a_num, float a_mean, float a_frac, bool a_negPulse) |
|
template<class T > |
static int | findSampleLeadingEdgeTrig (T *a_wf, uint a_num, float a_baseline, float a_threshold) |
|
template<class T > |
static float | integrateTrace (T *a_wf, float a_baseline, int a_startSample, int a_stopSample, bool a_negPulse) |
|
template<class T > |
static std::vector< std::pair< int, int > > | overThreshold (T *a_wf, uint a_num, float a_baseline, float a_max) |
|
template<class T > |
static std::vector< std::pair< int, int > > | underThreshold (T *a_wf, uint a_num, float a_baseline, float a_max) |
|
template<class T > |
static std::vector< std::complex< double > > | getWfFFT (T *a_wf, int a_range) |
| For FFT stuff - Added 01/30/24. More...
|
|
This class is intended to hold algorithms that act on waveforms that take the form of some linear array in memory. It in general will do this as float representation converting whatever the original type is to doubles.
◆ WFOperations()
WFOperations::WFOperations |
( |
| ) |
|
◆ estimateBaseline() [1/2]
template<class T >
float WFOperations::estimateBaseline |
( |
T * |
a_wf, |
|
|
uint |
a_num |
|
) |
| |
|
inlinestatic |
this function averages the number of samples specified
◆ estimateBaseline() [2/2]
template<class T >
float WFOperations::estimateBaseline |
( |
T * |
a_wf, |
|
|
uint |
a_num, |
|
|
float & |
a_sigma |
|
) |
| |
|
inlinestatic |
this function returns the baseline estmate and sets the standard deviation of the samples as the passed sigma
◆ estimateBaselineDel() [1/2]
template<class T >
float WFOperations::estimateBaselineDel |
( |
T * |
a_wf, |
|
|
uint |
a_num, |
|
|
float & |
a_Dmax |
|
) |
| |
|
inlinestatic |
this function returns the baseline estmate and sets a_Dmax to the maximum floating point difference from the mean observed within the estimated baseline
◆ estimateBaselineDel() [2/2]
template<class T >
void WFOperations::estimateBaselineDel |
( |
T * |
a_wf, |
|
|
uint |
a_num, |
|
|
float |
a_baseline, |
|
|
float & |
a_Dmax |
|
) |
| |
|
inlinestatic |
this function returns the baseline estmate and sets a_Dmax to the maximum floating point difference from the mean observed within the estimated baseline
◆ findSampleLeadingEdgeTrig()
template<class T >
int WFOperations::findSampleLeadingEdgeTrig |
( |
T * |
a_wf, |
|
|
uint |
a_num, |
|
|
float |
a_baseline, |
|
|
float |
a_threshold |
|
) |
| |
|
inlinestatic |
- Parameters
-
a_baseline | number of trace samples |
◆ getCFD()
template<class T >
float WFOperations::getCFD |
( |
T * |
a_wf, |
|
|
uint |
a_num, |
|
|
float |
a_mean, |
|
|
float |
a_frac, |
|
|
bool |
a_negPulse |
|
) |
| |
|
inlinestatic |
◆ getWfFFT()
template<class T >
std::vector< std::complex< double > > WFOperations::getWfFFT |
( |
T * |
a_wf, |
|
|
int |
a_range |
|
) |
| |
|
static |
For FFT stuff - Added 01/30/24.
For FFT stuff - Added 01/30/24 returns power of 2 FFT for a specified range of the waveform
Converting waveform from type short in* array to a vector
Padding the FFT for the algorithm
◆ integrateTrace()
template<class T >
float WFOperations::integrateTrace |
( |
T * |
a_wf, |
|
|
float |
a_baseline, |
|
|
int |
a_startSample, |
|
|
int |
a_stopSample, |
|
|
bool |
a_negPulse |
|
) |
| |
|
inlinestatic |
◆ overThreshold()
template<class T >
std::vector< std::pair< int, int > > WFOperations::overThreshold |
( |
T * |
a_wf, |
|
|
uint |
a_num, |
|
|
float |
a_baseline, |
|
|
float |
a_max |
|
) |
| |
|
inlinestatic |
this function finds sequences over which the the wave form is above a specified value
- Parameters
-
a_baseline | number of trace samples |
◆ underThreshold()
template<class T >
std::vector< std::pair< int, int > > WFOperations::underThreshold |
( |
T * |
a_wf, |
|
|
uint |
a_num, |
|
|
float |
a_baseline, |
|
|
float |
a_max |
|
) |
| |
|
inlinestatic |
this function finds sequences over which the wave form is below a specified value, a_max is specified as a positve number representing the magnitude of the deviation from baseline
this function finds sequences over which the wave form is below a specified value
- Parameters
-
a_baseline | number of trace samples |
a_max | deviation from baseline |
The documentation for this class was generated from the following files: