ESyS-Particle  4.0.1
HexagBlock.hpp
1 
2 // //
3 // Copyright (c) 2003-2011 by The University of Queensland //
4 // Earth Systems Science Computational Centre (ESSCC) //
5 // http://www.uq.edu.au/esscc //
6 // //
7 // Primary Business: Brisbane, Queensland, Australia //
8 // Licensed under the Open Software License version 3.0 //
9 // http://www.opensource.org/licenses/osl-3.0.php //
10 // //
12 
13 
14 #ifndef ESYS_LSMHEXAGBLOCK_HPP
15 #define ESYS_LSMHEXAGBLOCK_HPP
16 
17 namespace esys
18 {
19  namespace lsm
20  {
21  template <typename TmplParticle>
22  HexagBlock<TmplParticle>::HexagBlock(
23  unsigned int numX,
24  unsigned int numY,
25  unsigned int numZ,
26  double radius,
27  ClosePackOrientation orientation
28  )
29  : Inherited(numX, numY, numZ, radius, orientation)
30  {
31  }
32  }
33 }
34 
35 #endif