From 843055261ec7b492f86df9f3a53a5855dfd472b4 Mon Sep 17 00:00:00 2001 From: atmyers Date: Wed, 3 Apr 2024 13:05:21 -0700 Subject: [PATCH] Add Doxygen comments for the reserveData and resizeData methods of ParticleContainerBase. --- Src/Particle/AMReX_ParticleContainer.H | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Src/Particle/AMReX_ParticleContainer.H b/Src/Particle/AMReX_ParticleContainer.H index b258c584f3d..d3cc15adc4f 100644 --- a/Src/Particle/AMReX_ParticleContainer.H +++ b/Src/Particle/AMReX_ParticleContainer.H @@ -369,7 +369,18 @@ public: return (lev < m_particles.size()) ? m_particles[lev].size() : 0; } + /** + * \brief This reserves data in the vector of dummy MultiFabs used by + * the ParticleContainer for the maximum number of levels possible. + */ void reserveData () override; + + /** + * \brief This resizes the vector of dummy MultiFabs used by the + * ParticleContainer for the current number of levels and calls + * RedefineDummyMF on each level. Note that this must be done prior + * to using ParticleIterator. + */ void resizeData () override; void InitFromAsciiFile (const std::string& file, int extradata,