Alamo
Nothing.H
Go to the documentation of this file.
1 #ifndef BC_NOTHING_H_
2 #define BC_NOTHING_H_
3 
4 #include <AMReX_ParallelDescriptor.H>
5 #include <AMReX_ParmParse.H>
6 #include <AMReX_BCRec.H>
7 #include <AMReX_PhysBCFunct.H>
8 
9 namespace BC
10 {
11 class Nothing
12  : public BC<Set::Scalar>
13 {
14 
15 public:
16  Nothing () {};
17  virtual void FillBoundary (amrex::BaseFab<Set::Scalar>&,
18  const amrex::Box &,
19  int, int, int,
20  amrex::Real,
21  Orientation /*face*/ = Orientation::All,
22  const amrex::Mask * /*mask*/ = nullptr) override {};
23 
24  virtual amrex::BCRec GetBCRec() override {return amrex::BCRec();}
25 };
26 }
27 #endif
BC::Nothing::GetBCRec
virtual amrex::BCRec GetBCRec() override
Definition: Nothing.H:24
BC::All
@ All
Definition: BC.H:33
BC::Nothing::FillBoundary
virtual void FillBoundary(amrex::BaseFab< Set::Scalar > &, const amrex::Box &, int, int, int, amrex::Real, Orientation=Orientation::All, const amrex::Mask *=nullptr) override
Definition: Nothing.H:17
BC::Nothing
Definition: Nothing.H:11
BC::Orientation
Orientation
Definition: BC.H:32
BC
Collection of boundary condition (BC) objects.
Definition: BC.cpp:4
BC::Nothing::Nothing
Nothing()
Definition: Nothing.H:16