diff --git a/applications/c8_air_shower.cpp b/applications/c8_air_shower.cpp index 7a1e19dbffc7ec6901cfd62e7ae6ce9e1d549465..2673d6c45d11c0c741fa66966af32b5442d5e7b8 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 6498cc5208cb7a451ef09a3197de44d52e17fcd4..63ccdd7dd19b939e75872353618452876523d3da 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 b1cfd4d4e916c12b6ee069c05bea46d6d9684ef0..87e0dd56beca5deb49b71de1f1265b44364a795f 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