#include <TDSPCorrelationFilter.h>
Inheritance diagram for TDSPCorrelationFilter:

Public Member Functions | |
| TDSPCorrelationFilter () | |
| ~TDSPCorrelationFilter () | |
| void | Init (Double_t MaxTime=1, Int_t Entries=100) |
| virtual Double_t | Correlation (Double_t) |
| TDSPSignal * | GetCorrelation () |
| eCorrFilterMethod | GetMethod () |
| void | SetMethod (eCorrFilterMethod m) |
| void | SetAR (UInt_t ar) |
| UInt_t | GetAR () |
| void | SetMA (UInt_t ma) |
| UInt_t | GetMA () |
| void | SetARMA (UInt_t ar, UInt_t ma) |
| void | EnableOption (eCorrFilterOptions o) |
| void | DisableOption (eCorrFilterOptions o) |
| virtual void | Test () |
Protected Attributes | |
| eCorrFilterMethod | fMethod |
| UInt_t | fAR |
| UInt_t | fMA |
| TDSPSignal * | fCorrelation |
| UInt_t | fOptions |
|
|
|
|
|
|
|
|
Reimplemented in TDSPJakes. |
|
|
Definition at line 65 of file TDSPCorrelationFilter.h. References fOptions.
00065 {// Disable a option
00066 fOptions &= !o; }
|
|
|
Definition at line 63 of file TDSPCorrelationFilter.h. References fOptions.
00063 { // Enable a option
00064 fOptions |= o; }
|
|
|
Definition at line 58 of file TDSPCorrelationFilter.h. References fAR.
00058 { return fAR;}; // Get the Number of AR-Parameters
|
|
|
Definition at line 54 of file TDSPCorrelationFilter.h. References fCorrelation.
00054 { return fCorrelation;};
|
|
|
Definition at line 60 of file TDSPCorrelationFilter.h. References fMA.
00060 { return fMA;}; // Get the Number of AM-Parameters
|
|
|
Definition at line 55 of file TDSPCorrelationFilter.h. References eCorrFilterMethod, and fMethod.
00055 { return fMethod;}; // Get the Current Method
|
|
||||||||||||
|
|
|
|
Definition at line 57 of file TDSPCorrelationFilter.h. References fAR. Referenced by SetARMA().
00057 { fAR = ar;}; // Set the Number of AR-Parameters
|
|
||||||||||||
|
Definition at line 75 of file TDSPCorrelationFilter.h. References SetAR(), and SetMA().
|
|
|
Definition at line 59 of file TDSPCorrelationFilter.h. References fMA. Referenced by SetARMA().
00059 { fMA = ma;}; // Set the Number of AM-Parameters
|
|
|
Definition at line 56 of file TDSPCorrelationFilter.h. References fMethod.
00056 { fMethod = m;}; // Set the Method
|
|
|
|
|
|
Definition at line 42 of file TDSPCorrelationFilter.h. |
|
|
Definition at line 43 of file TDSPCorrelationFilter.h. Referenced by GetCorrelation(). |
|
|
Definition at line 42 of file TDSPCorrelationFilter.h. |
|
|
Definition at line 41 of file TDSPCorrelationFilter.h. Referenced by GetMethod(), and SetMethod(). |
|
|
Definition at line 44 of file TDSPCorrelationFilter.h. Referenced by DisableOption(), and EnableOption(). |
1.3.2