diff --git a/apps/benchmarks/ForcesOnSphereNearPlaneInShearFlow/ForcesOnSphereNearPlaneInShearFlow.cpp b/apps/benchmarks/ForcesOnSphereNearPlaneInShearFlow/ForcesOnSphereNearPlaneInShearFlow.cpp
index 6f3f8a2f4455344b5c0cabc59a1b66852435e448..ccb7cc6318cc9838efae0063809658005c5564f8 100644
--- a/apps/benchmarks/ForcesOnSphereNearPlaneInShearFlow/ForcesOnSphereNearPlaneInShearFlow.cpp
+++ b/apps/benchmarks/ForcesOnSphereNearPlaneInShearFlow/ForcesOnSphereNearPlaneInShearFlow.cpp
@@ -20,6 +20,8 @@
 
 #include "blockforest/Initialization.h"
 #include "blockforest/communication/UniformBufferedScheme.h"
+#include <blockforest/loadbalancing/StaticCurve.h>
+#include <blockforest/SetupBlockForest.h>
 
 #include "boundary/all.h"
 
diff --git a/apps/benchmarks/PeriodicGranularGas/PeriodicGranularGas.cpp b/apps/benchmarks/PeriodicGranularGas/PeriodicGranularGas.cpp
index 1866ca5c59984bbf053fa65cf729059733ec402d..eed7c84b3eadcbf60675c7563e6c8c767a1e19cb 100644
--- a/apps/benchmarks/PeriodicGranularGas/PeriodicGranularGas.cpp
+++ b/apps/benchmarks/PeriodicGranularGas/PeriodicGranularGas.cpp
@@ -23,6 +23,7 @@
 
 #include <core/Abort.h>
 #include <core/Environment.h>
+#include <core/math/Random.h>
 #include <core/grid_generator/SCIterator.h>
 #include <core/logging/Logging.h>
 #include <core/waLBerlaBuildInfo.h>
@@ -253,4 +254,4 @@ int main( int argc, char ** argv )
 int main( int argc, char* argv[] )
 {
   return walberla::main( argc, argv );
-}
\ No newline at end of file
+}
diff --git a/apps/showcases/BidisperseFluidizedBed/BidisperseFluidizedBedDPM.cpp b/apps/showcases/BidisperseFluidizedBed/BidisperseFluidizedBedDPM.cpp
index 44b990d1140c6d5929562e9f42c0c94a20952a3b..c2f3e7a12665bf780b9ff81febd5eddf22818a20 100644
--- a/apps/showcases/BidisperseFluidizedBed/BidisperseFluidizedBedDPM.cpp
+++ b/apps/showcases/BidisperseFluidizedBed/BidisperseFluidizedBedDPM.cpp
@@ -29,6 +29,8 @@
 #include "core/grid_generator/SCIterator.h"
 #include "core/logging/all.h"
 
+#include <domain_decomposition/SharedSweep.h>
+
 #include "field/AddToStorage.h"
 #include "field/communication/PackInfo.h"
 #include "field/distributors/all.h"
diff --git a/apps/tutorials/pe/01_ConfinedGas.cpp b/apps/tutorials/pe/01_ConfinedGas.cpp
index e674e83a6b1f0d70dc5e9f5f2f19b612b4591721..3d9847922fabad67c5b4073665895259969626db 100644
--- a/apps/tutorials/pe/01_ConfinedGas.cpp
+++ b/apps/tutorials/pe/01_ConfinedGas.cpp
@@ -25,6 +25,7 @@
 #include <core/grid_generator/HCPIterator.h>
 #include <core/grid_generator/SCIterator.h>
 #include <core/logging/Logging.h>
+#include <core/math/Random.h>
 //! [Includes]
 
 namespace walberla {
@@ -166,4 +167,4 @@ int main( int argc, char ** argv )
 int main( int argc, char* argv[] )
 {
   return walberla::main( argc, argv );
-}
\ No newline at end of file
+}
diff --git a/apps/tutorials/pe/02_ConfinedGasExtended.cpp b/apps/tutorials/pe/02_ConfinedGasExtended.cpp
index 7e0e027a779f32f052d47407155f82d12a9ada16..e1da27b0da9947bc4a9c6361e039f354e04ab84d 100644
--- a/apps/tutorials/pe/02_ConfinedGasExtended.cpp
+++ b/apps/tutorials/pe/02_ConfinedGasExtended.cpp
@@ -28,6 +28,7 @@
 #include <core/grid_generator/HCPIterator.h>
 #include <core/grid_generator/SCIterator.h>
 #include <core/logging/Logging.h>
