SDIFInConfig.cxx
Go to the documentation of this file.00001 #include "SDIFInConfig.hxx"
00002
00003 namespace CLAM
00004 {
00005
00006 void SDIFInConfig::DefaultInit()
00007 {
00008 AddRelativePeakIndices();
00009 AddFileName();
00010 AddEnableResidual();
00011 AddEnablePeakArray();
00012 AddEnableFundFreq();
00013 AddSpectralRange();
00014 AddMaxNumPeaks();
00015 UpdateData();
00016
00017
00018
00019 SetRelativePeakIndices(true);
00020
00021
00022
00023
00024 SetFileName( "nofile" );
00025 SetEnableResidual(true);
00026 SetEnablePeakArray(true);
00027 SetEnableFundFreq(true);
00028 SetSpectralRange(22050);
00029 SetMaxNumPeaks(100);
00030 }
00031
00032 }
00033
00034