From d708a8125193340773810801384fae5afbe41f17 Mon Sep 17 00:00:00 2001 From: Bruno Date: Wed, 10 Feb 2021 08:34:06 -0500 Subject: [PATCH] Added more descriptive comments --- include/deal.II/particles/partitioner.h | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/include/deal.II/particles/partitioner.h b/include/deal.II/particles/partitioner.h index f4361a3ae1..89b2d7a562 100644 --- a/include/deal.II/particles/partitioner.h +++ b/include/deal.II/particles/partitioner.h @@ -99,14 +99,18 @@ namespace Particles ghost_particles_iterators; /** - * Vector of char that is used to organize the particle information to be - * sent to other processors + * Temporary storage that holds the data of the particles to be sent + * to other processors to update the ghost particles information + * in update_ghost_particles() + * send_recv_particles_properties_and_location() */ std::vector send_data; /** - * Vector of char that is used to organize the particle information to - * received from other processors + * Temporary storage that holds the data of the particles to receive + * the ghost particles information from other processors in + * in update_ghost_particles() + * send_recv_particles_properties_and_location() */ std::vector recv_data; }; -- 2.39.5