view 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
line wrap: on
line source
#ifndef IHC_H_
#define IHC_H_

// not sure how to best deal with the "three style" IHC - ulha
class IHC_parameters {
public:
	IHC_parameters();
	virtual ~IHC_parameters();

	float tau_lpf;
	float tau1_out;
	float tau1_in;
	float tau2_out;
	float tau2_in;
};

class IHC_coefficients {
public:
	IHC_coefficients();
	virtual ~IHC_coefficients();
};

#endif /* IHC_H_ */