QGpCompatibility/CompatHodoChrone.h
Go to the documentation of this file.
00001 /***************************************************************************
00002 **
00003 **  This file is part of QGpCompatibility.
00004 **
00005 **  This file may be distributed and/or modified under the terms of the
00006 **  GNU General Public License version 2 or 3 as published by the Free
00007 **  Software Foundation and appearing in the file LICENSE.GPL included
00008 **  in the packaging of this file.
00009 **
00010 **  This file is distributed in the hope that it will be useful, but WITHOUT
00011 **  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00012 **  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
00013 **  more details.
00014 **
00015 **  You should have received a copy of the GNU General Public License
00016 **  along with this program. If not, see <http://www.gnu.org/licenses/>.
00017 **
00018 **  See http://www.geopsy.org for more information.
00019 **
00020 **  Created : 2004-09-17
00021 **  Authors:
00022 **    Marc Wathelet
00023 **    Marc Wathelet (ULg, Liège, Belgium)
00024 **    Marc Wathelet (LGIT, Grenoble, France)
00025 **
00026 ***************************************************************************/
00027 
00028 #ifndef COMPATHODOCHRONE_H
00029 #define COMPATHODOCHRONE_H
00030 
00031 #include "CompatMultiModalCurves.h"
00032 
00033 namespace QGpCompatibility {
00034 
00035 #define CompatHODOCHRONE_INVALID_VALUE -1
00036 
00037 class CompatSubSignalPool;
00038 
00039 class CompatHodoChrone :  public CompatMultiModalCurves
00040 {
00041 public:
00043   CompatHodoChrone();
00045   CompatHodoChrone(int modesCount,int omegasCount);
00047   CompatHodoChrone(const CompatMultiModalFrequency *o);
00049   CompatHodoChrone(const CompatMultiModalFrequency *o,int modesCount);
00051   CompatHodoChrone(const CompatMultiModalCurves *o);
00053   CompatHodoChrone(const CompatMultiModalCurves * o,int modesCount);
00054 };
00055 
00056 inline CompatHodoChrone::CompatHodoChrone(): CompatMultiModalCurves()
00057 {
00058   TRACE;
00059   _freq2omega=1.0;
00060 }
00061 
00062 inline CompatHodoChrone::CompatHodoChrone(int modesCount,int omegasCount)
00063   : CompatMultiModalCurves(modesCount, omegasCount)
00064 {
00065   TRACE;
00066   _freq2omega=1.0;  
00067 }
00068 
00069 inline CompatHodoChrone::CompatHodoChrone(const CompatMultiModalFrequency *o)
00070   : CompatMultiModalCurves(o)
00071 {
00072   TRACE;
00073   _freq2omega=1.0;  
00074 }
00075 
00076 inline CompatHodoChrone::CompatHodoChrone(const CompatMultiModalFrequency *o,int modesCount)
00077   : CompatMultiModalCurves(o, modesCount)
00078 {
00079   TRACE;
00080   _freq2omega=1.0;  
00081 }
00082 
00083 inline CompatHodoChrone::CompatHodoChrone(const CompatMultiModalCurves *o)
00084   : CompatMultiModalCurves(o)
00085 {
00086   TRACE;
00087   _freq2omega=1.0;  
00088 }
00089 
00090 inline CompatHodoChrone::CompatHodoChrone(const CompatMultiModalCurves * o,int modesCount)
00091   : CompatMultiModalCurves(o, modesCount, CompatHODOCHRONE_INVALID_VALUE)
00092 {
00093   TRACE;
00094   _freq2omega=1.0;  
00095 }
00096 
00097 } // namespace QGpCompatibility
00098 
00099 #endif // COMPATHODOCHRONE_H
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines