Mercurial > hg > aimc
view branches/carfac_cpp/src/IHC.h @ 544:c666e8e0696a
style
author | Ulf.Hammarqvist@gmail.com |
---|---|
date | Thu, 29 Mar 2012 19:43:36 +0000 |
parents | 5f1f55b23301 |
children | e63fbe19b255 |
line wrap: on
line source
#ifndef IHC_H_ #define IHC_H_ // 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.020; tau1_in_ = 0.020; tau2_out_ = 0.005; tau2_in_ = 0.005; } virtual ~IHC_parameters(){} float tau_lpf_; float tau1_out_; float tau1_in_; float tau2_out_; float tau2_in_; }; class IHC_coefficients { public: IHC_coefficients(IHC_parameters*, float, int); virtual ~IHC_coefficients(); private: IHC_coefficients(){} }; #endif /* IHC_H_ */