Fixing previous checkin
[debian/gnuradio] / gnuradio-core / src / lib / filter / gr_pfb_clock_sync_ccf.h
index d99bd6fe717fde598d923798321278a88d5926ca..14e958691a3f42742e9054569d39c3ca475f01b5 100644 (file)
@@ -58,13 +58,14 @@ class gr_pfb_clock_sync_ccf : public gr_block
   bool                    d_updated;
   unsigned int             d_sps;
   float                    d_alpha;
+  float                    d_beta;
   unsigned int             d_nfilters;
   std::vector<gr_fir_ccf*> d_filters;
   std::vector<gr_fir_ccf*> d_diff_filters;
   std::vector< std::vector<float> > d_taps;
   std::vector< std::vector<float> > d_dtaps;
-  float                    d_acc;
-  unsigned int             d_last_filter;
+  float                    d_k;
+  float                    d_rate;
   unsigned int             d_start_count;
   unsigned int             d_taps_per_filter;
 
@@ -97,8 +98,14 @@ public:
   void print_taps();
   void print_diff_taps();
 
-  void set_gain(float gain)
-  { d_alpha = gain; }
+  void set_alpha(float alpha)
+  {
+    d_alpha = alpha;
+  }
+  void set_beta(float beta)
+  {
+    d_beta = beta;
+  }
   
   int general_work (int noutput_items,
                    gr_vector_int &ninput_items,