annotate branches/carfac_cpp/src/CARFAC.h @ 538:81b01c88a257

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