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

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = cmpx_iq_plot.h
  3. //
  4. #ifndef _CMPX_IQ_PLOT_H_
  5. #define _CMPX_IQ_PLOT_H_
  6. #include "signal_T.h"
  7. #include "psmodel.h"
  8. class CmpxIqPlot : public PracSimModel
  9. {
  10. public:
  11.    CmpxIqPlot(  
  12.          char* instance_nam,
  13.          PracSimModel* outer_model,
  14.          Signal< std::complex<float> >* in_sig,
  15.          Signal< bit_t >* symb_clock_in );
  16.    ~CmpxIqPlot(void);
  17.    void Initialize(void);
  18.    int Execute(void);
  19. private:
  20.    int Block_Size;
  21.    Signal< std::complex<float> > *In_Sig;  
  22.    Signal< bit_t > *Symb_Clock_In;  
  23.    int Hold_Off;
  24.    int Sample_Strobe;
  25.    int Sampling_Offset;
  26.    bool Processing_Completed;
  27.    char *Plot_File_Name;
  28.    ofstream *Plot_File;
  29. };
  30. #endif