disc_auto_corr.h
上传用户:jtjnyq9001
上传日期:2014-11-21
资源大小:3974k
文件大小:1k
源码类别:

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = disc_auto_corr.h
  3. //
  4. #ifndef _DISC_AUTO_CORR_H_
  5. #define _DISC_AUTO_CORR_H_
  6. #include "signal_T.h"
  7. #include "psmodel.h"
  8. class DiscreteAutoCorr : public PracSimModel
  9. {
  10. public:
  11.   DiscreteAutoCorr( char* instance_name,
  12.                   PracSimModel* outer_model,
  13.                   Signal<byte_t>* in_sig );
  14.   ~DiscreteAutoCorr(void);
  15.   void Initialize(void);
  16.   int Execute(void);
  17. private:
  18.   int Proc_Block_Size;
  19.   double Samp_Intvl;
  20.   // correlation array - contains In_Sig
  21.   // values and is padded out with zeros
  22.   //std::complex<float> *X;
  23.   // correlation array - contains Ref_Sig
  24.   // values and is padded out with zeros
  25.   //std::complex<float> *Y;
  26.   // an array of zeros used to quickly
  27.   // pad the ends of X and Y with zeros
  28.   //std::complex<float> *Zero_Array;
  29.   //std::complex<float> Max_Corr;
  30.   //float Max_Corr_Angle;
  31.   //float Max_Corr_Time;
  32.   //int Full_Corr_Size;
  33.   //int Search_Window_Beg;
  34.   //int Search_Window_End;
  35.   //int Neg_Window_Beg;
  36.   //int Neg_Window_End;
  37.   //int Pos_Window_Beg;
  38.   //int Pos_Window_End;
  39.   //bool Invert_Input_Sig_Enab;
  40.   //bool Limited_Search_Window_Enab;
  41.   //int Size_Of_FComplex;
  42.   //double Ns_Exp;
  43.   Signal<byte_t> *In_Sig;
  44.   int Num_Corr_Passes;
  45.   float *Corr_Buf;
  46. };
  47. #endif