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

itkFEMLoadImplementationGenericBodyLoad.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkFEMLoadImplementationGenericBodyLoad.h,v $
00005   Language:  C++
00006   Date:      $Date: 2003/09/10 14:29:43 $
00007   Version:   $Revision: 1.6 $
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 
00018 #ifndef __itkFEMLoadImplementationGenericBodyLoad_h
00019 #define __itkFEMLoadImplementationGenericBodyLoad_h
00020 
00021 #include "itkFEMElementBase.h"
00022 #include "itkFEMLoadGrav.h"
00023 
00024 namespace itk {
00025 namespace fem {
00026 
00027 
00028 
00047 class LoadImplementationGenericBodyLoad
00048 {
00049 public:
00050 
00058   template<class TElementClassConstPointer>
00059   static void HandleLoad(TElementClassConstPointer e, Element::LoadPointer l, Element::VectorType& Fe)
00060   {
00061     // Check if we really got a LoadGrav object
00062     LoadGrav::Pointer l0=dynamic_cast<LoadGrav*>(&*l);
00063     if ( !l0 )
00064     {
00065       // Passed load object was not of class LoadGrav!
00066       throw FEMException(__FILE__, __LINE__, "FEM error");
00067     }
00069 
00070     // Statically cast the passed pointer to the element base class and
00071     // call the real load implementation with the correct pointer types.
00072     // If cast fails, the passed pointer was of incompatible class.
00073     Implementation(static_cast<Element::ConstPointer>(e),l0,Fe);
00074   }
00075 
00076 private:
00085   static void Implementation(Element::ConstPointer element, LoadGrav::Pointer load, Element::VectorType& Fe);
00086 
00090   LoadImplementationGenericBodyLoad();
00091 };
00092 
00093 
00094 
00095 
00096 #ifdef _MSC_VER 
00097 // Declare a static dummy function to prevent a MSVC 6.0 SP5 from crashing.
00098 // I have no idea why things don't work when this is not declared, but it
00099 // looks like this declaration makes compiler forget about some of the
00100 // troubles it has with templates.
00101 static void Dummy( void );
00102 #endif // #ifdef _MSC_VER
00103 
00104 }} // end namespace itk::fem
00105 
00106 #endif // #ifndef __itkFEMLoadImplementationGenericBodyLoad_h
00107 

Generated at Tue Jul 29 20:00:55 2008 for ITK by doxygen 1.5.1 written by Dimitri van Heesch, © 1997-2000