Mercurial > hg > aimc
view src/IHC.h @ 481:cad69634b411 carfac_cpp
(none)
author | Ulf.Hammarqvist@gmail.com |
---|---|
date | Wed, 28 Mar 2012 20:24:28 +0000 |
parents | 5def66bf228f |
children | 3673e3e67bab |
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_ */