Mercurial > hg > aimc
diff include/IHC.h @ 579:71e3794ececa carfac_cpp
some refactoring
author | Ulf.Hammarqvist@gmail.com |
---|---|
date | Thu, 11 Oct 2012 20:55:03 +0000 |
parents | 83cd5bbf2a3e |
children | daf1ca88fe20 |
line wrap: on
line diff
--- a/include/IHC.h Thu Oct 11 19:37:10 2012 +0000 +++ b/include/IHC.h Thu Oct 11 20:55:03 2012 +0000 @@ -4,18 +4,7 @@ // not sure how to best deal with the "three style" IHC - ulha class IHC_parameters{ public: - IHC_parameters() : - tau_lpf_(0.000080), - tau1_out_(0.010), - tau1_in_(0.20), - tau2_out_(0.0025), - tau2_in_(0.005){ - // do nothing more - } - - virtual ~IHC_parameters(){ - // do nothing - } + IHC_parameters(); float tau_lpf_; float tau1_out_; @@ -27,12 +16,11 @@ class IHC_coefficients{ public: IHC_coefficients(IHC_parameters*, float, int); - virtual ~IHC_coefficients(); float saturation_output_; private: - IHC_coefficients(); + }; #endif /* IHC_H_ */