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

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = ms_error_T.h
  3. //
  4. #ifndef _MS_ERROR_T_H_
  5. #define _MS_ERROR_T_H_
  6. #include "signal_T.h"
  7. //#include "control_T.h"
  8. #include "psmodel.h"
  9. template <class T>
  10. class MeanSquareError : public PracSimModel
  11. {
  12. public:
  13.   MeanSquareError< T >( char* instance_name,
  14.                     PracSimModel* outer_model,
  15.                     Signal<T>* in_signal,
  16.                     Signal<T>* ref_signal);
  17.   ~MeanSquareError<T>(void);
  18.   void Initialize(void);
  19.   int Execute(void);
  20. private:
  21.   //---------------------------------------------
  22.   //  user-specified static parameters
  23.    int Interp_Rate;
  24.   //--------------------------------------------
  25.   //  state variables and derived parameters
  26.   //int Block_Size;
  27.   //double Samp_Intvl;
  28.   //int Max_Buffer_Len;  // numb of locs needed for Max_Delay
  29.   //int Active_Buffer_Len;  // numb of locs needed for Active_Delay
  30.   //T *Start_Of_Buffer;
  31.   //T *End_Of_Buffer;
  32.   //T *Read_Ptr;
  33.   //T *Write_Ptr;
  34.   double Cumul_Ms_Error;
  35.   double Cumul_Ref_Pwr;
  36.   //--------------------------
  37.   //  Signals
  38.   Signal<T> *In_Sig;
  39.   Signal<T> *Ref_Sig;  
  40. };
  41. #endif