Mercurial > hg > aimc
diff trunk/carfac/SConstruct @ 685:d0612798f6de
Additional changes to C++ CARFAC on the basis of ronw's comments on r289. Moved CARFAC::Design to CARFAC::CARFAC and CARFAC::Reset(), moved carfac_common.h to common.h, CARFACDetect to carfac_util.h/cc, FloatArray and Float2dArray to ArrayX and ArrayXX, improved variable naming, made a start on improved commenting documentation.
| author | alexbrandmeyer |
|---|---|
| date | Tue, 04 Jun 2013 18:30:22 +0000 |
| parents | 49af9a8d5a53 |
| children | c3012b2943b2 |
line wrap: on
line diff
--- a/trunk/carfac/SConstruct Fri May 31 21:46:48 2013 +0000 +++ b/trunk/carfac/SConstruct Tue Jun 04 18:30:22 2013 +0000 @@ -51,20 +51,15 @@ env.MergeFlags(['-std=c++11']) carfac_sources = [ - 'agc_coeffs.h', - 'agc_params.h', - 'agc_state.h', - 'car_coeffs.h', + 'agc.h', + 'car.h', + 'ihc.h', 'carfac.cc', - 'carfac_common.cc', + 'common.h', + 'carfac_util.h', 'carfac_output.cc', - 'car_params.h', - 'car_state.h', 'ear.cc', - 'ihc_coeffs.h', - 'ihc_params.h', - 'ihc_state.h', - 'sai.cc', + 'sai.cc' ] env.Library(target = 'carfac', source = carfac_sources)
