Mercurial > hg > aimc
view src/CARFAC.h @ 481:cad69634b411 carfac_cpp
(none)
author | Ulf.Hammarqvist@gmail.com |
---|---|
date | Wed, 28 Mar 2012 20:24:28 +0000 |
parents | 83e813152671 |
children | 3673e3e67bab |
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_ */