diff --git a/Core/Computation/ProcessedLayout.cpp b/Core/Computation/ProcessedLayout.cpp
index 1a8947691810df66176382414c69c3298070ae63..045e881448c39562c0501a8ec5a8bd28548fc9ab 100644
--- a/Core/Computation/ProcessedLayout.cpp
+++ b/Core/Computation/ProcessedLayout.cpp
@@ -81,7 +81,7 @@ void ProcessedLayout::collectFormFactors(const ILayout& layout, const std::vecto
 {
     double layout_abundance = layout.getTotalAbundance();
     for (auto p_particle : layout.particles()) {
-        auto ff_coh = ProcessParticle(*p_particle, slices, z_ref);
+        auto ff_coh = processParticle(*p_particle, slices, z_ref);
         ff_coh.scaleRelativeAbundance(layout_abundance);
         m_formfactors.push_back(std::move(ff_coh));
     }
@@ -91,7 +91,7 @@ void ProcessedLayout::collectFormFactors(const ILayout& layout, const std::vecto
     ScaleRegionMap(m_region_map, scale_factor);
 }
 
-FormFactorCoherentSum ProcessedLayout::ProcessParticle(const IParticle& particle,
+FormFactorCoherentSum ProcessedLayout::processParticle(const IParticle& particle,
                                                        const std::vector<Slice>& slices,
                                                        double z_ref)
 {
diff --git a/Core/Computation/ProcessedLayout.h b/Core/Computation/ProcessedLayout.h
index e4071c55998140a38e6783ff4e90b92bced09081..54c01e3aa1f0619aa16b8e4c3f6542fb4543bd08 100644
--- a/Core/Computation/ProcessedLayout.h
+++ b/Core/Computation/ProcessedLayout.h
@@ -50,7 +50,7 @@ public:
 
 private:
     void collectFormFactors(const ILayout& layout, const std::vector<Slice>& slices, double z_ref);
-    FormFactorCoherentSum ProcessParticle(const IParticle& particle,
+    FormFactorCoherentSum processParticle(const IParticle& particle,
                                           const std::vector<Slice>& slices, double z_ref);
     void mergeRegionMap(const std::map<size_t, std::vector<HomogeneousRegion>>& region_map);
     const IFresnelMap* m_fresnel_map;