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

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = bitgen.cpp
  3. //
  4. #include <stdlib.h>
  5. #include <fstream>
  6. #include "bitgen.h"
  7. #include "uni_rand.h"
  8. #include "parmfile.h"
  9. #include "model_graph.h"
  10. #include "sigstuff.h"
  11. #include "syst_graph.h"
  12. extern ParmFile *ParmInput;
  13. extern SystemGraph CommSystemGraph;
  14. #ifdef _DEBUG
  15.   extern ofstream *DebugFile;
  16. #endif
  17. //======================================================
  18. BitGener::BitGener( char* instance_name,
  19.                     PracSimModel* outer_model,
  20.                     Signal<bit_t>* out_sig )
  21.         :PracSimModel( instance_name,
  22.                         outer_model )
  23. {
  24.   MODEL_NAME(BitGener);
  25.   Out_Sig = out_sig;
  26.   OPEN_PARM_BLOCK;
  27.   GET_LONG_PARM(Initial_Seed);
  28.   Seed = Initial_Seed;
  29.   //GET_LONG_PARM(Block_Size);
  30.   MAKE_OUTPUT(Out_Sig);
  31. }
  32. //====================================================
  33. BitGener::~BitGener( void){};
  34. //====================================================
  35. void BitGener::Initialize(void)
  36. {
  37.   #ifdef _DEBUG
  38.     *DebugFile << "Now in BitGener::Initialize()" << endl;
  39.   #endif
  40.   Block_Size = Out_Sig->GetBlockSize();
  41. }
  42. //====================================================
  43. int BitGener::Execute()
  44. {
  45.   int is;
  46.   bit_t bit_val;
  47.   long seed;
  48.   //float rand_num;
  49.   bit_t *bits_out;
  50.   //--------------------------------
  51.   //  Get pointer for output buffer
  52.   Out_Sig->SetValidBlockSize(Block_Size);
  53.   bits_out = GET_OUTPUT_PTR(Out_Sig);
  54.   seed = Seed;
  55.   for (is=0; is<Block_Size; is++)
  56.     {
  57.     bit_val = RandomBit(&seed);
  58. //    rand_num = UniformRandom(&seed);
  59. //    if(rand_num >= 0.5)
  60. //      {
  61. //      bit_val = 1;
  62. //      }
  63. //    else
  64. //      {bit_val = 0; //usual setting
  65.       //bit_val = -1; //temp change for RRC eval
  66. //      }
  67.     *bits_out = bit_val;
  68.     //*bits_out = 1;
  69.     bits_out++;
  70.     }
  71.   Seed = seed;
  72.   return(_MES_AOK);
  73. }