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

itkDefaultStaticMeshTraits.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkDefaultStaticMeshTraits.h,v $
00005   Language:  C++
00006   Date:      $Date: 2008-10-07 09:09:39 $
00007   Version:   $Revision: 1.39 $
00008 
00009   Copyright (c) Insight Software 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 __itkDefaultStaticMeshTraits_h
00018 #define __itkDefaultStaticMeshTraits_h
00019 
00020 #include "itkCellInterface.h"
00021 #include "itkVectorContainer.h"
00022 #include "itkPoint.h"
00023 #include <set>
00024 
00025 namespace itk
00026 {
00027 
00053 template <
00054   typename TPixelType,
00055   unsigned int VPointDimension = 3,
00056   unsigned int VMaxTopologicalDimension = VPointDimension,
00057   typename TCoordRep = float,
00058   typename TInterpolationWeight = float,
00059   typename TCellPixelType = TPixelType
00060   >
00061 class DefaultStaticMeshTraits
00062 {
00063 public:
00065   typedef DefaultStaticMeshTraits  Self;
00066 
00068   typedef TPixelType              PixelType;
00069   typedef TCellPixelType          CellPixelType;
00070   typedef TCoordRep               CoordRepType;
00071   typedef TInterpolationWeight    InterpolationWeightType;
00072 
00074   itkStaticConstMacro(PointDimension, unsigned int, VPointDimension);
00075   itkStaticConstMacro(MaxTopologicalDimension, unsigned int,
00076                       VMaxTopologicalDimension);  
00078 
00081   typedef unsigned long  PointIdentifier;
00082 
00085   typedef unsigned long  CellIdentifier;
00086 
00090   typedef unsigned long  CellFeatureIdentifier;
00091 
00093   typedef Point< CoordRepType, VPointDimension >  PointType;
00094 
00097   typedef Point< CoordRepType, VPointDimension >  PointHashType;
00098 
00101   typedef VectorContainer< PointIdentifier , PointType >  PointsContainer;
00102 
00105   typedef std::set< CellIdentifier >            UsingCellsContainer;
00106 
00109   typedef itkMakeCellTraitsMacro                        CellTraits;
00110 
00113   typedef CellInterface< CellPixelType , CellTraits >   CellType;
00114   typedef typename CellType::CellRawPointer             CellRawPointer;
00115   typedef typename CellType::CellAutoPointer            CellAutoPointer;
00116 
00119   typedef VectorContainer< CellIdentifier , CellType *  >     CellsContainer;
00120 
00123   typedef std::set< CellIdentifier >     PointCellLinksContainer;
00124 
00127   typedef VectorContainer< PointIdentifier , PointCellLinksContainer >
00128         CellLinksContainer;
00129 
00132   typedef VectorContainer< PointIdentifier , PixelType > PointDataContainer;
00133 
00136   typedef VectorContainer< CellIdentifier , CellPixelType > CellDataContainer;
00137 
00138 };
00139 
00140 } // end namespace itk
00141 
00142 #endif
00143 

Generated at Wed Nov 5 21:04:16 2008 for ITK by doxygen 1.5.1 written by Dimitri van Heesch, © 1997-2000