Skip to content
Snippets Groups Projects
Commit be06d3c9 authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Adding missing files

parent 30be3bd3
No related branches found
No related tags found
No related merge requests found
/*
* Gboxes.hpp
*
* Created on: May 2, 2017
* Author: i-bird
*/
#ifndef OPENFPM_IO_SRC_UTIL_GBOXES_HPP_
#define OPENFPM_IO_SRC_UTIL_GBOXES_HPP_
/*! \brief This structure store the Box that define the domain inside the Ghost + domain box
*
\verbatim
(Ghost + Domain)
+------------------+
| |
| +------------+ <---------- (Domain)
| | | |
| | Domain | |
| | Box | |
| | | |
| | | |
| +------------+ |
| |
+------------------+
(0,0) local coordinate ---> ( x, y )
\endverbatim
*
* * Domain
*
* \tparam dim dimensionality
*
*/
template<unsigned int dim>
struct GBoxes
{
//! Ghost + Domain ghost
Box<dim,long int> GDbox;
//! Domain box
Box<dim,long int> Dbox;
//! origin of GDbox in global grid coordinates
Point<dim,long int> origin;
};
#endif /* OPENFPM_IO_SRC_UTIL_GBOXES_HPP_ */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment