From: Rene Gassmoeller Date: Tue, 20 Feb 2024 18:34:02 +0000 (-0500) Subject: Make indent X-Git-Tag: relicensing~9^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=785ba545142be8497cfb0ff95f13e2795f9ae57e;p=dealii.git Make indent --- diff --git a/examples/step-68/step-68.cc b/examples/step-68/step-68.cc index 12214e9661..aeeb38fb9a 100644 --- a/examples/step-68/step-68.cc +++ b/examples/step-68/step-68.cc @@ -532,7 +532,7 @@ namespace Step68 for (unsigned int particle_index = 0; particle != pic.end(); ++particle, ++particle_index) { - Point &particle_location = particle->get_location(); + Point &particle_location = particle->get_location(); const Tensor<1, dim> &particle_velocity = evaluator.get_value(particle_index); particle_location += particle_velocity * dt; diff --git a/include/deal.II/particles/particle_accessor.h b/include/deal.II/particles/particle_accessor.h index 267d5c10cb..da079889df 100644 --- a/include/deal.II/particles/particle_accessor.h +++ b/include/deal.II/particles/particle_accessor.h @@ -160,7 +160,7 @@ namespace Particles * Get read- and write-access to the location of this particle. * Note that changing the location does not check * whether this is a valid location in the simulation domain. - * + * * @note In parallel programs, the ParticleHandler class stores particles * on both the locally owned cells, as well as on ghost cells. The * particles on the latter are *copies* of particles owned on other diff --git a/include/deal.II/particles/particle_handler.h b/include/deal.II/particles/particle_handler.h index 672a116c37..473f6a13b8 100644 --- a/include/deal.II/particles/particle_handler.h +++ b/include/deal.II/particles/particle_handler.h @@ -1342,7 +1342,7 @@ namespace Particles for (auto &p : *this) { Point &position = p.get_location(); - const auto id = p.get_id(); + const auto id = p.get_id(); if (displace_particles) for (unsigned int i = 0; i < spacedim; ++i) diff --git a/tests/performance/timing_step_68.cc b/tests/performance/timing_step_68.cc index 0caa517841..69221ff747 100644 --- a/tests/performance/timing_step_68.cc +++ b/tests/performance/timing_step_68.cc @@ -317,7 +317,7 @@ namespace Step68 for (unsigned int particle_index = 0; particle != pic.end(); ++particle, ++particle_index) { - Point &particle_location = particle->get_location(); + Point &particle_location = particle->get_location(); const Tensor<1, dim> &particle_velocity = evaluator.get_value(particle_index); particle_location += particle_velocity * dt;