SinTrackingConfig.hxx
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef _SinTrackingConfig_
00023 #define _SinTrackingConfig_
00024 #include <typeinfo>
00025
00026 #include "ProcessingConfig.hxx"
00027
00028 namespace CLAM {
00029
00033 class SinTrackingConfig: public ProcessingConfig
00034 {
00035 public:
00036 DYNAMIC_TYPE_USING_INTERFACE (SinTrackingConfig, 3,ProcessingConfig);
00038 DYN_ATTRIBUTE (0, public, TData, Threshold);
00040 DYN_ATTRIBUTE (1, public, TSize, nMaxSines);
00045 DYN_ATTRIBUTE (2, public, bool, IsHarmonic);
00046
00047 void DefaultInit();
00048 void DefaultValues();
00049 };
00050
00051 }
00052
00053 #endif
00054