ESyS-Particle  4.0.1
CubicBlockIterator.h
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_LSMCUBICBLOCKITERATOR_H
00015 #define ESYS_LSMCUBICBLOCKITERATOR_H
00016 
00017 #include "Foundation/BoundingBox.h"
00018 #include "Foundation/vec3.h"
00019 #include "Geometry/ClosePackIterator.h"
00020 #include "Geometry/Vec3L.h"
00021 
00022 namespace esys
00023 {
00024   namespace lsm
00025   {
00026     
00031     class CubicBlockIterator : public ClosePackIterator
00032     {
00033     public:
00034 
00038       inline CubicBlockIterator();
00039 
00049       inline CubicBlockIterator(
00050         int numI,
00051         int numJ,
00052         int numK,
00053         double sphereRadius,
00054         ClosePackOrientation orientation = DEFAULT_ORIENT
00055       );
00056     };
00057   }
00058 }
00059 
00060 #include "Geometry/CubicBlockIterator.hpp"
00061 
00062 #endif