ESyS-Particle  4.0.1
HexagBlock.hpp
00001 
00002 //                                                         //
00003 // Copyright (c) 2003-2011 by The University of Queensland //
00004 // Earth Systems Science Computational Centre (ESSCC)      //
00005 // http://www.uq.edu.au/esscc                              //
00006 //                                                         //
00007 // Primary Business: Brisbane, Queensland, Australia       //
00008 // Licensed under the Open Software License version 3.0    //
00009 // http://www.opensource.org/licenses/osl-3.0.php          //
00010 //                                                         //
00012 
00013 
00014 #ifndef ESYS_LSMHEXAGBLOCK_HPP
00015 #define ESYS_LSMHEXAGBLOCK_HPP
00016 
00017 namespace esys
00018 {
00019   namespace lsm
00020   {
00021     template <typename TmplParticle>
00022     HexagBlock<TmplParticle>::HexagBlock(
00023       unsigned int numX,
00024       unsigned int numY,
00025       unsigned int numZ,
00026       double radius,
00027       ClosePackOrientation orientation
00028     )
00029       : Inherited(numX, numY, numZ, radius, orientation)
00030     {
00031     }
00032   }
00033 }
00034 
00035 #endif