diff options
Diffstat (limited to 'Source/Particles/Resampling/ResamplingTrigger.H')
-rw-r--r-- | Source/Particles/Resampling/ResamplingTrigger.H | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Particles/Resampling/ResamplingTrigger.H b/Source/Particles/Resampling/ResamplingTrigger.H index ce89adab8..42c3902c2 100644 --- a/Source/Particles/Resampling/ResamplingTrigger.H +++ b/Source/Particles/Resampling/ResamplingTrigger.H @@ -33,7 +33,7 @@ public: * \brief Constructor of the ResamplingTrigger class. Reads the resampling trigger parameters * from the input file. */ - ResamplingTrigger (const std::string species_name); + ResamplingTrigger (std::string species_name); /** * \brief A method that returns true if resampling should be done for the considered species @@ -42,7 +42,7 @@ public: * @param[in] timestep the current timestep * @param[in] global_numparts the total number of particles of the considered species */ - bool triggered (const int timestep, const amrex::Real global_numparts) const; + bool triggered (int timestep, amrex::Real global_numparts) const; /** * \brief A method that initializes the member m_global_numcells. It is only called once (the |