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

Definition at line 27 of file TDSPFastBpsk.h.
Public Member Functions | |
| TDSPFastBpsk (char *name=NULL) | |
| ~TDSPFastBpsk () | |
Protected Member Functions | |
| void | GenerateSymbols (Int_t, TComplex *) |
| Int_t | GenerateSymbol (TComplex *c) |
| Int_t | DetectSymbol (TComplex &s) |
|
|
|
|
|
|
|
|
Reimplemented from TDSPSymbolGenerator. Definition at line 62 of file TDSPFastBpsk.h. References TComplex::fRe, and NOT_DETECTED.
00062 {
00063 if (s.fRe<0) return 1;
00064 if (s.fRe>0) return 0;
00065 return NOT_DETECTED;
00066 }
|
|
|
Reimplemented from TDSPSymbolGenerator. Definition at line 52 of file TDSPFastBpsk.h. References TDSPSymbolGenerator::fSymbols. Referenced by GenerateSymbols().
|
|
||||||||||||
|
Reimplemented from TDSPSymbolGenerator. Definition at line 45 of file TDSPFastBpsk.h. References TDSPSymbolGenerator::fISymbols, and GenerateSymbol().
00046 {
00047 Int_t *sym = fISymbols;
00048 for(register Int_t i=num;i;--i)
00049 *(sym++) = GenerateSymbol(c++);
00050 }
|
1.3.2