aboutsummaryrefslogtreecommitdiff
path: root/Source/WarpX.H
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WarpX.H')
-rw-r--r--Source/WarpX.H20
1 files changed, 10 insertions, 10 deletions
diff --git a/Source/WarpX.H b/Source/WarpX.H
index 8e8085024..6f071bbb6 100644
--- a/Source/WarpX.H
+++ b/Source/WarpX.H
@@ -246,7 +246,7 @@ public:
const amrex::MultiFab& getBfield_fp (int lev, int direction) {return *Bfield_fp[lev][direction];}
const amrex::MultiFab& getrho_fp (int lev) {return *rho_fp[lev];}
const amrex::MultiFab& getF_fp (int lev) {return *F_fp[lev];}
- bool DoPML () const {return do_pml;};
+ bool DoPML () const {return do_pml;}
/** get low-high-low-high-... vector for each direction indicating if mother grid PMLs are enabled */
std::vector<bool> getPMLdirections() const;
@@ -405,8 +405,8 @@ public:
void SyncCurrent ();
void SyncRho ();
- amrex::Vector<int> getnsubsteps () const {return nsubsteps;};
- int getnsubsteps (int lev) const {return nsubsteps[lev];};
+ amrex::Vector<int> getnsubsteps () const {return nsubsteps;}
+ int getnsubsteps (int lev) const {return nsubsteps[lev];}
amrex::Vector<int> getistep () const {return istep;}
int getistep (int lev) const {return istep[lev];}
void setistep (int lev, int ii) {istep[lev] = ii;}
@@ -417,9 +417,9 @@ public:
void sett_new (int lev, amrex::Real time) {t_new[lev] = time;}
amrex::Vector<amrex::Real> getdt () const {return dt;}
amrex::Real getdt (int lev) const {return dt[lev];}
- amrex::Real getmoving_window_x() const {return moving_window_x;};
- bool getis_synchronized() const {return is_synchronized;};
- void setplot_rho (bool a_plot_rho) {plot_rho = a_plot_rho;};
+ amrex::Real getmoving_window_x() const {return moving_window_x;}
+ bool getis_synchronized() const {return is_synchronized;}
+ void setplot_rho (bool a_plot_rho) {plot_rho = a_plot_rho;}
int maxStep () const {return max_step;}
amrex::Real stopTime () const {return stop_time;}
@@ -471,10 +471,10 @@ public:
void ComputeDivE(amrex::MultiFab& divE, const int lev);
- const amrex::IntVect getngE() const { return guard_cells.ng_alloc_EB; };
- const amrex::IntVect getngF() const { return guard_cells.ng_alloc_F; };
- const amrex::IntVect getngExtra() const { return guard_cells.ng_Extra; };
- const amrex::IntVect getngUpdateAux() const { return guard_cells.ng_UpdateAux; };
+ const amrex::IntVect getngE() const { return guard_cells.ng_alloc_EB; }
+ const amrex::IntVect getngF() const { return guard_cells.ng_alloc_F; }
+ const amrex::IntVect getngExtra() const { return guard_cells.ng_Extra; }
+ const amrex::IntVect getngUpdateAux() const { return guard_cells.ng_UpdateAux; }
void ComputeSpaceChargeField (bool const reset_fields);
void AddSpaceChargeField (WarpXParticleContainer& pc);