+#include <core/math/Random.h>
 #include <core/timing/TimingTree.h>
 #include <core/waLBerlaBuildInfo.h>
 #include <postprocessing/sqlite/SQLite.h>
@@ -299,4 +300,4 @@ int main( int argc, char ** argv )
 int main( int argc, char* argv[] )
 {
   return walberla::main( argc, argv );
-}
\ No newline at end of file
+}
diff --git a/src/pe/raytracing/Raytracer.cpp b/src/pe/raytracing/Raytracer.cpp
index ebacb5e22ce4ddea2e373f5405a24e41f1e1f92e..4f94739bc8566f21df8264d9fb714edab437f3e3 100644
--- a/src/pe/raytracing/Raytracer.cpp
+++ b/src/pe/raytracing/Raytracer.cpp
@@ -20,7 +20,11 @@
 
 #include "Raytracer.h"
 
-#include "core/mpi/all.h"
+#include <core/mpi/Gatherv.h>
+#include <core/mpi/MPIManager.h>
+#include <core/mpi/RecvBuffer.h>
+#include <core/mpi/SendBuffer.h>
+
 #include "geometry/structured/extern/lodepng.h"
 
 namespace walberla {
diff --git a/src/pe/raytracing/Raytracer.h b/src/pe/raytracing/Raytracer.h
index 9b5e2f585762aef70c64eea28863d5d6bd201c3e..39c42aa213a0af99570f9faccb64d2b5e33ee57c 100644
--- a/src/pe/raytracing/Raytracer.h
+++ b/src/pe/raytracing/Raytracer.h
@@ -20,22 +20,22 @@
 
 #pragma once
 
-#include <pe/basic.h>
-#include <pe/Types.h>
-#include <core/math/Vector3.h>
-#include <core/mpi/all.h>
 #include <core/config/Config.h>
 #include <core/Filesystem.h>
+#include <core/math/Vector3.h>
+#include <core/mpi/Datatype.h>
 #include <core/timing/TimingTree.h>
-#include <functional>
-#include "Ray.h"
-#include "Intersects.h"
-#include "Lighting.h"
-#include "ShadingFunctions.h"
-#include "pe/ccd/ICCD.h"
+
+#include <pe/ccd/ICCD.h>
 #include <pe/ccd/HashGrids.h>
+#include <pe/raytracing/Ray.h>
+#include <pe/raytracing/Intersects.h>
+#include <pe/raytracing/Lighting.h>
+#include <pe/raytracing/ShadingFunctions.h>
+#include <pe/Types.h>
 
-#include <stddef.h>
+#include <cstddef>
+#include <functional>
 
 namespace walberla {
 namespace pe {
diff --git a/src/pe/synchronization/SyncForces.h b/src/pe/synchronization/SyncForces.h
index aa83e65196722fd0fea23a262671ea97919de3ff..b28fb837ab365264a78bef4a1812962f707967d3 100644
--- a/src/pe/synchronization/SyncForces.h
+++ b/src/pe/synchronization/SyncForces.h
@@ -20,9 +20,12 @@
 
 #pragma once
 
-#include "blockforest/all.h"
-#include "core/all.h"
-#include "domain_decomposition/all.h"
+#include <core/DataTypes.h>
+#include <core/mpi/BufferSystem.h>
+#include <core/mpi/RecvBuffer.h>
+#include <core/mpi/Reduce.h>
+#include <core/mpi/SendBuffer.h>
+#include <domain_decomposition/BlockStorage.h>
 
 #include "pe/BlockFunctions.h"
 #include "pe/rigidbody/BodyStorage.h"
diff --git a/src/pe/synchronization/SyncShadowOwners.h b/src/pe/synchronization/SyncShadowOwners.h
index 49752ae1746f0eb5c77490e01a261da07731a3ee..89716ed2877a300fb0d29dcb34680f59a031a851 100644
--- a/src/pe/synchronization/SyncShadowOwners.h
+++ b/src/pe/synchronization/SyncShadowOwners.h
@@ -20,9 +20,12 @@
 
 #pragma once
 
-#include "blockforest/all.h"
-#include "core/all.h"
-#include "domain_decomposition/all.h"
+#include <blockforest/BlockForest.h>
+#include <core/DataTypes.h>
+#include <core/mpi/BufferSystem.h>
+#include <core/mpi/RecvBuffer.h>
+#include <core/mpi/Reduce.h>
+#include <core/mpi/SendBuffer.h>
 
 #include "pe/BlockFunctions.h"
 #include "pe/rigidbody/BodyStorage.h"
diff --git a/src/pe/utility/CreateWorld.cpp b/src/pe/utility/CreateWorld.cpp
index 4045f0eea875037d4a09178ed5e22b72a1be1c00..377473c657eff7436d5bef50a6683b5acf30a900 100644
--- a/src/pe/utility/CreateWorld.cpp
+++ b/src/pe/utility/CreateWorld.cpp
@@ -26,7 +26,9 @@
 
 #include <pe/Types.h>
 
-#include <core/DataTypes.h>
+#include <blockforest/Initialization.h>
+#include <blockforest/loadbalancing/StaticCurve.h>
+#include <blockforest/SetupBlockForest.h>
 #include <core/logging/Logging.h>
 #include <core/math/AABB.h>
 
diff --git a/src/pe/utility/CreateWorld.h b/src/pe/utility/CreateWorld.h
index 5ce6ad385c4d07583b9d9e1420debc399b196dec..1cfec49c2ca45fa89c9e960f07d67a0f3fb184c2 100644
--- a/src/pe/utility/CreateWorld.h
+++ b/src/pe/utility/CreateWorld.h
@@ -24,9 +24,10 @@
 // Includes
 //*************************************************************************************************
 
-#include "blockforest/all.h"
-#include "core/all.h"
-#include "domain_decomposition/all.h"
+#include "blockforest/BlockForest.h"
+#include "core/config/Config.h"
+#include "core/DataTypes.h"
+#include <core/mpi/MPIManager.h>
 
 namespace walberla {
 namespace pe {
diff --git a/tests/mesh/PeVTKMeshWriterTest.cpp b/tests/mesh/PeVTKMeshWriterTest.cpp
index 147b3d456a143cbbd0ae85e6c48cf391549d14c6..b3b704a97a585891a7ff4a9a4d548252fd8ce44e 100644
--- a/tests/mesh/PeVTKMeshWriterTest.cpp
+++ b/tests/mesh/PeVTKMeshWriterTest.cpp
@@ -38,6 +38,7 @@
 #include <core/logging/Logging.h>
 #include <core/timing/TimingTree.h>
 #include <core/waLBerlaBuildInfo.h>
+#include <core/math/Random.h>
 #include <core/math/Utility.h>
 #include <postprocessing/sqlite/SQLite.h>
 #include <vtk/VTKOutput.h>
diff --git a/tests/pe/DynamicRefinement.cpp b/tests/pe/DynamicRefinement.cpp
index 284949abab81c6b1ebe0d622c7e08edd9aa42adf..07ce98b85b1e9cb83023a999ff5180aa67e6c596 100644
--- a/tests/pe/DynamicRefinement.cpp
+++ b/tests/pe/DynamicRefinement.cpp
@@ -24,6 +24,7 @@
 #include "pe/utility/DestroyBody.h"
 
 #include "blockforest/Initialization.h"
+#include <blockforest/loadbalancing/DynamicCurve.h>
 #include "core/all.h"
 #include "domain_decomposition/all.h"
 
@@ -198,4 +199,4 @@ int main( int argc, char** argv )
 int main( int argc, char* argv[] )
 {
   return walberla::main( argc, argv );
-}
\ No newline at end of file
+}
diff --git a/tests/pe/ParMetis.cpp b/tests/pe/ParMetis.cpp
index 0f66faf31b2f384ce0e7c8359943c46e82bbe8de..3314d98a2c0b5d8d343f6876a5826b88e7cdae57 100644
--- a/tests/pe/ParMetis.cpp
+++ b/tests/pe/ParMetis.cpp
@@ -21,6 +21,7 @@
 #include "pe/utility/CreateWorld.h"
 
 #include <blockforest/loadbalancing/DynamicParMetis.h>
+#include <core/debug/TestSubsystem.h>
 #include <core/Environment.h>
 #include <core/logging/Logging.h>
 #include <core/math/Sample.h>
diff --git a/tests/pe/Raytracing.cpp b/tests/pe/Raytracing.cpp
index cb935d969b0591b8bda2b3c97e45ab86dc09bce9..16b27ed20d69970f5e814be74adf8b4b92648004 100644
--- a/tests/pe/Raytracing.cpp
+++ b/tests/pe/Raytracing.cpp
@@ -15,6 +15,7 @@
 
 #include "core/debug/TestSubsystem.h"
 #include "core/DataTypes.h"
+#include <core/math/Random.h>
 #include "core/math/Vector3.h"
 
 #include <pe/raytracing/Ray.h>
@@ -914,4 +915,4 @@ int main( int argc, char** argv )
 int main( int argc, char* argv[] )
 {
   return walberla::main( argc, argv );
-}
\ No newline at end of file
+}
diff --git a/tests/pe_coupling/discrete_particle_methods/HinderedSettlingDynamicsDPM.cpp b/tests/pe_coupling/discrete_particle_methods/HinderedSettlingDynamicsDPM.cpp
index 8730491ecd8f112c2c4d4b41c159fb7d428cab79..80d152379546eb88a70eca1ed23cead805b32466 100644
--- a/tests/pe_coupling/discrete_particle_methods/HinderedSettlingDynamicsDPM.cpp
+++ b/tests/pe_coupling/discrete_particle_methods/HinderedSettlingDynamicsDPM.cpp
@@ -29,6 +29,8 @@
 #include "core/grid_generator/SCIterator.h"
 #include "core/logging/all.h"
 
+#include <domain_decomposition/SharedSweep.h>
+
 #include "field/AddToStorage.h"
 #include "field/communication/PackInfo.h"
 #include "field/distributors/all.h"
diff --git a/tests/pe_coupling/discrete_particle_methods/SphereWallCollisionBehaviorDPM.cpp b/tests/pe_coupling/discrete_particle_methods/SphereWallCollisionBehaviorDPM.cpp
index 41f952f16f68655b26089ccd3e8db822372ca067..2cbdd76dc50ff5df1d5ae15dfe98a02fcbeb4c6a 100644
--- a/tests/pe_coupling/discrete_particle_methods/SphereWallCollisionBehaviorDPM.cpp
+++ b/tests/pe_coupling/discrete_particle_methods/SphereWallCollisionBehaviorDPM.cpp
@@ -28,6 +28,8 @@
 
 #include "core/grid_generator/SCIterator.h"
 
+#include <domain_decomposition/SharedSweep.h>
+
 #include "field/AddToStorage.h"
 #include "field/communication/PackInfo.h"
 #include "field/distributors/all.h"
diff --git a/tests/pe_coupling/momentum_exchange_method/BodyAtBlockBoarderCheck.cpp b/tests/pe_coupling/momentum_exchange_method/BodyAtBlockBoarderCheck.cpp
index e78072cbfd76e186f40dee5599d19569dbfc3e6e..c7ac8a324c6d82134bd1153e9e6cb284a7908801 100644
--- a/tests/pe_coupling/momentum_exchange_method/BodyAtBlockBoarderCheck.cpp
+++ b/tests/pe_coupling/momentum_exchange_method/BodyAtBlockBoarderCheck.cpp
@@ -21,6 +21,8 @@
 
 #include "blockforest/Initialization.h"
 #include "blockforest/communication/UniformBufferedScheme.h"
+#include <blockforest/loadbalancing/StaticCurve.h>
+#include <blockforest/SetupBlockForest.h>
 
 #include "boundary/all.h"
 
diff --git a/tests/pe_coupling/momentum_exchange_method/DragForceSphereMEMRefinement.cpp b/tests/pe_coupling/momentum_exchange_method/DragForceSphereMEMRefinement.cpp
index 3d60be54a5ac0f5fc4c7c67ab2e0e126f6078cc5..f940ae03303270c35832b1cd2c4ef16ddc95515f 100644
--- a/tests/pe_coupling/momentum_exchange_method/DragForceSphereMEMRefinement.cpp
+++ b/tests/pe_coupling/momentum_exchange_method/DragForceSphereMEMRefinement.cpp
@@ -21,6 +21,8 @@
 
 #include "blockforest/Initialization.h"
 #include "blockforest/communication/UniformBufferedScheme.h"
+#include <blockforest/loadbalancing/StaticCurve.h>
+#include <blockforest/SetupBlockForest.h>
 
 #include "boundary/all.h"
 
diff --git a/tests/pe_coupling/momentum_exchange_method/GlobalBodyAsBoundaryMEMStaticRefinement.cpp b/tests/pe_coupling/momentum_exchange_method/GlobalBodyAsBoundaryMEMStaticRefinement.cpp
index 4643443ed0b81f32d660400cd1d038b8e1ba0373..2afeebd2d7d60a9653250e6f8bd38c2d4ae57382 100644
--- a/tests/pe_coupling/momentum_exchange_method/GlobalBodyAsBoundaryMEMStaticRefinement.cpp
+++ b/tests/pe_coupling/momentum_exchange_method/GlobalBodyAsBoundaryMEMStaticRefinement.cpp
@@ -21,6 +21,8 @@
 
 #include "blockforest/Initialization.h"
 #include "blockforest/communication/UniformBufferedScheme.h"
+#include <blockforest/loadbalancing/StaticCurve.h>
+#include <blockforest/SetupBlockForest.h>
 
 #include "boundary/all.h"
 
diff --git a/tests/pe_coupling/momentum_exchange_method/SettlingSphereMEMDynamicRefinement.cpp b/tests/pe_coupling/momentum_exchange_method/SettlingSphereMEMDynamicRefinement.cpp
index 4357e587d0def215b22725ae4c4c44d8e4dc9d9d..c87a6e7f8a283c910f768a7f5f5805022b2abeb6 100644
--- a/tests/pe_coupling/momentum_exchange_method/SettlingSphereMEMDynamicRefinement.cpp
+++ b/tests/pe_coupling/momentum_exchange_method/SettlingSphereMEMDynamicRefinement.cpp
@@ -21,6 +21,9 @@
 
 #include "blockforest/Initialization.h"
 #include "blockforest/communication/UniformBufferedScheme.h"
+#include <blockforest/loadbalancing/DynamicCurve.h>
+#include <blockforest/loadbalancing/StaticCurve.h>
+#include <blockforest/SetupBlockForest.h>
 
 #include "boundary/all.h"
 
diff --git a/tests/pe_coupling/momentum_exchange_method/SettlingSphereMEMStaticRefinement.cpp b/tests/pe_coupling/momentum_exchange_method/SettlingSphereMEMStaticRefinement.cpp
index 41da5d22c76cf4cbc5de3f44b9ad668cb3265cd9..3cf8bf5fd8b8ee09e99f7455045ed437a287a376 100644
--- a/tests/pe_coupling/momentum_exchange_method/SettlingSphereMEMStaticRefinement.cpp
+++ b/tests/pe_coupling/momentum_exchange_method/SettlingSphereMEMStaticRefinement.cpp
@@ -21,6 +21,8 @@
 
 #include "blockforest/Initialization.h"
 #include "blockforest/communication/UniformBufferedScheme.h"
+#include <blockforest/loadbalancing/StaticCurve.h>
+#include <blockforest/SetupBlockForest.h>
 
 #include "boundary/all.h"
 
diff --git a/tests/pe_coupling/partially_saturated_cells_method/DragForceSpherePSMRefinement.cpp b/tests/pe_coupling/partially_saturated_cells_method/DragForceSpherePSMRefinement.cpp
index 2fbc0fcbe38bcdb21cc3b0a936ef552ff60f3f83..58add3e2404c162f19f653552033e1be81a322ea 100644
--- a/tests/pe_coupling/partially_saturated_cells_method/DragForceSpherePSMRefinement.cpp
+++ b/tests/pe_coupling/partially_saturated_cells_method/DragForceSpherePSMRefinement.cpp
@@ -21,6 +21,8 @@
 
 #include "blockforest/Initialization.h"
 #include "blockforest/communication/UniformBufferedScheme.h"
+#include <blockforest/loadbalancing/StaticCurve.h>
+#include <blockforest/SetupBlockForest.h>
 
 #include "boundary/all.h"