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

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = fine_delay_est.h
  3. //
  4. #ifndef _FINE_DELAY_EST_H_
  5. #define _FINE_DELAY_EST_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 FineDelayEstimator : public PracSimModel
  12. {
  13. public:
  14.   FineDelayEstimator( char* instance_name,
  15.                   PracSimModel* outer_model,
  16.                   Signal<float>* in_sig,
  17.                   Signal<float>* ref_sig,
  18.                   Control<bool>* estim_enabled_cntl, //input
  19.                   Control<bool>* dly_est_is_valid_cntl,
  20.                   Control<float>* estimated_delay_cntl);//,
  21.                   //Control<int>* samps_delay_at_max_corr );
  22.   ~FineDelayEstimator(void);
  23.   void Initialize(void);
  24.   int Execute(void);
  25. private:
  26.   int Proc_Block_Size;
  27.   double Samp_Intvl;
  28.   // correlation array - contains In_Sig
  29.   // values and is padded out with zeros
  30.   std::complex<float> *X;
  31.   // correlation array - contains Ref_Sig
  32.   // values and is padded out with zeros
  33.   std::complex<float> *Y;
  34.   // an array of zeros used to quickly
  35.   // pad the ends of X and Y with zeros
  36.   std::complex<float> *Zero_Array;
  37.   std::complex<float> Max_Corr;
  38.   float Max_Corr_Angle;
  39.   float Max_Corr_Time;
  40.   int Full_Corr_Size;
  41. //  int Search_Window_Beg;
  42. //  int Search_Window_End;
  43. //  int Neg_Window_Beg;
  44. //  int Neg_Window_End;
  45. //  int Pos_Window_Beg;
  46. //  int Pos_Window_End;
  47.   bool Invert_Input_Sig_Enab;
  48. //  bool Limited_Search_Window_Enab;
  49. //  int Smoothing_Sidelobe_Len;
  50.   std::complex<float> *Diff_Response;
  51.   AuxSignalBuffer<float> *In_Sig_Buf;
  52.   AuxSignalBuffer<float> *Ref_Sig_Buf;
  53.   int Size_Of_FComplex;
  54.   double Ns_Exp;
  55.   Signal<float> *In_Sig;
  56.  // Signal<float> *Out_Sig;
  57.   Signal<float> *Ref_Sig;
  58.   Control<float> *Estimated_Delay_Cntl;
  59.   //Control<int> *Samps_Delay_At_Max_Corr;
  60.   //Control<float> *Max_Corr_Out;
  61.   Control<bool> *Dly_Est_Is_Valid_Cntl;
  62.   Control<bool> *Estim_Enabled_Cntl;
  63.   
  64.   
  65.   int Num_Corr_Passes;
  66.   int Corr_Pass_Count;
  67.   ofstream *Spectrum_File;
  68. };
  69. #endif