Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itkMultipleValuedNonLinearOptimizer.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkMultipleValuedNonLinearOptimizer.h,v $
00005   Language:  C++
00006   Date:      $Date: 2002/03/07 00:20:11 $
00007   Version:   $Revision: 1.17 $
00008 
00009   Copyright (c) 2002 Insight Consortium. All rights reserved.
00010   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
00011 
00012      This software is distributed WITHOUT ANY WARRANTY; without even 
00013      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00014      PURPOSE.  See the above copyright notices for more information.
00015 
00016 =========================================================================*/
00017 #ifndef __itkMultipleValuedNonLinearOptimizer_h
00018 #define __itkMultipleValuedNonLinearOptimizer_h
00019 
00020 #include "itkNonLinearOptimizer.h"
00021 #include "itkArray2D.h"
00022 
00023 namespace itk
00024 {
00025   
00032 class ITK_EXPORT MultipleValuedNonLinearOptimizer : 
00033         public NonLinearOptimizer 
00034 {
00035 public:
00037   typedef MultipleValuedNonLinearOptimizer  Self;
00038   typedef NonLinearOptimizer                Superclass;
00039   typedef SmartPointer<Self>                Pointer;
00040   typedef SmartPointer<const Self>          ConstPointer;
00041   
00043   itkNewMacro(Self);
00044   
00046   itkTypeMacro( MultipleValuedNonLinearOptimizer, NonLinearOptimizer );
00047 
00050   typedef Superclass::ParametersType        ParametersType;
00051 
00055   typedef Array<double>                     MeasureType;
00056 
00060   typedef Array2D<double>                   DerivativeType;
00061 
00062 protected:
00063   MultipleValuedNonLinearOptimizer();
00064   virtual ~MultipleValuedNonLinearOptimizer() {};
00065 
00066 private:
00067   MultipleValuedNonLinearOptimizer(const Self&); //purposely not implemented
00068   void operator=(const Self&); //purposely not implemented
00069   
00070 };
00071 
00072 } // end namespace itk
00073 
00074 
00075 
00076 #endif
00077 
00078 
00079 

Generated at Fri May 21 01:15:05 2004 for ITK by doxygen 1.2.15 written by Dimitri van Heesch, © 1997-2000