root/old_code/2015linfty/mv_surface.hpp

/* [<][>][^][v][top][bottom][index][help] */
   1 /*********************************************************************
   2  *  mv_surface.hpp                                                   *
   3  *                                                                   *
   4  *  Defines auxiliar classes like a string vector with the correct   *
   5  *  names.                                                           *
   6  *                                                                   *
   7  *  Created by Christian Power on 19.06.14.                          *
   8  *  Copyright (c) 2014 Christian Power. All rights reserved.         *
   9  *                                                                   *
  10  *********************************************************************/
  11 
  12 #ifndef MV_SURFACE_HPP
  13 #define MV_SURFACE_HPP
  14 
  15 namespace BDF
  16 {
  17   struct  TimeProviderType
  18   {
  19     const double beginTime;
  20     const double endTime;
  21     const double femStepSize;
  22     const int femCounter;
  23     double time;
  24     //CAPG: do we really need this variable???
  25         
  26     TimeProviderType(double,double,double);
  27     // initialize beginTime, endTime, femStepSize;
  28     // calculates femCounter (== (endTime - beginTime)/ femStepSize)
  29     // sets time == beginTime
  30   };
  31 }
  32 
  33 //#include "mv_surface.hxx"  //include template related definitions
  34 
  35 #endif // #ifndef MV_SURFACE_HPP

/* [<][>][^][v][top][bottom][index][help] */