annotate src/IHC.h @ 479:7eba2f13aa13 carfac_cpp

stubilub lolipop
author Ulf.Hammarqvist@gmail.com
date Wed, 28 Mar 2012 16:44:46 +0000
parents 83e813152671
children 5def66bf228f
rev   line source
Ulf@477 1 #ifndef IHC_H_
Ulf@477 2 #define IHC_H_
Ulf@477 3
Ulf@479 4 // not sure how to best deal with the "three style" IHC - ulha
Ulf@477 5 class IHC_parameters {
Ulf@477 6 public:
Ulf@477 7 IHC_parameters();
Ulf@477 8 virtual ~IHC_parameters();
Ulf@479 9
Ulf@479 10 float tau_lpf;
Ulf@479 11 float tau1_out;
Ulf@479 12 float tau1_in;
Ulf@479 13 float tau2_out;
Ulf@479 14 float tau2_in;
Ulf@477 15 };
Ulf@477 16
Ulf@477 17 class IHC_coefficients {
Ulf@477 18 public:
Ulf@477 19 IHC_coefficients();
Ulf@477 20 virtual ~IHC_coefficients();
Ulf@477 21 };
Ulf@477 22
Ulf@477 23 #endif /* IHC_H_ */