00001 // ------------------------------------------------------------------------- 00002 // HC.h - This header file contains the public data structure 00003 // definitions for the Hinton-Campbell smoothing procedure 00004 // ------------------------------------------------------------------------- 00005 // 00006 // $Author: joaquim $ 00007 // $Revision: 1.1 $ 00008 // $Date: 1998/02/16 20:21:11 $ 00009 // $State: Exp $ 00010 // 00011 // ------------------------------------------------------------------------- 00012 00013 #ifndef _HC_H 00014 #define _HC_H 00015 00016 #include <stdio.h> 00017 #include "gbldefs.h" 00018 #include "smooth.h" 00019 00020 // ------------------------------------------------------------------------- 00021 // Hinton-Campbell smoothing class: 00022 // 00023 class cSmoothHC : public cSmooth 00024 { 00025 public: 00026 cSmoothHC ( void ); 00027 ~cSmoothHC ( void ); 00028 void SmoothTensor( sTensor * ); 00029 }; 00030 00031 #endif