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

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = correlator.h
  3. //
  4. #ifndef _CORRELATOR_H_
  5. #define _CORRELATOR_H_
  6. //#include "intsig.h"
  7. #include "signal_T.h"
  8. #include "control_T.h"
  9. #include "psmodel.h"
  10. #include "aux_sig_buf.h"
  11. class RealCorrelator : public PracSimModel
  12. {
  13. public:
  14.   RealCorrelator( char* instance_name,
  15.                   PracSimModel* outer_model,
  16.                   Signal<float>* in_sig,
  17.                   Signal<float>* ref_sig,
  18.                   Signal<float>* out_sig,
  19.                   Control<float>* delay_at_max_corr,
  20.                   Control<int>* samps_delay_at_max_corr );
  21.   ~RealCorrelator(void);
  22.   void Initialize(void);
  23.   int Execute(void);
  24. private:
  25.   int Proc_Block_Size;
  26.   double Samp_Intvl;
  27.   // correlation array - contains In_Sig
  28.   // values and is padded out with zeros
  29.   std::complex<float> *X;
  30.   // correlation array - contains Ref_Sig
  31.   // values and is padded out with zeros
  32.   std::complex<float> *Y;
  33.   // an array of zeros used to quickly
  34.   // pad the ends of X and Y with zeros
  35.   std::complex<float> *Zero_Array;
  36.   std::complex<float> Max_Corr;
  37.   float Max_Corr_Angle;
  38.   float Max_Corr_Time;
  39.   int Full_Corr_Size;
  40.   int Search_Window_Beg;
  41.   int Search_Window_End;
  42.   int Neg_Window_Beg;
  43.   int Neg_Window_End;
  44.   int Pos_Window_Beg;
  45.   int Pos_Window_End;
  46.   bool Invert_Input_Sig_Enab;
  47.   bool Limited_Search_Window_Enab;
  48.   int Smoothing_Sidelobe_Len;
  49.   std::complex<float> *Diff_Response;
  50.   AuxSignalBuffer<float> *In_Sig_Buf;
  51.   AuxSignalBuffer<float> *Ref_Sig_Buf;
  52.   int Size_Of_FComplex;
  53.   double Ns_Exp;
  54.   Signal<float> *In_Sig;
  55.   Signal<float> *Out_Sig;
  56.   Signal<float> *Ref_Sig;
  57.   Control<float> *Delay_At_Max_Corr;
  58.   Control<int> *Samps_Delay_At_Max_Corr;
  59.   Control<float> *Max_Corr_Out;
  60.   int Num_Corr_Passes;
  61.   int Corr_Pass_Count;
  62.   ofstream *Spectrum_File;
  63. };
  64. #endif