From 1affe930e0e099cc226f0f1d3c68dc15d18a17e8 Mon Sep 17 00:00:00 2001
From: ralfulrich <ralf.ulrich@kit.edu>
Date: Tue, 20 Apr 2021 14:46:45 +0200
Subject: [PATCH] format

---
 corsika/detail/framework/geometry/Helix.inl | 2 +-
 corsika/framework/utility/CubicSolver.hpp   | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/corsika/detail/framework/geometry/Helix.inl b/corsika/detail/framework/geometry/Helix.inl
index 5a029d8e2..03c0fd85d 100644
--- a/corsika/detail/framework/geometry/Helix.inl
+++ b/corsika/detail/framework/geometry/Helix.inl
@@ -19,7 +19,7 @@ namespace corsika {
 
   inline Point Helix::getPosition(TimeType const t) const {
     return r0_ + vPar_ * t +
-      (vPerp_ * (std::cos(omegaC_ * t) - 1) + uPerp_ * std::sin(omegaC_ * t)) /
+           (vPerp_ * (std::cos(omegaC_ * t) - 1) + uPerp_ * std::sin(omegaC_ * t)) /
                omegaC_;
   }
 
diff --git a/corsika/framework/utility/CubicSolver.hpp b/corsika/framework/utility/CubicSolver.hpp
index d62757277..694b6e3bc 100644
--- a/corsika/framework/utility/CubicSolver.hpp
+++ b/corsika/framework/utility/CubicSolver.hpp
@@ -29,7 +29,7 @@ namespace corsika {
      @ingroup Utility
      @{
    */
-  
+
   namespace andre {
     /**
        Solve a x^3 + b x^2 + c x + d = 0
@@ -63,13 +63,13 @@ namespace corsika {
                              long double d);
 
   /**
-     @return 3 a x^2 + 2 b x + c 
-  */  
+     @return 3 a x^2 + 2 b x + c
+  */
   long double cubic_function_dfdx(long double x, long double a, long double b,
                                   long double c);
 
   /**
-     @return 6 a x + 2 b 
+     @return 6 a x + 2 b
   */
   long double cubic_function_d2fd2x(long double x, long double a, long double b);
 
-- 
GitLab