annotate branches/carfac_cpp/src/CARFAC.h @ 539:750075ee8e3a

rewrote CARFAC to have pointers as members
author Ulf.Hammarqvist@gmail.com
date Wed, 28 Mar 2012 16:08:11 +0000
parents 81b01c88a257
children c666e8e0696a
rev   line source
Ulf@538 1 #ifndef CARFAC_H_
Ulf@538 2 #define CARFAC_H_
Ulf@538 3
Ulf@538 4 #include "CAR.h"
Ulf@538 5 #include "IHC.h"
Ulf@538 6 #include "AGC.h"
Ulf@538 7
Ulf@539 8 class CARFAC{
Ulf@538 9 public:
Ulf@539 10 CARFAC(int, CAR_parameters*, IHC_parameters*, AGC_parameters*, float, float);
Ulf@538 11 virtual ~CARFAC();
Ulf@538 12
Ulf@539 13 CAR_coefficients* CAR_coeffs;
Ulf@539 14 CAR_parameters* CAR_params;
Ulf@538 15
Ulf@539 16 IHC_coefficients* IHC_coeffs;
Ulf@539 17 IHC_parameters* IHC_params;
Ulf@538 18
Ulf@539 19 AGC_coefficients* AGC_coeffs;
Ulf@539 20 AGC_parameters* AGC_params;
Ulf@538 21 };
Ulf@538 22
Ulf@538 23 #endif /* CARFAC_H_ */