Mercurial > hg > aimc
view branches/carfac_cpp/src/CARFAC.h @ 541:da49bc37a6dd
(none)
author | Ulf.Hammarqvist@gmail.com |
---|---|
date | Wed, 28 Mar 2012 17:20:06 +0000 |
parents | 750075ee8e3a |
children | c666e8e0696a |
line wrap: on
line source
#ifndef CARFAC_H_ #define CARFAC_H_ #include "CAR.h" #include "IHC.h" #include "AGC.h" class CARFAC{ public: CARFAC(int, CAR_parameters*, IHC_parameters*, AGC_parameters*, float, float); virtual ~CARFAC(); CAR_coefficients* CAR_coeffs; CAR_parameters* CAR_params; IHC_coefficients* IHC_coeffs; IHC_parameters* IHC_params; AGC_coefficients* AGC_coeffs; AGC_parameters* AGC_params; }; #endif /* CARFAC_H_ */