annotate include/IHC.h @ 581:2b23b5914bb9 carfac_cpp

(none)
author Ulf.Hammarqvist@gmail.com
date Thu, 11 Oct 2012 21:32:30 +0000
parents 71e3794ececa
children daf1ca88fe20
rev   line source
Ulf@503 1 #ifndef IHC_H_
Ulf@503 2 #define IHC_H_
Ulf@503 3
Ulf@503 4 // not sure how to best deal with the "three style" IHC - ulha
Ulf@503 5 class IHC_parameters{
Ulf@503 6 public:
Ulf@579 7 IHC_parameters();
Ulf@503 8
Ulf@503 9 float tau_lpf_;
Ulf@503 10 float tau1_out_;
Ulf@503 11 float tau1_in_;
Ulf@503 12 float tau2_out_;
Ulf@503 13 float tau2_in_;
Ulf@503 14 };
Ulf@503 15
Ulf@503 16 class IHC_coefficients{
Ulf@503 17 public:
Ulf@503 18 IHC_coefficients(IHC_parameters*, float, int);
Ulf@503 19
Ulf@503 20 float saturation_output_;
Ulf@503 21
Ulf@503 22 private:
Ulf@579 23
Ulf@503 24 };
Ulf@503 25
Ulf@503 26 #endif /* IHC_H_ */