Mercurial > hg > aimc
annotate src/IHC.h @ 480:5def66bf228f carfac_cpp
(none)
author | Ulf.Hammarqvist@gmail.com |
---|---|
date | Wed, 28 Mar 2012 17:20:06 +0000 |
parents | 7eba2f13aa13 |
children | cad69634b411 |
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@477 | 26 IHC_coefficients(); |
Ulf@477 | 27 virtual ~IHC_coefficients(); |
Ulf@477 | 28 }; |
Ulf@477 | 29 |
Ulf@477 | 30 #endif /* IHC_H_ */ |