BISICLES AMR ice sheet model  0.9
ReflectGhostCells.H
Go to the documentation of this file.
1 #ifdef CH_LANG_CC
2 /*
3 * _______ __
4 * / ___/ / ___ __ _ / / ___
5 * / /__/ _ \/ _ \/ V \/ _ \/ _ \
6 * \___/_//_/\___/_/_/_/_.__/\___/
7 * Please refer to Copyright.txt, in Chombo's root directory.
8 */
9 #endif
10 
11 //
12 // ReflectGhostCells.H
13 // ============
14 //
15 // Simple function to fill domain ghost cells with reflected values
16 //
17 
18 #ifndef _REFLECTGHOSTCELLS_H_
19 #define _REFLECTGHOSTCELLS_H_
20 
21 #include "ProblemDomain.H"
22 #include "LevelData.H"
23 #include "FArrayBox.H"
24 
25 #include "NamespaceHeader.H"
26 
27 void
28 ReflectGhostCells(LevelData<FArrayBox>& a_phi,
29  const ProblemDomain& a_domain,
30  const int a_dir,
31  const Side::LoHiSide a_side);
32 
33 void
34 ReflectGhostCells(FArrayBox& a_phi,
35  const ProblemDomain& a_domain,
36  const IntVect& a_ghostVect,
37  const int dir,
38  const Side::LoHiSide a_side);
39 
40 #include "NamespaceFooter.H"
41 
42 #endif
void ReflectGhostCells(LevelData< FArrayBox > &a_phi, const ProblemDomain &a_domain, const int a_dir, const Side::LoHiSide a_side)
Definition: ReflectGhostCells.cpp:15