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