From cf50a907f5fdd93d5d15f5738cf09afcb0f1915d Mon Sep 17 00:00:00 2001
From: Alan Coleman <alanc@udel.edu>
Date: Mon, 11 Mar 2024 18:49:22 +0100
Subject: [PATCH] can't stop, won't stop clanging

---
 applications/c8_air_shower.cpp                       | 3 +--
 corsika/detail/framework/core/Cascade.inl            | 6 ++++--
 corsika/detail/modules/writers/InteractionWriter.inl | 2 +-
 3 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/applications/c8_air_shower.cpp b/applications/c8_air_shower.cpp
index 7a1e19dbf..2673d6c45 100644
--- a/applications/c8_air_shower.cpp
+++ b/applications/c8_air_shower.cpp
@@ -220,8 +220,7 @@ int main(int argc, char** argv) {
                "Force the location of the first interaction.")
       ->group("Misc.");
   bool force_decay = false;
-  app.add_flag("--force-decay", force_decay,
-               "Force the primary to immediately decay")
+  app.add_flag("--force-decay", force_decay, "Force the primary to immediately decay")
       ->group("Misc.");
   bool disable_interaction_hists = false;
   app.add_flag("--disable-interaction-histograms", disable_interaction_hists,
diff --git a/corsika/detail/framework/core/Cascade.inl b/corsika/detail/framework/core/Cascade.inl
index 6498cc520..63ccdd7dd 100644
--- a/corsika/detail/framework/core/Cascade.inl
+++ b/corsika/detail/framework/core/Cascade.inl
@@ -100,7 +100,8 @@ namespace corsika {
     forceInteraction_ = true;
     if (forceDecay_) {
       CORSIKA_LOG_ERROR("Cannot set forceInteraction when forceDecay is already set");
-      throw std::runtime_error("Cannot set forceInteraction when forceDecay is already set");
+      throw std::runtime_error(
+          "Cannot set forceInteraction when forceDecay is already set");
     }
   }
 
@@ -109,7 +110,8 @@ namespace corsika {
     forceDecay_ = true;
     if (forceInteraction_) {
       CORSIKA_LOG_ERROR("Cannot set forceDecay when forceInteraction is already set");
-      throw std::runtime_error("Cannot set forceDecay when forceInteraction is already set");
+      throw std::runtime_error(
+          "Cannot set forceDecay when forceInteraction is already set");
     }
   }
 
diff --git a/corsika/detail/modules/writers/InteractionWriter.inl b/corsika/detail/modules/writers/InteractionWriter.inl
index b1cfd4d4e..87e0dd56b 100644
--- a/corsika/detail/modules/writers/InteractionWriter.inl
+++ b/corsika/detail/modules/writers/InteractionWriter.inl
@@ -25,7 +25,7 @@ namespace corsika {
   template <typename TStackView>
   inline void InteractionWriter<TTracking, TOutput>::doSecondaries(TStackView& vS) {
     // Dumps the stack to the output parquet stream
-    // The primary and secondaries are all written along with the slant depth 
+    // The primary and secondaries are all written along with the slant depth
 
     if (interactionCounter_++) { return; } // Only run on the first interaction
 
-- 
GitLab