Mercurial > hg > aimc
annotate 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 |
rev | line source |
---|---|
Ulf@477 | 1 #ifndef IHC_H_ |
Ulf@477 | 2 #define IHC_H_ |
Ulf@477 | 3 |
Ulf@479 | 4 // not sure how to best deal with the "three style" IHC - ulha |
Ulf@477 | 5 class IHC_parameters { |
Ulf@477 | 6 public: |
Ulf@480 | 7 IHC_parameters() |
Ulf@480 | 8 { |
Ulf@480 | 9 tau_lpf = 0.000080; |
Ulf@480 | 10 tau1_out = 0.020; |
Ulf@480 | 11 tau1_in = 0.020; |
Ulf@480 | 12 tau2_out = 0.005; |
Ulf@480 | 13 tau2_in = 0.005; |
Ulf@480 | 14 } |
Ulf@480 | 15 virtual ~IHC_parameters(){} |
Ulf@479 | 16 |
Ulf@479 | 17 float tau_lpf; |
Ulf@479 | 18 float tau1_out; |
Ulf@479 | 19 float tau1_in; |
Ulf@479 | 20 float tau2_out; |
Ulf@479 | 21 float tau2_in; |
Ulf@477 | 22 }; |
Ulf@477 | 23 |
Ulf@477 | 24 class IHC_coefficients { |
Ulf@477 | 25 public: |
Ulf@481 | 26 IHC_coefficients(IHC_parameters*, float, int); |
Ulf@477 | 27 virtual ~IHC_coefficients(); |
Ulf@481 | 28 private: |
Ulf@481 | 29 IHC_coefficients(){} |
Ulf@477 | 30 }; |
Ulf@477 | 31 |
Ulf@477 | 32 #endif /* IHC_H_ */ |