annotate src/CARFAC.h @ 483:3673e3e67bab carfac_cpp

style
author Ulf.Hammarqvist@gmail.com
date Thu, 29 Mar 2012 19:43:36 +0000
parents 83e813152671
children 715fc47a965e
rev   line source
Ulf@477 1 #ifndef CARFAC_H_
Ulf@477 2 #define CARFAC_H_
Ulf@477 3
Ulf@477 4 #include "CAR.h"
Ulf@477 5 #include "IHC.h"
Ulf@477 6 #include "AGC.h"
Ulf@477 7
Ulf@478 8 class CARFAC{
Ulf@477 9 public:
Ulf@483 10 CARFAC(int, CAR_parameters*, IHC_parameters*, AGC_parameters*, float, float);
Ulf@483 11 virtual ~CARFAC();
Ulf@477 12
Ulf@483 13 CAR_coefficients* car_coeffs_;
Ulf@483 14 CAR_parameters* car_params_;
Ulf@477 15
Ulf@483 16 IHC_coefficients* ihc_coeffs_;
Ulf@483 17 IHC_parameters* ihc_params_;
Ulf@477 18
Ulf@483 19 AGC_coefficients* agc_coeffs_;
Ulf@483 20 AGC_parameters* agc_params_;
Ulf@477 21 };
Ulf@477 22
Ulf@477 23 #endif /* CARFAC_H_ */