00001 /* 00002 * Copyright (c) 2004 MUSIC TECHNOLOGY GROUP (MTG) 00003 * UNIVERSITAT POMPEU FABRA 00004 * 00005 * 00006 * This program is free software; you can redistribute it and/or modify 00007 * it under the terms of the GNU General Public License as published by 00008 * the Free Software Foundation; either version 2 of the License, or 00009 * (at your option) any later version. 00010 * 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License 00017 * along with this program; if not, write to the Free Software 00018 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00019 * 00020 */ 00021 00022 #include "FundFreqDetectConfig.hxx" 00023 00024 namespace CLAM 00025 { 00026 /* The Configuration object has at least to have a name */ 00027 00028 void FundFreqDetectConfig::DefaultInit() 00029 { 00030 AddAll(); 00031 /* All Attributes are added */ 00032 UpdateData(); 00033 /* Set default values */ 00034 DefaultValues(); 00035 } 00036 00037 void FundFreqDetectConfig::DefaultValues() 00038 { 00039 SetReferenceFundFreq(1000); 00040 SetLowestFundFreq(35); 00041 SetHighestFundFreq(1500); // was 2000 00042 SetMaxCandMagDiff(30); 00043 SetMaxFundFreqError(10);//was 10, just testing 00044 SetNInt(5); 00045 SetPMp(0.5); 00046 SetPMq(TData(1.4)); 00047 SetPMr(TData(0.5)); 00048 SetMPp(0.5); 00049 SetMPq(TData(1.4)); 00050 SetMPr(0.5); 00051 SetPMnPeaks(10); 00052 SetMPnPeaks(10); 00053 SetNMaxCandidates(40); 00054 SetPMCont(1.0); 00055 SetMPCont(1.0); 00056 } 00057 00058 00059 } 00060