Ulf@564: #ifndef IHC_H_ Ulf@564: #define IHC_H_ Ulf@564: Ulf@564: // not sure how to best deal with the "three style" IHC - ulha Ulf@564: class IHC_parameters{ Ulf@564: public: Ulf@586: IHC_parameters(); Ulf@564: Ulf@564: float tau_lpf_; Ulf@564: float tau1_out_; Ulf@564: float tau1_in_; Ulf@564: float tau2_out_; Ulf@564: float tau2_in_; Ulf@564: }; Ulf@564: Ulf@564: class IHC_coefficients{ Ulf@564: public: Ulf@590: IHC_coefficients(IHC_parameters* IHC_params_p, float fs, int n_ch); Ulf@564: Ulf@564: float saturation_output_; Ulf@564: Ulf@564: private: Ulf@586: Ulf@564: }; Ulf@564: Ulf@564: #endif /* IHC_H_ */