Mercurial > hg > aimc
annotate src/CARFAC.h @ 482:ea17c0e4e740 carfac_cpp
(none)
author | Ulf.Hammarqvist@gmail.com |
---|---|
date | Wed, 28 Mar 2012 20:26:15 +0000 |
parents | 83e813152671 |
children | 3673e3e67bab |
rev | line source |
---|---|
Ulf@477 | 1 #ifndef CARFAC_H_ |
Ulf@477 | 2 #define CARFAC_H_ |
Ulf@477 | 3 |
Ulf@477 | 4 #include "CAR.h" |
Ulf@477 | 5 #include "IHC.h" |
Ulf@477 | 6 #include "AGC.h" |
Ulf@477 | 7 |
Ulf@478 | 8 class CARFAC{ |
Ulf@477 | 9 public: |
Ulf@478 | 10 CARFAC(int, CAR_parameters*, IHC_parameters*, AGC_parameters*, float, float); |
Ulf@477 | 11 virtual ~CARFAC(); |
Ulf@477 | 12 |
Ulf@478 | 13 CAR_coefficients* CAR_coeffs; |
Ulf@478 | 14 CAR_parameters* CAR_params; |
Ulf@477 | 15 |
Ulf@478 | 16 IHC_coefficients* IHC_coeffs; |
Ulf@478 | 17 IHC_parameters* IHC_params; |
Ulf@477 | 18 |
Ulf@478 | 19 AGC_coefficients* AGC_coeffs; |
Ulf@478 | 20 AGC_parameters* AGC_params; |
Ulf@477 | 21 }; |
Ulf@477 | 22 |
Ulf@477 | 23 #endif /* CARFAC_H_ */ |