From: Bruno Date: Wed, 10 Feb 2021 13:34:06 +0000 (-0500) Subject: Added more descriptive comments X-Git-Tag: v9.3.0-rc1~468^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d708a8125193340773810801384fae5afbe41f17;p=dealii.git Added more descriptive comments --- 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; };